User eduffy - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T21:44:11Z http://stackoverflow.com/feeds/user/7536 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1912095/how-to-do-a-sql-insert-with-a-value-with-an-apostrophe-in-it/1912099#1912099 0 Answer by eduffy for how to do a SQL insert with a value with an apostrophe in it eduffy 2009-12-16T03:35:47Z 2009-12-16T03:35:47Z <p>Use a backtick (on the ~ key) instead; </p> <pre><code>`O'Brien` </code></pre> http://stackoverflow.com/questions/1880683/pythonic-way-to-explode-a-list-of-tuples/1880707#1880707 2 Answer by eduffy for pythonic way to explode a list of tuples eduffy 2009-12-10T12:35:41Z 2009-12-10T12:35:41Z <pre><code>l = [(1,2), (3,4), (5,6)] reduce (lambda x,y: x+list(y), l, []) </code></pre> http://stackoverflow.com/questions/1861612/sieve-of-eratosthenes-algorithm/1861634#1861634 0 Answer by eduffy for Sieve of Eratosthenes Algorithm eduffy 2009-12-07T17:43:02Z 2009-12-07T17:43:02Z <p>It's limited to prime numbers up to 11. To extend it any further you need to add <code>|| $u % 11 == 0 || $i % 13 == 0 ...</code> etc</p> http://stackoverflow.com/questions/1861555/why-is-this-invalid-syntax/1861578#1861578 3 Answer by eduffy for Why is this invalid syntax? eduffy 2009-12-07T17:37:00Z 2009-12-07T17:37:00Z <p>If it's Python 3, <code>print</code> is now a function. The correct syntax would be</p> <pre><code>print (recip) </code></pre> http://stackoverflow.com/questions/1747372/how-does-a-lexer-return-a-semantic-value-that-the-parser-uses/1820318#1820318 0 Answer by eduffy for How does a lexer return a semantic value that the parser uses? eduffy 2009-11-30T14:58:50Z 2009-11-30T14:58:50Z <p>In <code>yacc</code>, your lexer gets a global variable named <code>yylval</code> which is a C union. Back in yacc, this becomes the value for <code>$1</code>, <code>$2</code>, etc.</p> http://stackoverflow.com/questions/1796968/linux-shell-bug/1797097#1797097 2 Answer by eduffy for Linux shell bug? eduffy 2009-11-25T14:02:27Z 2009-11-25T23:08:09Z <p>As others have mentioned, it's the extra shell you're creating by using the pipe notation. Try this:</p> <pre><code>while read item; do FILE_FOUND=1 echo "FILE_FOUND = $FILE_FOUND" done &lt; &lt;(ls -1 /tmp/$$.* 2&gt;/dev/null) </code></pre> <p>In this version, the <code>while</code> loop is in your script's shell, while the <code>ls</code> is a new shell (the opposite of what your script is doing).</p> http://stackoverflow.com/questions/138600/initializing-a-static-stdmapint-int-in-c/1731203#1731203 0 Answer by eduffy for Initializing a static std::map<int, int> in C++ eduffy 2009-11-13T19:06:02Z 2009-11-13T19:19:07Z <p>This is similar to <code>PierreBdR</code>, without copying the map.</p> <pre><code>#include &lt;map&gt; using namespace std; bool create_map(map&lt;int,int&gt; &amp;m) { m[1] = 2; m[3] = 4; m[5] = 6; return true; } static map&lt;int,int&gt; m; static bool _dummy = create_map (m); </code></pre> http://stackoverflow.com/questions/1731102/process-two-files-at-the-same-time-in-python/1731180#1731180 8 Answer by eduffy for Process two files at the same time in Python eduffy 2009-11-13T19:02:30Z 2009-11-13T19:02:30Z <p>I'm not sure if I completely understand what you're trying to do, is something like this?</p> <pre><code>f1 = open ('car_names.txt') f2 = open ('car_descriptions.txt') for car_name in f1.readlines (): for i in range (6): # echo the first 6 lines print f2.readline () assert f2.readline() == '@CAR_NAME' # skip the 7th, but assert that it is @CAR_NAME print car_name # print the real car name for i in range (33): # print the remaining 33 of the original 40 print f2.readline () </code></pre> http://stackoverflow.com/questions/1726183/jquery-passing-a-function-call-through-to-another-function-and-order-of-execution/1726205#1726205 4 Answer by eduffy for jQuery passing a function call through to another function and order of execution eduffy 2009-11-12T23:43:00Z 2009-11-12T23:43:00Z <p>You can delay the execution by passing in a function and calling it later.</p> <pre><code>triggerAnimation(listItem, function () { toggleToggleRadioListItem(listItem) }); function triggerAnimation(listItem,passThruFunction){ listItem.find(".inlineLoading").show(); // pause and then call the toggle function $("body").animate({opacity: 1}, 1000, function(){ alert("a"); passThruFunction(); } ); } function toggleToggleRadioListItem(listItem) { alert("b"); }; </code></pre> http://stackoverflow.com/questions/1708103/how-to-impress-developers-with-ironpython-python/1708436#1708436 1 Answer by eduffy for How to impress developers with IronPython/Python eduffy 2009-11-10T14:39:59Z 2009-11-10T14:39:59Z <p>How about a prime number generator.</p> <pre><code>&gt;&gt;&gt; def sieve(x): ... if x: return [ x[0] ] + sieve([ y for y in x if y % x[0] &gt; 0 ]) ... return [] ... &gt;&gt;&gt; sieve(range(2,100)) [2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37, 41, 43, 47, 53, 59, 61, 67, 71, 73, 79, 83, 89, 97] </code></pre> http://stackoverflow.com/questions/1708292/meaning-of-using-commas-and-underscores-with-python-assignment-operator/1708333#1708333 3 Answer by eduffy for Meaning of using commas and underscores with Python assignment operator? eduffy 2009-11-10T14:22:14Z 2009-11-10T14:22:14Z <p><code>d2, = values[s]</code> is just like <code>a,b=f()</code>, except for unpacking 1 element tuples.</p> <pre><code>&gt;&gt;&gt; T=(1,) &gt;&gt;&gt; a=T &gt;&gt;&gt; a (1,) &gt;&gt;&gt; b,=T &gt;&gt;&gt; b 1 &gt;&gt;&gt; </code></pre> <p><code>a</code> is tuple, <code>b</code> is an integer.</p> http://stackoverflow.com/questions/1683328/accessing-binary-mp3-header-in-c-via-fopen/1683382#1683382 1 Answer by eduffy for Accessing binary MP3 Header in C via fopen eduffy 2009-11-05T20:30:51Z 2009-11-05T20:30:51Z <p>The ID3 info may come first. Are the first 3 characters <code>ID3</code>?</p> http://stackoverflow.com/questions/1594251/how-to-check-if-stdin-is-still-opened-without-blocking/1594287#1594287 0 Answer by eduffy for How to check if stdin is still opened without blocking? eduffy 2009-10-20T12:34:41Z 2009-10-20T12:34:41Z <p>What's wrong with <code>feof(stdin)</code> ?</p> http://stackoverflow.com/questions/1574910/c-map-object-not-growing-when-members-added/1574945#1574945 0 Answer by eduffy for C++ map object not growing when members added eduffy 2009-10-15T20:45:50Z 2009-10-15T20:45:50Z <p>It's probably hashing on the address of <code>name</code>. Use <code>std:string</code>.</p> http://stackoverflow.com/questions/1563856/handle-special-characters-in-bash-for-in-loop/1563865#1563865 1 Answer by eduffy for Handle special characters in bash for...in loop eduffy 2009-10-14T01:47:24Z 2009-10-14T01:47:24Z <p>one possible way:</p> <pre><code>ls -1 | while read x; do echo $x done </code></pre> http://stackoverflow.com/questions/1557888/how-does-the-jump-instruction-in-assembly-work-with-multiple-processes/1557897#1557897 3 Answer by eduffy for How does the jump instruction in assembly work with multiple processes? eduffy 2009-10-13T02:04:25Z 2009-10-13T04:24:28Z <p>The memory locations are relative to the process. <code>main</code> is always at the same spot in memory, relative to the beginning of the program.</p> http://stackoverflow.com/questions/1543686/extracting-basic-info-from-animation-file/1543730#1543730 1 Answer by eduffy for Extracting basic info from animation file eduffy 2009-10-09T13:25:11Z 2009-10-09T13:25:11Z <p>The output of <code>totem-video-indexer</code> is very easy to parse:</p> <pre><code>TOTEM_INFO_DURATION=5217 TOTEM_INFO_HAS_VIDEO=True TOTEM_INFO_VIDEO_WIDTH=720 TOTEM_INFO_VIDEO_HEIGHT=480 TOTEM_INFO_VIDEO_CODEC=XVID MPEG-4 TOTEM_INFO_FPS=30 TOTEM_INFO_HAS_AUDIO=True TOTEM_INFO_AUDIO_BITRATE=50 TOTEM_INFO_AUDIO_CODEC=MPEG 1 Audio, Layer 3 (MP3) TOTEM_INFO_AUDIO_SAMPLE_RATE=48000 TOTEM_INFO_AUDIO_CHANNELS=Stereo </code></pre> http://stackoverflow.com/questions/1540049/python-replace-values-in-list/1540060#1540060 1 Answer by eduffy for Python: Replace values in list eduffy 2009-10-08T19:57:34Z 2009-10-08T19:57:34Z <pre><code>&gt;&gt;&gt; L = range (11) &gt;&gt;&gt; [ x if x%2 == 1 else None for x in L ] [None, 1, None, 3, None, 5, None, 7, None, 9, None] </code></pre> http://stackoverflow.com/questions/1488186/stringifying-template-arguments/1488204#1488204 9 Answer by eduffy for Stringifying template arguments eduffy 2009-09-28T17:07:13Z 2009-09-28T20:03:32Z <p>You could try</p> <pre><code> typeid(T).name() </code></pre> <p><strong>Edit</strong>: Fixed based on comments.</p> http://stackoverflow.com/questions/1473175/how-to-create-argument-tokens-c-in-unix/1473256#1473256 0 Answer by eduffy for How to create argument tokens (C++ in Unix) eduffy 2009-09-24T18:03:45Z 2009-09-24T18:03:45Z <p>There's a function in <code>glib</code> called <a href="http://git.gnome.org./cgit/glib/tree/glib/gshell.c#n579" rel="nofollow"><code>g_shell_parse_argv</code></a> that does just that. Should be a good place to start (look at the <code>tokenize_command_line</code> function).</p> http://stackoverflow.com/questions/1455718/anything-comparable-to-visual-basic-to-use-in-ubuntu/1455733#1455733 10 Answer by eduffy for Anything comparable to Visual Basic to use in Ubuntu? eduffy 2009-09-21T17:28:02Z 2009-09-21T17:28:02Z <p><a href="http://www.mono-project.com/Visual%5FBasic" rel="nofollow">Mono</a> supports VB.NET.</p> http://stackoverflow.com/questions/1455698/c-cosine-problem/1455716#1455716 2 Answer by eduffy for C++ Cosine Problem eduffy 2009-09-21T17:24:35Z 2009-09-21T17:24:35Z <p>Your calculator is using degrees. For example:</p> <pre><code>&gt;&gt;&gt; import math &gt;&gt;&gt; math.cos (.3) 0.95533648912560598 &gt;&gt;&gt; math.cos (.3 * math.pi / 180) # convert to degrees 0.99998629224742674 </code></pre> http://stackoverflow.com/questions/1448558/python-subprocess-popen-adding-gcc-flags-results-in-no-input-files-error/1448567#1448567 0 Answer by eduffy for Python subprocess.Popen - adding GCC flags results in "no input files" error eduffy 2009-09-19T13:33:19Z 2009-09-19T13:33:19Z <p>Shouldn't that be</p> <pre><code>p = Popen(['gcc', '-o', 'hello', 'hello.c'], stdout=subprocess.PIPE, stderr=stderr=subprocess.STDOUT) </code></pre> http://stackoverflow.com/questions/652788/what-is-the-worst-real-world-macros-pre-processor-abuse-youve-ever-come-across/1444436#1444436 3 Answer by eduffy for What is the worst real-world macros/pre-processor abuse you've ever come across? eduffy 2009-09-18T13:05:16Z 2009-09-18T13:05:16Z <pre><code>#define FLASE FALSE </code></pre> <p>The programmer was a bad typist, and this was his most common mistake.</p> http://stackoverflow.com/questions/1424533/testing-for-gui-in-bashrc/1424552#1424552 9 Answer by eduffy for Testing for GUI in .bashrc eduffy 2009-09-15T00:29:18Z 2009-09-16T03:15:26Z <p>Your <code>DISPLAY</code> variable will be set if you're logged in to an X session.</p> <p>Edit: So, this (untested) code should work:</p> <pre><code>[ -n "${DISPLAY}" ] &amp;&amp; export EDITOR=gedit || export EDITOR=emacs </code></pre> <p><strong>Fixed based on comments.</strong></p> http://stackoverflow.com/questions/1354836/strange-behaviour-of-created-exe/1354843#1354843 3 Answer by eduffy for Strange behaviour of created *.exe eduffy 2009-08-30T20:34:37Z 2009-08-30T20:34:37Z <p>Find the linker settings, and add the <code>-mwindows</code> switch.</p> http://stackoverflow.com/questions/1334543/default-value-of-pointer-in-visual-c-6-0/1334556#1334556 1 Answer by eduffy for Default value of pointer in Visual C++ 6.0 eduffy 2009-08-26T13:08:30Z 2009-08-26T13:08:30Z <p>It's garbage. </p> http://stackoverflow.com/questions/1328811/run-a-unix-shell-command-if-the-output-doesnt-have-a-specific-number-of-lines/1328852#1328852 1 Answer by eduffy for run a unix shell command if the output doesn't have a specific number of lines eduffy 2009-08-25T14:58:49Z 2009-08-25T14:58:49Z <p>Kinda ugly .. but this works.</p> <pre><code># test $(seq 10 | wc -l) -eq 10 &amp;&amp; echo "there's 10" there's 10 # test $(seq 11 | wc -l) -eq 10 &amp;&amp; echo "there's 10" </code></pre> <p>nothing's <code>echo</code>ed in the second case</p> http://stackoverflow.com/questions/1316747/how-is-the-c-standard-library-linked-to-my-application/1316759#1316759 -1 Answer by eduffy for How is the C++ standard library linked to my application? eduffy 2009-08-22T19:07:25Z 2009-08-22T19:07:25Z <p>Most of it's all in the header files, because it's so heavily templated. Very little requires <code>libstdc++.so</code> (<code>iostream</code>, may be it, I think).</p> http://stackoverflow.com/questions/1313062/what-is-a-multithreaded-application/1313088#1313088 0 Answer by eduffy for What is a multithreaded application? eduffy 2009-08-21T16:57:47Z 2009-08-21T16:57:47Z <p>It's an application that can do multiple things at once. For example, if you're tying a document in Word, there's a thread responding to your keyboard, there's a thread that's checking your spelling, there's one that's checking your grammar, there may be another thread saving a backup of your document in case the program crashes.</p> http://stackoverflow.com/questions/1874051/c-multiple-enums-in-one-function-argument-using-bitwise-or Comment by eduffy on c++ multiple enums in one function argument using bitwise or "|" eduffy 2009-12-09T13:56:56Z 2009-12-09T13:56:56Z Post your <code>enum</code> definition .. did you remember to make them all powers of 2? http://stackoverflow.com/questions/1731102/process-two-files-at-the-same-time-in-python Comment by eduffy on Process two files at the same time in Python eduffy 2009-11-13T18:51:21Z 2009-11-13T18:51:21Z The 6th, 46th, 86th, etc line in the second file contains the literal <code>@CAR&#95;NAME</code>? http://stackoverflow.com/questions/1683328/accessing-binary-mp3-header-in-c-via-fopen/1683382#1683382 Comment by eduffy on Accessing binary MP3 Header in C via fopen eduffy 2009-11-05T20:42:27Z 2009-11-05T20:42:27Z That's the right-side of the spec you posted. http://stackoverflow.com/questions/1590688/class-is-not-a-template-type Comment by eduffy on Class 'is not a template type' eduffy 2009-10-19T19:46:31Z 2009-10-19T19:46:31Z What's line 25? Is it the <code>Q&#95;OBJECT</code> line? http://stackoverflow.com/questions/1574910/c-map-object-not-growing-when-members-added/1574927#1574927 Comment by eduffy on C++ map object not growing when members added eduffy 2009-10-15T20:51:07Z 2009-10-15T20:51:07Z @Scott: Add the line <code>printf (&quot;name = %p\n&quot;, name)</code> to see that the pointer never changes. http://stackoverflow.com/questions/1574910/c-map-object-not-growing-when-members-added/1574927#1574927 Comment by eduffy on C++ map object not growing when members added eduffy 2009-10-15T20:49:24Z 2009-10-15T20:49:24Z @Scott: You can use <code>std::stringstream</code> as a replacement for <code>sprintf</code> .. it works like <code>cout</code>, but save the result in a <code>std::string</code>. http://stackoverflow.com/questions/1574910/c-map-object-not-growing-when-members-added/1574927#1574927 Comment by eduffy on C++ map object not growing when members added eduffy 2009-10-15T20:47:13Z 2009-10-15T20:47:13Z @Scott: Because the <code>memcpy</code> call changes the contents of the buffer. The value of <code>name</code> is still just an address. http://stackoverflow.com/questions/1474894/why-isnt-the-operator-const-for-stl-maps/1474936#1474936 Comment by eduffy on Why isn't the [] operator const for STL maps? eduffy 2009-09-25T01:14:20Z 2009-09-25T01:14:20Z it does in <code>gcc</code> http://stackoverflow.com/questions/1472048/how-to-append-a-char-to-a-stdstring/1472075#1472075 Comment by eduffy on How to append a char to a std::string? eduffy 2009-09-24T14:37:47Z 2009-09-24T14:37:47Z It's less typing. In <code>gcc</code>, <code>basic&#95;string::operator+=</code> is just a call in <code>push&#95;back</code>. http://stackoverflow.com/questions/1448614/handling-hal-implementation-storage-cdrom-writespeeds Comment by eduffy on Handling HAL implementation: storage.cdrom.write_speeds eduffy 2009-09-19T14:12:44Z 2009-09-19T14:12:44Z I thought HAL was being phased out in favor of DeviceKit. http://stackoverflow.com/questions/1448596/operator-overloading-in-c/1448608#1448608 Comment by eduffy on operator overloading in C++ eduffy 2009-09-19T14:08:46Z 2009-09-19T14:08:46Z The question asked for operators that aren't class methods. So anything with an <code>=</code> and the <code>-&gt;</code>, <code>[]</code>, and <code>()</code> operators don't belong. http://stackoverflow.com/questions/1424533/testing-for-gui-in-bashrc/1424552#1424552 Comment by eduffy on Testing for GUI in .bashrc eduffy 2009-09-16T03:15:50Z 2009-09-16T03:15:50Z Whoops .. thanks. http://stackoverflow.com/questions/1328811/run-a-unix-shell-command-if-the-output-doesnt-have-a-specific-number-of-lines/1328852#1328852 Comment by eduffy on run a unix shell command if the output doesn't have a specific number of lines eduffy 2009-08-25T20:43:12Z 2009-08-25T20:43:12Z You named them? .. I was happy with <code>a.out</code> :p http://stackoverflow.com/questions/1190362/checking-if-a-directory-exists-on-another-server-in-ksh/1190404#1190404 Comment by eduffy on Checking if a directory exists on another server in ksh eduffy 2009-07-27T23:08:28Z 2009-07-27T23:08:28Z <code>if ssh ...; then </code> should work as well .. if you prefer one-liners. http://stackoverflow.com/questions/1188168/how-do-i-initialize-a-static-stdmap Comment by eduffy on How do I initialize a static std::map? eduffy 2009-07-27T13:56:59Z 2009-07-27T13:56:59Z Is this a DLL or and EXE?