User AShelly - Stack Overflow most recent 30 from stackoverflow.com 2009-12-14T22:23:01Z http://stackoverflow.com/feeds/user/10396 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1903300/whats-the-best-way-to-get-numbered-config-options-from-the-c-preprocessor/1903502#1903502 0 Answer by AShelly for What's the best way to get "numbered" config options from the C preprocessor? AShelly 2009-12-14T21:06:27Z 2009-12-14T21:06:27Z <p>Can you change your configuration directives? Or text-process them into the following form:</p> <p>Buttons.h:</p> <pre><code>#define MAKEBUTTONS() const char* gButtonNames[\ "power",\ "reset",\ "macroize",\ ] extern const char* gButtonNames[]; #define GET_BUTTON_NAME(n) gButtonNames[n] </code></pre> <p>Then only one source file should contain <code>MAKEBUTTONS();</code> at the global scope, and any client code can call <code>GET_BUTTON_NAME()</code> instead of a function.</p> http://stackoverflow.com/questions/1843314/embedded-visual-c-why-is-my-symbol-undefined/1858081#1858081 1 Answer by AShelly for Embedded Visual C++/Why is my Symbol Undefined? AShelly 2009-12-07T05:56:57Z 2009-12-07T05:56:57Z <p>Do you have a newline on the last line? A missing one may confuse the IDE's symbol parser</p> http://stackoverflow.com/questions/1858050/how-do-i-compare-two-timestamps-in-c/1858063#1858063 1 Answer by AShelly for How do I compare two timestamps in C? AShelly 2009-12-07T05:52:30Z 2009-12-07T05:52:30Z <p>googling <code>timeval</code> give <a href="http://www.gnu.org/s/libc/manual/html%5Fnode/Elapsed-Time.html" rel="nofollow">this first result</a>. From that page:</p> <p>It is often necessary to subtract two values of type struct timeval or struct timespec. Here is the best way to do this. It works even on some peculiar operating systems where the tv_sec member has an unsigned type.</p> <pre><code> /* Subtract the `struct timeval' values X and Y, storing the result in RESULT. Return 1 if the difference is negative, otherwise 0. */ int timeval_subtract (result, x, y) struct timeval *result, *x, *y; { /* Perform the carry for the later subtraction by updating y. */ if (x-&gt;tv_usec &lt; y-&gt;tv_usec) { int nsec = (y-&gt;tv_usec - x-&gt;tv_usec) / 1000000 + 1; y-&gt;tv_usec -= 1000000 * nsec; y-&gt;tv_sec += nsec; } if (x-&gt;tv_usec - y-&gt;tv_usec &gt; 1000000) { int nsec = (x-&gt;tv_usec - y-&gt;tv_usec) / 1000000; y-&gt;tv_usec += 1000000 * nsec; y-&gt;tv_sec -= nsec; } /* Compute the time remaining to wait. tv_usec is certainly positive. */ result-&gt;tv_sec = x-&gt;tv_sec - y-&gt;tv_sec; result-&gt;tv_usec = x-&gt;tv_usec - y-&gt;tv_usec; /* Return 1 if result is negative. */ return x-&gt;tv_sec &lt; y-&gt;tv_sec; } </code></pre> http://stackoverflow.com/questions/1826705/references-for-implementing-calendar-functionality-in-an-embedded-system/1835588#1835588 1 Answer by AShelly for References for implementing calendar functionality in an embedded system? AShelly 2009-12-02T20:31:05Z 2009-12-02T20:31:05Z <p>I'm bored, couldn't resist trying a solution. Here's a prototype in ruby - should be clear enough to translate to C.</p> <p>Given <code>offset</code> and a start date stored as: <code>Baseyear, Baseday, Basesec</code> where day 0 = Jan1, you can calculate the date as</p> <pre><code>#initialize outputs year= Baseyear day = Baseday sec = Basesec+offset #days &amp; seconds remaining in the current year is_leap = is_leap_year(year) days_remaining = 365+(is_leap ? 1 : 0) - day secs_remaining = SEC_PER_DAY*days_remaining #advance by year while (sec&gt;=secs_remaining) sec-=secs_remaining year+=1 is_leap = is_leap_year(year) days_remaining = 365+(is_leap ? 1 : 0) secs_remaining = SEC_PER_DAY*days_remaining day=0 end #sec holds seconds into the current year, split into days+seconds day += sec / SEC_PER_DAY day = day.to_i #cast to int sec %= SEC_PER_DAY #lookup month for i in (0..11) dpm = DAYS_PER_MONTH[i] # =[31,28,31,30,...] if (i==1 &amp;&amp; is_leap) dpm+=1 end if day &lt; dpm month = i break else day-=dpm end end day+=1 #1-based hour = sec/3600 min = (sec%3600)/60 sec = sec%60 puts "%s %d, %d @ %02d:%02d:%02d" % [MONTHNAME[month],day,year, hour, min, sec] </code></pre> <p>It should be easy to add a check that the day is between the begin and end days for DST in the current locale, and adjust the hour accordingly.</p> http://stackoverflow.com/questions/1827421/howto-pipe-raw-pcm-data-from-dev-ttyusb0-to-soundcard/1834890#1834890 0 Answer by AShelly for Howto pipe raw PCM-Data from /dev/ttyUSB0 to soundcard? AShelly 2009-12-02T18:31:25Z 2009-12-02T18:31:25Z <p>You need an api that lets you stream audiobuffers directly to the soundcard. I haven't done it on Linux, but I've used <a href="http://www.fmod.org" rel="nofollow">FMOD</a> for this purpose. You might find another API in <a href="http://stackoverflow.com/questions/772208/best-audio-playback-api-for-c-c-under-linux">this question</a>. SDL seems popular. </p> <p>The general idea is that you set up a streaming buffer, then your c program stuffs the incoming bytes into an array. The size is chosen to balance lag with jitter in the incoming stream. When the array is full, you pass it to the API, and start filling another one while the first plays.</p> http://stackoverflow.com/questions/1800620/search-file-1-in-file-2/1801199#1801199 2 Answer by AShelly for Search file 1 in file 2 AShelly 2009-11-26T02:12:30Z 2009-11-26T02:12:30Z <p>I think the answer depends on the source of the longer audio stream. If the longer stream contains the exact image of the shorter one (for example, if it was created by an audio editor with access to the original) then you have a simple string search problem and many answers exist, like <a href="http://en.wikipedia.org/wiki/Boyer%E2%80%93Moore%5Fstring%5Fsearch%5Falgorithm" rel="nofollow">Boyer-Moore</a>.</p> <p>If however, the original was decoded and re-encoded (i.e: you are testing to see if some guy used part of your band's mp3 in his youtube video), then you've got a much more difficult problem. </p> <p>I'd probably try to solve it in the frequency domain - Generate a 'signature' of the file 1 based on a sequence of smallish FFT windows, then doing a best-fit against FFTs from file 2. I have no idea how well this would work.</p> http://stackoverflow.com/questions/1799337/prior-declarations-of-functions/1799399#1799399 -1 Answer by AShelly for prior declarations of functions AShelly 2009-11-25T19:28:02Z 2009-11-25T19:28:02Z <p>So that the one-pass compiler knows how many bytes to pass for each argument.</p> <p>Consider:</p> <pre><code>f(12345); int f(char input) { printf("%c",input); } </code></pre> <p>Without a prototype, the compiler will assume that <code>f</code> accepts ints, and send <code>sizeof(int)</code> bytes to the function (through stack or registers, depending on the platform). But the function will only look at 1 byte, which will give the wrong result.</p> http://stackoverflow.com/questions/1798511/how-to-avoid-press-enter-with-any-getchar/1799345#1799345 0 Answer by AShelly for How to avoid press enter with any getchar() AShelly 2009-11-25T19:20:33Z 2009-11-25T19:20:33Z <p>You could include the 'ncurses' library, and use <code>getch()</code> instead of <code>getchar()</code>.</p> http://stackoverflow.com/questions/1792948/whats-a-good-simple-2d-rectangles-only-collision-detection-algorithm/1793116#1793116 2 Answer by AShelly for What's a good, simple, 2D rectangles-only collision detection algorithm? AShelly 2009-11-24T21:43:14Z 2009-11-24T21:43:14Z <p>One simple strategy that sped up detection in an early attempt at a simple 2D game was to maintain a list sorted by the longer dimension.The collision phase consisted of something like this:</p> <pre><code>for i in 0..n j = i+1 while rect[j].left &lt; rect[i].right check for collision in y j=j+1 endwhile endfor </code></pre> http://stackoverflow.com/questions/1771082/are-there-any-open-source-military-war-strategy-simulating-engines-frameworks/1793021#1793021 1 Answer by AShelly for Are there any open-source military/war strategy simulating engines/frameworks? AShelly 2009-11-24T21:25:07Z 2009-11-24T21:25:07Z <p><a href="http://en.wikipedia.org/wiki/Distributed%5FInteractive%5FSimulation" rel="nofollow">DIS</a> is an open standard for linking military simulations together. There are open soruce libraries for the protocol layer. Perhaps a little digging will find some open clients as well.</p> http://stackoverflow.com/questions/1787386/improve-resolution-of-random-data/1787395#1787395 2 Answer by AShelly for Improve "resolution" of random data AShelly 2009-11-24T02:23:58Z 2009-11-24T02:23:58Z <p>I don't know if this will improve the results or not, but you can do <code>rand(all.length)</code> to get an integer directly.</p> http://stackoverflow.com/questions/341817/is-there-a-replacement-for-unistd-h-for-windows-visual-c 7 is there a replacement for unistd.h for Windows (Visual C)? AShelly 2008-12-04T19:51:08Z 2009-11-18T22:56:15Z <p>I'm porting a relatively simple console program written for unix to the Windows platform. (VC++ 2005). All the source files include "unistd.h", which doesn't exist. Removing it, i get complaints about misssing prototypes for 'srandom', 'random', and 'getopt'. I know I can replace the random funcs, and I'm pretty sure I can find/hack-up a getopt implementation. </p> <p>But I'm sure others have run into the same challenge. My question is: Has someone done a port of "unistd.h" to windows? At least one containg those functions which do have a native windows implementation - I don't need pipes or forking.</p> <p><strong>EDIT</strong>:</p> <p>I know I can create my very own "unistd.h" which contains replacements for the things I need - especially in this case, since it is a limited set. But since it seems like a common problem, I was wondering if someone had done the work already for a bigger subset of the functionality.</p> <p>Switching to a different compiler or environment isn't possible at work - I'm stuck with Visual Studio.</p> http://stackoverflow.com/questions/423006/how-do-i-generate-points-that-match-a-histogram 5 How do I generate points that match a histogram? AShelly 2009-01-08T02:10:31Z 2009-10-20T12:08:17Z <p>I am working on a simulation system. I will soon have experimental data (histograms) for the real-world distribution of values for several simulation inputs. </p> <p>When the simulation runs, I would like to be able to produce random values that match the measured distribution. I'd prefer to do this without storing the original histograms. What are some good ways of </p> <ol> <li>Mapping a histogram to a set of parameters representing the distribution? </li> <li>Generating values that based on those parameters at runtime?</li> </ol> <p>EDIT: The input data are event durations for several different types of events. I expect that different types will have different distribution functions.</p> http://stackoverflow.com/questions/1439907/what-are-the-differences-between-if-else-and-else-if/1440009#1440009 0 Answer by AShelly for What are the differences between if, else, and else if? AShelly 2009-09-17T16:45:55Z 2009-09-21T04:54:15Z <pre><code>if (numOptions == 1) return "if"; else if (numOptions &gt; 2) return "else if"; else return "else"; </code></pre> http://stackoverflow.com/questions/1430210/more-efficient-large-array-or-many-scalars/1430656#1430656 3 Answer by AShelly for More efficient: large array or many scalars AShelly 2009-09-16T02:37:14Z 2009-09-16T02:37:14Z <p>Assuming you need to keep the history, and given your 256 element array limit, here's a way to manage it:</p> <pre><code>int history1[256]; int history2[256]; int history3[256]; int history4[256]; int* arrays[] = {history1,history2,history3,history4} int idx=0; int sum = 0; int n = 0; int updateAverage(int newValue) { int ai = (idx++)&gt;&gt;8; int* target = arrays[ai]+(idx&amp;0xFF); sum -=*target; *target = newValue; sum += *target; n++; n=n&lt;1000?n:1000; idx = (idx&lt;1000)?idx:0; return sum/n; } </code></pre> http://stackoverflow.com/questions/357233/what-dead-programming-languages-do-you-know/583553#583553 1 Answer by AShelly for What dead programming languages do you know? AShelly 2009-02-24T20:56:02Z 2009-09-13T23:01:51Z <p>I thought my mad <a href="http://en.wikipedia.org/wiki/NATURAL" rel="nofollow">NATURAL</a> skills were now useless but <a href="http://www.google.com/search?hl=en&amp;lr=&amp;as%5Fqdr=all&amp;q=adabas+jobs" rel="nofollow">Google proves me wrong</a>.</p> http://stackoverflow.com/questions/1402757/how-to-break-out-from-a-ruby-block/1402889#1402889 1 Answer by AShelly for How to break out from a ruby block? AShelly 2009-09-10T00:52:30Z 2009-09-10T00:52:30Z <p>use the keyword <code>break</code> instead of <code>return</code></p> http://stackoverflow.com/questions/1358582/gui-based-debugger-for-ruby/1358688#1358688 0 Answer by AShelly for GUI based debugger for Ruby? AShelly 2009-08-31T18:15:26Z 2009-08-31T18:15:26Z <p>I haven't used it in about a year, but I liked <a href="http://www.ruby-ide.com/ruby/ruby%5Fide%5Fand%5Fruby%5Feditor.php" rel="nofollow">Arachno Ruby</a></p> http://stackoverflow.com/questions/1290865/strings-in-c-pitfalls-and-techniques/1291330#1291330 0 Answer by AShelly for Strings in C: pitfalls and techniques AShelly 2009-08-18T01:13:42Z 2009-08-18T01:13:42Z <p>I'd point out the performance pitfalls of over-reliance on the built-in string functions.</p> <pre><code>char* triple(char* source) { int n=strlen(source); char* dest=malloc(n*3+1); strcpy(dest,src); strcat(dest,src); strcat(dest,src); return dest; } </code></pre> http://stackoverflow.com/questions/1280010/forward-declaration-problem/1280151#1280151 5 Answer by AShelly for Forward declaration problem AShelly 2009-08-14T20:51:45Z 2009-08-14T20:51:45Z <p>without the class definition of <code>Presenter</code>, the compiler does not how to take the address of <code>Presenter::StatDlgProc</code>. Specifically, it doesn't know if it is virtual or not. If it is virtual, it needs to know the layout of the class's vtable in order to generate the code which will look up the function call. (If it is static, the compiler could theoretically resolve the address at link time.) So without the class definition, the compliler can't decide whether to emit instructions for a simple function call or for a virtual function lookup.</p> http://stackoverflow.com/questions/1273367/what-is-this-x86-inline-assembly-doing/1273452#1273452 1 Answer by AShelly for What is this x86 inline assembly doing? AShelly 2009-08-13T17:29:36Z 2009-08-13T17:29:36Z <p>It's inserting an 0F 31 opcode, which according to <a href="http://ref.x86asm.net/coder32.html#x0F31" rel="nofollow">this site</a> is:</p> <pre><code>0F 31 P1+ f2 RDTSC EAX EDX IA32_T... Read Time-Stamp Counter </code></pre> <p>Then it is storing the result in the <code>x</code> variable</p> http://stackoverflow.com/questions/1228545/what-configuration-file-format-allows-the-inclusions-of-otherfiles-and-the-inheri/1228959#1228959 1 Answer by AShelly for What configuration file format allows the inclusions of otherfiles and the inheritance of settings? AShelly 2009-08-04T17:48:06Z 2009-08-04T17:48:06Z <p><a href="http://yaml.org/spec/current.html" rel="nofollow">YAML</a>? It's like JSON without the commas and quotes.</p> http://stackoverflow.com/questions/884849/what-can-i-use-for-real-time-plotting-graphing-in-c/1228887#1228887 0 Answer by AShelly for What can I use for real-time plotting/graphing in C++? AShelly 2009-08-04T17:33:11Z 2009-08-04T17:33:11Z <p>I'm pretty happy with <a href="http://www.ni.com/lwcvi/" rel="nofollow">National Instrument's LabWindows/CVI</a>. It provides most of the same nifty graphing widgets as Labview, but you connect them with a farily clean API instead of the tedious Labview method of dragging virtual wires around a "visual" layout. We've used it to capture and plot incoming data @10Khz. The only downside is the price, which starts at $1300 and goes up.</p> http://stackoverflow.com/questions/1224154/why-is-the-call-stack-set-up-like-this/1224180#1224180 1 Answer by AShelly for why is the call stack set up like this? AShelly 2009-08-03T19:29:26Z 2009-08-03T19:29:26Z <p>Is this a debug or release build? I'd expect some padding with the debug builds for detecting Stack Overflows.</p> http://stackoverflow.com/questions/1214574/calculate-the-derivative-i-i-1-in-ruby/1214626#1214626 1 Answer by AShelly for Calculate the derivative ([i] - [i - 1]) in Ruby. AShelly 2009-07-31T20:13:39Z 2009-07-31T20:13:39Z <pre><code>last=0 new = old.map{|v|x=v-last;last=v;x}[1..-1] </code></pre> http://stackoverflow.com/questions/1207819/heap-corruption/1207885#1207885 1 Answer by AShelly for Heap corruption AShelly 2009-07-30T16:51:47Z 2009-07-30T16:51:47Z <p>Are you asking if this would be better?</p> <pre><code>void this_is_great() { char* p = new char[5]; delete[] p; return; } </code></pre> <p>It's not.</p> http://stackoverflow.com/questions/1202545/does-a-background-in-physics-make-you-a-better-programmer/1207848#1207848 0 Answer by AShelly for Does a background in physics make you a better programmer? AShelly 2009-07-30T16:46:27Z 2009-07-30T16:46:27Z <p>A background in Physics is very useful for an embedded or systems programmer. The more you understand the physical system your sowtware interacts with the easier it is to write good code for it.</p> <p>In general, any background which lets you understand the real-world problem domain better will make you a better programmer.</p> http://stackoverflow.com/questions/1202391/how-to-create-an-intercept-missile-for-a-game/1202426#1202426 2 Answer by AShelly for How to create an "intercept missile" for a game? AShelly 2009-07-29T19:12:35Z 2009-07-29T19:12:35Z <p>Take a look at <a href="http://opensteer.sourceforge.net/" rel="nofollow">OpenSteer</a>. It has code to solve problems like this. Look at 'steerForSeek' or 'steerForPursuit'.</p> http://stackoverflow.com/questions/1201681/how-to-compute-ones-complement-using-rubys-bitwise-operators/1201763#1201763 1 Answer by AShelly for How to compute one's complement using Ruby's bitwise operators ? AShelly 2009-07-29T17:12:44Z 2009-07-29T19:00:02Z <p>See <a href="http://stackoverflow.com/questions/791328/how-does-the-bitwise-complement-operator-work">this question</a> for why.</p> <p>One problem with your method is that your expected answer is only true if you only flip the four significant bits: <code>1001 -&gt; 0110</code>.</p> <p>But the number is stored with leading zeros, and the ~ operator flips all the leading bits too: <code>00001001 -&gt; 11110110</code>. Then the leading 1 is interpreted as the negative sign.</p> <p>You really need to specify what the function is supposed to do with numbers like <code>0b101</code> and <code>0b11011</code> before you can decide how to implement it. If you only ever want to flip 4 bits you can do <code>v^0b1111</code>, as suggested in another answer. But if you want to flip all significant bits, it gets more complicated.</p> <p><strong>edit</strong></p> <p>Here's one way to flip all the significant bits:</p> <pre><code>def maskbits n b=1 prev=n; mask=prev|(prev&gt;&gt;1) while (mask!=prev) prev=mask; mask|=(mask&gt;&gt;(b*=2)) end mask end def ones_complement n n^maskbits(n) end </code></pre> <p>This gives </p> <pre><code>p ones_complement(9).to_s(2) #&gt;&gt;"110" p ones_complement(15).to_s(2) #&gt;&gt;"0" p ones_complement(1).to_s(2) #&gt;&gt;"0" </code></pre> <p>This does not give your desired output for ones_compliment(1), because it treats 1 as "1" not "01". I don't know how the function could infer how many leading zeros you want without taking the width as an argument.</p> http://stackoverflow.com/questions/1196779/how-do-i-use-placeholder-text-in-a-win32-edit-control/1196816#1196816 0 Answer by AShelly for How do I use 'placeholder text' in a win32 edit control? AShelly 2009-07-28T21:22:32Z 2009-07-28T21:22:32Z <p>Maybe, but why not just set the default text and color as needed, and clear it with an 'onClick' event?</p> http://stackoverflow.com/questions/1797345/bit-shifting-masking-or-a-bit-field-struct/1801861#1801861 Comment by AShelly on Bit Shifting, Masking or a Bit Field Struct? AShelly 2009-12-03T19:44:38Z 2009-12-03T19:44:38Z There are cases where using a bitfield to parse a message is perfectly reasonable. For instance in embedded apps where the program is tied closely to the DSP chip's capabilities, there is no reason to worry about portability, since an platform change would break everything. Figuring out how the compiler handles bitfields, and taking advantage of it allows you to write much cleaner code. http://stackoverflow.com/questions/1817036/extracting-bits/1817308#1817308 Comment by AShelly on Extracting bits AShelly 2009-12-03T19:31:56Z 2009-12-03T19:31:56Z &quot;what the common Intel chips do is not useful&quot; - what do they do? http://stackoverflow.com/questions/1800620/search-file-1-in-file-2/1803105#1803105 Comment by AShelly on Search file 1 in file 2 AShelly 2009-12-02T18:20:05Z 2009-12-02T18:20:05Z In that case, a basic string search should work, just treat the PCM like a character stream. Just make sure to allow `0`s - don't treat them as terminators. http://stackoverflow.com/questions/1799337/prior-declarations-of-functions/1799399#1799399 Comment by AShelly on prior declarations of functions AShelly 2009-11-25T20:11:18Z 2009-11-25T20:11:18Z True - I was assuming complete prior declaration with a prototype. This is still a good example of why prototype definition is a good idea even when not strictly required. http://stackoverflow.com/questions/1799337/prior-declarations-of-functions/1799453#1799453 Comment by AShelly on prior declarations of functions AShelly 2009-11-25T20:06:07Z 2009-11-25T20:06:07Z So if functions don't have to be prior delcared (or at least didn't until c99), isn't point 1 invalid? The complier <i>can</i> recognize a function without a prior delaration. http://stackoverflow.com/questions/1771082/are-there-any-open-source-military-war-strategy-simulating-engines-frameworks/1793021#1793021 Comment by AShelly on Are there any open-source military/war strategy simulating engines/frameworks? AShelly 2009-11-25T00:29:15Z 2009-11-25T00:29:15Z 10 years ago I worked with several clients under development by defense contractors. There were Abrams and Bradley crew training simulators, and a &quot;god's eye view&quot; client for setting up scenarios. I heard rumors of an infantry client, but I never saw it. http://stackoverflow.com/questions/1466968/real-time-pitch-detection-using-fft Comment by AShelly on Real-time pitch detection using FFT AShelly 2009-09-23T19:06:32Z 2009-09-23T19:06:32Z and what's wrong with that? Middle C is 440 Hz, so that range seems reasonable if sampling your mic. What frequencys do you expect? http://stackoverflow.com/questions/1439907/what-are-the-differences-between-if-else-and-else-if/1440009#1440009 Comment by AShelly on What are the differences between if, else, and else if? AShelly 2009-09-21T04:54:07Z 2009-09-21T04:54:07Z I'm so embarrassed... http://stackoverflow.com/questions/1430210/more-efficient-large-array-or-many-scalars/1430656#1430656 Comment by AShelly on More efficient: large array or many scalars AShelly 2009-09-17T16:36:15Z 2009-09-17T16:36:15Z If I wanted even better performance, I'd average over 1024 samples so i could also do <code>idx++;idx&amp;=0x3F;</code> http://stackoverflow.com/questions/1430210/more-efficient-large-array-or-many-scalars/1430656#1430656 Comment by AShelly on More efficient: large array or many scalars AShelly 2009-09-17T16:33:07Z 2009-09-17T16:33:07Z on the embedded processor I use most (TI 28xx), <code>n=n&lt;X?n:X;</code> compiles to a single MIN instruction, while <code>if (n&gt;X) n=X;</code> becomes a pipeline-stalling branch. http://stackoverflow.com/questions/1402757/how-to-break-out-from-a-ruby-block/1402889#1402889 Comment by AShelly on How to break out from a ruby block? AShelly 2009-09-16T02:18:39Z 2009-09-16T02:18:39Z how does that not work? http://stackoverflow.com/questions/1343246/algorithm-to-permute-elements-in-array Comment by AShelly on Algorithm to permute elements in Array AShelly 2009-08-27T19:55:58Z 2009-08-27T19:55:58Z I think there is an error in your list, shouldn't 2413 follow 2341? http://stackoverflow.com/questions/1288291/how-can-i-correctly-prefix-a-word-with-a-and-an Comment by AShelly on How can I correctly prefix a word with "a" and "an"? AShelly 2009-08-17T17:30:45Z 2009-08-17T17:30:45Z So it appears that there is no one &quot;correct&quot; way, and the rule depends on your accent. So just choose a simple hurestic, and claim any oddities are due to the program's accent. http://stackoverflow.com/questions/1280010/forward-declaration-problem/1280151#1280151 Comment by AShelly on Forward declaration problem AShelly 2009-08-17T17:22:59Z 2009-08-17T17:22:59Z like: <code>void func(int parm); funcPtr = &amp;func;</code> Yes, it should be possible - the linker can resolve that one. http://stackoverflow.com/questions/1237709/how-to-download-deezer-music-with-deezer-downloader Comment by AShelly on How to download Deezer music with Deezer downloader? AShelly 2009-08-13T17:20:21Z 2009-08-13T17:20:21Z This is really just an advertisement, isn't it?