Advertisement
Membership
Login
ACCU Buttons
Browse in : | > Journals > Overload |
• Blogs
ACCU Topics
(2)
- ACCU magic
Designing Observers in C++11
Description : The observer pattern is over two decades old. Alan Griffiths fits a venerable design pattern into a contemporary context. by Alan Griffiths
Category: [ Overload Journal #124 - December 2014 | Programming Topics ]
Description : The observer pattern is over two decades old. Alan Griffiths fits a venerable design pattern into a contemporary context. by Alan Griffiths
Category: [ Overload Journal #124 - December 2014 | Programming Topics ]
Editorial: Finding your muse
Description : Lack of ideas and confidence can freeze an author. Frances Buontempo considers how to warm up. by Frances Buontempo
Category: [ Overload Journal #124 - December 2014 | Journal Editorial ]
Description : Lack of ideas and confidence can freeze an author. Frances Buontempo considers how to warm up. by Frances Buontempo
Category: [ Overload Journal #124 - December 2014 | Journal Editorial ]
Order Notation in Practice
Description : What does complexity measurement mean? Roger Orr reminds us of the academic definition and looks at some real life situations.
Category: [ Overload Journal #124 - December 2014 | Programming Topics ]
Description : What does complexity measurement mean? Roger Orr reminds us of the academic definition and looks at some real life situations.
Category: [ Overload Journal #124 - December 2014 | Programming Topics ]
People of the .Doc
Description : Technical communication is often misunderstood by the world at large. Andrew Peck breaks down the rhetoric from a technical author’s perspective. by Andrew Peck
Category: [ Overload Journal #124 - December 2014 ]
Description : Technical communication is often misunderstood by the world at large. Andrew Peck breaks down the rhetoric from a technical author’s perspective. by Andrew Peck
Category: [ Overload Journal #124 - December 2014 ]
Testing Drives the Need for Flexible Configuration
Description : Inflexible configuration will cause problems. Chris Oldwood demonstrates how to support multiple configurations flexibly.
Category: [ Overload Journal #124 - December 2014 | Programming Topics ]
Description : Inflexible configuration will cause problems. Chris Oldwood demonstrates how to support multiple configurations flexibly.
Category: [ Overload Journal #124 - December 2014 | Programming Topics ]
Editorial: Peer Reviewed
Description : Nobody gets it right first time. Frances Buontempo considers the importance of the review team. by Frances Buontempo
Category: [ Overload Journal #123 - October 2014 | Journal Editorial ]
Description : Nobody gets it right first time. Frances Buontempo considers the importance of the review team. by Frances Buontempo
Category: [ Overload Journal #123 - October 2014 | Journal Editorial ]
Debug Complexity: How Assertions Affect Debugging Time
Description : Debugging any program can be time consuming. Sergey Ignatchenko and Dmytro Ivanchykhin extend their mathematical model to consider the effect of assertions. by Sergey Ignatchenko and Dmytro Ivanchykhin
Category: [ Overload Journal #123 - October 2014 | Programming Topics ]
Description : Debugging any program can be time consuming. Sergey Ignatchenko and Dmytro Ivanchykhin extend their mathematical model to consider the effect of assertions. by Sergey Ignatchenko and Dmytro Ivanchykhin
Category: [ Overload Journal #123 - October 2014 | Programming Topics ]
Alternative Overloads
Description : How do you return a default value given a condition? Malcolm Noyes presents solutions using older and newer C++ techniques. by Malcolm Noyes
Category: [ Overload Journal #123 - October 2014 | Programming Topics ]
Description : How do you return a default value given a condition? Malcolm Noyes presents solutions using older and newer C++ techniques. by Malcolm Noyes
Category: [ Overload Journal #123 - October 2014 | Programming Topics ]
Everyone Hates build.xml
Description : Using Ant build tool can be tricky. Andy Balaam shows how to structure and test the build code. by Andy Balaam
Category: [ Overload Journal #123 - October 2014 | Programming Topics ]
Description : Using Ant build tool can be tricky. Andy Balaam shows how to structure and test the build code. by Andy Balaam
Category: [ Overload Journal #123 - October 2014 | Programming Topics ]
Defining Visitors Inline in Modern C++
Description : The Visitor pattern can involve non-local boilerplate code. Robert Mill and Jonathan Coe present an inline Visitor in C++. by Robert Mill and Jonathan Coe
Category: [ Overload Journal #123 - October 2014 | Programming Topics ]
Description : The Visitor pattern can involve non-local boilerplate code. Robert Mill and Jonathan Coe present an inline Visitor in C++. by Robert Mill and Jonathan Coe
Category: [ Overload Journal #123 - October 2014 | Programming Topics ]
A Scheduling Technique for Small Software Projects and Teams
Description : Despite myriad scheduling tools, projects still overrun. Bob Schmidt presents some tips for accurate scheduling. by Bob Schmidt
Category: [ Overload Journal #123 - October 2014 | Process Topics ]
Description : Despite myriad scheduling tools, projects still overrun. Bob Schmidt presents some tips for accurate scheduling. by Bob Schmidt
Category: [ Overload Journal #123 - October 2014 | Process Topics ]
Paper Bag Escapology Using Particle Swarm Optimisation
Description : Some attempts at programming one’s way out of a paper bag need an upfront model. Frances Buontempo simplifies things using particle swarm optimisation. by Frances Buontempo
Category: [ Overload Journal #123 - October 2014 | Programming Topics ]
Description : Some attempts at programming one’s way out of a paper bag need an upfront model. Frances Buontempo simplifies things using particle swarm optimisation. by Frances Buontempo
Category: [ Overload Journal #123 - October 2014 | Programming Topics ]
Feeding Back
Description : Feedback can be positive and negative. Kevlin Henney contemplates how to make feedback useful. by Kevlin Henney
Category: [ Overload Journal #123 - October 2014 | Process Topics ]
Description : Feedback can be positive and negative. Kevlin Henney contemplates how to make feedback useful. by Kevlin Henney
Category: [ Overload Journal #123 - October 2014 | Process Topics ]
Editorial: Shop ’til you Drop
Description : Deciding which tools to acquire can be a difficult decision. Frances Buontempo muses on a failed shopping trip. by Frances Buontempo
Category: [ Overload Journal #122 - August 2014 | Journal Editorial ]
Description : Deciding which tools to acquire can be a difficult decision. Frances Buontempo muses on a failed shopping trip. by Frances Buontempo
Category: [ Overload Journal #122 - August 2014 | Journal Editorial ]
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. by Andy Balaam
Category: [ Overload Journal #122 - August 2014 | Programming Topics | Design of applications and programs ]
Description : Is clarity the key thing to aim for when writing software? Andy Balaam considers if TDD harms clarity and if this matters. by Andy Balaam
Category: [ Overload Journal #122 - August 2014 | Programming Topics | Design of applications and programs ]
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. by Sergey Ignatchenko
Category: [ Overload Journal #122 - August 2014 | Programming Topics ]
Description : Python and C++ are very different languages. Sergey Ignatchenko walks through things in Python that can confuse a C++ programmer. by Sergey Ignatchenko
Category: [ Overload Journal #122 - August 2014 | Programming Topics ]
Activatable Object
Description : Using locks will slow down threaded code. Len Holgate demonstrates how an Activatable Object can reduce the time spent blocked. by Len Holgate
Category: [ Overload Journal #122 - August 2014 | Programming Topics ]
Description : Using locks will slow down threaded code. Len Holgate demonstrates how an Activatable Object can reduce the time spent blocked. by Len Holgate
Category: [ Overload Journal #122 - August 2014 | Programming Topics ]
KISSing SOLID Goodbye
Description : Can you remember what SOLID stands for? Chris Oldwood distills it down to two easy to remember principles. by Chris Oldwood
Category: [ Overload Journal #122 - August 2014 | Programming Topics | Design of applications and programs ]
Description : Can you remember what SOLID stands for? Chris Oldwood distills it down to two easy to remember principles. by Chris Oldwood
Category: [ Overload Journal #122 - August 2014 | Programming Topics | Design of applications and programs ]
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. by Seb Rose
Category: [ Overload Journal #122 - August 2014 | Programming Topics | Design of applications and programs ]
Description : Recently people have been arguing about the benefits and pitfalls if TDD. Seb Rose summarises the differing standpoints and presents his own. by Seb Rose
Category: [ Overload Journal #122 - August 2014 | Programming Topics | Design of applications and programs ]
Editorial: Very small or very far away:A sense of perspective
Description : A tension exists between being immersed in something and stepping back. Frances Buontempo considers the importance of taking a break. by Frances Buontempo
Category: [ Overload Journal #121 - June 2014 | Journal Editorial ]
Description : A tension exists between being immersed in something and stepping back. Frances Buontempo considers the importance of taking a break. by Frances Buontempo
Category: [ Overload Journal #121 - June 2014 | Journal Editorial ]