dmckee
|
Registered User
|
Experimental particle physicist. These days I'm doing neutrinos.
|
|
15h |
comment |
Shell command to send file via bluetooth on Mac OS x I'm wishywashy on sending this to SuperUser. Care to say something about your use case? |
|
1d |
comment |
Solve “Travelling salesman problem” in linear time What's wrong with "Uh, boss? I think that's isomorphic with the traveling salesman problem."? |
|
1d |
comment |
.NET Library to Identify Pitches and many others for other platforms or non-specific, including stackoverflow.com/questions/435533/… stackoverflow.com/questions/1696773/… stackoverflow.com/questions/1807858/… ... |
|
1d |
comment |
.NET Library to Identify Pitches c#: stackoverflow.com/questions/1613774/… and stackoverflow.com/questions/1377661/… |
|
1d |
comment |
Tie the life of a process to the shell that started it. 'fraid I can't help much then. I agree that this is a desirable feature, just don't know how to do it. |
|
1d |
answered | Tie the life of a process to the shell that started it. |
|
2d |
comment |
Is this C function written in poor form? @Mark, Windows: Missed the the input spec. Sorry. What I meant to say was "If your characters are signed and you input illegally contains characters from 128+ it won;t work right." Yeah. That's my story and I'm sticking to it. |
|
2d |
comment |
Is this C function written in poor form? char values may be signed on some compilers and architectures. If that is the case values "larger" than 127 will be incorrectly handled by your trivial-one-digit case. |
|
2d |
comment |
What’s the most elegant 10-20 line function you’ve seen/written? Given the strong response to Stefan's comment (which, ultimately I disagree with), I'm going with Subjective and Argumentative. |
|
2d |
comment |
C++ create a parser stackoverflow.com/questions/1669/… is the canonical question for how to on compilers and interpreters around here. Many good links there. For a hand built recursive decent approach, look at the Crenshaw tutorial. |
|
2d |
comment |
What dead programming languages do you know? The coldfire micro controllers are 68k machines. Not dead at all. |
|
2d |
comment |
What dead programming languages do you know? I saw a PDP11 in use at a major government run laboratory in 1995. We were forbidden to mention it outside the collaboration, and it was replaced the year after, but it was still chugging along. The operators would yell at anyone who walked too close (because it was shock sensitive), and it was a high honor to be allowed to sit at the teletype console. |
|
2d |
comment |
15 Puzzle Solver Trying paring your code down to the smallest fragment that will generate the error, and asking about that. Except that you will often find the mistake when you try this exercise, and then you'll have learned something. |
|
2d |
comment |
Float Addition issue Duplicate of stackoverflow.com/questions/1839225/… and many otehr going back to the earliest days of the site. |
|
2d |
comment |
‘else’ directly after end of if block You are walking a dangerous path here that con only lead to the Brace Style Wars, from which none return alive. Be warned. Oh, and Hail the One True Brace Style! |
|
2d |
comment |
Size of a structure in C See also: stackoverflow.com/questions/833526/… and stackoverflow.com/questions/143025/… |
|
2d |
comment |
Size of a structure in C Duplicate of (at least) stackoverflow.com/questions/119123/… |
|
2d |
comment |
Size of a structure in C While I know that it is faster to answer than to search up the duplicates, you had to expect that this has been asked and answered before. |
|
2d |
comment |
which type of sorting is used in the function sort()? BTW-- The answer for the c standard library function sort() is the same: something that runs at O(N log N). Sometimes that manpage will tell you what your system is actually using. |
|
2d |
revised |
Uniform random (Monte-Carlo) distribution on unit sphere. added 78 characters in body |
|
2d |
revised |
Uniform random (Monte-Carlo) distribution on unit sphere. added 422 characters in body; added 202 characters in body |
|
2d |
answered | Uniform random (Monte-Carlo) distribution on unit sphere. |
|
Dec 2 |
comment |
How does free calculate used memory? " cat /proc/*/status | grep VmSize" Useless use of cat. Prefer grep VmSize /proc/*/status, which still isn't atomic, but at least spares you a fork and a pipeline. |
|
Dec 2 |
revised |
How does free calculate used memory? added 190 characters in body; deleted 1 characters in body |
|
Dec 2 |
comment |
How does free calculate used memory? Yeah. I got there eventually... |
|
Dec 2 |
revised |
How does free calculate used memory? added 723 characters in body; deleted 1 characters in body; deleted 1 characters in body |
|
Dec 2 |
answered | How does free calculate used memory? |
|
Dec 2 |
comment |
Worst memory leak in C++ you have encountered? This "question" is a poll, discussion fodder, and ill defined. You'll find that SO is much more accepting of questions that have answers. As for "It could have given newbies like me ways/mistakes", the set of possible mistakes is countable infinite, and you avoid them by using good practices, not by trying to ompile a list of things to avoid. |
|
Dec 2 |
comment |
latex floats and consecutively numbered equations Indeed, many technical editors would consider having a numbered equation (or any content which must be referenced from the text) in a figure caption to be bad style. |
|
Dec 2 |
comment |
What algorithm to use to solve this simple mathematical problem efficiently? Hell, if he finds a really efficient algorithm he has a fair chance of getting the Field's Medal |
|
Dec 2 |
comment |
latex floats and consecutively numbered equations I generally discourage this, but it pushes the work of laying out the page back on the author: TeX is better at that than most people. Do it if you must, but avoid it if you can. |
|
Dec 2 |
comment |
LaTeX: How to create left aligned paragraphs and right aligned authors of paragraphs That is where I was going too...and if you need to do this more than twice wrap it all up in a \newcommand or \newenvironment or equivalent. |
|
Dec 2 |
comment |
Multi-statement Macros in C++ If you insist on doing this, use the convention here stackoverflow.com/questions/923822/… . |
|
Dec 2 |
comment |
Swapping two variable value without using 3rd variable Might be worth explaining the why of the test (i.e. that the triple xor approach fails horribly if x and y reference the same object). |
|
Nov 30 |
comment |
Why Use Lexical Analyzers? @Bruno: Read his question history... |
|
Nov 30 |
comment |
Your predictions on Languages evolution SO is neither a crystal ball nor a discussion forum, and I think that this has come up before. |
|
Nov 29 |
answered | What does this mean in pascal? |
|
Nov 29 |
comment |
Book Recommendations for Christmas stackoverflow.com/questions/1711/… |
|
Nov 29 |
revised |
Moving from VMS to Unix added 3 characters in body |
|
Nov 26 |
accepted | Speech Recognition & Programming |
|
Nov 26 |
answered | Moving from VMS to Unix |
|
Nov 16 |
accepted | options superseded in gcc |
|
Nov 16 |
answered | options superseded in gcc |
|
Nov 15 |
revised |
Is a makefile basically the same thing as a batch file? added 2 characters in body |
|
Nov 15 |
answered | Is a makefile basically the same thing as a batch file? |
|
Nov 15 |
accepted | Showing only the uptime from uptime [unix] |
|
Nov 15 |
revised |
Showing only the uptime from uptime [unix] added 209 characters in body; added 172 characters in body; added 1 characters in body |
|
Nov 15 |
answered | Showing only the uptime from uptime [unix] |
|
Nov 14 |
revised |
linux iterate over files in directory edited tags |
|
Nov 11 |
revised |
How stl vector gives random access added 67 characters in body |
