User ephemient - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T05:36:08Z http://stackoverflow.com/feeds/user/20713 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1823743/knowing-a-device-special-file-major-and-minor-numbers-in-linux/1823892#1823892 0 Answer by ephemient for knowing a device special file major and minor numbers in linux ephemient 2009-12-01T03:52:47Z 2009-12-01T03:52:47Z <pre> $ <b>ls -l /dev/fd0 /dev/null</b> brw-rw---- 1 root floppy 2, 0 Nov 22 19:48 /dev/fd0 crw-rw-rw- 1 root root 1, 3 Nov 22 19:48 /dev/null $ <b>stat -c '%n: %F, major %t minor %T' /dev/fd0 /dev/null</b> /dev/fd0: block special file, major 2 minor 0 /dev/null: character special file, major 1 minor 3 </pre> <p>Most device numbers are fixed (i.e. <code>/dev/null</code> will always be character device <code>1:3</code>) but on Linux, some are dynamically allocated.</p> <pre> $ <b>cat /proc/devices</b> Character devices: ... 10 misc ... Block devices: ... 253 mdp 254 device-mapper $ <b>cat /proc/misc</b> ... 57 device-mapper ... </pre> <p>For example, on this system, it just so happens that <code>/dev/mapper/control</code> will be <code>c:10:57</code> while the rest of <code>/dev/mapper/*</code> will be <code>b:254:*</code>, and this could differ from one boot cycle to another -- or even as modules are loaded/unloaded and devices are added/removed.</p> <p>You can explore these device registrations further in <code>/sys</code>.</p> <pre> $ <b>readlink /sys/dev/block/2:0</b> ../../devices/platform/floppy.0/block/fd0 $ <b>cat /sys/devices/platform/floppy.0/block/fd0/dev</b> 2:0 $ <b>readlink /sys/dev/char/1:3</b> ../../devices/virtual/mem/null $ <b>cat /sys/devices/virtual/mem/null/dev</b> 1:3 </pre> http://stackoverflow.com/questions/1816877/how-to-rewrite-the-halve-function-in-j/1823076#1823076 1 Answer by ephemient for How to rewrite the halve function in J? ephemient 2009-11-30T23:17:09Z 2009-11-30T23:17:09Z <pre><code>%&amp;2 NB. divide by two 0.5&amp;* NB. multiply by one half </code></pre> http://stackoverflow.com/questions/1800261/is-the-linux-kernels-list-h-thread-safe/1800480#1800480 1 Answer by ephemient for Is the linux kernel's list.h thread safe? ephemient 2009-11-25T22:48:21Z 2009-11-25T22:48:21Z <p>Just read the implementation; the answer is clearly NO in the presence of writers. (Multiple readers on immutable data is safe.)</p> <p>Paul McKenney gives an <a href="http://lwn.net/Articles/262464/" rel="nofollow">introduction to RCU</a> on the ever-helpful LWN, from which you can glean some tips on managing thread-safe updates to linked lists. Of course, your usage may be simple enough that spinlocks will suffice.</p> http://stackoverflow.com/questions/1800328/automake-pattern-expansion/1800440#1800440 1 Answer by ephemient for Automake pattern expansion ephemient 2009-11-25T22:43:35Z 2009-11-25T22:43:35Z <p>I don't know if it's the best way, but this is what I've always done:</p> <pre><code>xxx_SOURCES = xxx.c $(shell echo $(top_builddir)/src/{aaa,bbb,ccc}.c) </code></pre> http://stackoverflow.com/questions/1780489/haskell-minimum-maximum-double-constant/1780724#1780724 4 Answer by ephemient for Haskell minimum/maximum Double Constant ephemient 2009-11-23T01:39:19Z 2009-11-23T01:39:19Z <pre><code>maxNonInfiniteFloat :: RealFloat a =&gt; a -&gt; a maxNonInfiniteFloat a = encodeFloat m n where b = floatRadix a e = floatDigits a (_, e') = floatRange a m = b ^ e - 1 n = e' - e minPositiveFloat :: RealFloat a =&gt; a -&gt; a minPositiveFloat a = encodeFloat 1 $ fst (floatRange a) - floatDigits a </code></pre> http://stackoverflow.com/questions/1773412/windows-named-pipe-problem/1773739#1773739 2 Answer by ephemient for Windows Named Pipe Problem ephemient 2009-11-20T22:57:07Z 2009-11-20T22:57:07Z <p>Pipes are generally taken to be uni-directional communications channels.</p> <p>I believe that the easiest solution for you would be to create two pipes: one for application&rarr;driver messages, and one for driver&rarr;application messages.</p> http://stackoverflow.com/questions/1749905/code-golf-fractran/1750460#1750460 4 Answer by ephemient for Code Golf: Fractran ephemient 2009-11-17T17:30:39Z 2009-11-19T22:39:46Z <h2><a href="http://en.wikipedia.org/wiki/C%5F%28programming%5Flanguage%29" rel="nofollow">C</a>, <s>159</s> <s>153</s> <s>151</s> <s>131</s> <s>111</s> 110 characters</h2> <pre><code>v[99],c,d;main(){for(;scanf("%d",v+c++););while(d++,v[++d]) *v%v[d]?0:(*v=*v/v[d]*v[d-1],d=0);printf("%d",*v);} </code></pre> <pre> $ cc f.c $ echo 108 3 2 . | ./a.out; echo 243 $ echo 1296 3 2 . | ./a.out; echo 6561 $ echo 108 455 33 11 13 1 11 3 7 11 2 1 3 . | ./a.out; echo 15625 </pre> http://stackoverflow.com/questions/1749905/code-golf-fractran/1750248#1750248 7 Answer by ephemient for Code Golf: Fractran ephemient 2009-11-17T16:56:36Z 2009-11-17T16:56:36Z <h2><a href="http://www.haskell.org/" rel="nofollow">Haskell</a>, 102 characters</h2> <pre><code>import List import Ratio l&amp;n=maybe n((&amp;)l.numerator.(n%1*).(!!)l)$findIndex((==)1.denominator.(n%1*))l </code></pre> <pre> $ ghci Prelude&gt; :m List Ratio Prelude List Ratio&gt; let l&amp;n=maybe n((&amp;)l.numerator.(n%1*).(!!)l)$findIndex((==)1.denominator.(n%1*))l Prelude List Ratio&gt; [3%2]&108 243 Prelude List Ratio&gt; [3%2]&amp;1296 6561 Prelude List Ratio&gt; [455%33,11%13,1%11,3%7,11%2,1%3]&amp;108 15625 </pre> <p>88 with relaxed restrictions on the input/output format.</p> <pre><code>import List import Ratio l&amp;n=maybe n((&amp;)l.(*)n.(!!)l)$findIndex((==)1.denominator.(*)n)l </code></pre> <pre> Prelude List Ratio> let l&amp;n=maybe n((&amp;)l.(*)n.(!!)l)$findIndex((==)1.denominator Prelude List Ratio> [455%33,11%13,1%11,3%7,11%2,1%3]&amp;108 15625 % 1 </pre> http://stackoverflow.com/questions/1745045/stdlocale-breakage-on-macos-10-6-with-langenus-utf-8/1745433#1745433 0 Answer by ephemient for std::locale breakage on MacOS 10.6 with LANG=en_US.UTF-8 ephemient 2009-11-16T23:03:04Z 2009-11-16T23:03:04Z <p>The <code>_S_create_c_locale</code> exception seems to indicate some sort of misconfiguration: check that whatever your <code>LC_ALL</code> or <code>LANG</code> environment variable is set to, exists in the output of <code>locale -a</code>.</p> <pre> $ env LC_ALL=xx_YY ./test terminate called after throwing an instance of 'std::runtime_error' what(): locale::facet::_S_create_c_locale name not valid Aborted $ env LC_ALL=C ./test $ echo $? 0 </pre> <p>But since you're on OS X, I'm not really sure how locale information is supposed to be handled.</p> http://stackoverflow.com/questions/1744340/what-does-this-perl-script-achieve/1744386#1744386 2 Answer by ephemient for What does this Perl script achieve? ephemient 2009-11-16T19:41:31Z 2009-11-16T19:41:31Z <p><a href="http://perldoc.perl.org/functions/do.html" rel="nofollow">perldoc -f do</a></p> <blockquote> <ul> <li><p><strong>do EXPR</strong></p> <p>Uses the value of EXPR as a filename and executes the contents of the file as a Perl script.</p> <pre><code>do 'stat.pl'; </code></pre> <p>is just like</p> <pre><code>eval `cat stat.pl`; </code></pre> <p>except that it's more efficient and concise, keeps track of the current filename for error messages, searches the @INC directories, and updates <code>%INC</code> if the file is found. See <a href="http://perldoc.perl.org/perlvar.html#Predefined-Names" rel="nofollow">"Predefined Names" in perlvar</a> for these variables. It also differs in that code evaluated with <code>do FILENAME</code> cannot see lexicals in the enclosing scope; <code>eval STRING</code> does. It's the same, however, in that it does reparse the file every time you call it, so you probably don't want to do this inside a loop.</p></li> </ul> </blockquote> <p>In this case, it appears that it is expected that the contents of <code>$filename</code> give a result of something like</p> <pre><code>[ "line1", "line2", "line3", ] </code></pre> <p>and the <code>foreach</code> loop will then process each item.</p> http://stackoverflow.com/questions/1739675/efficient-queue-in-haskell/1739699#1739699 2 Answer by ephemient for Efficient queue in Haskell. ephemient 2009-11-16T02:13:48Z 2009-11-16T02:13:48Z <p>Is <a href="http://hackage.haskell.org/package/dequeue" rel="nofollow">Data.Dequeue</a> what you are looking for?</p> <p>(It doesn't have <code>reverse</code> but you can add it pretty easily and send a patch to the author.)</p> http://stackoverflow.com/questions/1737981/convert-cidr-to-subnet-mask-in-tcl/1738006#1738006 0 Answer by ephemient for convert CIDR to subnet mask in tcl ephemient 2009-11-15T16:27:29Z 2009-11-15T16:40:55Z <p>Same way you do in any other language</p> <pre><code>set n 24 set mask [expr {~ 0 &lt;&lt; ( 32 - $n )}] format "%d.%d.%d.%d" [expr {$mask &gt;&gt; 24 &amp; 255}] [expr {$mask &gt;&gt; 16 &amp; 255}] [expr {$mask &gt;&gt; 8 &amp; 255}] [expr {$mask &amp; 255}] </code></pre> http://stackoverflow.com/questions/1737947/code-golf-permutations/1738041#1738041 5 Answer by ephemient for Code Golf: Permutations ephemient 2009-11-15T16:38:03Z 2009-11-15T16:38:03Z <p>A few easy ones, in alphabetical order...</p> <h2>Haskell</h2> <pre><code>import Data.List permutations </code></pre> <h2>J</h2> <pre><code>(A.~[:i.*/@:&gt;:@i.@#) </code></pre> <h2>Python</h2> <pre><code>from itertools import permutations </code></pre> http://stackoverflow.com/questions/1726698/code-golf-sierpinskis-triangle/1726908#1726908 22 Answer by ephemient for Code Golf: Sierpinski's Triangle ephemient 2009-11-13T03:14:47Z 2009-11-14T23:34:59Z <h2><a href="http://www.jsoftware.com/" rel="nofollow">J</a></h2> <p>46 characters, reading from stdin.</p> <pre> (,.~,~[,.~' '$~#,#)^:(&lt;:".1!:1]3)' /\',:'/__\' </pre> <p><hr></p> <p><code>\n</code> always delimits sentences, which made it impossible to fit inside S<sub>3</sub> (only 54 characters to play with). S<sub>4</sub> is a bit big at 162, so I padded it to fit. Serendipitously, <code>/\</code> is a legal adverb. &#x263A;</p> <pre> /\ i=:3 /\ /\ %r=:1!:1 /\ /\ t=:] [r+i /\ /\ /\ /\ b=:' /\',:'/__\' /\ /\ i=:1 -".t /\ /\ /\ /\ h=:(' '$ ~#,#),.] /\ /\ /\ /\ s=:( h^:1 ,d=: ,.~) /\ /\ /\ /\ /\ /\ /\ /\ (,,&(10{a.)"1[s^:(-i)b)(1!:2)(4) </pre> http://stackoverflow.com/questions/1735796/is-it-possible-to-choose-a-c-generic-type-parameter-at-runtime/1735830#1735830 0 Answer by ephemient for Is it possible to choose a C++ generic type parameter at runtime? ephemient 2009-11-14T22:30:29Z 2009-11-14T22:30:29Z <p>I can't think of a situation where this would be useful, but&hellip;</p> <pre><code>#include "boost/variant.hpp" #include &lt;list&gt; #include &lt;string&gt; boost::variant&lt;std::list&lt;int&gt;, std::list&lt;std::string&gt; &gt; unknown(int someval) { if (someval == 1) return boost::variant&lt;std::list&lt;int&gt;, std::list&lt;std::string&gt; &gt;( std::list&lt;int&gt;()); else if (someval == 2) return boost::variant&lt;std::list&lt;int&gt;, std::list&lt;std::string&gt; &gt;( std::list&lt;std::string&gt;()); } </code></pre> http://stackoverflow.com/questions/1735386/how-do-you-route-stdin-from-a-file-to-a-function-when-running-ghci/1735616#1735616 3 Answer by ephemient for How do you route stdin from a file to a function when running GHCI ephemient 2009-11-14T21:13:43Z 2009-11-14T21:13:43Z <p>This will be easier if you rework your <code>main</code> to open the file itself.</p> <pre><code>import System.Environment import System.IO main :: IO () main = do args &lt;- getArgs case args of [] -&gt; doStuff stdin file:_ -&gt; withFile file ReadMode doStuff doStuff :: Handle -&gt; IO () doStuff = … </code></pre> <pre> *Main&gt; System.Environment.withArgs ["main.txt"] main </pre> <p>Don't give a EOF on stdin while within GHCi. If you do, all further attempts to read from stdin will fail:</p> <pre> Prelude&gt; getLine *** Exception: &lt;stdin&gt;: hGetLine: illegal operation (handle is closed) Prelude&gt; getContents *** Exception: &lt;stdin&gt;: hGetContents: illegal operation (handle is closed) </pre> http://stackoverflow.com/questions/292109/outputting-to-stderr-whenever-malloc-free-is-called/1735543#1735543 2 Answer by ephemient for Outputting to stderr whenever malloc/free is called ephemient 2009-11-14T20:48:11Z 2009-11-14T20:48:11Z <p><a href="http://linux.die.net/man/3/malloc%5Fhook" rel="nofollow"><code>malloc_hook(3)</code></a> allows you to globally interpose your own <code>malloc</code> function. (There's <code>__realloc_hook</code> <code>__free_hook</code> etc. as well, I've just left them out for simplicity.)</p> <pre><code>#include &lt;stdio.h&gt; #include &lt;malloc.h&gt; static void *(*old_malloc_hook)(size_t, const void *); static void *new_malloc_hook(size_t size, const void *caller) { void *mem; __malloc_hook = old_malloc_hook; mem = malloc(size); fprintf(stderr, "%p: malloc(%zu) = %p\n", caller, size, mem); __malloc_hook = new_malloc_hook; return mem; } static void init_my_hooks(void) { old_malloc_hook = __malloc_hook; __malloc_hook = new_malloc_hook; } void (*__malloc_initialize_hook)(void) = init_my_hooks; </code></pre> <pre> $ cat &gt;mem.c &lt;&lt;'EOF' <em>(the code above)</em> EOF $ cc -fPIC -shared -o mem.so mem.c $ LD_PRELOAD=./mem.so ls 0x7ffc14931adc: malloc(5) = 0xb40010 0x7ffc1492c6b0: malloc(120) = 0xb40030 0x7ffc1497f61a: malloc(12) = 0xb40010 0x7ffc1492be38: malloc(776) = 0xb400b0 … </pre> <p><code>printf</code> might call <code>malloc</code>, which is why we undo the hook temporarily. Be careful of this if when you hook <code>malloc</code> in any way.</p> http://stackoverflow.com/questions/1726698/code-golf-sierpinskis-triangle/1727368#1727368 4 Answer by ephemient for Code Golf: Sierpinski's Triangle ephemient 2009-11-13T05:48:25Z 2009-11-14T03:03:18Z <h2><a href="http://en.wikipedia.org/wiki/C%5F%28programming%5Flanguage%29" rel="nofollow">C</a></h2> <p>Same algorithm as the <a href="http://stackoverflow.com/questions/1726698/1727136#1727136">Perl</a> answer, but weighing in heavier, at 131 necessary characters.</p> <pre><code>a,b;main(c,v)char**v;{c=1&lt;&lt;atoi(v[1]);for(a=0;a&lt;c;a++,puts("")) for(b=c;b--;write(1,b&amp;~a?" ":a&amp;1?"/__\\":" /\\ ",4-2*(b&gt;a)))--b;} </code></pre> <p>I thought <code>write(1,…)</code> was UNIX API, but this seems to compile and run fine on Windows too.</p> <p>If you replace <code>char</code> by <code>int</code>, it saves one character and still works, but it's of questionable legality.</p> http://stackoverflow.com/questions/1732838/folder-comparions-on-command-line/1732860#1732860 0 Answer by ephemient for Folder comparions on Command line ephemient 2009-11-14T01:04:53Z 2009-11-14T01:04:53Z <pre>&gt;<a href="http://www.gnu.org/software/diffutils/" rel="nofollow">diff</a> -r Folder_A Folder_B</pre> <p>You may find GNU diffutils compiled for windows at <a href="http://gnuwin32.sourceforge.net/packages/diffutils.htm" rel="nofollow">GnuWin32</a>.</p> http://stackoverflow.com/questions/1732743/lexical-analysis-of-python-programming-language/1732767#1732767 2 Answer by ephemient for Lexical Analysis of Python Programming Language ephemient 2009-11-14T00:31:37Z 2009-11-14T00:31:37Z <p><a href="http://docs.python.org/reference/grammar.html" rel="nofollow">grammar.txt</a> is the official, complete Python grammar -- not directly <code>lex</code> compatible, but you should be able to massage it into a suitable form.</p> http://stackoverflow.com/questions/1730649/more-pythonic-way-of-skipping-header-lines/1730741#1730741 7 Answer by ephemient for More pythonic way of skipping header lines ephemient 2009-11-13T17:27:28Z 2009-11-13T17:27:28Z <pre><code>from itertools import dropwhile for line in dropwhile(lambda line: line.startswith('#'), file('data.txt')): pass </code></pre> http://stackoverflow.com/questions/1726698/code-golf-sierpinskis-triangle/1727136#1727136 7 Answer by ephemient for Code Golf: Sierpinski's Triangle ephemient 2009-11-13T04:31:20Z 2009-11-13T16:29:53Z <h2><a href="http://www.perl.org/" rel="nofollow">Perl</a></h2> <p>94 characters when newlines are removed.</p> <pre><code>$c=2**&lt;&gt;;$\=$/;for$a(0..--$c){print$"x($c-$a&amp;~1), map$_*2&amp;~$a?$"x4:$a&amp;1?'/__\\':' /\ ',0..$a/2} </code></pre> http://stackoverflow.com/questions/1725341/javascript-large-number-library/1725735#1725735 2 Answer by ephemient for JavaScript large number library? ephemient 2009-11-12T22:03:56Z 2009-11-12T22:03:56Z <p>There's a few BigInt implementations out there, for example:</p> <ul> <li><a href="http://silentmatt.com/biginteger/" rel="nofollow">JavaScript BigInteger Library</a></li> <li><a href="http://ohdave.com/rsa/" rel="nofollow">RSA In JavaScript</a></li> </ul> <p>Layering fixed-point conversion on top of one of them should be pretty easy.</p> <p>There is also a new <code>decimal</code> type in some implementations, based on a new definition from IEEE 754r &mdash; I believe it was part of the (now abandoned) ECMAScript 4 spec, and is carried forward by ECMAScript 3.1/5 and JavaScript 1.9, but I could be wrong on this point.</p> http://stackoverflow.com/questions/1725152/kernel-panic-after-changes-in-sysclose/1725362#1725362 2 Answer by ephemient for Kernel Panic after changes in sys_close ephemient 2009-11-12T21:00:50Z 2009-11-12T21:00:50Z <pre><code>if (!new_event) { new_event-&gt;type = … </code></pre> <p>That's equivalent to <code>if (new_event == NULL)</code>. I think you mean <code>if (new_event != NULL)</code>, which the kernel folks typically write as <code>if (new_event)</code>.</p> http://stackoverflow.com/questions/1724675/given-a-list-of-slices-how-do-i-split-a-sequence-by-them/1725336#1725336 0 Answer by ephemient for Given a list of slices, how do I split a sequence by them? ephemient 2009-11-12T20:56:39Z 2009-11-12T20:56:39Z <pre> >>> str = "MSEPAGDVRQNPCGSKAC" >>> split_points = [[1,3], [7,10], [12,13]] >>> >>> all_points = sum(split_points, [0]) + [len(str)-1] >>> map(lambda i,j: str[i:j+1], all_points[:-1], all_points[1:]) ['MS', 'SEP', 'PAGDV', 'VRQN', 'NPC', 'CG', 'GSKAC'] >>> >>> str_out = map(lambda i,j: str[i:j+1], all_points[:-1:2], all_points[1::2]) >>> str_in = map(lambda i,j: str[i:j+1], all_points[1:-1:2], all_points[2::2]) >>> sum(map(list, zip(['(%s)' % s for s in str_in], str_out[1:])), [str_out[0]]) ['MS', '(SEP)', 'PAGDV', '(VRQN)', 'NPC', '(CG)', 'GSKAC'] </pre> http://stackoverflow.com/questions/1725174/odd-perl-conditional-operator-behavior/1725216#1725216 15 Answer by ephemient for Odd Perl conditional operator behavior ephemient 2009-11-12T20:39:25Z 2009-11-12T20:39:25Z <pre> <b>$ perl -MO=Deparse -e'($foo eq "blah") ? @x = @somearray : @y = ("another","array");'</b> Assignment to both a list and a scalar at -e line 1, near ");" -e had compilation errors. $foo eq 'blah' ? (@x = @somearray) : @y = ('another', 'array'); <b>$ perl -MO=Deparse -e'($foo eq "blah") ? @x = @somearray : (@y = ("another","array"));'</b> $foo eq 'blah' ? (@x = @somearray) : (@y = ('another', 'array')); -e syntax OK </pre> <p>Note the parentheses: <code>?:</code> binds tighter than <code>=</code>.</p> http://stackoverflow.com/questions/1723217/is-there-a-perl-substitute-for-the-cut-and-paste-shell-commands/1723279#1723279 3 Answer by ephemient for Is there a Perl substitute for the cut and paste shell commands? ephemient 2009-11-12T15:58:20Z 2009-11-12T16:20:39Z <h3>cut</h3> <pre><code>perl -alpe'$_=$F[0]' perl -alpe'$_="@F[1..3]"' </code></pre> <p>To give a custom input separator,</p> <pre><code>perl -F: -alpe'$_=$F[0]' </code></pre> <p>To change the output separator,</p> <pre><code>perl -F: -alpe'$"=":";$_="@F[1..3]"' </code></pre> <p>To <code>grep</code> while you're at it,</p> <pre><code>perl -alne'print$F[0]if/blah/' </code></pre> <h3>paste</h3> <p>Not quite as easy.</p> <pre><code>#!/usr/bin/perl for (@ARGV ? @ARGV : qw(-)) { if ($_ eq '-') {push @files, *STDIN} else {open $files[@files], '&lt;', $_} } while (grep defined, (@lines = map scalar &lt;$_&gt;, @files)) { chomp @lines; print join("\t", @lines), "\n"; } </code></pre> http://stackoverflow.com/questions/1723270/what-does-the-code-do/1723310#1723310 2 Answer by ephemient for What does the code do? ephemient 2009-11-12T16:01:48Z 2009-11-12T16:01:48Z <p><a href="http://en.wikipedia.org/wiki/Duff%27s%5Fdevice" rel="nofollow">Duff's device</a></p> <blockquote> <p>In <a href="http://en.wikipedia.org/wiki/Computer%5Fscience" rel="nofollow">computer science</a>, <strong>Duff's device</strong> is an <a href="http://en.wikipedia.org/wiki/Optimization%5F%28computer%5Fscience%29" rel="nofollow">optimized</a> <a href="http://en.wikipedia.org/wiki/Implementation" rel="nofollow">implementation</a> of a serial copy that uses a technique widely applied in <a href="http://en.wikipedia.org/wiki/Assembly%5Flanguage" rel="nofollow">assembly language</a> for <a href="http://en.wikipedia.org/wiki/Loop%5Funwinding" rel="nofollow">loop unwinding</a>. Its discovery is credited to <a href="http://en.wikipedia.org/wiki/Tom%5FDuff" rel="nofollow">Tom Duff</a> in November of 1983, who at the time was working for <a href="http://en.wikipedia.org/wiki/Lucasfilm" rel="nofollow">Lucasfilm</a>. It is perhaps the most dramatic use of <a href="http://en.wikipedia.org/wiki/Switch%5Fstatement" rel="nofollow">case label fall-through</a> in the <a href="http://en.wikipedia.org/wiki/C%5F%28programming%5Flanguage%29" rel="nofollow">C programming language</a> to date. Duff does not claim credit for discovering the concept of <a href="http://en.wikipedia.org/wiki/Loop%5Funwinding" rel="nofollow">loop unrolling</a>, just this particular expression of it in C.</p> </blockquote> http://stackoverflow.com/questions/1723066/c-stl-custom-sorting-one-vector-based-on-contents-of-another/1723233#1723233 0 Answer by ephemient for C++ STL: Custom sorting one vector based on contents of another ephemient 2009-11-12T15:52:06Z 2009-11-12T15:52:06Z <p>It doesn't make sense to keep them in two separate data structures: if you reorder <code>People</code>, you no longer have a sensible mapping to <code>Ages</code>.</p> <pre><code>template&lt;class A, class B, class CA = std::less&lt;A&gt;, class CB = std::less&lt;B&gt; &gt; struct lessByPairSecond : std::binary_function&lt;std::pair&lt;A, B&gt;, std::pair&lt;A, B&gt;, bool&gt; { bool operator()(const std::pair&lt;A, B&gt; &amp;left, const std::pair&lt;A, B&gt; &amp;right) { if (CB()(left.second, right.second)) return true; if (CB()(right.second, left.second)) return false; return CA()(left.first, right.first); } }; std::vector&lt;std::pair&lt;std::string, int&gt; &gt; peopleAndAges; peopleAndAges.push_back(std::pair&lt;std::string, int&gt;("Anne", 23)); peopleAndAges.push_back(std::pair&lt;std::string, int&gt;("Bob", 23)); peopleAndAges.push_back(std::pair&lt;std::string, int&gt;("Charlie", 23)); peopleAndAges.push_back(std::pair&lt;std::string, int&gt;("Douglas", 23)); std::sort(peopleAndAges.begin(), peopleAndAges.end(), lessByPairSecond&lt;std::string, int&gt;()); </code></pre> http://stackoverflow.com/questions/1717553/pointer-equality-in-haskell/1717719#1717719 3 Answer by ephemient for Pointer equality in Haskell? ephemient 2009-11-11T20:06:36Z 2009-11-12T03:40:14Z <p>Pointer equality would break <a href="http://www.haskell.org/haskellwiki/Referential%5Ftransparency" rel="nofollow">referential transparency</a>, so NO.</p> <p>Perhaps surprisingly, it is actually <a href="http://math.andrej.com/2007/09/28/seemingly-impossible-functional-programs/" rel="nofollow">possible</a> to compute <a href="http://foldoc.org/extensional+equality" rel="nofollow">extensional equality</a> of total functions on <a href="http://mathworld.wolfram.com/CompactSpace.html" rel="nofollow">compact spaces</a>, but in general (e.g. functions on the integers with possible non-termination) this is impossible.</p> <p><hr></p> <blockquote> <p>EDIT: I'm creating an interpreter for another language</p> </blockquote> <p>Can you just keep the original program AST or source location alongside the Haskell functions you've translated them into? It seems that you want "equality" based on that.</p> http://stackoverflow.com/questions/1822395/problem-ip-forwarding-is-dropping-rx-packets-on-embedded-linux-network Comment by ephemient on Problem IP Forwarding is Dropping Rx Packets on Embedded Linux Network ephemient 2009-11-30T23:14:46Z 2009-11-30T23:14:46Z Wait for the question to be closed -- it will automatically migrate. http://stackoverflow.com/questions/1823016/haskell-list-comprehension/1823041#1823041 Comment by ephemient on Haskell List Comprehension ephemient 2009-11-30T23:07:55Z 2009-11-30T23:07:55Z Just to highlight it for Mickel: <b>comma</b>, not <b>vertical bar</b>. Multiple vertical bars are used for parallel list comprehension, which is not what you want (and requires a language extension besides). http://stackoverflow.com/questions/1817529/how-to-detect-the-current-directory-in-which-i-run-my-shell-script/1817546#1817546 Comment by ephemient on How to detect the current directory in which I run my shell script? ephemient 2009-11-30T03:43:04Z 2009-11-30T03:43:04Z Depends on the shell. http://stackoverflow.com/questions/1770427/code-golf-what-is-the-shortest-program-that-compiles-and-crashes/1773316#1773316 Comment by ephemient on Code-Golf: What is the shortest program that compiles and crashes? ephemient 2009-11-24T16:31:44Z 2009-11-24T16:31:44Z DOS's &quot;*.COM&quot; format requires zero overhead, but UNIX generally uses ELF for executables, which is similar in concept Windows's PE: headers and sections, and rather impossible to get below 45 bytes (<a href="http://www.muppetlabs.com/~breadbox/software/tiny/" rel="nofollow">muppetlabs.com/~breadbox/software/&hellip;</a>) http://stackoverflow.com/questions/1749905/code-golf-fractran/1773868#1773868 Comment by ephemient on Code Golf: Fractran ephemient 2009-11-23T21:15:57Z 2009-11-23T21:15:57Z I was in the planning stages of a Fractran generator like this, with an initial prototype in Haskell, but it looks like you got a working result first :) http://stackoverflow.com/questions/1785280/fixing-x11s-startup-errors-by-xorg-conf-or-modprobe Comment by ephemient on Fixing X11's startup Errors by Xorg.conf or modprobe ephemient 2009-11-23T19:32:01Z 2009-11-23T19:32:01Z Missing <code>loop</code>? Try <code>modprobe loop</code>. This does not belong on Stack Overflow, though -- try Super User instead. http://stackoverflow.com/questions/1780489/haskell-minimum-maximum-double-constant/1780582#1780582 Comment by ephemient on Haskell minimum/maximum Double Constant ephemient 2009-11-23T01:40:13Z 2009-11-23T01:40:13Z Umm? <code>Prelude.floatRange</code> works on all instances of <code>class RealFloat</code>, including <code>Double</code>. http://stackoverflow.com/questions/1758672/euler-problem-in-haskell-can-someone-spot-my-error Comment by ephemient on Euler Problem in Haskell -- Can Someone Spot My Error ephemient 2009-11-19T15:57:37Z 2009-11-19T15:57:37Z Don't you get a &quot;Warning: Pattern match(es) are overlapped&quot;? http://stackoverflow.com/questions/1749905/code-golf-fractran/1750460#1750460 Comment by ephemient on Code Golf: Fractran ephemient 2009-11-19T01:08:14Z 2009-11-19T01:08:14Z Nah: since the fractions are assumed to be in reduced form, I just switched the order of the division and the multiplication, and the first three tests fit within an <code>int</code> now :) http://stackoverflow.com/questions/1749905/code-golf-fractran/1750460#1750460 Comment by ephemient on Code Golf: Fractran ephemient 2009-11-18T21:18:50Z 2009-11-18T21:18:50Z @Goody: &quot;poor choice&quot;, you mean. It's certainly got little chance of winning. @Chris: the third example has an intermediate calculation with 2299171875 &gt; 2^31. I didn't realize it when I first wrote it, but I can rearrange the program to avoid that... http://stackoverflow.com/questions/1749827/replace-or-remove-one-null-python/1749891#1749891 Comment by ephemient on replace or remove one null (python) ephemient 2009-11-17T16:06:46Z 2009-11-17T16:06:46Z I started going down this path, but if the string contains <code>000</code> you'll only ever replace it with <code>EE0</code> and never <code>0EE</code> -- it's not clear if OP requires this. http://stackoverflow.com/questions/1746510/opening-a-file-with-fopen/1746538#1746538 Comment by ephemient on opening a file with fopen ephemient 2009-11-17T15:54:56Z 2009-11-17T15:54:56Z If you find <code>perror</code> not flexible enough, you could also use <code>printf(&quot;Error: %d (%s)\n&quot;, errno, strerror(errno))</code> or even <code>printf(&quot;Error: %m\n&quot;)</code> (a Glibc extension). http://stackoverflow.com/questions/1745726/how-to-store-printf-into-a-variable/1745856#1745856 Comment by ephemient on how to store printf into a variable? ephemient 2009-11-17T15:52:27Z 2009-11-17T15:52:27Z <code>asprintf</code> is a convenient shortcut for the <code>sprintf(malloc(snprintf(...)))</code> trick -- I vote for using it and providing a fallback <code>asprintf</code> definition if you ever have to deal with a sad, outdated platform lacking it. http://stackoverflow.com/questions/1744214/why-is-this-perl-require-line-taking-so-much-time/1744300#1744300 Comment by ephemient on Why is this Perl require line taking so much time? ephemient 2009-11-16T19:45:35Z 2009-11-16T19:45:35Z This seems reasonable to check: <code>require</code> will search all of <code>@INC</code> so, depending on what directories precede the one in which your file is finally found, it may take a very long time. http://stackoverflow.com/questions/1740308/create-a-daemon-with-double-fork-in-ruby/1740314#1740314 Comment by ephemient on Create a daemon with double-fork in Ruby ephemient 2009-11-16T15:38:12Z 2009-11-16T15:38:12Z Or use <a href="http://daemons.rubyforge.org" rel="nofollow">daemons.rubyforge.org</a>