Ape-inago
|
Registered User
|
Currently finishing up a BS degree in computer engineering.
|
|
1d |
comment |
How do I send a 2D array from jquery to php? this should be in the original question. |
|
2d |
awarded | ● Yearling |
|
Nov 18 |
comment |
What features of Perl 6 are you the most excited about? i was reading the spece, isn't qw() replaced with < > ? so it would be if $foo == any(<1 2 4 8>); ? |
|
Nov 18 |
comment |
What are five things you hate about your favorite language? I was about to say scala as I was reading this. We're learning it as part of a course. Amazing stuff. |
|
Nov 18 |
comment |
How can I ask the user to re-enter input when they enter invalid input, in Perl? WAT? is that a hack to avoid the recursive calls overloading the stack? |
|
Nov 18 |
answered | a C++ program to remove comments |
|
Nov 18 |
comment |
jQuery event only every time interval 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? |
|
Nov 18 |
comment |
jQuery event only every time interval In this case, the text input field could be the buffer... so much of this could be redundant. |
|
Nov 18 |
answered | jQuery event only every time interval |
|
Nov 18 |
comment |
Regex behaving differently in IE6/IE7 if span in an option is not valid, does that mean that IE is actually supporting the standard? |
|
Nov 18 |
comment |
Does GCC inline C++ functions without the ‘inline’ keyword? potentially expensive |
|
Nov 18 |
comment |
Making a program timer-based rather than frame-rate dependent? 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. |
|
Nov 18 |
revised |
Making a program timer-based rather than frame-rate dependent? typo |
|
Nov 18 |
comment |
Need help with getline() whoops. I haven't used streams in a while, I forgot the direction of those operators. |
|
Nov 18 |
revised |
Need help with getline() changed direction of >> |
|
Nov 16 |
answered | Need help with getline() |
|
Nov 16 |
comment |
Why should exceptions be used conservatively? 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? |
|
Nov 16 |
answered | Making a program timer-based rather than frame-rate dependent? |
|
Nov 15 |
comment |
Enum scoping issues have you tried forward declarations? |
|
Nov 13 |
comment |
Why does this regular expression not match adjacent occurences of newline? my conclusion is it should be ([^\r])?\n to cover the case of no characters there? |
|
Nov 13 |
comment |
Educational IDE to start programming in C++? 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. |
|
Nov 3 |
comment |
Need for predictable random generator +1 because it brings out an insight into randomness. |
|
Nov 2 |
comment |
Why does Visual Studio 2008 tell me .9 - .8999999999999995 = 0.00000000000000055511151231257827? this doesn't address his question on precision. |
|
Oct 30 |
comment |
C state-machine design It is interesting, but no upvote until you give an example or two (and perhaps de-macro'ed result) or some discussion on why this may be more practical than another. Interesting use of orphaned brackets and macros. I imagine something similar could be done on a language that does some sort of tail recursion optimization; you could use straight up function calls and not worry about overloading the stack space with function call garbage (which I think is what the macros are essentially overcoming here) |
|
Oct 26 |
comment |
Does GCC inline C++ functions without the ‘inline’ keyword? they are expensive in that the function is essentially duplicated, sacrificing memory for speed. |
|
Oct 26 |
answered | Does GCC inline C++ functions without the ‘inline’ keyword? |
|
Oct 5 |
comment |
Check double variable if it contains an integer, and not floating point There are hacks to make it work, but the way that a double represents it's value means that it is quite possibly not storing an integer as you think it would. It may store 555 as 554.99999998 or something funny like that. There is no way to tell really, unless you have the original source values and figure it out from there. float and double are limited precision. |
|
Oct 5 |
revised |
How can I ask the user to re-enter input when they enter invalid input, in Perl? deleted 1 characters in body |
|
Oct 5 |
comment |
How can I ask the user to re-enter input when they enter invalid input, in Perl? thanks for the edit, I can't believe I missed those. Thats what I get for not typing this up in a highlighting text editor. |
|
Sep 29 |
answered | How can I ask the user to re-enter input when they enter invalid input, in Perl? |
|
Sep 11 |
comment |
How to cut image into a web page It sounds like he needs the whole image loaded, but cut off. |
|
Sep 9 |
answered | Is there a free/open-source equivalent of mailing list managers such as MailChimp or ConstantContact, etc..? |
|
Sep 6 |
answered | How to implement the progress bar like gmail? |
|
Sep 6 |
comment |
AJAX vs javaScript response Sounds like a homework question. if so, please tag it as such. I wonder if your teacher knows about stackoverflow. |
|
Sep 2 |
answered | MS Word vs ??, for end-user help document for a Web-based application |
|
Aug 24 |
comment |
Which programming technique helps you most to avoid or resolve bugs before they come into production put links in to references on these topics, and this might get more votes! |
|
Aug 23 |
comment |
Code::Blocks Problem - Can’t break file format after uninstalling Visual C++ Express Like, are the files being renamed or are they simply showing up as that under properties? |
|
Aug 14 |
comment |
Are fully qualified CSS styles efficient? whats an ipd-tags ? |
|
Aug 5 |
comment |
Static Pointer to Dynamically allocated array. and this stratagem limits future use of the code in a larger application who may only need the lookup tables occasionally and the resources are best used elsewhere. |
|
Aug 5 |
answered | How Does the Network Time Protocol Work? |
|
Aug 1 |
comment |
What real life bad habits has programming given you? alt-0233 -> é :) |
|
Aug 1 |
comment |
What real life bad habits has programming given you? Silly, you should be asking how many rays you can see on the typical sub-scattered surface... |
|
Aug 1 |
comment |
What real life bad habits has programming given you? 2009-08-01T19:15EST |
|
Aug 1 |
comment |
What real life bad habits has programming given you? Just think of it as a massive hash collision avoidance algorithm. Removing duplicate entries etc. |
|
Jul 22 |
answered | Linux USB: turning the power on and off? |
|
Jul 21 |
answered | Syntax for dereferencing a pointer in C (or C++) |
|
Jul 16 |
accepted | PowerShell: Does Version 2 work seamlessly with Version 1 scripts? |
|
Jul 16 |
answered | Android. Brightness Change |
|
Jul 15 |
revised |
PowerShell: Does Version 2 work seamlessly with Version 1 scripts? I'm an idiot, I meant yes |
|
Jul 15 |
revised |
PowerShell: Does Version 2 work seamlessly with Version 1 scripts? added more quote stuff from the source... |
