User Ape-inago - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T00:55:06Z http://stackoverflow.com/feeds/user/42082 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1023608/a-c-program-to-remove-comments/1758392#1758392 0 Answer by Ape-inago for a C++ program to remove comments Ape-inago 2009-11-18T19:19:57Z 2009-11-18T19:19:57Z <p>You have a number of states to consider:</p> <ul> <li>the state that you are in side of a single quoted string</li> <li>the state that you are in a double quoted string</li> <li>the state where you have found a //</li> <li>the state where you have found a /*</li> <li>and lastly, a single \ on the end of a line, </li> </ul> <p>which can cause some pretty messed up formatting where the compiler and the text highlighter disagree:</p> <pre><code>include &lt;stdio&gt;; INT someVariable = 0; /* where does this comment end? *\ /// I don't know someVariable = 6; // most text editors don't think it ends until here --&gt; */\ but someVariable = 6; shouldnt actually be commented out, and this line should be! \ this is also part of the comment , a "3 line " one line comment? WTF! std::cout &lt;&lt; someVariable &lt;&lt; std::endl; // even though "someVariable=6" appears to be commented out, it shouldn't be. // so this will print "6" // /* \ */this text should be commented out aswell </code></pre> <p>runnting that code through a comment stripper should return:</p> <pre><code>include &lt;stdio&gt;; INT someVariable = 0; someVariable = 6; std::cout &lt;&lt; someVariable &lt;&lt; std::endl; </code></pre> <p>and the fun part is when you have to have compiler errors refer to lines of code according to the orignal mess, not the stripped version.</p> http://stackoverflow.com/questions/1757805/jquery-event-only-every-time-interval/1757967#1757967 1 Answer by Ape-inago for jQuery event only every time interval Ape-inago 2009-11-18T18:10:56Z 2009-11-18T18:10:56Z <p>two variables, charBuffer, sendFlag</p> <ol> <li>Use a setTimeout to have a function be called every two seconds. <ul> <li>This function checks if the buffer has stuff in it. </li> <li>If it does, it sends/empties the stuff and clears the sent flag (to false). <ul> <li>and It should also clear the timeout, and set it again</li> </ul></li> <li>else it sets the flag (to true). </li> </ul></li> <li>Everytime the user hits a key, store it in the buffer.<br> <ul> <li>if the sent flag is clear (it's false), do nothing.</li> <li>else (it's true) send/empty the stuff currently in the buffer and clear the flag (to false), <ul> <li>and It should also clear the timeout, and set it again</li> </ul></li> </ul></li> </ol> <p>This will make it so that the first time you press a key, it is sent, and a minimum of 2 seconds must pass before it can send again.</p> <p>Could use some tweaking, but i use this setup to do something similar.</p> http://stackoverflow.com/questions/1743966/making-a-program-timer-based-rather-than-frame-rate-dependent/1743993#1743993 1 Answer by Ape-inago for Making a program timer-based rather than frame-rate dependent? Ape-inago 2009-11-16T18:32:56Z 2009-11-18T14:45:18Z <p>I used <a href="http://gafferongames.com/game-physics/fix-your-timestep/" rel="nofollow">fix your timestep</a> with some success</p> <p>The issue then becomes keeping track of any lag... and slowing the thing down if the computer can't keep up.</p> http://stackoverflow.com/questions/1744665/need-help-with-getline/1744742#1744742 2 Answer by Ape-inago for Need help with getline() Ape-inago 2009-11-16T20:44:09Z 2009-11-18T14:43:24Z <pre><code>cin &gt;&gt; number </code></pre> <p>only grabs the numbers from the buffer, it leaves the "enter" in the buffer, which is then immediately grabbed up by the getline and interpreted as an empty string (or string with just the new line, i forget).</p> http://stackoverflow.com/questions/1626248/does-gcc-inline-c-functions-without-the-inline-keyword/1626272#1626272 1 Answer by Ape-inago for Does GCC inline C++ functions without the 'inline' keyword? Ape-inago 2009-10-26T17:52:44Z 2009-10-26T17:52:44Z <p>"-O3 This option turns on more expensive optimizations, <strong>such as function inlining</strong>"</p> <ul> <li><a href="http://www.network-theory.co.uk/docs/gccintro/gccintro%5F49.html" rel="nofollow">http://www.network-theory.co.uk/docs/gccintro/gccintro%5F49.html</a></li> </ul> http://stackoverflow.com/questions/1490971/how-can-i-ask-the-user-to-re-enter-input-when-they-enter-invalid-input-in-perl/1491163#1491163 2 Answer by Ape-inago for How can I ask the user to re-enter input when they enter invalid input, in Perl? Ape-inago 2009-09-29T08:05:59Z 2009-10-05T12:28:49Z <pre><code>my $value; until(defined $value = get_value()) { print"you didn't enter a valid value\n"; } sub get_value { print "Enter a number to select (1) Apple (2) Mango (3) grapes:" $value=&lt;STDIN&gt;; if($value =~ /[1-3]/ ) { return $value; } else { return undef; } } </code></pre> http://stackoverflow.com/questions/1402667/is-there-a-free-open-source-equivalent-of-mailing-list-managers-such-as-mailchimp/1402703#1402703 1 Answer by Ape-inago for Is there a free/open-source equivalent of mailing list managers such as MailChimp or ConstantContact, etc..? Ape-inago 2009-09-09T23:38:27Z 2009-09-09T23:38:27Z <p><a href="http://www.gnu.org/software/mailman/index.html" rel="nofollow">MailMan</a></p> <blockquote> <p>Mailman is free software for managing electronic mail discussion and e-newsletter lists. Mailman is integrated with the web, making it easy for users to manage their accounts and for list owners to administer their lists. Mailman supports built-in archiving, automatic bounce processing, content filtering, digest delivery, spam filters, and more.</p> </blockquote> http://stackoverflow.com/questions/1384707/how-to-implement-the-progress-bar-like-gmail/1384716#1384716 0 Answer by Ape-inago for How to implement the progress bar like gmail? Ape-inago 2009-09-06T02:10:13Z 2009-09-06T02:10:13Z <p>I imagine that the page is queried/downloaded in parts that have a measurable file size or ammount. Further this amount would need to be reported ahead of time and kept track of for the duration of the page load.</p> http://stackoverflow.com/questions/1365370/ms-word-vs-for-end-user-help-document-for-a-web-based-application/1365713#1365713 0 Answer by Ape-inago for MS Word vs ??, for end-user help document for a Web-based application Ape-inago 2009-09-02T03:34:58Z 2009-09-02T03:34:58Z <p>For downloadables, make a CHM file, they are awesome.</p> <p>You can have it double as an online html file too.</p> <p><a href="http://en.wikipedia.org/wiki/Microsoft%5FCompiled%5FHTML%5FHelp" rel="nofollow">http://en.wikipedia.org/wiki/Microsoft%5FCompiled%5FHTML%5FHelp</a></p> http://stackoverflow.com/questions/1228089/how-does-the-network-time-protocol-work/1230929#1230929 0 Answer by Ape-inago for How Does the Network Time Protocol Work? Ape-inago 2009-08-05T02:44:14Z 2009-08-05T02:44:14Z <p>IF you are using timestamps to decide ordering, specific times may not be nessisary. You could use <a href="http://en.wikipedia.org/wiki/Lamport%5Ftimestamps" rel="nofollow">lamport clocks</a> instead, which are less of a pain than network syncronization. It can tell you what came "first", but not the exact difference in times. It doesn't care what the computer's clock actually says.</p> http://stackoverflow.com/questions/1163824/linux-usb-turning-the-power-on-and-off/1164956#1164956 0 Answer by Ape-inago for Linux USB: turning the power on and off? Ape-inago 2009-07-22T12:38:26Z 2009-07-22T12:38:26Z <p>I'd be more inclined to cut the wire and hook it up to a serial port w/ some type of simple relay running ofF one of the 'recieve ready'pin. Then you could just pull the line down (signal 'i'm ready to receive') to the serial port file every time there is some isssue. When it's done, just signal 'i'm full'</p> <p>My understanding of those things, however, is that they draw a lot of current until they fully charge the capacitor, then release it all at once to flash the bulb. I can't imagine such a sudden discharge is good for the circuitry of the computer. you may need some diode current traps to prevent feedback into the serial port.</p> <blockquote> <p>Every time my alarm goes off, the computer shuts down!</p> </blockquote> http://stackoverflow.com/questions/798612/syntax-for-dereferencing-a-pointer-in-c-or-c/1157003#1157003 0 Answer by Ape-inago for Syntax for dereferencing a pointer in C (or C++) Ape-inago 2009-07-21T02:24:09Z 2009-07-21T02:24:09Z <p>I've had experiances where "->" wasn't properly implemented in a couple of compilers... so the normal (*p).a was more likely to work when you have mutliple levels of nesting.</p> http://stackoverflow.com/questions/1136880/android-brightness-change/1137496#1137496 0 Answer by Ape-inago for Android. Brightness Change Ape-inago 2009-07-16T13:15:07Z 2009-07-16T13:15:07Z <p>edit: check out commonsware.com's post. I didn't realize you may be trying to sleep the Gui...</p> <p><hr /></p> <h2>Likely problem:</h2> <p>Thread.sleep's argument is only a minimum value. you may be telling it to sleep 50ms, but it may sleep for 80ms one time, 50ms the next, and then 120ms after that. it largely depends on when the processor decides to schedule you.</p> <p><hr /></p> <h2>The best solution:</h2> <p>The best way to get this done would be to have some type of interupt based on a kernel timer... that is to say, you'd need to get the operating sytem to call your program whenever some external timer goes off, and have your program handle that call using an interrupt function. TBH, I don't think android was designed to do this, but there may be a different way of handling your situation that approximates it.</p> <p><hr /></p> <h2>The easiest solution:</h2> <p>is instead of </p> <pre><code>spentTime+=sleepTime; </code></pre> <p>do something like this (these functions don't nessisarily exist, this is just an example):</p> <pre><code> float startTime = get_current_time(); sleep(50); float endTime = get_current_time(); sleepTime = startTime - endTime; spentTime += sleepTime; change_brightness.increase_by_ammount(sleepTime/spentTime); </code></pre> <p>... this way the ammount of sleep is proportional to the actual sleeping time. of course it will be delayed by one go through the loop, but that shouldn't matter visually.</p> http://stackoverflow.com/questions/1133768/powershell-does-version-2-work-seamlessly-with-version-1-scripts/1133794#1133794 2 Answer by Ape-inago for PowerShell: Does Version 2 work seamlessly with Version 1 scripts? Ape-inago 2009-07-15T20:26:00Z 2009-07-15T20:38:56Z <p>YES*</p> <p>unless for some rare reason one of your v1 scripts happens to use a commandlet that has the same name as one included with v2:</p> <blockquote> <p>Windows PowerShell 2.0 is backward compatible with Windows PowerShell 1.0. All the scripts written for V1 should work in V2.</p> <p>In Windows PowerShell 1.0, a runtime error was generated when two Windows PowerShell snap-ins exported cmdlets with the same name.</p> <p>In Windows PowerShell 2.0, the last cmdlet that is added to the session runs when you type the command name.</p> <p><a href="http://blogs.msdn.com/powershell/archive/2009/05/06/powershell-v2-backward-compatibility.aspx" rel="nofollow">Source: PowerShell V2 - backward compatibility (Windows PowerShell Blog)</a> ...</p> <p><a href="http://www.google.com/search?q=powershel+version+compatibility" rel="nofollow">(via google)</a></p> </blockquote> <p>But apparently there are work-arounds in place:</p> <blockquote> <p>Especially for enterprise environments, it is important to understand whether an updated technology now means an incompatible technology. In the case of PowerShell v2, any scripts that you designed in v1 are completely interoperable. It is also important to note that if you design scripts in v2 that make use of cmdlets only available in that version, special syntax is available to check the version of PowerShell being used before the execution of the script. Nice!</p> <p><a href="http://www.compellent.com/blog/post/PowerShell-20-Coming-Soon-e28093-Whate28099s-New---Part-2.aspx?ref=HPBL%5F0713" rel="nofollow">Source: PowerShell 2.0 Coming Soon – What’s New? (compellent.com)</a> ... </p> <p><a href="http://www.google.com/search?q=powershell+version+2+incompatibility" rel="nofollow">(via google)</a></p> </blockquote> <p>*disclaimer: I don't know anything about powershell, except that it might be like perl-for-windows. But the source I've cited seems to be "the source". So i'd image it's pretty accurate.</p> http://stackoverflow.com/questions/1089772/informative-game-development-tutorials-for-java/1089875#1089875 1 Answer by Ape-inago for Informative Game Development Tutorials for Java? Ape-inago 2009-07-07T00:46:06Z 2009-07-07T00:46:06Z <p>What type of game? </p> <p>Playing around with the <a href="http://java.sun.com/j2se/1.4.2/docs/api/java/lang/System.html#out" rel="nofollow">console</a> to make some simple guessing games is fun. If you get really into the console, you can get some serious manipulation using <a href="http://www.google.com/search?q=jcurses" rel="nofollow">JCurses</a>, and maybe make a <a href="http://roguelike-eng.sourceforge.net/" rel="nofollow">rogue-like</a> or some type of cellular automata.</p> <p>Or if you are adventurous, <a href="http://en.wikipedia.org/wiki/Swing%5F%28Java%29" rel="nofollow">Swing</a> has a decent enough drawing api.</p> <p>And taking it a bit further, you can interface directly with <a href="http://opengl.j3d.org/" rel="nofollow">OpenGL</a>, But it really depends on what you've got experience with.</p> <p>A lot of "game" design involves making the computer do something interesting for the user. If you start small with things like tick-tack-toe, and then <a href="http://www.gamedev.net/reference/" rel="nofollow">grow from there</a>, you can be making neat stuff in no-time!</p> http://stackoverflow.com/questions/1074013/how-to-create-a-robust-minimal-installer-for-windows/1074047#1074047 0 Answer by Ape-inago for how to create a robust, minimal installer for windows? Ape-inago 2009-07-02T12:21:56Z 2009-07-02T12:21:56Z <p>the * not coping an installer somewhere * and * addding an entry into add remove * seem to be counteractive. My undrestand is that add-remove programs nessisarily refrences a copy of the uninstaller that resides in a windows directory (so it doesn't lose access to it).</p> <p>Perhaps you could have the screensaver double as an uninstaller if you pass it some sort of command line option, then simply tell the msi that the uninstaller IS the screensaver (hence no unnecessary coping to some other directory)</p> http://stackoverflow.com/questions/1061837/c-program-to-print-each-word-in-a-sentence/1067122#1067122 0 Answer by Ape-inago for c program to print each word in a sentence Ape-inago 2009-07-01T03:16:04Z 2009-07-01T03:16:04Z <p>C isn't very good for string manipulation. Maybe seeing how it is done in another language may help?</p> <pre><code>#!/usr/bin/perl print "Type in a sentence, hit return to submit:\n\t"; my $input_string = &lt;&gt;; my @list_of_words = split(/[ !?.'"]/, $input_string); foreach my $word (@list_of_words) { print "$word\n"; } </code></pre> <p>Or shorter:</p> <pre><code>#!/usr/bin/perl foreach (split (/[ !?.'"]/, &lt;&gt;)) { print } </code></pre> http://stackoverflow.com/questions/370425/can-i-use-multithreading-with-perls-dbi-and-oracle/1066740#1066740 0 Answer by Ape-inago for Can I use multithreading with Perl's DBI and Oracle? Ape-inago 2009-07-01T00:11:17Z 2009-07-01T00:28:48Z <p><strong>A while back</strong> I mannaged to get an ad-hock implementation working... I treated the connection w/ dbi as a limited resource and shared it among the various threads in Perl using a file locking mechanism. My multi-threaded app only ever connected to the dbi through a seperate perl-script running as a daemon. </p> <p>On Linux, the multithreaded end was done via fork, on windows I used whatever came with the default activeperl implementation ( I forget ) </p> <p>I tried having them communicate via shared memory, but ended up just using a shared file instead. Linux has reliable append mode, so it was a piece of cake. On windows it was much more difficult to get them synchronized.</p> <p><strong>Recently</strong> I've looked into database transactions, with each instance of the thread having it's own connection to the database, and letting the database handle the connection details. </p> <p>This is with mysql, but i'm sure oracle supports transactions. </p> <p>apache::dbi works/plays well with mod_perl in keeping these connections alive between each run-through of the script (before I used this, each connection made was quite time consuming).</p> <p>Your results will vary.</p> http://stackoverflow.com/questions/1022695/difference-between-import-and-link-in-css/1046937#1046937 0 Answer by Ape-inago for Difference between @import and link in CSS Ape-inago 2009-06-26T01:18:59Z 2009-06-26T01:18:59Z <p>The &lt;link&gt; directive can allow for multiple css be loaded and interpreted asyncronously.</p> <p>the @import directive forces the browser to wait until the imported script is loaded inline to the parent script before it can be correctly processed by it's engine, since technically it is just one script.</p> http://stackoverflow.com/questions/1046714/what-is-a-good-random-number-generator-for-a-game/1046842#1046842 2 Answer by Ape-inago for What is a good random number generator for a game? Ape-inago 2009-06-26T00:27:21Z 2009-06-26T00:27:21Z <p>I'm a fan of <a href="http://burtleburtle.net/bob/rand/isaacafa.html" rel="nofollow">Isaac</a>, unlike mersense twister, it's crypographically secure (you *can't crack the period by observing the rolls)</p> <p><a href="http://burtleburtle.net/bob/rand/isaac.html#IBAAcode" rel="nofollow">IBAA</a> (rc4?) is also one that is <a href="http://forums.worldofwarcraft.com/thread.html?topicId=10271177&amp;sid=1" rel="nofollow">used by blizzard</a> to prevent people from predicting the random number used for loot rolls.. I imagine something similar is done w/ diablo II when you are playing off of a battle.net server.</p> <p>*can't within any reasonable timeframe (centuries?)</p> http://stackoverflow.com/questions/968036/what-are-the-popular-contemporary-uses-for-perl/968065#968065 8 Answer by Ape-inago for What are the popular, contemporary uses for Perl? Ape-inago 2009-06-09T03:51:14Z 2009-06-23T20:46:25Z <p>The problem with this question, is that Perl is a very versatile language. Between code golf and it's similarity to awk/sed, it is still widely used as a glue language and quick go-to language for sysadmin tasks.</p> <p>With <a href="http://search.cpan.org/" rel="nofollow">CPAN</a>, lots of very useful and more advanced things can be written quickly.</p> <p>It interfaces well with databases and there are tons of frameworks for web design. It works quite well with Ajax, as I've noticed through my own use of it.</p> <p>Get into best practices, and you've got a system that is quite good at doing very large programming tasks. Heck, the whole of cpan is a testament to Perl's reusability and encapsulation.</p> <p>See skills that are being sought by employers at <a href="http://jobs.perl.org/" rel="nofollow">http://jobs.perl.org/</a>.</p> http://stackoverflow.com/questions/1025313/c-will-an-empty-destructor-do-the-same-thing-as-the-generated-destructor/1025333#1025333 0 Answer by Ape-inago for C++: Will an 'empty' destructor do the same thing as the generated destructor? Ape-inago 2009-06-22T03:04:33Z 2009-06-22T03:04:33Z <p>I'd say best to put the empty declaration, it tells any future maintainers that it wasn't an oversight, and you really did mean to use the default one.</p> http://stackoverflow.com/questions/1025048/how-to-position-many-divs-in-css/1025057#1025057 1 Answer by Ape-inago for How to position many DIVs in CSS Ape-inago 2009-06-21T23:52:48Z 2009-06-22T02:13:29Z <p>I've had good luck emulating the code found in the <a href="http://960.gs/" rel="nofollow">960 grid system</a>. </p> <p>The <strong>right way</strong> is hard because many things aren't really cross browser compatible. Browsers are getting better, but its still a nightmare if you have to use anything IE compatible. (lots of hacks)</p> http://stackoverflow.com/questions/1023813/how-can-i-have-variable-assertions-in-perl/1023941#1023941 1 Answer by Ape-inago for How can I have variable assertions in Perl? Ape-inago 2009-06-21T13:51:18Z 2009-06-21T13:51:18Z <pre><code>$var_to_check =~ /sometest/ or die "bad variable!"; </code></pre> <p>I tend to throw things like this in my code, and later use a find and replace to get rid of them (in production code).</p> <p>Also, '<a href="http://perldoc.perl.org/functions/eval.html" rel="nofollow">eval</a>' can be used to run a section of code and capture errors and can be used to create exception handling functionality. If you are asserting that a value is not 0, perhaps you want to throw an exception and handle that case in a special way?</p> http://stackoverflow.com/questions/1023608/a-c-program-to-remove-comments/1023873#1023873 1 Answer by Ape-inago for a C++ program to remove comments Ape-inago 2009-06-21T13:19:02Z 2009-06-21T13:19:02Z <p>In our compiler design class, we used <em><a href="http://flex.sourceforge.net/" rel="nofollow">flex</a></em> and <em><a href="http://www.gnu.org/software/bison/" rel="nofollow">bison</a></em> to do something similar.</p> <p>we wrote in basic regular expressions to "tokenize" the file, and then we simply manipulated the tokens.</p> http://stackoverflow.com/questions/1020839/how-to-make-a-simple-command-line-chat-in-python/1020859#1020859 1 Answer by Ape-inago for How to make a simple command-line chat in Python? Ape-inago 2009-06-20T03:19:09Z 2009-06-20T03:19:09Z <p>I wrote one in async I/O... its a lot easier to wrap your head around than a full threading model.</p> <p>if you can get your hands ahold of "talk"'s source code, you can learn a lot about it. see a demo <a href="http://dsl.org/cookbook/cookbook_40.html#SEC559" rel="nofollow">http://dsl.org/cookbook/cookbook_40.html#SEC559</a> , or try it your self if you are on a linux box...</p> <p>it sends characters in real-time.</p> <p>also, ytalk is interactive and multiple users.... kinda like hudddlechat or campfire.</p> http://stackoverflow.com/questions/1020826/how-to-run-an-application-as-administrator-in-vista-from-c-code/1020841#1020841 1 Answer by Ape-inago for How to run an application as administrator in VISTA from C++ code Ape-inago 2009-06-20T03:08:53Z 2009-06-20T03:08:53Z <p>Don't...</p> <p>Only virus's have a 'legitimate' need take control of an account as you've describe. If you must have access to something vital, perhaps you should look into running the program as a service.</p> <p>The main question should be "why do i need to have it run under administrator?"</p> <p>Before you can answer that, you shouldn't be giving a program admin rights.</p> http://stackoverflow.com/questions/1004435/unix-permissions-from-windows/1004479#1004479 4 Answer by Ape-inago for Unix permissions from Windows Ape-inago 2009-06-16T23:57:06Z 2009-06-16T23:57:06Z <p><a href="http://www.samba.org/samba/what%5Fis%5Fsamba.html" rel="nofollow">Samba</a> can do something like you've said. it basically emulates windows compatible permissions on a linux box..</p> http://stackoverflow.com/questions/991539/jquery-ajax-and-html/992333#992333 0 Answer by Ape-inago for jquery ajax and html Ape-inago 2009-06-14T07:05:22Z 2009-06-14T07:05:22Z <p>I don't know if this fixes your problem... but if your loaded html also includes a link to jquery's code base, it can cause issues with the child-code not correctly linking with the handle to the jquery object ($).</p> http://stackoverflow.com/questions/5507/does-it-still-make-sense-to-learn-low-level-winapi-programming/979245#979245 0 Answer by Ape-inago for Does it still make sense to learn low level WinAPI programming? Ape-inago 2009-06-11T03:53:11Z 2009-06-11T03:53:11Z <p>yes. take a look at uTorrent, an amazing piece of software efficiency. Half of it's small size is due to the fact that much of it's core components were re-written to not use gargatuian libraries. </p> <p>Much of this couldn't be done without understanding how these libraries interface with the lower level API's</p> http://stackoverflow.com/questions/170268/what-features-of-perl-6-are-you-the-most-excited-about/170342#170342 Comment by Ape-inago on What features of Perl 6 are you the most excited about? Ape-inago 2009-11-18T22:54:58Z 2009-11-18T22:54:58Z i was reading the spece, isn't qw() replaced with &lt; &gt; ? so it would be if $foo == any(&lt;1 2 4 8&gt;); ? http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/314589#314589 Comment by Ape-inago on What are five things you hate about your favorite language? Ape-inago 2009-11-18T22:20:33Z 2009-11-18T22:20:33Z I was about to say scala as I was reading this. We're learning it as part of a course. Amazing stuff. http://stackoverflow.com/questions/1490971/how-can-i-ask-the-user-to-re-enter-input-when-they-enter-invalid-input-in-perl/1491843#1491843 Comment by Ape-inago on How can I ask the user to re-enter input when they enter invalid input, in Perl? Ape-inago 2009-11-18T19:27:55Z 2009-11-18T19:27:55Z WAT? is that a hack to avoid the recursive calls overloading the stack? http://stackoverflow.com/questions/1757805/jquery-event-only-every-time-interval/1757883#1757883 Comment by Ape-inago on jQuery event only every time interval Ape-inago 2009-11-18T18:20:50Z 2009-11-18T18:20:50Z What about if I type two characters, and the second one hits during the time when it should not send... but i never type the third char to trigger it again? http://stackoverflow.com/questions/1757805/jquery-event-only-every-time-interval/1757967#1757967 Comment by Ape-inago on jQuery event only every time interval Ape-inago 2009-11-18T18:16:02Z 2009-11-18T18:16:02Z In this case, the text input field could be the buffer... so much of this could be redundant. http://stackoverflow.com/questions/1757754/regex-behaving-differently-in-ie6-ie7 Comment by Ape-inago on Regex behaving differently in IE6/IE7 Ape-inago 2009-11-18T17:44:36Z 2009-11-18T17:44:36Z if span in an option is not valid, does that mean that IE is actually supporting the standard? http://stackoverflow.com/questions/1626248/does-gcc-inline-c-functions-without-the-inline-keyword/1626272#1626272 Comment by Ape-inago on Does GCC inline C++ functions without the 'inline' keyword? Ape-inago 2009-11-18T14:48:38Z 2009-11-18T14:48:38Z <i>potentially expensive</i> http://stackoverflow.com/questions/1743966/making-a-program-timer-based-rather-than-frame-rate-dependent/1744026#1744026 Comment by Ape-inago on Making a program timer-based rather than frame-rate dependent? Ape-inago 2009-11-18T14:48:05Z 2009-11-18T14:48:05Z deques work pretty good for keeping rate information of past frames. They are usually implemented as a circular buffer, and are pretty fast. Just pop off the end and throw it away, then add the new framerate on the front, average and violla. http://stackoverflow.com/questions/1744665/need-help-with-getline/1744742#1744742 Comment by Ape-inago on Need help with getline() Ape-inago 2009-11-18T14:44:16Z 2009-11-18T14:44:16Z whoops. I haven't used streams in a while, I forgot the direction of those operators. http://stackoverflow.com/questions/1744070/why-should-exceptions-be-used-conservatively/1744275#1744275 Comment by Ape-inago on Why should exceptions be used conservatively? Ape-inago 2009-11-16T20:21:36Z 2009-11-16T20:21:36Z Java's runtime has to keep track of information anyway, so that makes it easy for exceptions to be generated... c++ code tends to not have that information on hands, so it has a performance penalty to generate it. By not keeping it on hand, it tends to be faster/smaller/more cache friendly etc. Also, java code has dynamic checks on things like arrays etc, a feature not inherent in c++, so java extra class of exceptions which the developer is already taking care of a lot of these things with try/catch blocks, so why not use exceptons for EVERYTHING? http://stackoverflow.com/questions/1738260/enum-scoping-issues Comment by Ape-inago on Enum scoping issues Ape-inago 2009-11-15T17:59:45Z 2009-11-15T17:59:45Z have you tried forward declarations? http://stackoverflow.com/questions/1729451/why-does-this-regular-expression-not-match-adjacent-occurences-of-newline/1730063#1730063 Comment by Ape-inago on Why does this regular expression not match adjacent occurences of newline? Ape-inago 2009-11-13T15:53:00Z 2009-11-13T15:53:00Z my conclusion is it should be ([^\r])?\n to cover the case of no characters there? http://stackoverflow.com/questions/883644/educational-ide-to-start-programming-in-c/883710#883710 Comment by Ape-inago on Educational IDE to start programming in C++? Ape-inago 2009-11-13T14:32:29Z 2009-11-13T14:32:29Z I've been looking into project managment programs that use notepad++ as an external editor, but haven't had much luck beyond some ftp bits. http://stackoverflow.com/questions/910215/need-for-predictable-random-generator/910258#910258 Comment by Ape-inago on Need for predictable random generator Ape-inago 2009-11-03T17:54:00Z 2009-11-03T17:54:00Z +1 because it brings out an insight into randomness. http://stackoverflow.com/questions/1662600/why-does-visual-studio-2008-tell-me-9-8999999999999995-0-000000000000000555/1662642#1662642 Comment by Ape-inago on Why does Visual Studio 2008 tell me .9 - .8999999999999995 = 0.00000000000000055511151231257827? Ape-inago 2009-11-02T18:06:25Z 2009-11-02T18:06:25Z this doesn't address his question on precision.