Advertisement
Membership
Login
ACCU Buttons
Programming Topics or Design of applications and programs or Overload Journal #118 - December 2013
Browse in : |
All
> Topics
> Programming All > Topics > Design All > Journals > Overload > o118 All of these categories |
- Options:
- View Article Map
- View Archives
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 ]
The Cat’s Meow
Description : Gail Ollis reports from the App-a-thon World Record attempt.
Category: [ Programming Topics | Process Topics | CVu Journal Vol 27, #4 - September2015 ]
Description : Gail Ollis reports from the App-a-thon World Record attempt.
Category: [ Programming Topics | Process Topics | CVu Journal Vol 27, #4 - September2015 ]
Two Daemons
Description : Most people have come across C++11’s forwarding references. Dietmar Kühl explains what && really means.
Category: [ Programming Topics | Overload Journal #128 - August 2015 ]
Description : Most people have come across C++11’s forwarding references. Dietmar Kühl explains what && really means.
Category: [ Programming Topics | Overload Journal #128 - August 2015 ]
Template Programming Compile Time String Functions
Description : Practising old exercises in new ways can keep you sharp. Nick Weatherhead demonstrates some well-known code katas using C++ compile time tricks.
Category: [ Programming Topics | Overload Journal #128 - August 2015 ]
Description : Practising old exercises in new ways can keep you sharp. Nick Weatherhead demonstrates some well-known code katas using C++ compile time tricks.
Category: [ Programming Topics | Overload Journal #128 - August 2015 ]
Terse Exception Messages
Description : Log files often contain ‘error’ information. Chris Oldwood suggests they rarely contain anything that could be considered helpful.
Category: [ Programming Topics | Overload Journal #127 - June 2015 ]
Description : Log files often contain ‘error’ information. Chris Oldwood suggests they rarely contain anything that could be considered helpful.
Category: [ Programming Topics | Overload Journal #127 - June 2015 ]
The Developer’s Sandbox
Description : Chris Oldwood wants to be in control.
Category: [ Programming Topics | CVu Journal Vol 27, #1 - March 2015 ]
Description : Chris Oldwood wants to be in control.
Category: [ Programming Topics | CVu Journal Vol 27, #1 - March 2015 ]
Testing Drives the Need for Flexible Configuration
Description : Inflexible configuration will cause problems. Chris Oldwood demonstrates how to support multiple configurations flexibly.
Category: [ Programming Topics | Overload Journal #124 - December 2014 ]
Description : Inflexible configuration will cause problems. Chris Oldwood demonstrates how to support multiple configurations flexibly.
Category: [ Programming Topics | Overload Journal #124 - December 2014 ]
TDD Discussions and Disagreements
Description : Recently people have been arguing about the benefits and pitfalls if TDD. Seb Rose summarises the differing standpoints and presents his own.
Category: [ Programming Topics | Design of applications and programs | Overload Journal #122 - August 2014 ]
Description : Recently people have been arguing about the benefits and pitfalls if TDD. Seb Rose summarises the differing standpoints and presents his own.
Category: [ Programming Topics | Design of applications and programs | Overload Journal #122 - August 2014 ]
The Code Is Not the Most Important Thing
Description : Choose the right sort of problem, focus on strategies for solving it, and the code will come easily. Seb Rose teaches kids to code.
Category: [ Programming Topics | Overload Journal #121 - June 2014 ]
Description : Choose the right sort of problem, focus on strategies for solving it, and the code will come easily. Seb Rose teaches kids to code.
Category: [ Programming Topics | Overload Journal #121 - June 2014 ]
TCP/IP Explained. A Bit
Description : Nowadays most programmers rely on network connectivity, often without really understanding the details. Sergey Ignatchenko compares and contrasts the two main protocols.
Category: [ Programming Topics | Overload Journal #115 - June 2013 ]
Description : Nowadays most programmers rely on network connectivity, often without really understanding the details. Sergey Ignatchenko compares and contrasts the two main protocols.
Category: [ Programming Topics | Overload Journal #115 - June 2013 ]
The Signs of Trouble: On Patterns, Humbleness and Lisp
Description : Patterns can be a controversial topic. Adam Petersen considers their cognitive and social value.
Category: [ Programming Topics | Overload Journal #113 - February 2013 ]
Description : Patterns can be a controversial topic. Adam Petersen considers their cognitive and social value.
Category: [ Programming Topics | Overload Journal #113 - February 2013 ]
The Open–Closed Principle (OCP)
Description : Changing requirements and environments can require cascading changes through software. Nan Wang demonstrates how the Open-Closed principle can minimise changes.
Category: [ Programming Topics | Overload Journal #113 - February 2013 ]
Description : Changing requirements and environments can require cascading changes through software. Nan Wang demonstrates how the Open-Closed principle can minimise changes.
Category: [ Programming Topics | Overload Journal #113 - February 2013 ]
Tail Call Optimisation in C++
Description : Stack based languages can be very powerful, but often can’t deal with arbitrary recursion. Andy Balaam finds a way around this limitation.
Category: [ Programming Topics | Overload Journal #109 - June 2012 ]
Description : Stack based languages can be very powerful, but often can’t deal with arbitrary recursion. Andy Balaam finds a way around this limitation.
Category: [ Programming Topics | Overload Journal #109 - June 2012 ]
The Virtual Interview
Description : John Max Skaller was interviewed by Sean A. Corfield
Source : Generated via JPG, Google OCR, pandoc markdown from scanned journal
Category: [ Programming Topics | Process Topics | Overload Journal #5 - Sep 1994 ]
Description : John Max Skaller was interviewed by Sean A. Corfield
Source : Generated via JPG, Google OCR, pandoc markdown from scanned journal
Category: [ Programming Topics | Process Topics | Overload Journal #5 - Sep 1994 ]