User mxg - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T03:29:34Z http://stackoverflow.com/feeds/user/11157 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/72406/what-development-book-made-the-most-impact-on-you-as-a-developer/72771#72771 31 Answer by mxg for What development book made the most impact on you as a developer? mxg 2008-09-16T14:16:51Z 2009-11-26T06:10:11Z <p><a href="http://rads.stackoverflow.com/amzn/click/0465026567" rel="nofollow">Godel, Escher, Bach: An Eternal Golden Braid</a> (A Metaphorical Fugue on Minds and Machines in the Spirit of Lewis Carroll) by Douglas Hofstadter.</p> <p>OK, this isn't a programming book, but it was a big influence on me in my career as a software engineer. When I first read it way back when it got me excited about math, algorithms, and abstract thinking. Before reading this I had been toying with going back to school to finish my degree. By chance I stumbled upon this book while browsing in a book store. After reading this I knew I wanted to learn more and enrolled, finished my degree, and have been gainfully employed writing various kinds of code ever since.</p> http://stackoverflow.com/questions/313519/whats-the-coolest-machine-youve-ever-worked-on 15 What's the coolest machine you've ever worked on? mxg 2008-11-24T06:06:22Z 2009-10-08T21:55:53Z <p>What's the most exotic, coolest, unique, or interesting machine you've worked on? Most of us work on machines with x86 architectures using some Windows or Linux variant. I'm sure there are those of you out there who are working on or have worked on machines with experimental architecures, or operating systems. Maybe you worked on a machine that has some sigificance in the history of computing. I'd be interested to hear about it. I'm sure others reading SO will as well.</p> <p><hr /></p> <p>EDIT: I appreciate all of you who took some time to talk about their experiences with interesting or unusual machines. I enjoyed reading your answers. Although it wasn't my intent to get nostalgic, I see that theme amongst the responses.</p> http://stackoverflow.com/questions/599171/what-degree-should-i-choose-to-become-a-better-programmer-and-why/599240#599240 2 Answer by mxg for What degree should I choose to become a better programmer, and why? mxg 2009-03-01T04:09:20Z 2009-03-01T04:09:20Z <p>Computer engineering, software engineering, computer science, and mathematics are all degress that are highly regarded amongst employers that hire programmers. A strong ability to solve complex problems is paramount, whether or not you have a degree. To get one of those degrees you will have to demonstrate problem solving abilities. Creativity is also important. It's axiomatic that the problems you will see on the job are not the same as the ones you see in school. You will be asked to come up with creative solutions to those problems. This is an intangible that's hard to quantify. </p> <p>Whatever educational path you take, make sure you learn to write well. Those that can express their ideas clearly will go farther than those that cannot, no matter how good the ideas are.</p> http://stackoverflow.com/questions/599212/professional-path-for-beginner-programmer/599233#599233 2 Answer by mxg for Professional Path for Beginner Programmer mxg 2009-03-01T04:02:37Z 2009-03-01T04:02:37Z <p>Being a professional programmer is not just about learning any particular language. It's about understanding concepts that are language independent. Programming languages are media for implementing those concepts. My recommendation would be to go to your local bookstore or library (preferably one with a good technical section, such as at a college or university) and browse the introductory computer science books. Look at books about algorithms and data structures or object-oriented probramming. If those look interesting you may want to enroll in an intro CS class at your local college or university.</p> <p>To build things that you would learn from a CS book or class you would probably find Java or C++ good languages to learn.</p> http://stackoverflow.com/questions/366317/good-data-structures-text-book/366882#366882 1 Answer by mxg for Good Data Structures text book mxg 2008-12-14T19:30:33Z 2008-12-14T19:30:33Z <p><a href="http://rads.stackoverflow.com/amzn/click/0201000237" rel="nofollow">Data Structures and Algorithms</a> by Aho, Hopcroft, and Ullman. A classic text on the subject.</p> http://stackoverflow.com/questions/354019/how-to-model-this-in-oo/354084#354084 2 Answer by mxg for How to model this in OO mxg 2008-12-09T20:19:11Z 2008-12-09T20:19:11Z <p>From an OO perspective, HAS-A relationships solve this problem better than IS-A relationships in this case. A book HAS-A publisher (1:1) and a publisher HAS-A list of books that it publishes (1:many). Create a Book class that contains a reference to a Publisher and a Publisher class that has a list of references to Books. Further, the Publisher HAS-A string which you can use to locate a specific publisher</p> http://stackoverflow.com/questions/353380/what-is-a-line-of-code/354066#354066 1 Answer by mxg for What is a line of code? mxg 2008-12-09T20:12:06Z 2008-12-09T20:12:06Z <p>The notion of LOC is a attempt to quantify a volume of code. As pointed out in other answers, it doesn't matter what you specifically call a line of code as long as you are consistent. Intuitively, it seems that a 10 line program smaller than an 100 line program which is smaller than a 1000 line program and so on. You would expect that it takes less time to create, deubg, and maintain a 100 line program than a 1000 line program. Informally at least, you can use LOC to give a rough feel for the amount of work required to create, debug, and maintain a program of a certain size.</p> <p>Of course, there are places where this doesn't hold up. For example, a complex algorithm rendered in 1000 lines may be much harder to develop than, say, a simple database program that consumes 2500 lines.</p> <p>So, LOC is a coarse-grained measure of code volume that enables managers to get a reasonable understading of the size of a problem.</p> http://stackoverflow.com/questions/314152/how-to-declare-define-a-class-with-template-template-parameters-without-using-an/314217#314217 0 Answer by mxg for How to declare/define a class with template template parameters without using an extra template parameter mxg 2008-11-24T14:11:48Z 2008-11-24T14:11:48Z <p>You can nest parameters. That is, the value of a parameter can itself be parameterized.</p> <pre><code>template &lt;typename X&gt; struct A { X t; }; template &lt;typename C&gt; struct B { C c; }; int main() { B&lt; A&lt;int&gt; &gt; b; return 0; } </code></pre> <p>In this example, the declaration of <code>b</code> in <code>main()</code> creates a specialization of <code>A</code> using <code>int</code> as the parameter, then it creates a specialization of <code>B</code> using <code>A&lt;int&gt;</code> as the parameter. Thus, in the specialization of <code>B</code>, <code>C</code> is <code>A&lt;int&gt;</code>.</p> http://stackoverflow.com/questions/312419/language-features-you-should-never-use/313508#313508 2 Answer by mxg for Language features you should never use? mxg 2008-11-24T05:49:16Z 2008-11-24T05:49:16Z <p>Never rely on the compiler to initialize a variable. For example, never assume that integers are initialized to 0 or pointers to null. It may work fine in the current compiler you are using but could work differently when you port your code to another compiler. And, when initialization doesn't work as you expect, it will likely create a subtle and difficult to detect bug.</p> http://stackoverflow.com/questions/274785/best-way-to-generate-both-free-demo-and-commercial-apps-from-the-same-source-co/274956#274956 7 Answer by mxg for Best way to generate both "free/demo" and commercial apps from the same source code? mxg 2008-11-08T17:22:50Z 2008-11-08T17:22:50Z <p>Make judicious use of conditional compilation. I don't know what language you are working in, but in C/C++ conditionals compilation is done using the macro preprocessor and ifdefs. You would write code something like:</p> <pre><code>#ifdef FULL_APP // unlimited size #define SIZE -1 #else #define SIZE 100 #endif </code></pre> <p>When you build the program you supply the appopriate macro definitions on the compiler command line.</p> <pre><code>gcc program.cc -o program.o -DFULL_APP </code></pre> <p>You can use conditional compilation and the macro preprocessor in a variety of ways to turn on or off various features in the executable or modify other aspects of your program. </p> http://stackoverflow.com/questions/233903/how-can-i-convince-my-boss-to-buy-books-for-programmers/235614#235614 0 Answer by mxg for How can I convince my boss to buy books for programmers? mxg 2008-10-24T23:43:39Z 2008-10-24T23:43:39Z <p>It's very simple: How many hours would it take you to learn the same thing without the book? How many hours with the book? If the number of hours with the book is less than without, then the cost of the book is paid for by you consuming less hours to complete a task, since you don't work for free. Even more simply: your time is costs more than the book does. If the buying the book saves time everyone wins.</p> http://stackoverflow.com/questions/170208/must-have-books-on-your-bookshelf/170496#170496 2 Answer by mxg for "Must Have" Books on Your Bookshelf mxg 2008-10-04T15:15:29Z 2008-10-22T23:34:25Z <p>Chicago Manual of Style. I use it frequently. You gotta be able to write about your designs and your code.</p> <p>(P.S. "You gotta" is probably not an acceptable construct in CMS.)</p> http://stackoverflow.com/questions/220752/what-is-the-c-memory-model/220869#220869 -2 Answer by mxg for What is the C++ memory model? mxg 2008-10-21T05:38:23Z 2008-10-21T05:38:23Z <p>In a nutshell, the C++ memory model consists of...</p> <ul> <li><p>A stack that grows downward -- that is, when you push a stack frame the stack pointer has a value less that it was</p></li> <li><p>A heap that grows upward, that is the end address of the newly allocated memory is greater it was before the memory. You allocate memory in the heap using malloc() or new. If there is not enough memory available in the heap then malloc (or new) calls the system function brk() sbrk() to increase the size of the heap. If the call to brk() or sbrk() fails then malloc or new fails with an out of memory exception.</p></li> </ul> <p>You should never need to care whether the stack or heap grow down or up and in some systems these may operate the other way around. Just consider that the stack and heap grow inwards from the ends of the address space.</p> <ul> <li><p>A memory allocator, malloc, which allocates memory in terms of 8-bit bytes. New also allocates memory, but the amount of memory that it allocates is based on the size of the object being newed.</p></li> <li><p>Text space which contains the executable code. Text resides below the heap. You cannot alter the text space during execution</p></li> </ul> <p>A program may have other special purpose sections below text.</p> <p>You can see how a program is organized statically (before it's loaded) using objdump on linux systems.</p> <p>I noticed that although you didn't mention it in your question, "concurrency" is one of the keywords you assigned to this question. Threading systems allcoate additional thread space on the heap for each thread and then manage the stack pointer to switch between threads.</p> <p>There are a lot more details, many of which are specific to particluar hardware, OSes, or threading system, but that's the essential idea.</p> http://stackoverflow.com/questions/179764/an-open-source-license-that-doesnt-let-users-compile-the-application-unless-they/203940#203940 1 Answer by mxg for An open-source license that doesn't let users compile the application unless they've purchased it? mxg 2008-10-15T07:23:47Z 2008-10-15T07:23:47Z <p>You can't ship code with a license and then tell people that you will not enforce the license. That'asking them to take an unacceptable legal risk. What's to prevent you from changing your mind? You should be up-front with the terms under which you are licensing the code.</p> <p>The problem is that once you let source code out the door, it's very difficult to keep track of where it lands. No matter how you license it unscrupulous people may not do with it what you prefer.</p> <p>One approach is to provide <em>most</em>, but not all of the code under a suitable OSI-compliant license (see <a href="http://www.opensource.org/licenses" rel="nofollow">opensource.org</a> for a list of current OSI approved licenses). Some low-level library or kernel you deliver in object code form and sell it or whatever. Without the compiled kernel the code won't run. Users can still view the interesting parts of the code, they can modify it if they want. They could even redistribute it, but it would not work without the compiled, low-level kernel. The risk is someone could reverse engineer your kernel, but with a little cleverness you can make that hard. You can also deliver the kernel with a EULA that prohibits reverse engineering. Thus, you can take legal action against someone who does this. I think this provides you what you are looking for -- the ability to share code, but disallow others from turning it into a product for sale.</p> <p>FYI: IANAL, these are just my personal thoughts on the matter.</p> http://stackoverflow.com/questions/203849/changing-an-open-source-licence/203896#203896 2 Answer by mxg for Changing an open source licence. mxg 2008-10-15T06:50:54Z 2008-10-15T06:50:54Z <p>You can't un-ring a bell. Once the code is released you can't ask people to return it (or remove it from their systems). Besides, you have no way of auditing who has the code or where they may have stored it. As others have noted, your main "out" is that neither you nor your company is under any further obligation to continue to relesae new versions, upgrades, or ports in open source form. </p> <p>As someone who has been involved in commercial open source development for quite some time I can tell you that the best way to get your manager to agree to releasing code in open source form is to make a business case for it. How will releasing your product in open source form improve the fortunes of your company? Will it draw sales of other revenue generating products? Will it entice people to your website? Will it cause your competitor(s) grief? If you can show that there is an advantage for your company in terms of direct or indirect revenue or some other relevant metric then your manager will likely give you permission. If he does give you permission you are not entirely off the hook yet. After the open source code is released you must gather statistics to show that your strategy is working -- i.e. more eyeballs are viewing your website, or more orders are hitting the books. If those numbers are favorable, then when it's time to release 2.0 your mananger will no doubt help you improve or expand your open source program. </p> http://stackoverflow.com/questions/193864/pros-cons-of-putting-all-code-in-header-files-in-c/194098#194098 2 Answer by mxg for Pros & Cons of putting all code in Header files in C++ ? mxg 2008-10-11T14:06:20Z 2008-10-11T14:06:20Z <p>I like to think about separation of .h and .cpp files in terms of interfaces and implementations. The .h files contain the interface descriptions to one more classes and the .cpp files contain the implementations. Sometimes there are practical issues or clarity that prevent a completely clean separation, but that's where I start. For example, small accessor functions I typically code inline in the class declaration for clarity. Larger functions are coded in the .cpp file</p> <p>In any case, don't let compilation time dictate how you will structure your program. Better to have a program that's readable and maintainable over one that compiles in one 1.5 mintues instead of 2 minutes.</p> http://stackoverflow.com/questions/193895/should-programmers-take-it-help-desk-positions/194088#194088 8 Answer by mxg for Should programmers take IT help desk positions? mxg 2008-10-11T13:53:08Z 2008-10-11T13:53:08Z <p>When I'm hiring new college graduates I much prefer candidates with some relevant computer-related experience over those who delivered pizza or waited tables while they were in school. Nothing wrong with waiting tables or delivering pizza, but programming/IT skills are in sufficient demand that a CS student should be able to find a part time job that enables him to exercise his newly acquired skills. Having that experience while they were in school tells me they are serious about their career choice and they are more likely to hit the ground running. </p> <p>Should you take an IT position you will see that users quite frequently (attempt to) do amazingly boneheaded things with their computer. You will learn to see that these are not dumb people, rather they don't have the same technical perspective as you do, nor should they since they see the computer as a tool to get their job done, not as an end in itself. This is a tremendously valuable lesson that will serve you for your entire career. When you graduate, land a development position, and begin developing software, you will be able to apply this lesson in software design decisions.</p> <p>Take the job. At the very least you will get paid for playing with computers.</p> http://stackoverflow.com/questions/176989/do-you-use-null-or-0-zero-for-pointers-in-c/177009#177009 1 Answer by mxg for Do you use NULL or 0 (zero) for pointers in C++? mxg 2008-10-07T02:22:23Z 2008-10-07T02:22:23Z <p>I once worked on a machine where 0 was a valid address and NULL was defined as a special octal value. On that machine (0 != NULL), so code such as</p> <p><code> char *p;</p> <p>...</p> <p>if (p) { ... } </code></p> <p>would not work as you expect. You HAD to write </p> <p><code> if (p != NULL) { ... } </code></p> <p>Although I believe most compilers define NULL as 0 these days I still remember the lesson from those years ago: NULL is not necessarily 0.</p> http://stackoverflow.com/questions/174044/are-there-any-hardware-books-or-articles-that-can-help-with-programming/174245#174245 1 Answer by mxg for Are there any hardware books or articles that can help with programming? mxg 2008-10-06T13:17:28Z 2008-10-06T13:17:28Z <p>Anything written my M. Morris Mano will help you out. In particular, "Computer System Architecture." In that book he develops hardware concepts and shows how hardware and software meet.</p> http://stackoverflow.com/questions/170259/should-programmers-be-able-to-write-clearly/170518#170518 2 Answer by mxg for Should programmers be able to write clearly? mxg 2008-10-04T15:26:54Z 2008-10-04T15:26:54Z <p>Communication is essential in any profession, software engineering and computer programming are no exceptions. It doesn't matter how brilliant your idea is if you cannot effectively communicate it to your peers, managers, and customers. You can have as much influence with well written text as with well written code.</p> <p>A good example that I'm sure is familiar to most people reading this is the famous K&amp;R book. In my opinion, one of the reasons that C became such a prominent programming language is because Kernighan and Ritchie produced a well written book. Had they produced a manual that was typical of the style of compiler manuals at the time instead of an easy to follow, succinct, and compete textbook I doubt C would have become as dominant as it has.</p> http://stackoverflow.com/questions/156701/dealing-with-global-data-structures-in-an-object-oriented-world/163805#163805 0 Answer by mxg for Dealing with "global" data structures in an object-oriented world mxg 2008-10-02T18:21:05Z 2008-10-02T18:21:05Z <p>I prefer using the singleton pattern as described in the GoF book for these situations. A singleton is not the same as either of the three options described in the question. The constructor is private (or protected) so that it cannot be used just anywhere. You use a get() function (or whatever you prefer to call it) to obtain an instance. However, the architecture of the singleton class guarantees that each call to get() returns the same instance.</p> http://stackoverflow.com/questions/163600/when-not-to-comment-code/163617#163617 0 Answer by mxg for When NOT to comment code mxg 2008-10-02T17:43:26Z 2008-10-02T17:43:26Z <p>Writing good comments is an art just like writing good code. When too many comments obfuscate the code itself or when the comments duplicate the code then it may be time to back off a little.</p> http://stackoverflow.com/questions/155109/whats-a-good-source-to-learn-about-qemu 3 What's a good source to learn about QEMU? mxg 2008-09-30T21:10:32Z 2008-10-02T06:39:53Z <p>What book or website would you recommend to learn about QEMU? I'd like to see some usage examples as well as how to use the APIs.</p> http://stackoverflow.com/questions/157163/how-to-do-something-with-bash-when-a-text-line-appear-to-a-file/159238#159238 0 Answer by mxg for How to do something with bash when a text line appear to a file mxg 2008-10-01T19:13:18Z 2008-10-01T19:13:18Z <p>I like matli's answer. Bruno De Fraine's answer is also good in that it uses only shell ccommands, not other programs (like awk). It suffers from the problem that the entire line must match the magic string. It's not clear from the question that's part of the requirment.</p> <p>I would modify it a tiny bit to deal with the "as soon as" clause in the original question</p> <pre><code>logfile_generator | tee logfile.out | nawk '/pattern/ {system("echo do something here")}' </code></pre> <p>where logfile_generator is the program that is generating the log file in the first place. This modification executes the "something" as soon as the magic string is located.</p> http://stackoverflow.com/questions/155456/how-do-you-know-how-much-design-is-too-much/155922#155922 0 Answer by mxg for How do you know how much design is too much? mxg 2008-10-01T01:58:40Z 2008-10-01T01:58:40Z <ol> <li><p>Requirements. Do you have a good requirements doc, or at least a reasonable one? If not, start there. Sketch out the general requirements for the system.</p></li> <li><p>Use models. Define the use models -- what the things are that users will manipulate and how they will manipulate them. Compare with requirements. This may be an iterative process between identifying requirements and defining use models.</p></li> <li><p>Objects. Identify the objects necessary to implement the use model(s).</p></li> <li><p>Object relationships. Identify the relationships between the use model objects. Define other "helper" objects necessary to glue everything together. Maybe even sketch out a UML diagram to make the whole thing a bit more concrete. I don't necessarily recommend a full system UMLdiagram, building that can be a bit onerous. However, one that shows the key objects and their relationships is important.</p></li> <li><p>Now you can go to classes or modules, depending on the language you are coding in. At this point you are treading the thin line between designing and coding. However, a little detail at this point can help you validate the design work you've done so far.</p></li> </ol> <p>The main point is that the planning is more important than the plan. You need to go through this excercise to build a mental model you can reason about. The written text and diagrams may be less important -- unless your manager requires them .</p> http://stackoverflow.com/questions/154897/what-do-you-do-if-you-cannot-resolve-a-bug/154996#154996 7 Answer by mxg for What do you do if you cannot resolve a bug? mxg 2008-09-30T20:41:47Z 2008-09-30T20:41:47Z <p>I do a number of different things:</p> <ul> <li><p>throw out all my assumptions and start from scratch. Remember, a bug exists because something which appears correct is actually wrong. Even those lines or functions or classes that you are absolutely certain are correct may be incorrect. Until you can convince yourself of the correctness you can't assume anything is right.</p></li> <li><p>keep putting in print statements and assert statements to eliminate things and allow me to reform new assumptions.</p></li> <li><p>step through code in the debugger if the problem is a control flow problem. Don't step over functions. Step in them and go through all the detail of their execution to confirm they are working right. Confirm the arguments and return values.</p></li> <li><p>If a line or function or class is suspect but I can't prove it in situ, then write a small test case that does what you think the problem construct does. This may locate the problem or give some insights as to where to look next.</p></li> <li><p>stop for the day. It's amazing what kind of offline processing your brain will do overnight. Often the answer or a key insight will appear the next day while I'm doing something mindless like showering or driving.</p></li> </ul> http://stackoverflow.com/questions/154802/priority-of-c-operators-and/154827#154827 0 Answer by mxg for Priority of C++ operators "&" and "->" mxg 2008-09-30T20:17:14Z 2008-09-30T20:17:14Z <p>-> has a higher priority than &amp; (address of). So your expression would be evalutated as &amp;(row->count)</p> http://stackoverflow.com/questions/154577/polymorphism-vs-overriding-vs-overloading/154607#154607 3 Answer by mxg for Polymorphism vs Overriding vs Overloading mxg 2008-09-30T19:36:05Z 2008-09-30T19:36:05Z <p>Polymorphism is the ability for an object to appear in multiple forms. This involves using inheritance and virtual functions to build a family of objects which can be interchanged. The base class contains the prototypes of the virtual functions, possibly unimplemented or with default implementations as the application dictates, and the various derived classes each implements them differently to affect different behaviors.</p> http://stackoverflow.com/questions/108201/common-lisp-or-scheme/108247#108247 2 Answer by mxg for Common Lisp or Scheme? mxg 2008-09-20T14:08:14Z 2008-09-20T14:08:14Z <p>Scheme. The core language is small. The "define" operator makes defining functions and variables very clean. It supports tail recursion. You can build object oriented programs in Scheme. One of the best computer science textbooks ever written is "Structure and Interpretation of Computer Programs" by Abelson and Sussman. References to this book have appeared quite a number of times in answers to various Stackoverflow questions.</p> http://stackoverflow.com/questions/106298/stack-overflow-problem/108173#108173 0 Answer by mxg for Stack overflow problem! mxg 2008-09-20T13:38:40Z 2008-09-20T13:38:40Z <p>You are unlikely to run into a stack overflow with unthreaded compiled C unless you do something particularly egregious like have runaway recursion or a cosmic memory leak. However, your simulator probably has a threading package which will impose stack size limits. When you start a new thread it will allocate a chunk of memory for the stack for that thread. Likely, there is a parameter you can set somewhere that establishes the the default stack size, or there may be a way to grow the stack dynamically. For example, pthreads has a function pthread_attr_setstacksize() which you call prior to starting a new thread to set its size. Your simulator may or may not be using pthreads. Consult your simulator reference documentation.</p> http://stackoverflow.com/questions/305217/file-handling-in-c/309057#309057 Comment by mxg on File handling in c mxg 2008-11-29T18:00:48Z 2008-11-29T18:00:48Z I like this -- it's a good pointer exercise. Every student should be able to complete this exercise. http://stackoverflow.com/questions/220752/what-is-the-c-memory-model/220869#220869 Comment by mxg on What is the C++ memory model? mxg 2008-10-21T22:34:09Z 2008-10-21T22:34:09Z You are correct. Possibly I didn't write that clearly, but that's what I said. http://stackoverflow.com/questions/195520/what-is-spaghetti-code/195559#195559 Comment by mxg on What is spaghetti code? mxg 2008-10-12T15:19:03Z 2008-10-12T15:19:03Z I agree with BKB -- use of gotos by itself does not constitute spaghetti code. http://stackoverflow.com/questions/176989/do-you-use-null-or-0-zero-for-pointers-in-c/177009#177009 Comment by mxg on Do you use NULL or 0 (zero) for pointers in C++? mxg 2008-10-08T22:42:48Z 2008-10-08T22:42:48Z Yes, you are right. This was in mid-80s before ANSI produced a C standard. There was no such thing as compliance then and compiler writers were free to interpret the language as they saw fit. That's why a standard was necessary. http://stackoverflow.com/questions/171301/whats-the-fastest-way-to-divide-an-integer-by-3/171320#171320 Comment by mxg on What's the fastest way to divide an integer by 3? mxg 2008-10-05T04:55:55Z 2008-10-05T04:55:55Z The most straightforward way is usually the best, isn't it? http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/114386#114386 Comment by mxg on What are Code Smells? What is the best way to correct them? mxg 2008-10-04T15:50:15Z 2008-10-04T15:50:15Z static variables == bad. Singletons == good. Singletons can be managed to be thread-safe and namespace-safe, two of the biggest problems with statics http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/114669#114669 Comment by mxg on What are Code Smells? What is the best way to correct them? mxg 2008-10-04T15:48:36Z 2008-10-04T15:48:36Z A friend of mine once said &quot;Premature optimization is the root of all evil&quot; I believe it's a true statement. http://stackoverflow.com/questions/158769/best-books-to-learn-about-design/158820#158820 Comment by mxg on Best books to learn about design mxg 2008-10-01T19:15:48Z 2008-10-01T19:15:48Z A great book. Everyone involved in designing anything should read it.