User Ville Laurikari - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T03:16:43Z http://stackoverflow.com/feeds/user/7446 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1733592/is-there-any-difference-between-java-run-exec-of-a-command-and-shell-execution/1733605#1733605 2 Answer by Ville Laurikari for Is there any difference between java run.exec of a command and shell execution? Ville Laurikari 2009-11-14T07:36:58Z 2009-11-14T07:42:59Z <p>run.exec() does not invoke the shell. The shell parses the command line and effectively removes the quotes before passing them as arguments to pdf2swf. You can only run "raw" commands with run.exec().</p> <p>You can, if you want, run the <em>shell</em> with run.exec(), and have it parse your command as a shell command. Quoting will be a bit painful, but doable.</p> http://stackoverflow.com/questions/1689505/python-ulimit-and-nice-for-subprocess-call-subprocess-popen/1689787#1689787 3 Answer by Ville Laurikari for Python: ulimit and nice for subprocess.call / subprocess.popen ? Ville Laurikari 2009-11-06T19:28:06Z 2009-11-06T19:28:06Z <p>You can set limits for subprocesses with the <code>ulimit</code> and <code>nice</code> shell commands like this:</p> <pre><code>import subprocess subprocess.Popen('ulimit -t 60; nice -n 15 cpuhog', shell=True) </code></pre> <p>This runs <code>cpuhog</code> with a limit of 60 seconds of CPU time and a niceness adjustment of 15. Note that there is no simple way to set a 20% CPU throttle as such. The process will use 100% CPU unless another (less nice) process also needs the CPU.</p> http://stackoverflow.com/questions/1689594/in-python-2-6-4-why-do-i-get-a-syntax-error-for-a-function-call-of-which-the-fu/1689620#1689620 2 Answer by Ville Laurikari for In Python 2.6.4, why do I get a syntax error for a function call, of which the function is defined and works perfectly on its own? Ville Laurikari 2009-11-06T19:03:27Z 2009-11-06T19:03:27Z <p>The previous line is missing a closing parenthesis. It should read like this instead:</p> <pre><code>length_of_spoke = length_of_side/(2*sin(pi/180*angle/2)) </code></pre> http://stackoverflow.com/questions/1689331/is-there-a-way-to-package-a-dynamic-library-in-the-application-binary/1689362#1689362 3 Answer by Ville Laurikari for Is there a way to package a dynamic library in the application binary? Ville Laurikari 2009-11-06T18:16:27Z 2009-11-06T18:21:57Z <p>Qt supports linking plugins statically to your application. See <a href="http://doc.trolltech.com/4.5/plugins-howto.html#static-plugins" rel="nofollow">the documentation</a>.</p> <p>You use the <code>Q_IMPORT_PLUGIN()</code> macro in your code like so:</p> <pre><code>#include &lt;QApplication&gt; #include &lt;QtPlugin&gt; Q_IMPORT_PLUGIN(qjpeg) int main(int argc, char *argv[]) { QApplication app(argc, argv); ... return app.exec(); } </code></pre> <p>You also need to list the plugins in QTPLUGIN in your .pro file:</p> <pre><code>QTPLUGIN += qjpeg </code></pre> <p>You may also need to build a static version of Qt yourself - not sure if the prebuilt versions contain static libraries (I don't use the prebuilt code).</p> http://stackoverflow.com/questions/1689086/are-there-any-alternatives-to-py2exe/1689219#1689219 2 Answer by Ville Laurikari for Are there any alternatives to py2exe? Ville Laurikari 2009-11-06T17:49:34Z 2009-11-06T17:49:34Z <p><a href="http://pypi.python.org/pypi/bbfreeze/" rel="nofollow">bbfreeze</a> claims to works on Windows and UNIX, but not on OS X. It doesn't seem to be actively developed anymore, though.</p> http://stackoverflow.com/questions/1683673/there-is-some-way-to-do-this-string-extraction-faster/1683720#1683720 5 Answer by Ville Laurikari for There is some way to do this string extraction faster? Ville Laurikari 2009-11-05T21:23:20Z 2009-11-05T21:45:39Z <p>You could try the strtok() function:</p> <pre><code>$vhost = strtok($hostname, ".") </code></pre> <p>It's faster than a correct version of your while loop, <em>and</em> much more readable.</p> http://stackoverflow.com/questions/1272424/how-complex-cobol-programs-would-fit-in-256k 3 How complex COBOL programs would fit in 256k? Ville Laurikari 2009-08-13T14:45:43Z 2009-08-23T05:21:07Z <p>This is in reference to <a href="http://blog.stackoverflow.com/2009/08/podcast-65/" rel="nofollow">Stack Overflow Podcast #65</a>. Assume a typical 60's or 70's server computer with, say, 256k main memory. How large (compiled) COBOL programs could such a machine run at maximum? How severely would this limit the complexity and capabilities of COBOL programs, assuming that the programs are not deliberately made more complex than necessary?</p> http://stackoverflow.com/questions/1279139/how-to-reliably-capture-win32-console-screen-buffer-changes 0 How to reliably capture win32 console screen buffer changes? Ville Laurikari 2009-08-14T17:35:24Z 2009-08-21T23:33:08Z <p>Is there any way to reliably capture all changes made to the win32 console buffer, as they happen? The idea is to convert the screen updates of a text mode app to ANSI escape sequences, for a telnet/ssh server. I need to capture cursor movements, colors, window title, etc. Mouse clicks, too, if possible.</p> <p>The only technique I've seen used for this so far is to basically take frequent snapshots of console buffer contents, and compare to a previous snapshot. If there are changes, then figure out what has changed and generate ANSI escape sequences.</p> <p>This kind of works, but a good diffing algorithm to minimize amount of data sent down the line would be complex. Sometimes the screen buffer is updated so quickly that some updates are not sent at all. This is a show stopper; I need all the data captured 100% reliably.</p> http://stackoverflow.com/questions/899038/getting-the-highest-allocated-file-descriptor 4 Getting the highest allocated file descriptor Ville Laurikari 2009-05-22T17:35:49Z 2009-08-21T03:35:10Z <p>Is there a portable way (POSIX) to get the highest allocated file descriptor number for the current process?</p> <p>I know that there's a nice way to get the number on AIX, for example, but I'm looking for a portable method.</p> <p>The reason I'm asking is that I want to close all open file descriptors. My program is a server which runs as root and forks and execs child programs for non-root users. Leaving the privileged file descriptors open in the child process is a security problem. Some file descriptors may be opened by code I cannot control (the C library, third party libraries, etc.), so I cannot rely on <code>FD_CLOEXEC</code> either.</p> http://stackoverflow.com/questions/234075/what-is-your-best-programmer-joke/1282784#1282784 25 Answer by Ville Laurikari for What is your best programmer joke? Ville Laurikari 2009-08-15T20:38:37Z 2009-08-16T11:18:04Z <p>I &#1234123412; Unicode.</p> http://stackoverflow.com/questions/494789/ldpreload-on-aix/1254617#1254617 1 Answer by Ville Laurikari for LD_PRELOAD on AIX Ville Laurikari 2009-08-10T12:34:33Z 2009-08-10T12:34:33Z <p>AIX 5.3 introduced the <code>LDR_PRELOAD</code> (for 32-bit programs) and <code>LDR_PRELOAD64</code> (for 64-bit programs) variables. They are analoguous to LD_PRELOAD on Linux. Both are colon-separated lists of libraries, and symbols will be pre-emptively loaded from the listed shared objects before anything else. </p> <p>For example, if you have a shared object foo.so:</p> <pre><code> LDR_PRELOAD=foo.so </code></pre> <p>If you use archives, use the AIX style to specify the object within the archive:</p> <pre><code> LDR_PRELOAD="bar.a(shr.so)" </code></pre> <p>And separate multiple entries with a colon:</p> <pre><code> LDR_PRELOAD="foo.so:bar.a(shr.so)" </code></pre> http://stackoverflow.com/questions/1234559/how-does-the-ie6-no-more-code-work 4 How does the "IE6 no more" code work? Ville Laurikari 2009-08-05T17:11:34Z 2009-08-05T17:17:02Z <p>There are code samples on the <a href="http://www.ie6nomore.com/code-samples.html" rel="nofollow">IE6 No More website</a>, such as this one:</p> <pre><code>&lt;!--[if lt IE 7]&gt; &lt;div style='border: 1px solid #F7941D; background: #FEEFDA; text-align: center; clear: both; height: 75px; position: relative;'&gt; &lt;div style='position: absolute; right: 3px; top: 3px; font-family: courier new; font-weight: bold;'&gt;&lt;a href='#' onclick='javascript:this.parentNode.parentNode.style.display="none"; return false;'&gt;&lt;img src='http://www.ie6nomore.com/files/theme/ie6nomore-cornerx.jpg' style='border: none;' alt='Close this notice'/&gt;&lt;/a&gt;&lt;/div&gt; &lt;div style='width: 640px; margin: 0 auto; text-align: left; padding: 0; overflow: hidden; color: black;'&gt; &lt;div style='width: 75px; float: left;'&gt;&lt;img src='http://www.ie6nomore.com/files/theme/ie6nomore-warning.jpg' alt='Warning!'/&gt;&lt;/div&gt; &lt;div style='width: 275px; float: left; font-family: Arial, sans-serif;'&gt; &lt;div style='font-size: 14px; font-weight: bold; margin-top: 12px;'&gt;You are using an outdated browser&lt;/div&gt; &lt;div style='font-size: 12px; margin-top: 6px; line-height: 12px;'&gt;For a better experience using this site, please upgrade to a modern web browser.&lt;/div&gt; &lt;/div&gt; &lt;div style='width: 75px; float: left;'&gt;&lt;a href='http://www.firefox.com' target='_blank'&gt;&lt;img src='http://www.ie6nomore.com/files/theme/ie6nomore-firefox.jpg' style='border: none;' alt='Get Firefox 3.5'/&gt;&lt;/a&gt;&lt;/div&gt; &lt;div style='width: 75px; float: left;'&gt;&lt;a href='http://www.browserforthebetter.com/download.html' target='_blank'&gt;&lt;img src='http://www.ie6nomore.com/files/theme/ie6nomore-ie8.jpg' style='border: none;' alt='Get Internet Explorer 8'/&gt;&lt;/a&gt;&lt;/div&gt; &lt;div style='width: 73px; float: left;'&gt;&lt;a href='http://www.apple.com/safari/download/' target='_blank'&gt;&lt;img src='http://www.ie6nomore.com/files/theme/ie6nomore-safari.jpg' style='border: none;' alt='Get Safari 4'/&gt;&lt;/a&gt;&lt;/div&gt; &lt;div style='float: left;'&gt;&lt;a href='http://www.google.com/chrome' target='_blank'&gt;&lt;img src='http://www.ie6nomore.com/files/theme/ie6nomore-chrome.jpg' style='border: none;' alt='Get Google Chrome'/&gt;&lt;/a&gt;&lt;/div&gt; &lt;/div&gt; &lt;/div&gt; &lt;![endif]--&gt; </code></pre> <p>How does this work? Why does this show on IE6 but not on newer browsers?</p> http://stackoverflow.com/questions/1233435/detect-compiler-with-ifdef/1233485#1233485 2 Answer by Ville Laurikari for Detect compiler with #ifdef Ville Laurikari 2009-08-05T14:06:59Z 2009-08-05T14:06:59Z <p>You could try this to see what macros are predefined by the compiler:</p> <pre><code>pgcc -dM </code></pre> <p>Maybe that will reveal a suitable macro you can use.</p> http://stackoverflow.com/questions/1228466/how-to-filter-files-when-using-scp-to-copy-dir-recursively/1228529#1228529 1 Answer by Ville Laurikari for How to filter files when using scp to copy dir recursively? Ville Laurikari 2009-08-04T16:25:20Z 2009-08-04T17:07:03Z <p>There is no feature in scp to filter files. For "advanced" stuff like this, I recommend using rsync:</p> <pre><code>rsync -a --exclude '*.svn' server:dir . </code></pre> <p>Recent versions of rsync tunnel over an ssh connection automatically by default.</p> http://stackoverflow.com/questions/1227448/can-someone-help-me-understand-this-short-py/1227472#1227472 4 Answer by Ville Laurikari for can someone help me understand this short .py Ville Laurikari 2009-08-04T13:12:28Z 2009-08-04T16:57:10Z <p>The <code>pickledList</code> variable is available as a global variable in the <code>ClientThread</code> class. See <a href="http://stackoverflow.com/questions/291978/short-description-of-python-scoping-rules">Short Description of Python Scoping Rules</a>.</p> http://stackoverflow.com/questions/1227561/cgi-script-not-executing-every-page-visit/1227583#1227583 1 Answer by Ville Laurikari for CGI script not executing every page visit Ville Laurikari 2009-08-04T13:38:33Z 2009-08-04T13:38:33Z <p>You need to tell the browser (and possible proxies) to disable caching of the file with the appropriate HTTP headers:</p> <pre><code>Pragma-directive: no-cache Cache-directive: no-cache Cache-control: no-cache Pragma: no-cache Expires: 0 </code></pre> <p>Of course, you'll just add each these in your script like this:</p> <pre><code>printf "Pragma-directive: no-cache\r\n"; </code></pre> <p>There's a fair bit of redundancy in these directives. All are probably not necessary, but it's good to make sure there's something all browsers and proxies out there understand.</p> http://stackoverflow.com/questions/828092/python-style-integer-division-modulus-in-c/828238#828238 6 Answer by Ville Laurikari for Python-style integer division & modulus in C Ville Laurikari 2009-05-06T06:07:52Z 2009-08-04T13:34:32Z <p>The direction for rounding with signed integer division is not specified in older C standards. However, in C99 it is specified to round towards zero.</p> <p>Here's portable code which works with all versions of the C standards and CPU architectures:</p> <pre><code>int py_div(int a, int b) { if (a &lt; 0) if (b &lt; 0) return -a / -b; else return -(-a / b) - (-a % b != 0 ? 1 : 0); else if (b &lt; 0) return -(a / -b) - (a % -b != 0 ? 1 : 0); else return a / b; } int py_mod(int a, int b) { if (a &lt; 0) if (b &lt; 0) return -(-a % -b); else return -a % b - (-a % -b != 0 ? 1 : 0); else if (b &lt; 0) return -(a % -b) + (-a % -b != 0 ? 1 : 0); else return a % b; } </code></pre> <p>I did some superficial tests and it appears to give the same results as Python. This code may not be maximally efficient, but a good C compiler can probably optimize it adequately, especially if you put the code in a header as static functions.</p> <p>You may also want to take a look at this closely related question: <a href="http://stackoverflow.com/questions/319880/integer-division-rounding-with-negatives-in-c">Integer division rounding with negatives in C++</a>.</p> http://stackoverflow.com/questions/1226171/find-the-current-stdout-or-how-to-redirect-the-output-back-to-console/1226197#1226197 5 Answer by Ville Laurikari for Find the current stdout OR How to redirect the output back to console. Ville Laurikari 2009-08-04T07:56:31Z 2009-08-04T07:56:31Z <p>You're using an inapproriate method to run system commands from Ruby. Try this instead:</p> <pre><code>#!/usr/bin/ruby system 'bash' </code></pre> <p>The syntax you're using (with the backticks) captures the standard output of the command and returns it in a string. That's why you don't see it on the terminal.</p> <p>Here's a nice review of the different ways to run commands from Ruby: <a href="http://tech.natemurray.com/2007/03/ruby-shell-commands.html" rel="nofollow">6 Ways to Run Shell Commands in Ruby</a>.</p> http://stackoverflow.com/questions/1219569/shell-svn-status-pipe-to-php-to-check-syntax/1219577#1219577 3 Answer by Ville Laurikari for Shell: SVN status pipe to php to check syntax Ville Laurikari 2009-08-02T19:12:16Z 2009-08-02T19:19:52Z <p>Use xargs:</p> <pre><code> svn st | awk '{print $2}' | xargs -L 1 php -l </code></pre> <p>The <code>xargs -L 1</code> command reads items from standard input, one per line, and runs the given command for each item separately. See the xargs(1) man page for more info.</p> http://stackoverflow.com/questions/1219438/c-how-do-you-simulate-an-exception/1219458#1219458 9 Answer by Ville Laurikari for C : How do you simulate an 'exception' ? Ville Laurikari 2009-08-02T18:19:26Z 2009-08-02T19:04:37Z <p>You could build an exception system on top of longjmp/setjmp: <a href="http://www.di.unipi.it/~nids/docs/longjump_try_trow_catch.shtml" rel="nofollow">Exceptions in C with Longjmp and Setjmp</a>. It actually works quite well, and the article is a good read as well. Here's how your code could look like if you used the exception system from the linked article:</p> <pre><code> TRY { ... THROW(MY_EXCEPTION); /* Unreachable */ } CATCH(MY_EXCEPTION) { ... } CATCH(OTHER_EXCEPTION) { ... } FINALLY { ... } </code></pre> <p>It's amazing what you can do with a little macros, right? It's equally amazing how hard it is to figure out what the heck is going on if you don't already know what the macros do.</p> <p>longjmp/setjmp are portable: C89, C99, and POSIX.1-2001 specify <code>setjmp()</code>.</p> <p>Note, however, that exceptions implemented in this way will still have some limitations compared to "real" exceptions in C# or C++. A major problem is that only your code will be compatible with this exception system. As there is no established standard for exceptions in C, system and third party libraries just won't interoperate optimally with your homegrown exception system. Still, this can sometimes turn out to be a useful hack.</p> <p><strong>I don't recommend using this in serious code</strong> which programmers other than yourself are supposed to work with. It's just too easy to shoot yourself in the foot with this if you don't know exactly what is going on. Threading, resource management, and signal handling are problem areas which non-toy programs will encounter if you attempt to use longjmp "exceptions".</p> http://stackoverflow.com/questions/1218936/multiple-rules-specify-the-same-phony-dependent-dependent-only-executes-once/1219298#1219298 2 Answer by Ville Laurikari for Multiple rules specify the same phony dependent, dependent only executes once Ville Laurikari 2009-08-02T17:11:44Z 2009-08-02T17:11:44Z <p>The makefile you posted seems to assume that the commands for the <code>$(subdirs)</code> target would be run two times: once for <code>x</code> and a second time for <code>y</code>. Unfortunately, that's not how makefiles and dependencies work. The commands for a target are run at most once per make invocation (barring unusual circumstances, such as when makefiles are modified during the make run).</p> <p>The following will work on UNIX -style systems. It simply runs the subdirectory makes in a loop, one after each other:</p> <pre><code>subdirs = a b c .PHONY: build build: for dir in $(subdirs); do \ $(MAKE) -f $$dir/makefile prepare; \ $(MAKE) -f $$dir/makefile build; \ done </code></pre> <p>If you need to build the subdirectories in parallel, you can use the following: </p> <pre><code>subdirs = a b c .PHONY: build build: $(addprefix build-,$(subdirs)) define submake-rule .PHONY: build-$(1) build-$(1): $(MAKE) -f $(1)/makefile prepare $(MAKE) -f $(1)/makefile build endef $(foreach dir,$(subdirs),$(eval $(call submake-rule,$(dir)))) </code></pre> <p>This defines a rule <code>build-&lt;dirname&gt;</code> for each item in <code>$(subdirs)</code>, and makes the <code>build</code> target depend on all of them. As an added bonus, this is portable to Windows as well, without requiring using a Cygwin bash shell or similar. The downside is that it's a bit harder to understand.</p> http://stackoverflow.com/questions/1218262/why-do-some-compilers-use-a-out-as-the-default-name-for-executables 3 Why do some compilers use "a.out" as the default name for executables? Ville Laurikari 2009-08-02T05:59:29Z 2009-08-02T07:15:21Z <p>Most UNIX C compilers link executables by default to a file called "a.out". Why? Is this a written standard or just de-facto standard behavior? What would break if these compilers would just produce an error message (or use a different default name) instead of producing "a.out"? </p> http://stackoverflow.com/questions/1188623/bash-parameter-expansion-changes-original-string/1188701#1188701 0 Answer by Ville Laurikari for bash parameter expansion changes original string Ville Laurikari 2009-07-27T15:03:57Z 2009-07-31T12:20:42Z <p>Is the echo really necessary? You could simply remove it:</p> <pre><code>fs_item="${fs_item%/}" </code></pre> <p>If your actual problem is something different, and you cannot get rid of the echo (or some other command invocation), adding some quotes should work:</p> <pre><code>fs_item="`echo \"${fs_item%/}\"`" </code></pre> <p>The spaces vanish when running the backticked <code>echo</code> command. The internal field separator includes the space character, so words separated by a sequence of one or more spaces will be passed as separate arguments to <code>echo</code>. Then, echo just prints it's arguments separated by a single space.</p> <p>Since we're on the internal field separator subject, changing the IFS should also work (but usually has other possibly undesirable effects elsewhere in your script):</p> <pre><code>IFS=$'\n' </code></pre> <p>This sets the internal field separator to the newline character. After this, the spaces are no longer considered to be separators for lists. The echo command will receive just one argument (unless you have file names with the newline character in them) and spaces will stay intact.</p> http://stackoverflow.com/questions/1207965/is-there-a-command-line-utility-to-change-the-embedded-icon-of-a-win32-exe/1208113#1208113 1 Answer by Ville Laurikari for Is there a command line utility to change the embedded Icon of a win32 exe? Ville Laurikari 2009-07-30T17:31:53Z 2009-07-30T17:41:05Z <p>You need to create a resource script file (<code>.rc</code>), and then compile it to an object file with <code>rc</code> (<code>.rc</code> &rarr; <code>.res</code>) and <code>cvtres</code> (<code>.res</code> &rarr; <code>.obj</code>). Both tools are included in the Microsoft Platform SDK. When you include the object file into an linker command, the result will have the icon specified in the resource script file. Here's a sample resource file and the commands to create the object:</p> <p>resource.rc:</p> <pre><code>101 ICON "my_icon.ico" </code></pre> <p>Your icon file is in the file <code>my_icon.ico</code>. Commands to compile these into an object file:</p> <pre><code>rc -fo resource.res resource.rc cvtres -machine:ix86 -out:resource.obj resource.res </code></pre> <p>But, by far the easiest way to set the program icon is to just <a href="http://stackoverflow.com/questions/320677/how-do-i-set-the-icon-for-my-application-in-visual-studio-2008">do it in Visual Studio</a>.</p> <p>Technically, neither will allow you to actually <em>change</em> the icon of an existing executable, but somehow I doubt that's what you really want to do.</p> http://stackoverflow.com/questions/1207082/align-native-code-on-fixed-size-memory-boundaries-with-gcc-g-as/1207162#1207162 5 Answer by Ville Laurikari for Align native code on fixed size memory boundaries with GCC/G++/AS ? Ville Laurikari 2009-07-30T14:57:19Z 2009-07-30T15:16:24Z <p>I realize this is not exactly what you are asking for, but this is the standard way to implement byte code interpreters with GCC.</p> <p>GCC's "computed goto" or "labels as values" feature allows you to put labels in an array and efficiently jump to different bytecode instructions. See <a href="http://blogs.sun.com/nike/entry/fast_interpreter_using_gcc_s" rel="nofollow">Fast interpreter using gcc's computed goto</a>. Also look at this related Stack Overflow question: <a href="http://stackoverflow.com/questions/938518/c-c-goto">C/C++ goto</a>, and the <a href="http://gcc.gnu.org/onlinedocs/gcc/Labels-as-Values.html" rel="nofollow">GCC documentation on labels as values</a>.</p> <p>The code to do this would look something like this:</p> <pre><code>void* jumptable[] = {&amp;&amp;label1, &amp;&amp;label2}; label: /* Code here... */ label2: /* Other code here... */ </code></pre> <p>You can then jump to different instructions using the table:</p> <pre><code>goto *jumptable[i]; </code></pre> http://stackoverflow.com/questions/1189781/using-make-dir-or-notdir-on-a-path-with-spaces/1189900#1189900 1 Answer by Ville Laurikari for Using Make $(dir) or $(notdir) on a path with spaces Ville Laurikari 2009-07-27T18:45:28Z 2009-07-27T19:06:49Z <p>The <code>$(notdir)</code> function in GNU Make takes a list of arguments, separated by spaces. Some functions support escaping spaces with <code>\\</code>, but <code>$(notdir)</code> is not one of them. </p> <p>This should work:</p> <pre><code>s? = $(subst $(empty) ,?,$1) ?s = $(subst ?, ,$1) notdirx = $(call ?s,$(notdir $(call s?,$1))) $(TARGET): touch '$(call notdirx,$@)' </code></pre> <p>This defines a "space-safe" version of <code>notdir</code> called <code>notdirx</code>. It's quite simple: <code>s?</code> first turns all spaces to question marks (hoping that they cannot be present in file names), and <code>?s</code> converts back. In between we can safely call the original <code>notdir</code> function.</p> <p>For an excellent summary on GNU Make and spaces in file names, see <a href="http://www.cmcrossroads.com/content/view/7859/268/" rel="nofollow">GNU Make meets file names with spaces in them</a>.</p> http://stackoverflow.com/questions/1187354/excluding-first-and-last-lines-from-sed-start-end/1187517#1187517 5 Answer by Ville Laurikari for excluding first and last lines from sed /START/,/END/ Ville Laurikari 2009-07-27T10:38:50Z 2009-07-27T10:48:37Z <p>This should do the trick:</p> <pre><code>sed -e '/=sec1=/,/=sec2=/ { /=sec1=/b; /=sec2=/b; s/^/#/ }' &lt; input </code></pre> <p>This matches between sec1 and sec2 inclusively and then just skips the first and last line with the <code>b</code> command. This leaves the desired lines between sec1 and sec2 (exclusive), and the <code>s</code> command adds the comment sign.</p> <p>Unfortunately, you do need to repeat the regexps for matching the delimiters. As far as I know there's no better way to do this. At least you can keep the regexps clean, even though they're used twice.</p> <p>This is adapted from the <a href="http://sed.sourceforge.net/sedfaq4.html#s4.24" rel="nofollow">SED FAQ: How do I address all the lines between RE1 and RE2, excluding the lines themselves?</a></p> http://stackoverflow.com/questions/559567/how-to-make-a-better-mapper-in-scheme-using-streams/818982#818982 1 Answer by Ville Laurikari for How to make a better mapper in Scheme using Streams Ville Laurikari 2009-05-04T06:24:48Z 2009-07-24T19:18:59Z <p>Let's first define a set of basic stream primitives, so that the rest of the code makes sense:</p> <pre><code>(define-syntax stream-cons (syntax-rules () ((stream-cons obj expr) (cons obj (delay expr))))) (define stream-car car) (define (stream-cdr p) (force (cdr p))) (define stream-null? null?) </code></pre> <p>With these we can define operations for "streems", our "better streams".</p> <pre><code>(define (streem-car stream default) (if (stream-null? stream) default (stream-car stream))) (define (streem-cdr stream) (if (stream-null? stream) stream (stream-cdr stream))) (define (streem-map proc defaults . streams) (stream-cons (apply proc (map streem-car streams defaults)) (apply streem-map proc defaults (map streem-cdr streams)))) </code></pre> <p>You should be able to easily adapt this to whatever stream library you are already using. You don't need a separate list->streem conversion, you can pass streem-map regular streams (presumably created with list->stream).</p> http://stackoverflow.com/questions/1173025/is-there-a-non-gpl-python-library-for-reading-id3-information-from-an-mp3/1173096#1173096 1 Answer by Ville Laurikari for Is there a non-GPL Python Library for reading ID3 information from an mp3? Ville Laurikari 2009-07-23T16:56:24Z 2009-07-23T16:56:24Z <p>There's <a href="http://code.google.com/p/stagger/" rel="nofollow">Stagger</a> (new BSD license), pure Python 3.</p> http://stackoverflow.com/questions/1170809/how-to-get-gcc-linker-command/1170843#1170843 4 Answer by Ville Laurikari for How to get GCC linker command? Ville Laurikari 2009-07-23T10:16:52Z 2009-07-23T16:32:54Z <p>Use <code>gcc -v</code> to see what commands it runs. As in,</p> <pre><code>gcc -v -o hello hello.c </code></pre> <p>This will print a lot of output, including the linker command. The actual output depends on the platform, but the linking command should be near the end. Alternatively, use</p> <pre><code>gcc -### -o hello hello.c </code></pre> <p>This is like <code>-v</code>, but does not actually run any commands and quotes the options.</p> <p>Another option is</p> <pre><code>gcc -dumpspecs </code></pre> <p>Look for the entry for <code>link</code>.</p> <p>The above command line flags are listed in <code>gcc --help</code> and explained on the man page. Here's <a href="http://gcc.gnu.org/onlinedocs/gcc-4.1.2/gcc/Spec-Files.html" rel="nofollow">GCC documentation for the spec files</a>.</p> http://stackoverflow.com/questions/1689505/python-ulimit-and-nice-for-subprocess-call-subprocess-popen/1689787#1689787 Comment by Ville Laurikari on Python: ulimit and nice for subprocess.call / subprocess.popen ? Ville Laurikari 2009-11-06T19:53:39Z 2009-11-06T19:53:39Z As far as I can tell, you have to pass the entire shell command in one string for something like this to work. http://stackoverflow.com/questions/1683673/there-is-some-way-to-do-this-string-extraction-faster/1683720#1683720 Comment by Ville Laurikari on There is some way to do this string extraction faster? Ville Laurikari 2009-11-05T21:37:21Z 2009-11-05T21:37:21Z By the way, since speed is so important to you, are you using a PHP accelerator of some sort? http://stackoverflow.com/questions/1272424/how-complex-cobol-programs-would-fit-in-256k Comment by Ville Laurikari on How complex COBOL programs would fit in 256k? Ville Laurikari 2009-08-23T05:10:55Z 2009-08-23T05:10:55Z The idea is to get an understanding of how complex programs a mainframe could run. In the podcast, someone said (I think it was Joel) that since the machines in those days had so little RAM and disk, they wouldn't really be able to run very complex programs. http://stackoverflow.com/questions/234075/what-is-your-best-programmer-joke/234457#234457 Comment by Ville Laurikari on What is your best programmer joke? Ville Laurikari 2009-08-15T20:17:46Z 2009-08-15T20:17:46Z In Prolog programming (in contrast perhaps to life in general) our goal is to fail as quickly as possible. - The Art of Prolog/MIT Press http://stackoverflow.com/questions/1272424/how-complex-cobol-programs-would-fit-in-256k/1272474#1272474 Comment by Ville Laurikari on How complex COBOL programs would fit in 256k? Ville Laurikari 2009-08-13T15:05:29Z 2009-08-13T15:05:29Z Measuring the size of programs in a meaningful way is tricky. Maybe average bytes of machine code per line of COBOL code? A semi-useless metric maybe, but better than nothing. http://stackoverflow.com/questions/1272424/how-complex-cobol-programs-would-fit-in-256k/1272455#1272455 Comment by Ville Laurikari on How complex COBOL programs would fit in 256k? Ville Laurikari 2009-08-13T14:51:37Z 2009-08-13T14:51:37Z Eh, yeah. I mean <i>compiled</i> code. Clarified the question. http://stackoverflow.com/questions/1240970/c-why-do-you-specify-the-size-when-using-malloc/1240988#1240988 Comment by Ville Laurikari on C : Why do you specify the size when using malloc? Ville Laurikari 2009-08-06T19:57:21Z 2009-08-06T19:57:21Z That's wrong, sizeof(*p) is the size of the type pointed to by p. I like sizeof(*p) better than sizeof(int), because the latter makes it more error prone to change the type. http://stackoverflow.com/questions/1234559/how-does-the-ie6-no-more-code-work/1234568#1234568 Comment by Ville Laurikari on How does the "IE6 no more" code work? Ville Laurikari 2009-08-05T17:15:35Z 2009-08-05T17:15:35Z Ah, duh. I read it as if those two lines were comments, and the code between was not part of the comment. Thanks :) http://stackoverflow.com/questions/1227419/batch-files-help Comment by Ville Laurikari on batch files help Ville Laurikari 2009-08-04T13:07:20Z 2009-08-04T13:07:20Z Is this some kind of homework? http://stackoverflow.com/questions/750606/what-technologies-are-you-using-even-though-they-are-embarassingly-out-of-date/752634#752634 Comment by Ville Laurikari on What technologies are you using even though they are embarassingly out of date? Ville Laurikari 2009-08-02T18:16:17Z 2009-08-02T18:16:17Z Solaris ain't all that bad... compared to AIX or HP-UX ;) http://stackoverflow.com/questions/1218936/multiple-rules-specify-the-same-phony-dependent-dependent-only-executes-once/1219328#1219328 Comment by Ville Laurikari on Multiple rules specify the same phony dependent, dependent only executes once Ville Laurikari 2009-08-02T17:58:09Z 2009-08-02T17:58:09Z +1, definitely a good idea to make the prepare+build logic local to each subdirectory. http://stackoverflow.com/questions/1218936/multiple-rules-specify-the-same-phony-dependent-dependent-only-executes-once Comment by Ville Laurikari on Multiple rules specify the same phony dependent, dependent only executes once Ville Laurikari 2009-08-02T17:13:44Z 2009-08-02T17:13:44Z I just noticed you've asked this same question twice: <a href="http://stackoverflow.com/questions/1218019" rel="nofollow">stackoverflow.com/questions/1218019</a>. You should ask each question only once. http://stackoverflow.com/questions/1188623/bash-parameter-expansion-changes-original-string/1188701#1188701 Comment by Ville Laurikari on bash parameter expansion changes original string Ville Laurikari 2009-07-31T12:18:19Z 2009-07-31T12:18:19Z Based on comments in the original question I suspect the actual problem apparently may not be possible to simplify like that. But fair enough, I'll mention this in my post as well. http://stackoverflow.com/questions/1208268/to-change-user-in-os-xs-terminal Comment by Ville Laurikari on To change $USER in OS X's terminal Ville Laurikari 2009-07-30T18:07:36Z 2009-07-30T18:07:36Z Belongs on superuser.com? http://stackoverflow.com/questions/1189781/using-make-dir-or-notdir-on-a-path-with-spaces/1189900#1189900 Comment by Ville Laurikari on Using Make $(dir) or $(notdir) on a path with spaces Ville Laurikari 2009-07-27T19:05:25Z 2009-07-27T19:05:25Z Yeah. GNU Make could really use an optionally enabled (backwards incompatible) version 2 of the language and standard functions. Or maybe it's best to just use, say, SCons or something with a real programming language.