Advertisement
Membership
Login
ACCU Buttons
Programming Topics or Design of applications and programs or Overload Journal #79 - Jun 2007
Browse in : |
All
> Topics
> Programming All > Topics > Design All > Journals > Overload > 79 All of these categories |
- Options:
- View Article Map
- View Archives
An Open Question (or How I Learned To Stop Worrying And Love Public Wi-Fi)
Description : Vertices examines some of the dangers of using other people’s networks.
Category: [ Programming Topics | CVu Journal Vol 28, #1 - March 2016 ]
Description : Vertices examines some of the dangers of using other people’s networks.
Category: [ Programming Topics | CVu Journal Vol 28, #1 - March 2016 ]
An Inline-variant-visitor with C++ Concepts
Description : Concepts are abstract. Jonathan Coe and Andrew Sutton provide us with a concrete example of their use.
Category: [ Programming Topics | Overload Journal #129 - October 2015 ]
Description : Concepts are abstract. Jonathan Coe and Andrew Sutton provide us with a concrete example of their use.
Category: [ Programming Topics | Overload Journal #129 - October 2015 ]
Anatomy of a CLI Program written in C++
Description : Matthew Wilson dissects a small program to examine its gory details.
Category: [ Programming Topics | CVu Journal Vol 27, #4 - September2015 ]
Description : Matthew Wilson dissects a small program to examine its gory details.
Category: [ Programming Topics | CVu Journal Vol 27, #4 - September2015 ]
Are we nearly there yet? Refactoring C++
Description : Alan Griffiths evaluates two tools for developers with some simple use-cases.
Category: [ Programming Topics | CVu Journal Vol 27, #3 - July 2015 ]
Description : Alan Griffiths evaluates two tools for developers with some simple use-cases.
Category: [ Programming Topics | CVu Journal Vol 27, #3 - July 2015 ]
Alternatives to Singletons and Global Variables
Description : Global variables and Singletons are usually considered bad. Bob Schmidt summarises some alternatives.
Category: [ Programming Topics | Overload Journal #126 - April 2015 ]
Description : Global variables and Singletons are usually considered bad. Bob Schmidt summarises some alternatives.
Category: [ Programming Topics | Overload Journal #126 - April 2015 ]
Advice for the Young at Heart
Description : Pete Goodliffe offers sage advice, and asks you to do the same.
Category: [ Programming Topics | CVu Journal Vol 26, #6 - January 2015 ]
Description : Pete Goodliffe offers sage advice, and asks you to do the same.
Category: [ Programming Topics | CVu Journal Vol 26, #6 - January 2015 ]
Alternative Overloads
Description : How do you return a default value given a condition? Malcolm Noyes presents solutions using older and newer C++ techniques.
Category: [ Programming Topics | Overload Journal #123 - October 2014 ]
Description : How do you return a default value given a condition? Malcolm Noyes presents solutions using older and newer C++ techniques.
Category: [ Programming Topics | Overload Journal #123 - October 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 ]
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 ]
Automatic Navigation Mesh Generation in Configuration Space
Description : Walkable 3D environments can be automatically navigated. Stuart Golodetz demonstrates how navigation meshes achieve this.
Category: [ Programming Topics | Overload Journal #117 - October 2013 ]
Description : Walkable 3D environments can be automatically navigated. Stuart Golodetz demonstrates how navigation meshes achieve this.
Category: [ Programming Topics | Overload Journal #117 - October 2013 ]
Auto – a necessary evil? (Part 2)
Description : Should you declare (almost) everything auto? Roger Orr considers when auto is appropriate.
Category: [ Programming Topics | Overload Journal #116 - August 2013 ]
Description : Should you declare (almost) everything auto? Roger Orr considers when auto is appropriate.
Category: [ Programming Topics | Overload Journal #116 - August 2013 ]
Auto – A Necessary Evil?
Description : Superficially simple language features can be surprisingly complicated. Roger Orr explores a new one that is likely to be used widely.
Category: [ Programming Topics | Overload Journal #115 - June 2013 ]
Description : Superficially simple language features can be surprisingly complicated. Roger Orr explores a new one that is likely to be used widely.
Category: [ Programming Topics | Overload Journal #115 - June 2013 ]
A Model for Debug Complexity
Description : Debugging any program can be difficult. Sergey Ignatchenko and Dmytro Ivanchykhin develop a mathematical model for its complexity.
Category: [ Programming Topics | Overload Journal #114 - April 2013 ]
Description : Debugging any program can be difficult. Sergey Ignatchenko and Dmytro Ivanchykhin develop a mathematical model for its complexity.
Category: [ Programming Topics | Overload Journal #114 - April 2013 ]
‘No Bugs’ Top Five C++ Cooking Recipes
Description : Developers often have a few favourite tricks for solving problems. Sergey Ignatchenko shares his five top recipes.
Category: [ Programming Topics | Overload Journal #113 - February 2013 ]
Description : Developers often have a few favourite tricks for solving problems. Sergey Ignatchenko shares his five top recipes.
Category: [ Programming Topics | Overload Journal #113 - February 2013 ]
A DSEL for Addressing the Problems Posed by Parallel Architectures
Description : Programming parallel algorithms correctly is hard. Jason McGuiness and Colin Egan demonstrate how a C++ DESEL can make it simpler.
Category: [ Programming Topics | Overload Journal #111 - October 2012 ]
Description : Programming parallel algorithms correctly is hard. Jason McGuiness and Colin Egan demonstrate how a C++ DESEL can make it simpler.
Category: [ Programming Topics | Overload Journal #111 - October 2012 ]
All About XOR
Description : Boolean operators are the bedrock of computer logic. Michael Lewin investigates a common one and shows there’s more to it than meets the eye.
Category: [ Programming Topics | Overload Journal #109 - June 2012 ]
Description : Boolean operators are the bedrock of computer logic. Michael Lewin investigates a common one and shows there’s more to it than meets the eye.
Category: [ Programming Topics | Overload Journal #109 - June 2012 ]
Are “Safe†Computer Systems Possible?
Source : Generated via JPG, Google OCR, pandoc markdown from scanned journal
Category: [ Programming Topics | Overload Journal #5 - Sep 1994 ]
Source : Generated via JPG, Google OCR, pandoc markdown from scanned journal
Category: [ Programming Topics | Overload Journal #5 - Sep 1994 ]
A Practical Introduction to Erlang
Description : The future of massively parallel hardware will need good language support. Alexander Demin takes a look at an unexpected approach.
Category: [ Programming Topics | Overload Journal #107 - February 2012 ]
Description : The future of massively parallel hardware will need good language support. Alexander Demin takes a look at an unexpected approach.
Category: [ Programming Topics | Overload Journal #107 - February 2012 ]
An Introduction to Test Driven Development
Description : TDD is too often thought to be all about Unit Tests. Paul Grenyer works through an example to show the bigger picture.
Category: [ Programming Topics | Overload Journal #104 - August 2011 ]
Description : TDD is too often thought to be all about Unit Tests. Paul Grenyer works through an example to show the bigger picture.
Category: [ Programming Topics | Overload Journal #104 - August 2011 ]
An introduction to ADVSYS
Description : An introduction to this fascinating adventure writing system.
Category: [ Programming Topics | CVu Journal Vol 1, #1 - Oct 1987 ]
Description : An introduction to this fascinating adventure writing system.
Category: [ Programming Topics | CVu Journal Vol 1, #1 - Oct 1987 ]