User - Stack Overflowmost recent 30 from stackoverflow.com2009-12-17T11:17:28Zhttp://stackoverflow.com/feeds/user/39702http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1665531/procmail-script-for-autoreplier-with-constraints0Procmail script for autoreplier with constraintszarawesome2009-11-03T06:06:58Z2009-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#89481212Answer by zarawesome for How to differentiate (when overloading) between prefix and postfix forms of operator++? (C++)zarawesome2009-05-21T19:56:32Z2009-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& operator++(); //prefix
Date& 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-programming4Language for non-programmers to start learning programmingzarawesome2009-01-07T11:27:08Z2009-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-sprites5Is it possible to use OpenGL point sprites to simulate billboard sprites?zarawesome2009-05-25T19:10:11Z2009-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, &maxSize );
if( maxSize > 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 < 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#8941581Answer by zarawesome for Drawing Isometric game worldszarawesome2009-05-21T17:39:44Z2009-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-screen0OpenGL - Copy texture from screen smaller than that screen.zarawesome2009-05-20T19:38:22Z2009-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, &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#8898512Answer by zarawesome for What is your longest-held programming assumption that turned out to be incorrect?zarawesome2009-05-20T19:42:19Z2009-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-animation0Do Wavefront .obj files support animation?zarawesome2009-04-16T17:14:15Z2009-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-list1C++: Initialize array size in constructor initializer listzarawesome2009-04-15T14:08:43Z2009-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-driver0Xenomai RTDM timed looping task in device driverzarawesome2009-02-06T11:39:04Z2009-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-c2sprintf() without trailing null space in Czarawesome2008-12-10T18:29:24Z2009-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-su0Linux error while loading shared libraries: cannot open shared object file: No such file or directoryzarawesome2009-01-26T18:07:57Z2009-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-limitations2What's the ugliest code you were forced to write by outside limitations?zarawesome2009-01-23T12:29:03Z2009-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-big1My C++ object file is too bigzarawesome2009-01-22T19:01:04Z2009-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#4691080Answer by zarawesome for get C++ object name in run time zarawesome2009-01-22T13:26:10Z2009-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#4506488Answer by zarawesome for Most binary combinations from 4 bits - with each bit able to change state only oncezarawesome2009-01-16T15:01:35Z2009-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 -> 0001 -> 0011 -> 0111 -> 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 -> 0001 -> 0011 -> 0111 -> 1111 -> 1110 -> 1100 -> 1000 -> 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#4507701Answer by zarawesome for How important for programming skills is to have nice gadgets?zarawesome2009-01-16T15:35:42Z2009-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#4506842Answer by zarawesome for Simplified algorithm for calculating remaining space in a circular buffer?zarawesome2009-01-16T15:11:35Z2009-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#423816176Answer by zarawesome for Worst UI You've Ever Usedzarawesome2009-01-08T10:34:45Z2009-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-c1How to cast member variable pointer to generic type in C++zarawesome2009-01-07T15:29:18Z2009-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(&obj_a, &A::b);
DoThings(&obj_c, &C::d);
</code></pre>
<p>The question is - What should MYSTERYTYPE be? neither void* nor int work, despite the value &A::b being printed just fine if you output it through a printf.</p>
<p>Clarifications: Yes, &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-application2How to make a simple Wine-based installer for Windows applicationzarawesome2008-12-13T22:17:37Z2009-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#3402160Answer by zarawesome for The Halting Problem in the Fieldzarawesome2008-12-04T10:59:52Z2008-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#3382000Answer by zarawesome for How not to rush yourself?zarawesome2008-12-03T18:22:24Z2008-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#3381514Answer by zarawesome for Avoiding a javascript race conditionzarawesome2008-12-03T18:08:24Z2008-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-machine3Implementing event conditions in a C++ state machinezarawesome2008-12-02T17:24:25Z2008-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#3215701Answer by zarawesome for When good programmers go bad!zarawesome2008-11-26T17:52:57Z2008-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-kit1How to compile and install a Linux kernel into an ARM kitzarawesome2008-11-21T16:15:27Z2008-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#3097305Answer by zarawesome for What are the worst metaphors in computer science and engineering?zarawesome2008-11-21T18:39:53Z2008-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#3096853Answer by zarawesome for How to find best fuzzy match for a string in a large string databasezarawesome2008-11-21T18:21:50Z2008-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#3095970Answer by zarawesome for How do I read the results of a system() call in C++?zarawesome2008-11-21T17:43:43Z2008-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 << 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#1665972Comment by on Procmail script for autoreplier with constraints2009-11-03T18:58:45Z2009-11-03T18:58:45ZThanks 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#871480Comment 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:33Z2009-05-26T05:11:33ZWonder if a function lookup and call is faster on ruby than a logical and?http://stackoverflow.com/questions/892811/drawing-isometric-game-worlds/893063#893063Comment by on Drawing Isometric game worlds2009-05-25T17:58:21Z2009-05-25T17:58:21Zyou even drew pictures. That's effort.http://stackoverflow.com/questions/757145/do-wavefront-obj-files-support-animation/757186#757186Comment by on Do Wavefront .obj files support animation?2009-04-16T17:37:10Z2009-04-16T17:37:10ZI was -hoping- I had missed something. Thanks.http://stackoverflow.com/questions/751878/c-initialize-array-size-in-constructor-initializer-listComment by on C++: Initialize array size in constructor initializer list2009-04-16T17:12:37Z2009-04-16T17:12:37ZUsing vectors brings new problems, since the class I'm trying to vectorize has protected "new" operators. But that wasn't what I asked so nevermind.http://stackoverflow.com/questions/749695/ruby-hash-initialization-is-this-niftyness-possible/749775#749775Comment by on Ruby hash initialization: is this niftyness possible?2009-04-15T14:14:36Z2009-04-15T14:14:36ZThis version is more readable and therefore inferior.http://stackoverflow.com/questions/751878/c-initialize-array-size-in-constructor-initializer-list/751891#751891Comment by on C++: Initialize array size in constructor initializer list2009-04-15T14:13:05Z2009-04-15T14:13:05ZWhat 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#480786Comment by on Linux error while loading shared libraries: cannot open shared object file: No such file or directory2009-01-26T18:21:55Z2009-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#472749Comment by on What's the ugliest code you were forced to write by outside limitations?2009-01-23T15:50:25Z2009-01-23T15:50:25Zcan I work at your placehttp://stackoverflow.com/questions/469445/last-words-of-a-programmer/472069#472069Comment by on Last words of a ??? programmer2009-01-23T12:10:45Z2009-01-23T12:10:45ZThis is clearly a fork procedure.http://stackoverflow.com/questions/469445/last-words-of-a-programmer/469485#469485Comment by on Last words of a ??? programmer2009-01-23T12:08:37Z2009-01-23T12:08:37ZNeeds a probabilistic call to Thread.Dream.http://stackoverflow.com/questions/470388/my-c-object-file-is-too-big/470404#470404Comment by on My C++ object file is too big2009-01-23T12:06:10Z2009-01-23T12:06:10ZI wish I could pick two answers.http://stackoverflow.com/questions/468956/get-c-object-name-in-run-timeComment by on get C++ object name in run time 2009-01-22T13:22:55Z2009-01-22T13:22:55Zwhat 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#450954Comment by on Most binary combinations from 4 bits - with each bit able to change state only once2009-01-16T16:26:35Z2009-01-16T16:26:35ZI 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#450654Comment by on How important for programming skills is to have nice gadgets?2009-01-16T15:30:35Z2009-01-16T15:30:35ZTwo screens, even.