Advertisement
Membership
Login
ACCU Buttons
Programming Topics or Overload Journal #77 - Feb 2007
Browse in : |
All
> Topics
> Programming All > Journals > Overload > 77 All of these categories |
- Options:
- View Article Map
- View Archives
The Global Lockdown of Locks
Description : Locks can be replaced with tasks. Lucian Radu Teodorescu shows us how.
Category: [ Programming Topics | Overload Journal #158 - August 2020 ]
Description : Locks can be replaced with tasks. Lucian Radu Teodorescu shows us how.
Category: [ Programming Topics | Overload Journal #158 - August 2020 ]
The Standard Report
Description : Guy Davidson reports from the C++ Standards Committee.
Category: [ Programming Topics | CVu Journal Vol 31, #5 - November 2019 ]
Description : Guy Davidson reports from the C++ Standards Committee.
Category: [ Programming Topics | CVu Journal Vol 31, #5 - November 2019 ]
The Duality…
Description : Genetic algorithms can find solutions that other algorithms might miss. Anders Modén discusses their use in conjunction with back-propagation for finding better solutions.
Category: [ Programming Topics | Overload Journal #150 - April 2019 ]
Description : Genetic algorithms can find solutions that other algorithms might miss. Anders Modén discusses their use in conjunction with back-propagation for finding better solutions.
Category: [ Programming Topics | Overload Journal #150 - April 2019 ]
The Ghost of a Codebase Past
Description : Pete Goodliffe learns lessons by reviewing his own old code.
Category: [ Programming Topics | CVu Journal Vol 30, #4 - September 2018 ]
Description : Pete Goodliffe learns lessons by reviewing his own old code.
Category: [ Programming Topics | CVu Journal Vol 30, #4 - September 2018 ]
Type-agnostic Tracing Using {fmt}
Description : Tracing compound and custom types is a challenge. Mike Crowe demonstrates how {fmt} provides a safe alternative to printf.
Category: [ Programming Topics | Overload Journal #145 - June 2018 ]
Description : Tracing compound and custom types is a challenge. Mike Crowe demonstrates how {fmt} provides a safe alternative to printf.
Category: [ Programming Topics | Overload Journal #145 - June 2018 ]
The New C++ Interview
Description : Pete Goodliffe introduces a new way to test programming skills.
Category: [ Programming Topics | CVu Journal Vol 30, #2 - May 2018 ]
Description : Pete Goodliffe introduces a new way to test programming skills.
Category: [ Programming Topics | CVu Journal Vol 30, #2 - May 2018 ]
The Expressive C++ Coding Challenge in D
Description : Sebastian Wilzbach presents a D language solution to a C++ problem.
Category: [ Programming Topics | CVu Journal Vol 30, #1 - March 2018 ]
Description : Sebastian Wilzbach presents a D language solution to a C++ problem.
Category: [ Programming Topics | CVu Journal Vol 30, #1 - March 2018 ]
Testing Times (Part 1)
Description : Pete Goodliffe explores how to test code to ensure it works as expected.
Category: [ Programming Topics | CVu Journal Vol 29, #6 - January 2018 ]
Description : Pete Goodliffe explores how to test code to ensure it works as expected.
Category: [ Programming Topics | CVu Journal Vol 29, #6 - January 2018 ]
The Last Word in Patterns
Description : What can you do in a single transaction in a database? Paul Grenyer writes us his Single CrUD pattern.
Category: [ Programming Topics | Overload Journal #142 - December 2017 ]
Description : What can you do in a single transaction in a database? Paul Grenyer writes us his Single CrUD pattern.
Category: [ Programming Topics | Overload Journal #142 - December 2017 ]
Thonny: Python IDE for Beginners
Description : Silas S. Brown introduces a new Python IDE.
Category: [ Programming Topics | CVu Journal Vol 29, #4 - September 2017 ]
Description : Silas S. Brown introduces a new Python IDE.
Category: [ Programming Topics | CVu Journal Vol 29, #4 - September 2017 ]
The Importance of Back-of-Envelope Estimates
Description : Guestimate questions make many people grumble. Sergey Ignatchenko reminds us why they matter.
Category: [ Programming Topics | Process Topics | Overload Journal #137 - February 2017 ]
Description : Guestimate questions make many people grumble. Sergey Ignatchenko reminds us why they matter.
Category: [ Programming Topics | Process Topics | Overload Journal #137 - February 2017 ]
Turnabout is Fair Play
Description : Baron M is still game for a wager.
Category: [ Programming Topics | CVu Journal Vol 28, #6 - January 2017 ]
Description : Baron M is still game for a wager.
Category: [ Programming Topics | CVu Journal Vol 28, #6 - January 2017 ]
The MirAL Story
Description : The X-Windows system is all-pervasive but struggles with security and performance graphics. Alan Griffiths introduces Mir Abstraction Layer to deal with these issues.
Category: [ Programming Topics | Overload Journal #136 - December 2016 ]
Description : The X-Windows system is all-pervasive but struggles with security and performance graphics. Alan Griffiths introduces Mir Abstraction Layer to deal with these issues.
Category: [ Programming Topics | Overload Journal #136 - December 2016 ]
Testing Propositions
Description : Is testing propositions more important than having examples as exemplars? Russel Winder considers this hypothesis.
Category: [ Programming Topics | Overload Journal #134 - August 2016 ]
Description : Is testing propositions more important than having examples as exemplars? Russel Winder considers this hypothesis.
Category: [ Programming Topics | Overload Journal #134 - August 2016 ]
Testing Private
Description : Paul Grenyer shows that testing doesn’t need public access.
Category: [ Programming Topics | CVu Journal Vol 28, #3 - July 2016 ]
Description : Paul Grenyer shows that testing doesn’t need public access.
Category: [ Programming Topics | CVu Journal Vol 28, #3 - July 2016 ]
The Codealow
Description : Pete Goodliffe presents a new software soliloquy.
Category: [ Programming Topics | CVu Journal Vol 28, #3 - July 2016 ]
Description : Pete Goodliffe presents a new software soliloquy.
Category: [ Programming Topics | CVu Journal Vol 28, #3 - July 2016 ]
The Tao of Scratch
Description : Scratch is an environment designed to help young people learn to code. Patrick Martin walks us through it.
Category: [ Programming Topics | Overload Journal #132 - April 2016 ]
Description : Scratch is an environment designed to help young people learn to code. Patrick Martin walks us through it.
Category: [ Programming Topics | Overload Journal #132 - April 2016 ]
Template Programming Compile Time Combinations & Sieves
Description : Functional style frequently uses sequences. Nick Weatherhead applies these ideas to combinations in C++.
Category: [ Programming Topics | Overload Journal #131 - February 2016 ]
Description : Functional style frequently uses sequences. Nick Weatherhead applies these ideas to combinations in C++.
Category: [ Programming Topics | Overload Journal #131 - February 2016 ]
Type Mosaicing with Consultables and Delegates
Description : If several classes need to work together lots of boilerplate code is often needed. Nicolas Bouillot introduces type mosaicing to avoid this.
Category: [ Programming Topics | Overload Journal #130 - December 2015 ]
Description : If several classes need to work together lots of boilerplate code is often needed. Nicolas Bouillot introduces type mosaicing to avoid this.
Category: [ Programming Topics | Overload Journal #130 - December 2015 ]
The Universality and Expressiveness of std::accumulate
Description : Folding is a highly generic operation available through std::accumulate. Paul Keir goes beyond reduction, with the help of C++14’s polymorphic lambdas.
Category: [ Programming Topics | Overload Journal #130 - December 2015 ]
Description : Folding is a highly generic operation available through std::accumulate. Paul Keir goes beyond reduction, with the help of C++14’s polymorphic lambdas.
Category: [ Programming Topics | Overload Journal #130 - December 2015 ]