Advertisement
Membership
Login
ACCU Buttons
Programming Topics or Process Topics or CVu Journal Vol 28, #4 - September 2016
Browse in : |
All
> Topics
> Programming All > Topics > Process All > Journals > CVu > 284 All of these categories |
- Options:
- View Article Map
- View Archives
Does Test-Driven Development Harm Clarity?
Description : Is clarity the key thing to aim for when writing software? Andy Balaam considers if TDD harms clarity and if this matters.
Category: [ Programming Topics | Design of applications and programs | Overload Journal #122 - August 2014 ]
Description : Is clarity the key thing to aim for when writing software? Andy Balaam considers if TDD harms clarity and if this matters.
Category: [ Programming Topics | Design of applications and programs | Overload Journal #122 - August 2014 ]
Musings on Python – by a C++ Developer
Description : Python and C++ are very different languages. Sergey Ignatchenko walks through things in Python that can confuse a C++ programmer.
Category: [ Programming Topics | Overload Journal #122 - August 2014 ]
Description : Python and C++ are very different languages. Sergey Ignatchenko walks through things in Python that can confuse a C++ programmer.
Category: [ Programming Topics | Overload Journal #122 - August 2014 ]
Activatable Object
Description : Using locks will slow down threaded code. Len Holgate demonstrates how an Activatable Object can reduce the time spent blocked.
Category: [ Programming Topics | Overload Journal #122 - August 2014 ]
Description : Using locks will slow down threaded code. Len Holgate demonstrates how an Activatable Object can reduce the time spent blocked.
Category: [ Programming Topics | Overload Journal #122 - August 2014 ]
KISSing SOLID Goodbye
Description : Can you remember what SOLID stands for? Chris Oldwood distills it down to two easy to remember principles.
Category: [ Programming Topics | Design of applications and programs | Overload Journal #122 - August 2014 ]
Description : Can you remember what SOLID stands for? Chris Oldwood distills it down to two easy to remember principles.
Category: [ Programming Topics | Design of applications and programs | Overload Journal #122 - August 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 ]
Branching Strategies
Description : Branching can either be embraced or avoided. Chris Oldwood documents the pros and cons of three main branching strategies.
Category: [ Programming Topics | Process Topics | Overload Journal #121 - June 2014 ]
Description : Branching can either be embraced or avoided. Chris Oldwood documents the pros and cons of three main branching strategies.
Category: [ Programming Topics | Process Topics | Overload Journal #121 - June 2014 ]
Beauty in Code
Description : Attractiveness matters. Adam Tornhill uses a Clojure example to show how generalisation can be more beautiful than special cases.
Category: [ Programming Topics | Overload Journal #121 - June 2014 ]
Description : Attractiveness matters. Adam Tornhill uses a Clojure example to show how generalisation can be more beautiful than special cases.
Category: [ Programming Topics | Overload Journal #121 - June 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 ]
Stop the Constant Shouting
Description : CONSTANTS often shout. Jonathan Wakely considers why this happens in C and what the alternatives are in C++.
Category: [ Programming Topics | Overload Journal #121 - June 2014 ]
Description : CONSTANTS often shout. Jonathan Wakely considers why this happens in C and what the alternatives are in C++.
Category: [ Programming Topics | Overload Journal #121 - June 2014 ]
Minimal Overhead for Multiple Interfaces
Description : Using multiple interfaces can slow things down. Daniel Gutson and Pablo Oliva present an alternative.
Category: [ Programming Topics | Overload Journal #121 - June 2014 ]
Description : Using multiple interfaces can slow things down. Daniel Gutson and Pablo Oliva present an alternative.
Category: [ Programming Topics | Overload Journal #121 - June 2014 ]
Size Matters
Description : Should you target 32 or 64 bits? Sergey Ignatchenko and Dmytro Ivanchykhin consider the costs and benefits.
Category: [ Programming Topics | Overload Journal #120 - April 2014 ]
Description : Should you target 32 or 64 bits? Sergey Ignatchenko and Dmytro Ivanchykhin consider the costs and benefits.
Category: [ Programming Topics | Overload Journal #120 - April 2014 ]
Enforcing the Rule of Zero
Description : We’ve had years to get used to the old rules for making classes copyable. Juan Alday sees how the new standards change them.
Category: [ Programming Topics | Overload Journal #120 - April 2014 ]
Description : We’ve had years to get used to the old rules for making classes copyable. Juan Alday sees how the new standards change them.
Category: [ Programming Topics | Overload Journal #120 - April 2014 ]
Quality Matters #8: Exceptions for Recoverable Conditions
Description : Too many programs deal with exceptions incorrectly. Matthew Wilson suggests practical steps to improve your code.
Category: [ Programming Topics | Overload Journal #120 - April 2014 ]
Description : Too many programs deal with exceptions incorrectly. Matthew Wilson suggests practical steps to improve your code.
Category: [ Programming Topics | Overload Journal #120 - April 2014 ]
Static – A Force for Good and Evil
Description : We’ve all learnt to avoid the use of the static keyword. Chris Oldwood questions this wisdom.
Category: [ Programming Topics | Overload Journal #120 - April 2014 ]
Description : We’ve all learnt to avoid the use of the static keyword. Chris Oldwood questions this wisdom.
Category: [ Programming Topics | Overload Journal #120 - April 2014 ]
Search with CppCheck
Description : Finding code of interest is a vital skill but our tools are often too simple. Martin Moene tries something better.
Category: [ Programming Topics | Overload Journal #120 - April 2014 ]
Description : Finding code of interest is a vital skill but our tools are often too simple. Martin Moene tries something better.
Category: [ Programming Topics | Overload Journal #120 - April 2014 ]
Windows 64-bit Calling Conventions
Description : How the stack works is useful to understanding your programs’ behaviour. Roger Orr compares and contrasts.
Category: [ Programming Topics | Overload Journal #120 - April 2014 ]
Description : How the stack works is useful to understanding your programs’ behaviour. Roger Orr compares and contrasts.
Category: [ Programming Topics | Overload Journal #120 - April 2014 ]
Static Polymorphic Named Parameters in C++
Description : Adding parameters to an object can be messy. Martin Moene demonstrates how method chaining can make code more readable.
Category: [ Programming Topics | Overload Journal #119 - February 2014 ]
Description : Adding parameters to an object can be messy. Martin Moene demonstrates how method chaining can make code more readable.
Category: [ Programming Topics | Overload Journal #119 - February 2014 ]
Integrating the Catch Test Framework into Visual Studio
Description : Visual Studio’s Test Explorer allows native C++ tests to be run under a managed wrapper. Malcolm Noyes takes it a step further using Catch to drive the tests.
Category: [ Programming Topics | Overload Journal #119 - February 2014 ]
Description : Visual Studio’s Test Explorer allows native C++ tests to be run under a managed wrapper. Malcolm Noyes takes it a step further using Catch to drive the tests.
Category: [ Programming Topics | Overload Journal #119 - February 2014 ]
Anatomy of a Java Decompiler
Description : Java byte code can be reverted back into source code. Lee Benfield and Mike Strobel show how.
Category: [ Programming Topics | Overload Journal #119 - February 2014 ]
Description : Java byte code can be reverted back into source code. Lee Benfield and Mike Strobel show how.
Category: [ Programming Topics | Overload Journal #119 - February 2014 ]
Optimizing Big Number Arithmetic Without SSE
Description : Addition and multiplication can be slow for big numbers. Sergey Ignatchenko and Dmytro Ivanchykhin try to speed things up.
Category: [ Programming Topics | Overload Journal #119 - February 2014 ]
Description : Addition and multiplication can be slow for big numbers. Sergey Ignatchenko and Dmytro Ivanchykhin try to speed things up.
Category: [ Programming Topics | Overload Journal #119 - February 2014 ]