User ephemient - Stack Overflowmost recent 30 from stackoverflow.com2009-12-01T05:36:08Zhttp://stackoverflow.com/feeds/user/20713http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1823743/knowing-a-device-special-file-major-and-minor-numbers-in-linux/1823892#18238920Answer by ephemient for knowing a device special file major and minor numbers in linuxephemient2009-12-01T03:52:47Z2009-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#18230761Answer by ephemient for How to rewrite the halve function in J?ephemient2009-11-30T23:17:09Z2009-11-30T23:17:09Z<pre><code>%&2 NB. divide by two
0.5&* NB. multiply by one half
</code></pre>
http://stackoverflow.com/questions/1800261/is-the-linux-kernels-list-h-thread-safe/1800480#18004801Answer by ephemient for Is the linux kernel's list.h thread safe?ephemient2009-11-25T22:48:21Z2009-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#18004401Answer by ephemient for Automake pattern expansionephemient2009-11-25T22:43:35Z2009-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#17807244Answer by ephemient for Haskell minimum/maximum Double Constantephemient2009-11-23T01:39:19Z2009-11-23T01:39:19Z<pre><code>maxNonInfiniteFloat :: RealFloat a => a -> 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 => a -> a
minPositiveFloat a = encodeFloat 1 $ fst (floatRange a) - floatDigits a
</code></pre>
http://stackoverflow.com/questions/1773412/windows-named-pipe-problem/1773739#17737392Answer by ephemient for Windows Named Pipe Problemephemient2009-11-20T22:57:07Z2009-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→driver messages, and one for driver→application messages.</p>
http://stackoverflow.com/questions/1749905/code-golf-fractran/1750460#17504604Answer by ephemient for Code Golf: Fractranephemient2009-11-17T17:30:39Z2009-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#17502487Answer by ephemient for Code Golf: Fractranephemient2009-11-17T16:56:36Z2009-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&n=maybe n((&)l.numerator.(n%1*).(!!)l)$findIndex((==)1.denominator.(n%1*))l
</code></pre>
<pre>
$ ghci
Prelude> :m List Ratio
Prelude List Ratio> let l&n=maybe n((&)l.numerator.(n%1*).(!!)l)$findIndex((==)1.denominator.(n%1*))l
Prelude List Ratio> [3%2]&108
243
Prelude List Ratio> [3%2]&1296
6561
Prelude List Ratio> [455%33,11%13,1%11,3%7,11%2,1%3]&108
15625
</pre>
<p>88 with relaxed restrictions on the input/output format.</p>
<pre><code>import List
import Ratio
l&n=maybe n((&)l.(*)n.(!!)l)$findIndex((==)1.denominator.(*)n)l
</code></pre>
<pre>
Prelude List Ratio> let l&n=maybe n((&)l.(*)n.(!!)l)$findIndex((==)1.denominator
Prelude List Ratio> [455%33,11%13,1%11,3%7,11%2,1%3]&108
15625 % 1
</pre>
http://stackoverflow.com/questions/1745045/stdlocale-breakage-on-macos-10-6-with-langenus-utf-8/1745433#17454330Answer by ephemient for std::locale breakage on MacOS 10.6 with LANG=en_US.UTF-8ephemient2009-11-16T23:03:04Z2009-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#17443862Answer by ephemient for What does this Perl script achieve?ephemient2009-11-16T19:41:31Z2009-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#17396992Answer by ephemient for Efficient queue in Haskell.ephemient2009-11-16T02:13:48Z2009-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#17380060Answer by ephemient for convert CIDR to subnet mask in tclephemient2009-11-15T16:27:29Z2009-11-15T16:40:55Z<p>Same way you do in any other language</p>
<pre><code>set n 24
set mask [expr {~ 0 << ( 32 - $n )}]
format "%d.%d.%d.%d" [expr {$mask >> 24 & 255}] [expr {$mask >> 16 & 255}] [expr {$mask >> 8 & 255}] [expr {$mask & 255}]
</code></pre>
http://stackoverflow.com/questions/1737947/code-golf-permutations/1738041#17380415Answer by ephemient for Code Golf: Permutationsephemient2009-11-15T16:38:03Z2009-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.*/@:>:@i.@#)
</code></pre>
<h2>Python</h2>
<pre><code>from itertools import permutations
</code></pre>
http://stackoverflow.com/questions/1726698/code-golf-sierpinskis-triangle/1726908#172690822Answer by ephemient for Code Golf: Sierpinski's Triangleephemient2009-11-13T03:14:47Z2009-11-14T23:34:59Z<h2><a href="http://www.jsoftware.com/" rel="nofollow">J</a></h2>
<p>46 characters, reading from stdin.</p>
<pre>
(,.~,~[,.~' '$~#,#)^:(<:".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. ☺</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#17358300Answer by ephemient for Is it possible to choose a C++ generic type parameter at runtime?ephemient2009-11-14T22:30:29Z2009-11-14T22:30:29Z<p>I can't think of a situation where this would be useful, but…</p>
<pre><code>#include "boost/variant.hpp"
#include <list>
#include <string>
boost::variant<std::list<int>, std::list<std::string> >
unknown(int someval) {
if (someval == 1)
return boost::variant<std::list<int>, std::list<std::string> >(
std::list<int>());
else if (someval == 2)
return boost::variant<std::list<int>, std::list<std::string> >(
std::list<std::string>());
}
</code></pre>
http://stackoverflow.com/questions/1735386/how-do-you-route-stdin-from-a-file-to-a-function-when-running-ghci/1735616#17356163Answer by ephemient for How do you route stdin from a file to a function when running GHCIephemient2009-11-14T21:13:43Z2009-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 <- getArgs
case args of
[] -> doStuff stdin
file:_ ->
withFile file ReadMode doStuff
doStuff :: Handle -> IO ()
doStuff = …
</code></pre>
<pre>
*Main> 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> getLine
*** Exception: <stdin>: hGetLine: illegal operation (handle is closed)
Prelude> getContents
*** Exception: <stdin>: hGetContents: illegal operation (handle is closed)
</pre>
http://stackoverflow.com/questions/292109/outputting-to-stderr-whenever-malloc-free-is-called/1735543#17355432Answer by ephemient for Outputting to stderr whenever malloc/free is calledephemient2009-11-14T20:48:11Z2009-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 <stdio.h>
#include <malloc.h>
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 >mem.c <<'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#17273684Answer by ephemient for Code Golf: Sierpinski's Triangleephemient2009-11-13T05:48:25Z2009-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<<atoi(v[1]);for(a=0;a<c;a++,puts(""))
for(b=c;b--;write(1,b&~a?" ":a&1?"/__\\":" /\\ ",4-2*(b>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#17328600Answer by ephemient for Folder comparions on Command lineephemient2009-11-14T01:04:53Z2009-11-14T01:04:53Z<pre>><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#17327672Answer by ephemient for Lexical Analysis of Python Programming Languageephemient2009-11-14T00:31:37Z2009-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#17307417Answer by ephemient for More pythonic way of skipping header lines ephemient2009-11-13T17:27:28Z2009-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#17271367Answer by ephemient for Code Golf: Sierpinski's Triangleephemient2009-11-13T04:31:20Z2009-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**<>;$\=$/;for$a(0..--$c){print$"x($c-$a&~1),
map$_*2&~$a?$"x4:$a&1?'/__\\':' /\ ',0..$a/2}
</code></pre>
http://stackoverflow.com/questions/1725341/javascript-large-number-library/1725735#17257352Answer by ephemient for JavaScript large number library?ephemient2009-11-12T22:03:56Z2009-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 — 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#17253622Answer by ephemient for Kernel Panic after changes in sys_closeephemient2009-11-12T21:00:50Z2009-11-12T21:00:50Z<pre><code>if (!new_event) {
new_event->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#17253360Answer by ephemient for Given a list of slices, how do I split a sequence by them?ephemient2009-11-12T20:56:39Z2009-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#172521615Answer by ephemient for Odd Perl conditional operator behaviorephemient2009-11-12T20:39:25Z2009-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#17232793Answer by ephemient for Is there a Perl substitute for the cut and paste shell commands?ephemient2009-11-12T15:58:20Z2009-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], '<', $_}
}
while (grep defined, (@lines = map scalar <$_>, @files)) {
chomp @lines;
print join("\t", @lines), "\n";
}
</code></pre>
http://stackoverflow.com/questions/1723270/what-does-the-code-do/1723310#17233102Answer by ephemient for What does the code do?ephemient2009-11-12T16:01:48Z2009-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#17232330Answer by ephemient for C++ STL: Custom sorting one vector based on contents of anotherephemient2009-11-12T15:52:06Z2009-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<class A, class B, class CA = std::less<A>, class CB = std::less<B> >
struct lessByPairSecond
: std::binary_function<std::pair<A, B>, std::pair<A, B>, bool>
{
bool operator()(const std::pair<A, B> &left, const std::pair<A, B> &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<std::pair<std::string, int> > peopleAndAges;
peopleAndAges.push_back(std::pair<std::string, int>("Anne", 23));
peopleAndAges.push_back(std::pair<std::string, int>("Bob", 23));
peopleAndAges.push_back(std::pair<std::string, int>("Charlie", 23));
peopleAndAges.push_back(std::pair<std::string, int>("Douglas", 23));
std::sort(peopleAndAges.begin(), peopleAndAges.end(),
lessByPairSecond<std::string, int>());
</code></pre>
http://stackoverflow.com/questions/1717553/pointer-equality-in-haskell/1717719#17177193Answer by ephemient for Pointer equality in Haskell?ephemient2009-11-11T20:06:36Z2009-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-networkComment by ephemient on Problem IP Forwarding is Dropping Rx Packets on Embedded Linux Networkephemient2009-11-30T23:14:46Z2009-11-30T23:14:46ZWait for the question to be closed -- it will automatically migrate.http://stackoverflow.com/questions/1823016/haskell-list-comprehension/1823041#1823041Comment by ephemient on Haskell List Comprehensionephemient2009-11-30T23:07:55Z2009-11-30T23:07:55ZJust 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#1817546Comment by ephemient on How to detect the current directory in which I run my shell script?ephemient2009-11-30T03:43:04Z2009-11-30T03:43:04ZDepends on the shell.http://stackoverflow.com/questions/1770427/code-golf-what-is-the-shortest-program-that-compiles-and-crashes/1773316#1773316Comment by ephemient on Code-Golf: What is the shortest program that compiles and crashes?ephemient2009-11-24T16:31:44Z2009-11-24T16:31:44ZDOS's "*.COM" 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/…</a>)http://stackoverflow.com/questions/1749905/code-golf-fractran/1773868#1773868Comment by ephemient on Code Golf: Fractranephemient2009-11-23T21:15:57Z2009-11-23T21:15:57ZI 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-modprobeComment by ephemient on Fixing X11's startup Errors by Xorg.conf or modprobeephemient2009-11-23T19:32:01Z2009-11-23T19:32:01ZMissing <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#1780582Comment by ephemient on Haskell minimum/maximum Double Constantephemient2009-11-23T01:40:13Z2009-11-23T01:40:13ZUmm? <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-errorComment by ephemient on Euler Problem in Haskell -- Can Someone Spot My Errorephemient2009-11-19T15:57:37Z2009-11-19T15:57:37ZDon't you get a "Warning: Pattern match(es) are overlapped"?http://stackoverflow.com/questions/1749905/code-golf-fractran/1750460#1750460Comment by ephemient on Code Golf: Fractranephemient2009-11-19T01:08:14Z2009-11-19T01:08:14ZNah: 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#1750460Comment by ephemient on Code Golf: Fractranephemient2009-11-18T21:18:50Z2009-11-18T21:18:50Z@Goody: "poor choice", you mean. It's certainly got little chance of winning. @Chris: the third example has an intermediate calculation with 2299171875 > 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#1749891Comment by ephemient on replace or remove one null (python)ephemient2009-11-17T16:06:46Z2009-11-17T16:06:46ZI 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#1746538Comment by ephemient on opening a file with fopenephemient2009-11-17T15:54:56Z2009-11-17T15:54:56ZIf you find <code>perror</code> not flexible enough, you could also use <code>printf("Error: %d (%s)\n", errno, strerror(errno))</code> or even <code>printf("Error: %m\n")</code> (a Glibc extension).http://stackoverflow.com/questions/1745726/how-to-store-printf-into-a-variable/1745856#1745856Comment by ephemient on how to store printf into a variable? ephemient2009-11-17T15:52:27Z2009-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#1744300Comment by ephemient on Why is this Perl require line taking so much time?ephemient2009-11-16T19:45:35Z2009-11-16T19:45:35ZThis 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#1740314Comment by ephemient on Create a daemon with double-fork in Rubyephemient2009-11-16T15:38:12Z2009-11-16T15:38:12ZOr use <a href="http://daemons.rubyforge.org" rel="nofollow">daemons.rubyforge.org</a>