User eduffy - Stack Overflowmost recent 30 from stackoverflow.com2009-12-19T21:44:11Zhttp://stackoverflow.com/feeds/user/7536http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1912095/how-to-do-a-sql-insert-with-a-value-with-an-apostrophe-in-it/1912099#19120990Answer by eduffy for how to do a SQL insert with a value with an apostrophe in iteduffy2009-12-16T03:35:47Z2009-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#18807072Answer by eduffy for pythonic way to explode a list of tupleseduffy2009-12-10T12:35:41Z2009-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#18616340Answer by eduffy for Sieve of Eratosthenes Algorithmeduffy2009-12-07T17:43:02Z2009-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#18615783Answer by eduffy for Why is this invalid syntax?eduffy2009-12-07T17:37:00Z2009-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#18203180Answer by eduffy for How does a lexer return a semantic value that the parser uses?eduffy2009-11-30T14:58:50Z2009-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#17970972Answer by eduffy for Linux shell bug?eduffy2009-11-25T14:02:27Z2009-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 < <(ls -1 /tmp/$$.* 2>/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#17312030Answer by eduffy for Initializing a static std::map<int, int> in C++eduffy2009-11-13T19:06:02Z2009-11-13T19:19:07Z<p>This is similar to <code>PierreBdR</code>, without copying the map.</p>
<pre><code>#include <map>
using namespace std;
bool create_map(map<int,int> &m)
{
m[1] = 2;
m[3] = 4;
m[5] = 6;
return true;
}
static map<int,int> m;
static bool _dummy = create_map (m);
</code></pre>
http://stackoverflow.com/questions/1731102/process-two-files-at-the-same-time-in-python/1731180#17311808Answer by eduffy for Process two files at the same time in Pythoneduffy2009-11-13T19:02:30Z2009-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#17262054Answer by eduffy for jQuery passing a function call through to another function and order of executioneduffy2009-11-12T23:43:00Z2009-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#17084361Answer by eduffy for How to impress developers with IronPython/Pythoneduffy2009-11-10T14:39:59Z2009-11-10T14:39:59Z<p>How about a prime number generator.</p>
<pre><code>>>> def sieve(x):
... if x: return [ x[0] ] + sieve([ y for y in x if y % x[0] > 0 ])
... return []
...
>>> 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#17083333Answer by eduffy for Meaning of using commas and underscores with Python assignment operator?eduffy2009-11-10T14:22:14Z2009-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>>>> T=(1,)
>>> a=T
>>> a
(1,)
>>> b,=T
>>> b
1
>>>
</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#16833821Answer by eduffy for Accessing binary MP3 Header in C via fopeneduffy2009-11-05T20:30:51Z2009-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#15942870Answer by eduffy for How to check if stdin is still opened without blocking?eduffy2009-10-20T12:34:41Z2009-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#15749450Answer by eduffy for C++ map object not growing when members addededuffy2009-10-15T20:45:50Z2009-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#15638651Answer by eduffy for Handle special characters in bash for...in loopeduffy2009-10-14T01:47:24Z2009-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#15578973Answer by eduffy for How does the jump instruction in assembly work with multiple processes?eduffy2009-10-13T02:04:25Z2009-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#15437301Answer by eduffy for Extracting basic info from animation fileeduffy2009-10-09T13:25:11Z2009-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#15400601Answer by eduffy for Python: Replace values in listeduffy2009-10-08T19:57:34Z2009-10-08T19:57:34Z<pre><code>>>> L = range (11)
>>> [ 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#14882049Answer by eduffy for Stringifying template argumentseduffy2009-09-28T17:07:13Z2009-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#14732560Answer by eduffy for How to create argument tokens (C++ in Unix)eduffy2009-09-24T18:03:45Z2009-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#145573310Answer by eduffy for Anything comparable to Visual Basic to use in Ubuntu?eduffy2009-09-21T17:28:02Z2009-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#14557162Answer by eduffy for C++ Cosine Problemeduffy2009-09-21T17:24:35Z2009-09-21T17:24:35Z<p>Your calculator is using degrees. For example:</p>
<pre><code>>>> import math
>>> math.cos (.3)
0.95533648912560598
>>> 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#14485670Answer by eduffy for Python subprocess.Popen - adding GCC flags results in "no input files" erroreduffy2009-09-19T13:33:19Z2009-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#14444363Answer by eduffy for What is the worst real-world macros/pre-processor abuse you've ever come across?eduffy2009-09-18T13:05:16Z2009-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#14245529Answer by eduffy for Testing for GUI in .bashrceduffy2009-09-15T00:29:18Z2009-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}" ] && 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#13548433Answer by eduffy for Strange behaviour of created *.exeeduffy2009-08-30T20:34:37Z2009-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#13345561Answer by eduffy for Default value of pointer in Visual C++ 6.0eduffy2009-08-26T13:08:30Z2009-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#13288521Answer by eduffy for run a unix shell command if the output doesn't have a specific number of lineseduffy2009-08-25T14:58:49Z2009-08-25T14:58:49Z<p>Kinda ugly .. but this works.</p>
<pre><code># test $(seq 10 | wc -l) -eq 10 && echo "there's 10"
there's 10
# test $(seq 11 | wc -l) -eq 10 && 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-1Answer by eduffy for How is the C++ standard library linked to my application?eduffy2009-08-22T19:07:25Z2009-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#13130880Answer by eduffy for What is a multithreaded application?eduffy2009-08-21T16:57:47Z2009-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-orComment by eduffy on c++ multiple enums in one function argument using bitwise or "|"eduffy2009-12-09T13:56:56Z2009-12-09T13:56:56ZPost 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-pythonComment by eduffy on Process two files at the same time in Pythoneduffy2009-11-13T18:51:21Z2009-11-13T18:51:21ZThe 6th, 46th, 86th, etc line in the second file contains the literal <code>@CAR_NAME</code>?http://stackoverflow.com/questions/1683328/accessing-binary-mp3-header-in-c-via-fopen/1683382#1683382Comment by eduffy on Accessing binary MP3 Header in C via fopeneduffy2009-11-05T20:42:27Z2009-11-05T20:42:27ZThat's the right-side of the spec you posted.http://stackoverflow.com/questions/1590688/class-is-not-a-template-typeComment by eduffy on Class 'is not a template type'eduffy2009-10-19T19:46:31Z2009-10-19T19:46:31ZWhat's line 25? Is it the <code>Q_OBJECT</code> line?http://stackoverflow.com/questions/1574910/c-map-object-not-growing-when-members-added/1574927#1574927Comment by eduffy on C++ map object not growing when members addededuffy2009-10-15T20:51:07Z2009-10-15T20:51:07Z@Scott: Add the line <code>printf ("name = %p\n", name)</code> to see that the pointer never changes.http://stackoverflow.com/questions/1574910/c-map-object-not-growing-when-members-added/1574927#1574927Comment by eduffy on C++ map object not growing when members addededuffy2009-10-15T20:49:24Z2009-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#1574927Comment by eduffy on C++ map object not growing when members addededuffy2009-10-15T20:47:13Z2009-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#1474936Comment by eduffy on Why isn't the [] operator const for STL maps?eduffy2009-09-25T01:14:20Z2009-09-25T01:14:20Zit does in <code>gcc</code>http://stackoverflow.com/questions/1472048/how-to-append-a-char-to-a-stdstring/1472075#1472075Comment by eduffy on How to append a char to a std::string?eduffy2009-09-24T14:37:47Z2009-09-24T14:37:47ZIt's less typing. In <code>gcc</code>, <code>basic_string::operator+=</code> is just a call in <code>push_back</code>.http://stackoverflow.com/questions/1448614/handling-hal-implementation-storage-cdrom-writespeedsComment by eduffy on Handling HAL implementation: storage.cdrom.write_speedseduffy2009-09-19T14:12:44Z2009-09-19T14:12:44ZI thought HAL was being phased out in favor of DeviceKit.http://stackoverflow.com/questions/1448596/operator-overloading-in-c/1448608#1448608Comment by eduffy on operator overloading in C++eduffy2009-09-19T14:08:46Z2009-09-19T14:08:46ZThe question asked for operators that aren't class methods. So anything with an <code>=</code> and the <code>-></code>, <code>[]</code>, and <code>()</code> operators don't belong.http://stackoverflow.com/questions/1424533/testing-for-gui-in-bashrc/1424552#1424552Comment by eduffy on Testing for GUI in .bashrceduffy2009-09-16T03:15:50Z2009-09-16T03:15:50ZWhoops .. thanks.http://stackoverflow.com/questions/1328811/run-a-unix-shell-command-if-the-output-doesnt-have-a-specific-number-of-lines/1328852#1328852Comment by eduffy on run a unix shell command if the output doesn't have a specific number of lineseduffy2009-08-25T20:43:12Z2009-08-25T20:43:12ZYou named them? .. I was happy with <code>a.out</code> :phttp://stackoverflow.com/questions/1190362/checking-if-a-directory-exists-on-another-server-in-ksh/1190404#1190404Comment by eduffy on Checking if a directory exists on another server in ksheduffy2009-07-27T23:08:28Z2009-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-stdmapComment by eduffy on How do I initialize a static std::map?eduffy2009-07-27T13:56:59Z2009-07-27T13:56:59ZIs this a DLL or and EXE?