Advertisement
Membership
Login
ACCU Buttons
Programming Topics or Overload Journal #39 - Sep 2000
Browse in : |
All
> Topics
> Programming All > Journals > Overload > 39 All of these categories |
- Options:
- View Article Map
- View Archives
Code Review - A Big Number Class
Category: [ Programming Topics | CVu Journal Vol 11, #4 - Jun 1999 ]
Category: [ Programming Topics | CVu Journal Vol 11, #4 - Jun 1999 ]
Code Rot
Description : Maintaining code is vital to keep it working. Tom Guest explores what happens when you neglect it.
Category: [ Programming Topics | Overload Journal #92 - August 2009 ]
Description : Maintaining code is vital to keep it working. Tom Guest explores what happens when you neglect it.
Category: [ Programming Topics | Overload Journal #92 - August 2009 ]
Combining the STL with SAX and XPath for Effective XML
Parsing
Category: [ Programming Topics | CVu Journal Vol 15, #5 - Oct 2003 ]
Category: [ Programming Topics | CVu Journal Vol 15, #5 - Oct 2003 ]
Come Code With Me
Description : Alan Griffiths outlines an Open Source project and invites contributions.
Category: [ Programming Topics | CVu Journal Vol 28, #2 - May 2016 ]
Description : Alan Griffiths outlines an Open Source project and invites contributions.
Category: [ Programming Topics | CVu Journal Vol 28, #2 - May 2016 ]
Comment on “Problem 11”
Description :
Category: [ Programming Topics | CVu Journal Vol 16, #1 - Feb 2004 ]
Description :
The first step here in finding problems in the code is to identify the problem the code is trying to solve. The discussion in the C Vu article is basically about curiosities in the way in which the C++ standard library std::istream is defined, but I will make the perhaps unwarranted assumption that what the problem the code is really about is not the uses of std::istream, but rather, more generally, how to write a read routine that can effectively and safely capture data from an input stream. Actually as the first problem below illustrates neither of these issues can be effectively addressed without the other.
Category: [ Programming Topics | CVu Journal Vol 16, #1 - Feb 2004 ]
Comment Only What The Code Cannot Say
Description : Comments can help or hinder. Kevlin Henney assesses when to avoid them.
Category: [ Programming Topics | Overload Journal #157 - June 2020 ]
Description : Comments can help or hinder. Kevlin Henney assesses when to avoid them.
Category: [ Programming Topics | Overload Journal #157 - June 2020 ]
Commenting programs, how and why
Description : A letter has flooded in from Colin Masterson, the author of our series on structured programming:
Category: [ Programming Topics | CVu Journal Vol 1, #2 - Dec 1987 | Letters to the Editor ]
Description : A letter has flooded in from Colin Masterson, the author of our series on structured programming:
Category: [ Programming Topics | CVu Journal Vol 1, #2 - Dec 1987 | Letters to the Editor ]
Comments Considered Evil
Description : We are taught that adding comments to code is a good thing and adds value. In practice this value is seldom, if ever, realised. Mark Easterbrook makes the case for a better way.
Category: [ Programming Topics | Overload Journal #73 - Jun 2006 ]
Description : We are taught that adding comments to code is a good thing and adds value. In practice this value is seldom, if ever, realised. Mark Easterbrook makes the case for a better way.
Category: [ Programming Topics | Overload Journal #73 - Jun 2006 ]
Comments Considered Good
Description : In our last issue, we offered the case against comments; in this issue, William Fishbourne responds in defence. He argues that it is not the practice of commenting that it is evil, it is the thoughtless commenter.
Category: [ Programming Topics | Overload Journal #74 - Aug 2006 ]
Description : In our last issue, we offered the case against comments; in this issue, William Fishbourne responds in defence. He argues that it is not the practice of commenting that it is evil, it is the thoughtless commenter.
Category: [ Programming Topics | Overload Journal #74 - Aug 2006 ]
COMMENTS- A Personal Perspective
Category: [ Programming Topics | CVu Journal Vol 11, #5 - Aug 1999 ]
Category: [ Programming Topics | CVu Journal Vol 11, #5 - Aug 1999 ]
Commit Checklist
Description : Chris Oldwood goes through the motions of version control.
Category: [ Programming Topics | CVu Journal Vol 28, #5 - November 2016 ]
Description : Chris Oldwood goes through the motions of version control.
Category: [ Programming Topics | CVu Journal Vol 28, #5 - November 2016 ]
Compile Time Assertions in C Revisited
Category: [ Programming Topics | CVu Journal Vol 11, #5 - Aug 1999 ]
Category: [ Programming Topics | CVu Journal Vol 11, #5 - Aug 1999 ]
Compile Time Assertions in C Revisited
Category: [ Programming Topics | CVu Journal Vol 11, #4 - Jun 1999 ]
Category: [ Programming Topics | CVu Journal Vol 11, #4 - Jun 1999 ]
Compile Time Indirection - An Unusual Template
Technique
Category: [ Programming Topics | Overload Journal #42 - Apr 2001 ]
Category: [ Programming Topics | Overload Journal #42 - Apr 2001 ]
Compile-time Data Structures in C++17: Part 1, Set of Types
Description : Compile time data structures can speed things up at runtime. Bronek Kozicki details an implementation of a compile time set.
Category: [ Programming Topics | Overload Journal #146 - August 2018 ]
Description : Compile time data structures can speed things up at runtime. Bronek Kozicki details an implementation of a compile time set.
Category: [ Programming Topics | Overload Journal #146 - August 2018 ]
Compile-time Data Structures in C++17: Part 2, Map of Types
Description : Compile time type selection allows static polymorphsim. Bronek Kozicki details an implementation of a compile time map.
Category: [ Programming Topics | Overload Journal #147 - October 2018 ]
Description : Compile time type selection allows static polymorphsim. Bronek Kozicki details an implementation of a compile time map.
Category: [ Programming Topics | Overload Journal #147 - October 2018 ]
[
C and C++
| Development Techniques
| Programming
]
Compilers and Compiler Generators
Description : This site provides an on-line edition of the text and other material from my book "Compilers and Compiler Generators - an introduction with C++", published in 1997 by International Thomson Computer Press.
Added on : 10 February 2006 23:58:19 +00:00
Description : This site provides an on-line edition of the text and other material from my book "Compilers and Compiler Generators - an introduction with C++", published in 1997 by International Thomson Computer Press.
Added on : 10 February 2006 23:58:19 +00:00
Compiling a Static Web Site Using the C Preprocessor
Description : Sometimes the obvious way is still too complex. Sergey Ignatchenko relates how ‘No Bugs’ Bunny found an unexpectedly simple approach to creating a web site.
Category: [ Programming Topics | Overload Journal #108 - April 2012 ]
Description : Sometimes the obvious way is still too complex. Sergey Ignatchenko relates how ‘No Bugs’ Bunny found an unexpectedly simple approach to creating a web site.
Category: [ Programming Topics | Overload Journal #108 - April 2012 ]
Complex Logic in the Member Initialiser List
Description : The syntactic form of the member initialiser list restricts the logic that it contains. Cassio Neri presents some techniques to overcome these constraints.
Category: [ Programming Topics | Overload Journal #112 - December 2012 ]
Description : The syntactic form of the member initialiser list restricts the logic that it contains. Cassio Neri presents some techniques to overcome these constraints.
Category: [ Programming Topics | Overload Journal #112 - December 2012 ]