User - Stack Overflowmost recent 30 from stackoverflow.com2009-12-09T22:13:11Zhttp://stackoverflow.com/feeds/user/19104http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/534311/examples-of-modern-c-in-action34Examples of "modern c++" in action?joeld422009-02-10T21:34:38Z2009-10-23T19:32:04Z
<p><strong>For new and completely revised tricks and dark corners of STL go here:</strong> <a href="http://stackoverflow.com/questions/1596139/hidden-features-and-dark-corners-of-stl">Hidden Features and Dark Corners of STL</a></p>
<p>I've been using more "modern" c++ constructs for a while, but kind of superficially and not everywhere. I'm looking for open source projects to study that are good examples of Modern C++ and STL usage.</p>
<p>Things like what is suggested in Meyer's "Effective STL", such as trying to avoid for loops and replace them with more functional constructs, using boost::bind and boost::function, etc. These still feel a little unnatural to me, and when I have to get something done fast and working, I tend to drop back to libc and string.h (you can have my strtok when you pry it from my cold, dead, hands). </p>
<p>However, I've also had the positive experience of finding what would be a drastic change simplified because I've used these constructs, or being able to implement something with just a few lines of code because I had the right operators and functors lying around. In addition, I've recently been paying more attention to concurrency, and so this is becoming even more important to me. </p>
<p>Can you recommend some examples of well-written open source projects that make heavy use of the STL and other modern c++ techniques that I could study? I'm particularly interested in application code, browsing the boost sources has been helpful but it's by necessity very general because it's library code. </p>
<p>I'm interested in medium sized to larger projects, at least a few tens of thousands of lines. It's pretty easy to find examples that are a few hundred lines long but that's not too helpful. </p>
<p>Thank you.</p>
http://stackoverflow.com/questions/1216002/fractal-encryption/1236519#12365195Answer by joeld42 for Fractal Encryptionjoeld422009-08-06T01:18:50Z2009-08-06T01:18:50Z<p>I've heard of this approach. But it's much more of a toy than a real world algorithm:</p>
<p>You use a window of coordinates of the mandelbrot set as a "pad", xoring your input or something, and thus the coordinates of the window (and the spacing of your samples) become your "password". If you choose a very deep window within the set, you will need very many iterations to evaluate and it is, in theory, difficult to brute force this. </p>
<p>Watch out for large bands of solid numbers.. perhaps a run-length encoded mandlebrot.</p>
<p>I guess someone thinks this might be "quantum proof" because it's iterative, you can't count how many iterations it will take for a location on the mandlebrot set to converge without actually iterating. I dunno if that's true or not.</p>
<p>However, I don't think there's any advantage to doing this (besides calling it "fractal"), and there's tons of disadvantages and opportunities to create vulnerablities. You'd be much better off using a well studied public/private key encryption algorithm. </p>
http://stackoverflow.com/questions/369399/mentor-a-senior-programmer-or-colleague-without-insulting/369719#3697192Answer by joeld42 for "Mentor" a senior programmer or colleague without insultingjoeld422008-12-15T21:08:35Z2008-12-15T21:08:35Z<p>You do it by example. If you can find a way to do so, volunteer to work on co-developing a project with the other person. Agree on API's, review each other's code, pass code back and forth. Don't criticize their work, let them make mistakes and let them realize the mistake, and correct it themselves. Let them contribute. Wait for them to ask you "How do I make this better." Be open to what they know, too, you might learn from them as well.</p>
<p>This is not an easy thing to do, and it takes above all patience. You need to establish trust and learn to just work together with the other person first, if you just say "ur doing it wrong", the lesson won't stick. Some people are (perhaps) beyond help, convinced that they are always right, unwilling to learn. But most people really do want to learn and teach (just look at this site for evidence of that), they just need a safe environment to do so.</p>
http://stackoverflow.com/questions/180947/base64-decode-snippet-in-c0base64 decode snippet in c++joeld422008-10-08T00:25:26Z2008-12-07T16:12:43Z
<p>Anyone have a freely available base64 decoding code snippet in c++? </p>
http://stackoverflow.com/questions/332207/opengl-loading-new-texture-into-already-defined-texture-name/342602#3426020Answer by joeld42 for [OpenGl] Loading new texture into already defined texture name joeld422008-12-05T01:09:20Z2008-12-05T01:09:20Z<p>The function you are looking for is "glCopyTexImage2D" or "glCopyTexSubImage2D".</p>
http://stackoverflow.com/questions/235984/the-halting-problem-in-the-field/310492#3104924Answer by joeld42 for The Halting Problem in the Fieldjoeld422008-11-21T22:59:17Z2008-11-21T22:59:17Z<p>This is still a problem for shaders in GPU applications. If a shader has an infinite loop (or a very long calculation), should the driver (after some time limit) stop it, kill the fragment, or just let it run? For games and other commercial stuff, the former is probably what you want, but for scientific/GPU computing, the latter is what you want. Worse, some versions of windows assume that since the graphics driver has been unresponsive for some time, it kills it, which artificially limits the computing power when doing computation on the GPU.</p>
<p>There's no API for a application to control how the driver should behave or set the timeout or something, and there's certainly no way for the driver to tell if your shader is going to finish or not.</p>
<p>I don't know if this situation has improved recently, but I'd like to know.</p>
http://stackoverflow.com/questions/193603/simple-wireframe-format/299768#2997680Answer by joeld42 for Simple wireframe format?joeld422008-11-18T19:01:56Z2008-11-18T19:01:56Z<p>OBJ is the most widespread and simplest, but it breaks down if you need more than vertex position, normal, and a single texture coordinate. It's not extensible at all. It's also text based so it has trouble with large meshes.</p>
<p>GTO has been emerging as a new interchange format. It's simple, fast, and extensible, and there is a production-proven open source code to read and write them:</p>
<p><a href="http://www.tweakfilms.com/products/open-source-software/gto" rel="nofollow" title="Gto File Format">Gto File Format</a></p>
<p>This has been used in production in several VFX and game studios, and yet it's about the same amount of work to write a loader as an OBJ file (and one of the samples is an OBJ to GTO converter). </p>
<p>Check it out, and help stop the spread of the Collada bloat-virus.</p>
http://stackoverflow.com/questions/299465/web-based-document-sharing-for-small-organizations/299471#2994710Answer by joeld42 for Web-based document sharing for small organizationsjoeld422008-11-18T17:27:55Z2008-11-18T17:27:55Z<p>Take a look at <a href="https://www.getdropbox.com/home" rel="nofollow">Dropbox</a>.</p>
<p>Access control is somewhat limited, but it's been working out very well for me. </p>
http://stackoverflow.com/questions/296608/hp-lightscribe-label-tricks/299463#2994631Answer by joeld42 for HP LightScribe Label tricksjoeld422008-11-18T17:25:15Z2008-11-18T17:25:15Z<p>You ask a lot of far-out questions at once.</p>
<p>But here's a tutorial that answers at least one of them:</p>
<p><a href="http://www.instructables.com/id/Burning-visible-images-onto-CD-Rs-with-data-beta/" rel="nofollow">Burn a visible image on a CD</a></p>
<p>Good luck with the holograms.</p>
http://stackoverflow.com/questions/296992/glib-v-apr-pros-and-cons-of-each/299425#2994251Answer by joeld42 for GLib v APR pros and cons of eachjoeld422008-11-18T17:14:28Z2008-11-18T17:14:28Z<p>Is there a reason you wouldn't want to use the c++ stl? Even if you are writing "c-style" code without classes, you can use c++ strings and data structure.</p>
<p>There are plenty of valid reasons to stick to C, of course. If that's the case, I would second the recommendation for glib. APR is more of a portability layer than a utility library.</p>
http://stackoverflow.com/questions/211018/what-is-the-best-free-cross-platform-opengl-gui-library-for-a-video-game/299314#2993141Answer by joeld42 for What is the best free cross-platform OpenGL GUI library for a video game?joeld422008-11-18T16:43:33Z2008-11-18T16:43:33Z<p>I used <a href="http://www.cs.unc.edu/~rademach/glui/" rel="nofollow">GLui</a> for this little demo:</p>
<p><a href="http://vickijoel.org/hexplanet/" rel="nofollow" title="HexPlanet">HexPlanet</a></p>
<p>It works well for little interfaces but I wouldn't recommend it for a large game.</p>
<p>Shy's suggestion about Qt is very good. It would be perfect for a game editor but it may be difficult to style it for an in-game gui, and it's still kind of experimental. </p>
<p>I'd recommend looking into <a href="http://www.rightbraingames.com/tech.php" rel="nofollow">RBG Gui</a> which is a similar to CeGUI. It's very nice looking, and has a full widget set. However, the sample implementation is build on OGRE, you'd have to write a pure OpenGL backend, but that doesn't look to hard because the underlying support code is separated out and written with this kind of thing in mind, most of the gui system is render-system agnostic.</p>
http://stackoverflow.com/questions/19842/is-opengl-dead/299266#299266-1Answer by joeld42 for Is OpenGL dead?joeld422008-11-18T16:28:35Z2008-11-18T16:28:35Z<p>It's not dead, it just smells funny. </p>
http://stackoverflow.com/questions/292071/opengl-how-to-implement-an-eraser-tool/299257#2992573Answer by joeld42 for OpenGL: How to implement an "eraser" tool?joeld422008-11-18T16:24:46Z2008-11-18T16:24:46Z<p>Draw a full-screen textured quad over your scene. When the user draws a brush stroke, use <code>glTexSubImage2D</code> to update the your texture. </p>
<p>glReadPixels/glDrawPixels is slow.</p>
<p>Using FrameBufferObjects is even better, but I doubt this extention is available on the iPhone (then again, I don't know for sure, so maybe try it). FBO's allow you to draw directly into a texture as if it were another rendering context.</p>
http://stackoverflow.com/questions/299076/scaling-literate-programming/299227#2992271Answer by joeld42 for Scaling Literate Programming?joeld422008-11-18T16:14:20Z2008-11-18T16:14:20Z<p>The book "Physically Based Rendering" <a href="http://www.pbrt.org/" rel="nofollow">(pbrt.org)</a> is the best example of large-scale literate programming that I'm aware of. The book implements a complete rendering system, and both the book text and the raytracer code are generated from the same "source". </p>
<p>In practice, I've found that just using a system like Doxygen and really digging in and making use of all of its features is better than full-blown "literate" programming, except for things like this, i.e. textbooks, educational materials.</p>
http://stackoverflow.com/questions/287871/print-in-terminal-with-colors-using-python/287944#28794420Answer by joeld42 for Print in terminal with colors using python ?joeld422008-11-13T19:25:07Z2008-11-13T19:25:07Z<p>This somewhat depends on what platform you are on. The most common way to do this is by printing ANSI escape sequences. For a simple example, here's some python code from the <a href="https://svn.blender.org/svnroot/bf-blender/trunk/blender/tools/bcolors.py" rel="nofollow">blender build scripts</a>:</p>
<pre><code>class bcolors:
HEADER = '\033[95m'
OKBLUE = '\033[94m'
OKGREEN = '\033[92m'
WARNING = '\033[93m'
FAIL = '\033[91m'
ENDC = '\033[0m'
def disable(self):
self.HEADER = ''
self.OKBLUE = ''
self.OKGREEN = ''
self.WARNING = ''
self.FAIL = ''
self.ENDC = ''
</code></pre>
<p>To use code like this, you can do something like </p>
<pre><code>print bcolors.WARNING + "Warning: No active frommets remain. Continue?"
+ bcolors.ENDC
</code></pre>
<p>This will work on unix, linux including macOS, and window (provided you <a href="http://support.microsoft.com/kb/101875" rel="nofollow">enable ansi.sys</a>). There are ansi codes for setting the color, moving the cursor, and more.</p>
<p>If you are going to get complicated with this (and it sounds like you are if you are writing a game), you should look into the "curses" module, which handles a lot of the complicated parts of this for you. The <a href="http://www.amk.ca/python/howto/curses/" rel="nofollow" title="Python Curses howto">Python Curses HowTO</a> is a good introduction.</p>
<p>If you are not using extended ASCII (i.e. not on a PC), you are stuck with the ascii characters below 127, and '#' or '@' is probably your best bet for a block. If you can ensure your terminal is using a IBM <a href="http://telecom.tbi.net/asc-ibm.html" rel="nofollow">extended ascii character set</a>, you have many more options. Characters 176, 177, 178 and 219 are the "block characters".</p>
<p>Some modern text-based programs, such as "Dwarf Fortress", emulate text mode in a graphical mode, and use images of the classic PC font. You can find some of these bitmaps that you can use on the <a href="http://dwarf.lendemaindeveille.com/index.php/Tilesets" rel="nofollow">Dwarf Fortress Wiki</a> see (<a href="http://dwarf.lendemaindeveille.com/index.php/List_of_user_character_sets" rel="nofollow">user-made tilesets</a>).</p>
<p>The <a href="http://en.wikipedia.org/wiki/TMDC" rel="nofollow" title="text mode demo contest">Text Mode Demo Contest</a> has more resources for doing graphics in text mode.</p>
<p>Hmm.. I think got a little carried away on this answer. I am in the midst of planning an epic text-based adventure game, though. Good luck with your colored text!</p>
http://stackoverflow.com/questions/273145/is-it-possible-to-decompile-a-windows-exe-or-at-least-view-the-assembly/273205#2732051Answer by joeld42 for Is it possible to "decompile" a Windows .exe? Or at least view the Assembly?joeld422008-11-07T18:59:16Z2008-11-07T18:59:16Z<p>If you are just trying to figure out what a malware does, it might be much easier to run it under something like the free tool <a href="http://technet.microsoft.com/en-us/sysinternals/bb896645.aspx" rel="nofollow" title="Process Monitor">Process Monitor</a> which will report whenever it tries to access the filesystem, registry, ports, etc...</p>
<p>Also, using a virtual machine like the free <a href="http://www.vmware.com/products/server/" rel="nofollow">VMWare server</a> is very helpful for this kind of work. You can make a "clean" image, and then just go back to that every time you run the malware.</p>
http://stackoverflow.com/questions/272935/does-it-make-sense-to-set-up-a-wiki-at-the-workplace/273166#2731661Answer by joeld42 for Does it make sense to set up a wiki at the workplace?joeld422008-11-07T18:50:10Z2008-11-07T18:50:10Z<p>Yes, it's very helpful. We've had this at the last few places I've worked, and it has been a great resource. A few things to remember:</p>
<ul>
<li><p>Take the time to convert your existing documentation to wiki, if possible. Don't just link to it, because then it can't be updated. Nobody will use a brand new wiki if it's empty.</p></li>
<li><p>At first, people won't be in the habit of using it. When someone sends out a useful email, take a few minutes to paste it into the wiki for them and reformat it, and reply that you've added it. Soon, people will start doing this themselves.</p></li>
<li><p>Assign a wiki "editor", who will spend 2-3 days a month reorganizing the content. Or rotate this responsibility among your developers. Don't go overboard but these turn into spaghetti very quickly. A technical writer is great if you have one, otherwise any willing volunteer can do it.</p></li>
<li><p>I don't have any recommendation for which wiki to use. I would suggest letting whomever has to admin it get to decide that. Don't write your own in-house one (it happens!). </p></li>
</ul>
<p>Good luck!</p>
http://stackoverflow.com/questions/189055/is-iterator-initialization-inside-for-loop-considered-bad-style-and-why/189134#1891346Answer by joeld42 for Is Iterator initialization inside for loop considered bad style, and why?joeld422008-10-09T20:43:50Z2008-10-09T20:43:50Z<p>Another alternative is to use a foreach macro, for example <a href="http://www.boost.org/doc/libs/1_36_0/doc/html/foreach.html" rel="nofollow">boost foreach</a>:</p>
<pre><code>BOOST_FOREACH( ContainedType item, m_SomeMemberContainerVar )
{
mangle( item );
}
</code></pre>
<p>I know macros are discouraged in modern c++, but until the auto keyword is widely available this is the best way I've found to get something that is concise and readable, and still completely typesafe and fast. You can implement your macro using whichever initialization style gets you better performance.</p>
<p>There's also a note on the linked page about redefining BOOST_FOREACH as foreach to avoid the annoying all caps.</p>
http://stackoverflow.com/questions/180858/procedural-music-generation-techniques/180921#1809213Answer by joeld42 for Procedural music generation techniques...joeld422008-10-08T00:14:07Z2008-10-08T00:20:39Z<p>An easy and somewhat effective algorithm is to use 1/f noise aka "pink noise" to select durations and notes from a scale. This sounds sort of like music and can be a good starting point. </p>
<p>A better algorithm is to use "markov chains".. scan some example music and build a table of probabilities. In the simplest case, it would be something like C is 20% likely to follow A. To make this better, look at the sequence of the past few notes, for example "C A B" is 15% likely to be followed by B, and 4% likely to be followed by a Bb, etc. Then, just pick notes using the probabilities of the previously chosen notes. This remarkably simple algorithm generates pretty good results.</p>
<p><a href="http://en.wikipedia.org/wiki/Markov_chain#Music" rel="nofollow">Markov chains for music generation</a></p>
http://stackoverflow.com/questions/141351/how-do-i-find-what-is-using-memory-in-a-python-process-in-a-production-system/142138#1421381Answer by joeld42 for How do I find what is using memory in a Python process in a production system?joeld422008-09-26T21:37:03Z2008-09-26T21:37:03Z<p>I don't know how to dump an entire python interpreter state and restore it. It would be useful, I'll keep my eye on this answer in case anyone else has ideas.</p>
<p>If you have an idea where the memory is leaking, you can add checks the refcounts of your objects. For example:</p>
<pre><code>x = SomeObject()
... later ...
oldRefCount = sys.getrefcount( x )
suspiciousFunction( x )
if (oldRefCount != sys.getrefcount(x)):
print "Possible memory leak..."
</code></pre>
<p>You could also check for reference counts higher than some number that is reasonable for your app. To take it further, you could modify the python interpreter to do these kinds of check by replacing the <code>Py_INCREF</code> and <code>Py_DECREF</code> macros with your own. This might be a bit dangerous in a production app, though.</p>
<p>Here is an essay with more info on debugging these sorts of things. It's more geared for plugin authors but most of it applies.</p>
<p><a href="http://www.python.org/doc/essays/refcnt/" rel="nofollow" title="Debugging Reference Counts">Debugging Reference Counts</a></p>
http://stackoverflow.com/questions/141864/operator-overloading-for-c-maps/141926#1419266Answer by joeld42 for Operator overloading for C++ mapsjoeld422008-09-26T20:55:23Z2008-09-26T21:07:25Z<p>These are typecast operators, so you can do this:</p>
<pre><code>{
key_t key = iter;
ipdc_t *val = iter;
}
</code></pre>
<p>Or, since <code>ipdc_map_template::iterator</code> is a subclass of <code>std::map::iterator</code>, you can still use the original accessors (which I find more readable):</p>
<pre><code>{
key_t key = (*iter).first;
ipdc_t *val = (*iter).second;
// or, equivalently
key_t key = iter->first;
ipdc_t *val = iter->second;
}
</code></pre>
http://stackoverflow.com/questions/118919/what-is-the-strangest-weirdest-program-youve-ever-made/141870#1418704Answer by joeld42 for What is the strangest/weirdest program you've ever made?joeld422008-09-26T20:46:09Z2008-09-26T20:46:09Z<p>My most recent weird project: A word processor that threatens to destroy what you've written.</p>
<p><a href="http://www.vickijoel.org/write-attack" rel="nofollow" title="Write Attack!">Write Attack!</a></p>
<p>It's for <a href="http://www.nanowrimo.org" rel="nofollow" title="NaNoWriMo">NaNoWrimo 2008</a>.</p>
http://stackoverflow.com/questions/116654/best-non-c-language-for-generative-programming/116931#1169313Answer by joeld42 for Best non-C++ language for generative programming?joeld422008-09-22T19:22:40Z2008-09-22T19:22:40Z<p>The <a href="http://d-programming-language.org/" rel="nofollow" title="D programming language">"D" programming language</a> is C++-like but has much better metaprogramming support. Here's an example of a ray-tracer written using only compile-time metaprogramming:</p>
<p><a href="http://h3.team0xf.com/ctrace/" rel="nofollow">Ctrace</a></p>
<p>Additionally, there is a gcc branch called "Concept GCC" that supports metaprogramming contructs that C++ doesn't (at least not yet).</p>
<p><a href="http://www.generic-programming.org/software/ConceptGCC/" rel="nofollow" title="Concept GCC">Concept GCC</a></p>
http://stackoverflow.com/questions/104291/trialware-licensing-strategies/104577#1045772Answer by joeld42 for Trialware/licensing strategiesjoeld422008-09-19T19:02:19Z2008-09-19T19:02:19Z<p>Don't have the evaluation based on "days since install", instead do number of days used, or number of times run or something similar. People tend to download shareware, run it once or twice, and then forget it for a few weeks until they need it again. By then, the trial may have expired and so they've only had a few tries to get hooked on using your app, even though they've had it installed for a while. Number of activation/days instead lets them get into a habit of using your app for a task, and also makes a stronger sell (i.e. you've used this app 30 times...).</p>
<p>Even better, limiting the features works better than timing out. For example, perhaps your photography app could limit the user to 1 megapixel images, but let them use it for as long as they want. </p>
<p>Also, consider pricing your app at $20 (or $19.95). Unless there's already a micropayment setup in place (like iPhone store or XBoxLive or something) people tend to have an aversion to buying things online below a certain price point (which is around $20 depending on the type of app), and people assume subconciously if something is inexpensive, it must not be very good. You can actually raise your conversion rate with a higher price (up to a point of course). </p>
http://stackoverflow.com/questions/103844/how-do-i-merge-a-2d-array-in-python-into-one-string-with-list-comprehension/103873#103873-1Answer by joeld42 for How do I merge a 2D array in Python into one string with List Comprehension?joeld422008-09-19T17:24:56Z2008-09-19T17:24:56Z<pre><code>import itertools
itertools.flatten( li )
</code></pre>
http://stackoverflow.com/questions/296992/glib-v-apr-pros-and-cons-of-each/299425#299425Comment by on GLib v APR pros and cons of each2009-08-28T00:16:13Z2009-08-28T00:16:13ZYeah, I agree Linus made the right choice to use straight C for git. Use whatever is appropriate for your project and target developer audience.
C++ strings are nice, especially for a "hobby" programmer like the poster stated, because you don't have to track ownership and figure out when to free() them, and the auto-growing makes it so you don't have to worry about tricky strcat cases.
Of course, as I said, "There are plenty of valid reasons to stick to C..." as well. Use what works for you.http://stackoverflow.com/questions/1002587/can-i-use-the-curiously-recurring-template-pattern-here-c/1002927#1002927Comment by on Can I use the Curiously Recurring Template Pattern here (C++)?2009-06-16T18:07:58Z2009-06-16T18:07:58ZMartin's right. You're suggesting adding significant complexity for speculative performance gains. And thousands of widgets isn't very many for an optimization problem -- I would doubt the vtable is significant. Always, always profile it first when optimizing.http://stackoverflow.com/questions/534311/examples-of-modern-c-in-actionComment by on Examples of "modern c++" in action?2009-06-08T19:16:57Z2009-06-08T19:16:57ZI didn't mean "modern" in the general sense. Capital-M "Modern C++" is a specific programming style, described in the Alexandrescu book. And I'll take a bit of umbrage with your "COBOL" comparison -- I don't think anyone is going to be writing video games in a trendy language like Ruby anytime soon.http://stackoverflow.com/questions/534311/examples-of-modern-c-in-action/535537#535537Comment by on Examples of "modern c++" in action?2009-04-11T01:24:31Z2009-04-11T01:24:31ZI'd rather have found one excellent example, these each use boost and Modern c++ to varying and lesser degrees, but this was the best source of real-world examples (not just snippets) that I could find.http://stackoverflow.com/questions/534311/examples-of-modern-c-in-action/534593#534593Comment by on Examples of "modern c++" in action?2009-04-11T01:24:01Z2009-04-11T01:24:01ZI looked through it, great code, great example but not very "Modern C++" style. http://stackoverflow.com/questions/534311/examples-of-modern-c-in-action/535537#535537Comment by on Examples of "modern c++" in action?2009-02-11T19:55:49Z2009-02-11T19:55:49ZThat's great! I always miss the obvious places to look..http://stackoverflow.com/questions/534311/examples-of-modern-c-in-action/534946#534946Comment by on Examples of "modern c++" in action?2009-02-11T19:54:19Z2009-02-11T19:54:19ZI tried to use GIL about a year ago and found it really amazing from a design standpoint, but unrealistic for real world work. Compile times were bad, it was amazingly difficult to debug, and having to any_image<> type was awkward. I'm keeping my eye on it for the future tho.http://stackoverflow.com/questions/534311/examples-of-modern-c-in-action/534520#534520Comment by on Examples of "modern c++" in action?2009-02-10T23:41:26Z2009-02-10T23:41:26ZThanks, I'll look into those. That's been my feeling, too, that "modern" c++ gets used a lot on in-house projects but don't get a lot of more visible "public" usage.http://stackoverflow.com/questions/534311/examples-of-modern-c-in-action/534593#534593Comment by on Examples of "modern c++" in action?2009-02-10T23:24:55Z2009-02-10T23:24:55ZI will check that out. I didn't realize Chrome was open-source! Thanks!http://stackoverflow.com/questions/534311/examples-of-modern-c-in-action/534634#534634Comment by on Examples of "modern c++" in action?2009-02-10T23:23:51Z2009-02-10T23:23:51ZYeah, I love that book. That's exactly the type of stuff that I'm trying to apply on a larger scale.http://stackoverflow.com/questions/534311/examples-of-modern-c-in-actionComment by on Examples of "modern c++" in action?2009-02-10T21:51:33Z2009-02-10T21:51:33Zyeah, I'll give you that much.. ;)http://stackoverflow.com/questions/17411/how-do-you-separate-game-logic-from-display/17428#17428Comment by on How do you separate game logic from display?2008-11-21T01:02:49Z2008-11-21T01:02:49ZYes! Thank you for posting this link. This is such a common mistake/misunderstanding in game programming.http://stackoverflow.com/questions/4689/recommended-fonts-for-programming/11347#11347Comment by on Recommended Fonts for Programming?2008-10-24T00:14:47Z2008-10-24T00:14:47ZI'm also a profont userhttp://stackoverflow.com/questions/189055/is-iterator-initialization-inside-for-loop-considered-bad-style-and-why/189068#189068Comment by on Is Iterator initialization inside for loop considered bad style, and why?2008-10-09T20:47:08Z2008-10-09T20:47:08Zwow, that's fantastic. I can't wait.http://stackoverflow.com/questions/180947/base64-decode-snippet-in-c/180949#180949Comment by on base64 decode snippet in c++2008-10-08T00:34:11Z2008-10-08T00:34:11Zyeah, somehow I missed this. I tried google code search instead of plain old google. Thanks.