User - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T11:17:28Z http://stackoverflow.com/feeds/user/39702 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1665531/procmail-script-for-autoreplier-with-constraints 0 Procmail script for autoreplier with constraints zarawesome 2009-11-03T06:06:58Z 2009-11-03T08:33:56Z <p>How would I set up procmail so it replies to all emails with a standard message, provided the emails:</p> <ul> <li>Have the word "AAA" in the subject</li> <li>Have the word "BBB" in the text</li> <li>Do not have the words "CCC" or "DDD" in the text</li> </ul> http://stackoverflow.com/questions/894804/how-to-differentiate-when-overloading-between-prefix-and-postfix-forms-of-opera/894812#894812 12 Answer by zarawesome for How to differentiate (when overloading) between prefix and postfix forms of operator++? (C++) zarawesome 2009-05-21T19:56:32Z 2009-10-20T23:52:42Z <p><a href="http://www.devx.com/tips/Tip/12515" rel="nofollow">http://www.devx.com/tips/Tip/12515</a></p> <pre><code>class Date { //... public: Date&amp; operator++(); //prefix Date&amp; operator--(); //prefix Date operator++(int unused); //postfix Date operator--(int unused); //postfix }; </code></pre> http://stackoverflow.com/questions/419959/language-for-non-programmers-to-start-learning-programming 4 Language for non-programmers to start learning programming zarawesome 2009-01-07T11:27:08Z 2009-08-26T07:38:04Z <p>A non-programmer friend will be starting the Computer Science college course in a few months. I'd like her to try her hand at some programming before she starts her studies (the course itself expects one to know C, but it's an horrible language to learn to program at). What language would be the best to do so?</p> <p>Related question: <a href="http://stackoverflow.com/questions/3088/best-ways-to-teach-a-beginner-to-program">Best ways to teach a beginner to program?</a></p> http://stackoverflow.com/questions/907756/is-it-possible-to-use-opengl-point-sprites-to-simulate-billboard-sprites 5 Is it possible to use OpenGL point sprites to simulate billboard sprites? zarawesome 2009-05-25T19:10:11Z 2009-06-24T15:24:08Z <p>I was trying to set point sprites in OpenGL to change size with distance just as a billboarded sprite would, but I can't get the values in GL_POINT_DISTANCE_ATTENUATION_ARB to do anything useful. Is there a correlation of values to this that would match a given projection? Is what I'm trying to do even possible?</p> <p>Render code being used:</p> <pre><code> glPointParameterfARB = (PFNGLPOINTPARAMETERFARBPROC)wglGetProcAddress("glPointParameterfARB"); glPointParameterfvARB = (PFNGLPOINTPARAMETERFVARBPROC)wglGetProcAddress("glPointParameterfvARB"); glClear(GL_COLOR_BUFFER_BIT|GL_DEPTH_BUFFER_BIT); glLoadIdentity(); gluPerspective(100.0, 800.0/600.0, 0.1, 10.0); float quadratic[] = { 5.0f, 0.1f, 10.0f }; glPointParameterfvARB( GL_POINT_DISTANCE_ATTENUATION_ARB, quadratic ); float maxSize = 0.0f; glGetFloatv( GL_POINT_SIZE_MAX_ARB, &amp;maxSize ); if( maxSize &gt; 100.0f ) maxSize = 100.0f; glPointSize( maxSize ); glPointParameterfARB( GL_POINT_FADE_THRESHOLD_SIZE_ARB, 0.1f ); glPointParameterfARB( GL_POINT_SIZE_MIN_ARB, 0.1f ); glPointParameterfARB( GL_POINT_SIZE_MAX_ARB, maxSize ); glTexEnvf( GL_POINT_SPRITE_ARB, GL_COORD_REPLACE_ARB, GL_TRUE ); glEnable( GL_POINT_SPRITE_ARB ); glScalef(0.75,1,1); glTranslatef(0.00,0.0,-1.0); glScalef(0.5,0.5,0.5); glRotatef(counter*0.1+0.5,1.0,1.0,0.0); glBegin( GL_POINTS ); for( int i = 0; i &lt; 100; ++i ) { glColor4f( i%10*0.1, i/10*0.1, 0.5, 1.0f ); glVertex3f( i%10*0.2-1.0,i/10*0.2-1.0, ((i%10-5)*(i%10-5)+(i/10-5)*(i/10-5))*0.01 ); } glEnd(); glDisable( GL_POINT_SPRITE_ARB ); </code></pre> http://stackoverflow.com/questions/892811/drawing-isometric-game-worlds/894158#894158 1 Answer by zarawesome for Drawing Isometric game worlds zarawesome 2009-05-21T17:39:44Z 2009-05-21T17:39:44Z <p>Either way gets the job done. I assume that by zigzag you mean something like this: (numbers are order of rendering)</p> <pre><code>.. .. 01 .. .. .. 06 02 .. .. 11 07 03 .. 16 12 08 04 21 17 13 09 05 22 18 14 10 .. 23 19 15 .. .. 24 20 .. .. .. 25 .. .. </code></pre> <p>And by diamond you mean:</p> <pre><code>.. .. .. .. .. 01 02 03 04 .. 05 06 07 .. 08 09 10 11 .. 12 13 14 .. 15 16 17 18 .. 19 20 21 .. 22 23 24 25 .. .. .. .. .. </code></pre> <p>The first method needs more tiles rendered so that the full screen is drawn, but you can easily make a boundary check and skip any tiles fully off-screen. Both methods will require some number crunching to find out what is the location of tile 01. In the end, both methods are roughly equal in terms of math required for a certain level of efficiency.</p> http://stackoverflow.com/questions/889827/opengl-copy-texture-from-screen-smaller-than-that-screen 0 OpenGL - Copy texture from screen smaller than that screen. zarawesome 2009-05-20T19:38:22Z 2009-05-20T20:24:15Z <p>I'm trying to capture the screen to a texture with a lower resolution than the screen itself (to render back onto the screen and create a blur/bloom effect), and it doesn't work quite well. I understand mipmaps can be used to do this, but I just can't get the correct sequence of commands to work.</p> <p>My current code:</p> <pre><code>width=1024; height=1024; glGenTextures(1, &amp;texture); glEnable(GL_TEXTURE_2D); glBindTexture(GL_TEXTURE_2D, texture); glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR); glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR); glEnable (GL_BLEND); glBlendFunc (GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA); glTexEnvf(GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_MODULATE); glHint(GL_PERSPECTIVE_CORRECTION_HINT, GL_FASTEST); glTexParameterf( GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP ); glCopyTexImage2D(GL_TEXTURE_2D, 0, GL_RGB, 0, 0, width, height, 0); // code for rendering the screen back on goes here </code></pre> http://stackoverflow.com/questions/888224/what-is-your-longest-held-programming-assumption-that-turned-out-to-be-incorrect/889851#889851 2 Answer by zarawesome for What is your longest-held programming assumption that turned out to be incorrect? zarawesome 2009-05-20T19:42:19Z 2009-05-20T19:42:19Z <p>Turns out it doesn't matter whether you check if memory allocation returns a reference or not under Linux, as it will actually <em>lie</em> to you and either actually allocate the memory at some time in the future or abort your program altogether if it doesn't have the memory you need.</p> http://stackoverflow.com/questions/757145/do-wavefront-obj-files-support-animation 0 Do Wavefront .obj files support animation? zarawesome 2009-04-16T17:14:15Z 2009-04-16T17:27:08Z <p>How does one export a 3D Studio animated model to OBJ format (if possible)? What will be the resulting file like? How would I read that?</p> http://stackoverflow.com/questions/751878/c-initialize-array-size-in-constructor-initializer-list 1 C++: Initialize array size in constructor initializer list zarawesome 2009-04-15T14:08:43Z 2009-04-15T15:53:01Z <p>In the code below I would like array to be defined as an array of size x when the Class constructor is called. What should be in ???</p> <pre><code>class Class { int array[]; Class(x): ??? { } } </code></pre> http://stackoverflow.com/questions/520005/xenomai-rtdm-timed-looping-task-in-device-driver 0 Xenomai RTDM timed looping task in device driver zarawesome 2009-02-06T11:39:04Z 2009-02-06T11:39:04Z <p>How would I set up a task that, say, turns a led on and off every second, in a device driver (module)? I've tried using <code>rtdm_task_init</code> and it successfully sets the task, but when I use <code>rtdm_task_wait_period</code>, it returns -EINVAL (meaning it's not seen as periodic by the system).</p> http://stackoverflow.com/questions/357068/sprintf-without-trailing-null-space-in-c 2 sprintf() without trailing null space in C zarawesome 2008-12-10T18:29:24Z 2009-02-04T16:04:11Z <p>Is there a way to use the C sprintf() function without it adding a '\0' character at the end of its output? I need to write formatted text in the middle of a fixed width string.</p> http://stackoverflow.com/questions/480764/linux-error-while-loading-shared-libraries-cannot-open-shared-object-file-no-su 0 Linux error while loading shared libraries: cannot open shared object file: No such file or directory zarawesome 2009-01-26T18:07:57Z 2009-01-27T06:01:39Z <p>Program is part of the Xenomai test suite, cross-compiled from Linux PC into Linux+Xenomai ARM toolchain.</p> <pre><code># echo $LD_LIBRARY_PATH /lib # ls /lib ld-2.3.3.so libdl-2.3.3.so libpthread-0.10.so ld-linux.so.2 libdl.so.2 libpthread.so.0 libc-2.3.3.so libgcc_s.so libpthread_rt.so libc.so.6 libgcc_s.so.1 libstdc++.so.6 libcrypt-2.3.3.so libm-2.3.3.so libstdc++.so.6.0.9 libcrypt.so.1 libm.so.6 # ./clocktest ./clocktest: error while loading shared libraries: libpthread_rt.so.1: cannot open shared object file: No such file or directory </code></pre> <p><strong>Edit:</strong> OK I didn't notice the .1 at the end was part of the filename. What does that mean anyway?</p> http://stackoverflow.com/questions/472707/whats-the-ugliest-code-you-were-forced-to-write-by-outside-limitations 2 What's the ugliest code you were forced to write by outside limitations? zarawesome 2009-01-23T12:29:03Z 2009-01-23T13:46:00Z <p>What is the ugliest code that you wrote - not because you didn't know better, but because of limitations of the software, the hardware or the company policy?</p> <p>Because of unusual choices in database layouts and programming languages, I once built a C program that read in a SQL database structure and generated another C program that'd read that database and back it up into a file, or copy it into a second database that shared more or less the same columns. It was a monster clunky code generator.</p> http://stackoverflow.com/questions/470388/my-c-object-file-is-too-big 1 My C++ object file is too big zarawesome 2009-01-22T19:01:04Z 2009-01-23T09:45:47Z <p>I am working on a C++ program and the compiled object code from a single 1200-line file (which initializes a rather complex state machine) comes out to nearly a megabyte. What could be making the file so large? Is there a way I can find what takes space inside the object file?</p> http://stackoverflow.com/questions/468956/get-c-object-name-in-run-time/469108#469108 0 Answer by zarawesome for get C++ object name in run time zarawesome 2009-01-22T13:26:10Z 2009-01-22T13:26:10Z <p>C++ objects don't have 'names' (unless I am understanding the problem wrong) Your best hope is to name them as you make them.</p> <pre><code>class NamedObject { String name; NamedObject(String argname) { name = argname; } } NamedObject phil("phil"); </code></pre> http://stackoverflow.com/questions/450617/most-binary-combinations-from-4-bits-with-each-bit-able-to-change-state-only-on/450648#450648 8 Answer by zarawesome for Most binary combinations from 4 bits - with each bit able to change state only once zarawesome 2009-01-16T15:01:35Z 2009-01-16T16:24:37Z <ol> <li>There are 4 bits. </li> <li>Each bit may change state only once.</li> <li>For each new value, at least one of the bits must have changed state from the previous value.</li> </ol> <p>Therefore, you can have at most 4 state changes, and at most 5 different values.</p> <p>Example:</p> <pre><code>0000 -&gt; 0001 -&gt; 0011 -&gt; 0111 -&gt; 1111 </code></pre> <p><strong>Edit:</strong></p> <p>Very well, let's restate from what you mean rather than from what you say.</p> <ol> <li>There are 4 bits. </li> <li>Each bit may change state only <strong>twice</strong>. (once from 0 to 1, and once from 1 to 0)</li> <li>For each new value, at least one of the bits must have changed state from the previous value.</li> </ol> <p>Therefore, you can have at most 8 state changes, and at most 8 different values (since the last state change necessarily brings all bits back to their initial state)</p> <p>Example:</p> <pre><code>0000 -&gt; 0001 -&gt; 0011 -&gt; 0111 -&gt; 1111 -&gt; 1110 -&gt; 1100 -&gt; 1000 -&gt; 0000 </code></pre> <p>So, by setting the outputs for: 3 AM - 3 PM, 6 AM - 6 PM, 9 AM - 9 PM and noon - midnight, you can determine which 3-hour period it is from the outputs. I'd suggest plugging wires into the visual output instead.</p> http://stackoverflow.com/questions/450616/how-important-for-programming-skills-is-to-have-nice-gadgets/450770#450770 1 Answer by zarawesome for How important for programming skills is to have nice gadgets? zarawesome 2009-01-16T15:35:42Z 2009-01-16T15:35:42Z <p>Depends on the programmer. Many programmers would be happy with cool gadgets as a job perk, but I wouldn't say it affects their productivity directly. If I had to choose, I'd rather get a good <em>chair</em> than a palmtop of the same price.</p> <p>Things I've missed while working as a programmer in various companies of all sizes:</p> <ul> <li>A decent chair (jesus people)</li> <li>A good, fast computer (even if they don't work 3D)</li> <li>A large screen (two if possible)</li> <li>A hand-held device capable of reading mail (I suppose this would fit as a 'gadget')</li> </ul> http://stackoverflow.com/questions/450558/simplified-algorithm-for-calculating-remaining-space-in-a-circular-buffer/450684#450684 2 Answer by zarawesome for Simplified algorithm for calculating remaining space in a circular buffer? zarawesome 2009-01-16T15:11:35Z 2009-01-16T15:17:26Z <p>Hmmm....</p> <pre><code>int remaining = (end - start + bufferSize) % bufferSize; </code></pre> <p>13 tokens, do I win?</p> http://stackoverflow.com/questions/238177/worst-ui-youve-ever-used/423816#423816 176 Answer by zarawesome for Worst UI You've Ever Used zarawesome 2009-01-08T10:34:45Z 2009-01-08T10:34:45Z <p>The godawful "Select Folder" dialogue on Windows XP and all its ilk (I do not know if it is in Vista).</p> <p>Prepare to browse the entire structure of your disk through a tree view inside a small, non-resizeable window. And no, you can't just copy paste the full path to the directory you want because there's no text box to do so in.</p> <p>It would be merely annoying if it wasn't used in every Windows application and installer ever.</p> http://stackoverflow.com/questions/420726/how-to-cast-member-variable-pointer-to-generic-type-in-c 1 How to cast member variable pointer to generic type in C++ zarawesome 2009-01-07T15:29:18Z 2009-01-07T19:04:07Z <p>I have code similar to this in my application:</p> <pre><code>class A { public: int b; } class C { public: int d; } void DoThings (void *arg1, MYSTERYTYPE arg2); A obj_a; C obj_c; DoThings(&amp;obj_a, &amp;A::b); DoThings(&amp;obj_c, &amp;C::d); </code></pre> <p>The question is - What should MYSTERYTYPE be? neither void* nor int work, despite the value &amp;A::b being printed just fine if you output it through a printf.</p> <p>Clarifications: Yes, &amp;A::b is defined under C++. Yes, I am trying to get the offset to a class member. Yes, I am being tricky.</p> <p>Edit: Oh I can use offsetof(). Thanks anyway.</p> http://stackoverflow.com/questions/365841/how-to-make-a-simple-wine-based-installer-for-windows-application 2 How to make a simple Wine-based installer for Windows application zarawesome 2008-12-13T22:17:37Z 2009-01-07T15:06:44Z <p>My Windows application runs under Wine, but the installation is a bit of a headache for laymen, and the wrappers I've seen online (PlayOnLinux, Wine Doors) require even more packages to be installed. Is there a way to make a package that will install Wine if the user needs it to be installed, install the application and shortcuts, all with minimal user hassle?</p> http://stackoverflow.com/questions/235984/the-halting-problem-in-the-field/340216#340216 0 Answer by zarawesome for The Halting Problem in the Field zarawesome 2008-12-04T10:59:52Z 2008-12-04T10:59:52Z <p>"How can you assure me your code is 100% free of bugs?"</p> http://stackoverflow.com/questions/337995/how-not-to-rush-yourself/338200#338200 0 Answer by zarawesome for How not to rush yourself? zarawesome 2008-12-03T18:22:24Z 2008-12-03T18:22:24Z <p>Divide, divide, divide. List <em>all</em> the steps that will be required to finish the project, then list all the steps <em>those</em> steps will require to be concluded, and so on until you reach atomic items you are absolutely sure you can finish in a day or less. Add the duration of all these values to arrive at a length of time.</p> <p>Then double it. Now you have a number that, if depressing, is at least somewhat realistic.</p> http://stackoverflow.com/questions/338110/avoiding-a-javascript-race-condition/338151#338151 4 Answer by zarawesome for Avoiding a javascript race condition zarawesome 2008-12-03T18:08:24Z 2008-12-03T18:08:40Z <p>Use the semaphore (let's call it StillNeedsValidating). if the SaveForm function sees the StillNeedsValidating semaphore is up, have it activate a second semaphore of its own (which I'll call FormNeedsSaving here) and return. When the validation function finishes, if the FormNeedsSaving semaphore is up, it calls the SaveForm function on its own.</p> <p>In jankcode;</p> <pre><code>function UserInputChanged(control) { StillNeedsValidating = true; // do validation StillNeedsValidating = false; if (FormNeedsSaving) saveForm(); } function SaveForm() { if (StillNeedsValidating) { FormNeedsSaving=true; return; } // call web service to save value FormNeedsSaving = false; } </code></pre> http://stackoverflow.com/questions/334746/implementing-event-conditions-in-a-c-state-machine 3 Implementing event conditions in a C++ state machine zarawesome 2008-12-02T17:24:25Z 2008-12-02T18:58:38Z <p>I'm using an hierarchical FSM for an embedded C++ application interface. I'd like to use small functions to determine whether certain inter-state events can be triggered, as well as use them to effect changes in the database: however, making a new class with different event functions for each state is daunting, as well as setting pointers to them as callbacks. (we're talking about 300 functions here.) </p> <p>If C++ supported lambda functions, I'd use them, but I don't have a lot of weight on the project architecture, so I'm reluctant to use third-party solutions that require heavy library integration (like boost) or the inclusion of extra preprocessor steps.</p> <p>Any ideas?</p> http://stackoverflow.com/questions/320657/when-good-programmers-go-bad/321570#321570 1 Answer by zarawesome for When good programmers go bad! zarawesome 2008-11-26T17:52:57Z 2008-11-26T17:52:57Z <p>While burnout is a possible cause, <a href="http://en.wikipedia.org/wiki/Boreout" rel="nofollow">boreout</a> is another. Since boredom doesn't seem to be an issue (check if he's actually being assigned tasks or just -pretending- to have them), the cause can be lack of challenge or disinterest in the subject.</p> http://stackoverflow.com/questions/309292/how-to-compile-and-install-a-linux-kernel-into-an-arm-kit 1 How to compile and install a Linux kernel into an ARM kit zarawesome 2008-11-21T16:15:27Z 2008-11-22T04:10:03Z <p>I have an ARM kit beside me and a Linux kernel source code patched with Xenomai on my machine. I understand I can send data to the kit through an USB cable and a (windows-based, of course) software, but I'm stumped as to exactly <em>what</em> I should be sending that would make the kit run Linux.</p> <p>(clarifications from comments: It is an Atmel AT91SAM9260-EK kit. It uses SAM-BA and SAM-PROG for the loading and unloading of data through either a serial or USB cable.)</p> http://stackoverflow.com/questions/309282/what-are-the-worst-metaphors-in-computer-science-and-engineering/309730#309730 5 Answer by zarawesome for What are the worst metaphors in computer science and engineering? zarawesome 2008-11-21T18:39:53Z 2008-11-21T18:39:53Z <p>The cloud. Mostly because it implies your code will somehow be magically executed by God and his angels instead of a server room somewhere someone is paying very dearly for. Early external 'cloud' backup solutions failed whenever the people hosting the backups simply quit using the utility.</p> http://stackoverflow.com/questions/309479/how-to-find-best-fuzzy-match-for-a-string-in-a-large-string-database/309685#309685 3 Answer by zarawesome for How to find best fuzzy match for a string in a large string database zarawesome 2008-11-21T18:21:50Z 2008-11-21T18:21:50Z <p><a href="http://en.scientificcommons.org/514330" rel="nofollow">This paper seems to describe exactly what you want.</a></p> <p>Lucene (<a href="http://lucene.apache.org/" rel="nofollow">http://lucene.apache.org/</a>) also implements Levenshtein edit distance.</p> http://stackoverflow.com/questions/309491/how-do-i-read-the-results-of-a-system-call-in-c/309597#309597 0 Answer by zarawesome for How do I read the results of a system() call in C++? zarawesome 2008-11-21T17:43:43Z 2008-11-21T17:43:43Z <p>Pipes are not random access. They're sequential, which means that once you read a byte, the pipe is not going to send it to you again. Which means, obviously, you can't rewind it.</p> <p>If you just want to output the data back to the user, you can just do something like:</p> <pre><code>// your file opening code while (!feof(fp)) { char c = getc(fp); std::cout &lt;&lt; c; } </code></pre> <p>This will pull bytes out of the df pipe, one by one, and pump them straight into the output.</p> <p>Now if you want to access the df output as a whole, you can either pipe it into a file and read that file, or concatenate the output into a construct such as a C++ String.</p> http://stackoverflow.com/questions/1665531/procmail-script-for-autoreplier-with-constraints/1665972#1665972 Comment by on Procmail script for autoreplier with constraints 2009-11-03T18:58:45Z 2009-11-03T18:58:45Z Thanks a lot. Will test. http://stackoverflow.com/questions/871448/how-many-ways-are-there-to-see-if-a-number-is-even-and-which-one-is-the-fastest/871480#871480 Comment by on how many ways are there to see if a number is even, and which one is the fastest and clearest? 2009-05-26T05:11:33Z 2009-05-26T05:11:33Z Wonder if a function lookup and call is faster on ruby than a logical and? http://stackoverflow.com/questions/892811/drawing-isometric-game-worlds/893063#893063 Comment by on Drawing Isometric game worlds 2009-05-25T17:58:21Z 2009-05-25T17:58:21Z you even drew pictures. That's effort. http://stackoverflow.com/questions/757145/do-wavefront-obj-files-support-animation/757186#757186 Comment by on Do Wavefront .obj files support animation? 2009-04-16T17:37:10Z 2009-04-16T17:37:10Z I was -hoping- I had missed something. Thanks. http://stackoverflow.com/questions/751878/c-initialize-array-size-in-constructor-initializer-list Comment by on C++: Initialize array size in constructor initializer list 2009-04-16T17:12:37Z 2009-04-16T17:12:37Z Using vectors brings new problems, since the class I'm trying to vectorize has protected &quot;new&quot; operators. But that wasn't what I asked so nevermind. http://stackoverflow.com/questions/749695/ruby-hash-initialization-is-this-niftyness-possible/749775#749775 Comment by on Ruby hash initialization: is this niftyness possible? 2009-04-15T14:14:36Z 2009-04-15T14:14:36Z This version is more readable and therefore inferior. http://stackoverflow.com/questions/751878/c-initialize-array-size-in-constructor-initializer-list/751891#751891 Comment by on C++: Initialize array size in constructor initializer list 2009-04-15T14:13:05Z 2009-04-15T14:13:05Z What would the syntax for using a vector in that situation be like? http://stackoverflow.com/questions/480764/linux-error-while-loading-shared-libraries-cannot-open-shared-object-file-no-su/480786#480786 Comment by on Linux error while loading shared libraries: cannot open shared object file: No such file or directory 2009-01-26T18:21:55Z 2009-01-26T18:21:55Z ... oh god, the .1 is part of the filename. Any idea what does it mean? http://stackoverflow.com/questions/472707/whats-the-ugliest-code-you-were-forced-to-write-by-outside-limitations/472749#472749 Comment by on What's the ugliest code you were forced to write by outside limitations? 2009-01-23T15:50:25Z 2009-01-23T15:50:25Z can I work at your place http://stackoverflow.com/questions/469445/last-words-of-a-programmer/472069#472069 Comment by on Last words of a ??? programmer 2009-01-23T12:10:45Z 2009-01-23T12:10:45Z This is clearly a fork procedure. http://stackoverflow.com/questions/469445/last-words-of-a-programmer/469485#469485 Comment by on Last words of a ??? programmer 2009-01-23T12:08:37Z 2009-01-23T12:08:37Z Needs a probabilistic call to Thread.Dream. http://stackoverflow.com/questions/470388/my-c-object-file-is-too-big/470404#470404 Comment by on My C++ object file is too big 2009-01-23T12:06:10Z 2009-01-23T12:06:10Z I wish I could pick two answers. http://stackoverflow.com/questions/468956/get-c-object-name-in-run-time Comment by on get C++ object name in run time 2009-01-22T13:22:55Z 2009-01-22T13:22:55Z what do you mean by 'name'? http://stackoverflow.com/questions/450617/most-binary-combinations-from-4-bits-with-each-bit-able-to-change-state-only-on/450954#450954 Comment by on Most binary combinations from 4 bits - with each bit able to change state only once 2009-01-16T16:26:35Z 2009-01-16T16:26:35Z I swear I did not read this before editing my answer. http://stackoverflow.com/questions/450616/how-important-for-programming-skills-is-to-have-nice-gadgets/450654#450654 Comment by on How important for programming skills is to have nice gadgets? 2009-01-16T15:30:35Z 2009-01-16T15:30:35Z Two screens, even.