User andrew - Stack Overflowmost recent 30 from stackoverflow.com2009-12-07T17:14:52Zhttp://stackoverflow.com/feeds/user/14558http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/561273/cygwin-assembly-language-development/579987#5799871Answer by andrew for Cygwin: Assembly language development?andrew2009-02-24T00:24:41Z2009-10-05T19:55:38Z<p>You can totally run assembly programs in Cygwin. I’m guessing that your load failed because there’s a bunch of stuff that has to happen between when Windows executes a process and when you get to the <code>main</code> function. When gcc is given assembly as input, it will link in the appropriate boilerplate code to generate a valid executable.</p>
<p>Here’s a sample assembly program. Save it as hello.s:</p>
<pre><code>.intel_syntax noprefix
.section .text
.globl _main
_main:
enter 0, 0
// welcome message
push OFFSET s_HelloWorld
call _printf
pop eax
// add three numbers
push 2
push 4
push 5
call _addThree
add esp, 3 * 4
// print returned value
push eax
push OFFSET s_PercentD
call _printf
add esp, 2 * 4
xor eax, eax
leave
ret
// Add three numbers
_addThree:
enter 0, 0
mov eax, DWORD PTR [ebp + 8]
add eax, DWORD PTR [ebp + 12]
add eax, DWORD PTR [ebp + 16]
leave
ret
.section .rdata
s_HelloWorld:
.ascii "Hello, world.\n\0"
s_PercentD:
.asciz "%d\n"
</code></pre>
<p>then run it with</p>
<pre><code>$ gcc -mno-cygwin hello.s -o hello && ./hello
Hello, world.
11
</code></pre>
<p>The reference for your processor’s assembly instructions are contained in the <a href="http://developer.amd.com/documentation/guides/Pages/default.aspx" rel="nofollow">AMD64 Architecture Programmer’s Manual</a>. The C calling convention is documented in <a href="http://web.archive.org/web/20050208123742/http%3A//ocliteracy.com/techtips/win32-callconv-asm.html" rel="nofollow">this page</a> from the Internet Archive; maybe you can find a similar one that still has the images?</p>
<p>Note that Cygwin will only do 32-bit assembly right now; the (non-consumer) world is all 64 bits now, and in 64-bit mode on modern processors you have many more registers and different calling conventions.</p>
http://stackoverflow.com/questions/826208/making-vim-ubiquitous/837778#8377782Answer by andrew for Making Vim ubiquitous?andrew2009-05-08T00:54:46Z2009-10-03T15:37:42Z<p>Trying to use Vim for everything is overkill. While the book does say</p>
<blockquote>
<p>Tip 22</p>
<p>Use a Single Editor Well</p>
</blockquote>
<p>At a high level, it also says “use the right tool for the job.” It’s better to know how to use one text editor really well than to be barely competent with a half-dozen; but it would be significantly worse to master only a single program.</p>
http://stackoverflow.com/questions/999681/how-to-remap-context-menu-key-in-mac-os-x/1165938#11659381Answer by andrew for How to remap "Context Menu" key in Mac OS X?andrew2009-07-22T15:01:30Z2009-07-22T15:01:30Z<p>If you can get a virtual key code for the key (using, say, <a href="http://www.manytricks.com/keycodes/" rel="nofollow">http://www.manytricks.com/keycodes/</a>), then you should be able to create your own keyboard layout by following <a href="http://developer.apple.com/technotes/tn2002/tn2056.html" rel="nofollow">http://developer.apple.com/technotes/tn2002/tn2056.html</a>. There are some GUI programs like Ukelele (<a href="http://scripts.sil.org/ukelele" rel="nofollow">http://scripts.sil.org/ukelele</a>) for editing keyboard layouts, but they probably don’t have the Context Menu key setup, so you will have to edit raw XML at some point.</p>
http://stackoverflow.com/questions/974077/is-it-possible-to-implement-a-trap-for-gnu-make/1165896#11658961Answer by andrew for Is it possible to implement a `trap' for GNU makeandrew2009-07-22T14:54:27Z2009-07-22T14:54:27Z<p>No. GNU make’s signal handling already leaves a lot to be desired. From within its signal handler, it calls functions like <code>printf</code> that are not safe to be called from within a signal handler. I have seen this cause problems, for example <code>.DELETE_ON_ERROR</code> rules don’t always run if <code>stderr</code> is redirected to <code>stdout</code>.</p>
http://stackoverflow.com/questions/1156089/what-algorithm-does-msoffice-use-for-file-encryption/1156986#11569861Answer by andrew for What algorithm does MsOffice use for file encryption?andrew2009-07-21T02:13:59Z2009-07-21T02:13:59Z<p>Does this blog post help?</p>
<p><a href="http://blogs.msdn.com/david_leblanc/archive/2008/07/03/office-crypto-follies.aspx" rel="nofollow">http://blogs.msdn.com/david_leblanc/archive/2008/07/03/office-crypto-follies.aspx</a></p>
http://stackoverflow.com/questions/1112536/is-there-a-way-to-include-a-vm-parameter-inside-a-jar/1112602#11126022Answer by andrew for Is there a way to include a VM parameter inside a .jar?andrew2009-07-11T00:47:47Z2009-07-11T00:47:47Z<p>You can definitely do this with <a href="http://java.sun.com/javase/6/docs/technotes/guides/javaws/developersguide/syntax.html" rel="nofollow">JNLP</a>, which can be configured to add a shortcut to the desktop and automatically keep jars up to date, among other things.</p>
http://stackoverflow.com/questions/1096066/how-to-start-ie-with-a-url-in-a-cygwin-session/1107377#11073771Answer by andrew for How to start IE with a URL in a CYGWIN session.andrew2009-07-10T02:15:13Z2009-07-10T02:15:13Z<p>Just:</p>
<pre><code>cygstart "http://www.google.com"
</code></pre>
<p>where google.com is your desired URL.</p>
<p><code>cygstart</code> launches the default windows program for a path. So this way you get the user’s preferred web browser...</p>
http://stackoverflow.com/questions/1044595/how-can-i-re-add-a-unicode-byte-order-marker-in-linux/1107359#11073591Answer by andrew for How can I re-add a unicode byte order marker in linux?andrew2009-07-10T02:09:15Z2009-07-10T02:09:15Z<p>For a general-purpose solution—something that sets the correct byte-order mark regardless of whether the file is UTF-8, UTF-16, or UTF-32—I would use vim’s <code>'bomb'</code> option:</p>
<pre><code>$ echo 'hello' > foo
$ xxd < foo
0000000: 6865 6c6c 6f0a hello.
$ vim -e -s -c ':set bomb' -c ':wq' foo
$ xxd < foo
0000000: efbb bf68 656c 6c6f 0a ...hello.
</code></pre>
<p>(<code>-e</code> means runs in ex mode instead of visual mode; <code>-s</code> means don’t print status messages; <code>-c</code> means “do this”)</p>
http://stackoverflow.com/questions/1106929/find-all-combinations-of-coins-when-given-some-dollar-value/1107320#11073208Answer by andrew for Find all combinations of coins when given some dollar valueandrew2009-07-10T01:49:39Z2009-07-10T01:49:39Z<p>I looked into this once a long time ago, and you can read my <a href="http://www.blindrut.ca/~neitsch/math/talks/m496pres1.nb.pdf" rel="nofollow">little write-up on it</a>.</p>
<p>By using generating functions, you can get a closed-form constant-time solution to the problem. Graham, Knuth, and Patashnik’s <em>Concrete Mathematics</em> is the book for this, and contains a fairly extensive discussion of the problem. Essentially you define a polynomial where the <em>n</em>th coefficient is the number of ways of making change for <em>n</em> dollars.</p>
<p>Pages 4-5 of the writeup show how you can use Mathematica (or any other convenient computer algebra system) to compute the answer for 10^10^6 dollars in a couple seconds in three lines of code.</p>
<p>(And this was long enough ago that that’s a couple of seconds on a 75Mhz Pentium...)</p>
http://stackoverflow.com/questions/992911/mathematica-j-link-memory-constraints/1010266#10102662Answer by andrew for Mathematica & J/Link: Memory Constraints?andrew2009-06-18T00:56:40Z2009-06-18T00:56:40Z<p><code>ReinstallJava</code> takes a <code>JVMArguments</code> option. You can use it to pass heap size like so:</p>
<pre><code>In[1]:= Needs["JLink`"]
In[2]:= Options[ReinstallJava]
Out[2]= {ClassPath -> Automatic, CommandLine -> Automatic,
JVMArguments -> None, ForceLaunch -> False, Default -> Automatic,
CreateExtraLinks -> Automatic, "Asynchronous" -> Automatic}
In[3]:= ?JVMArguments
JVMArguments is an option to InstallJava that
allows you to specify additional command-line
arguments passed to the Java virtual machine at
startup. The string you specify is added to the
command line used to launch Java. You can use this
option to specify properties with the standard -D
syntax, such as "-Dsome.property=true". This
option is not supported on Mac OSX. >>
In[4]:= LoadJavaClass["java.lang.Runtime"];
In[5]:= java`lang`Runtime`getRuntime[]@maxMemory[]
Out[5]= 238616576
In[6]:= ReinstallJava[JVMArguments -> "-Xmx64g"];
In[7]:= LoadJavaClass["java.lang.Runtime"];
In[8]:= java`lang`Runtime`getRuntime[]@maxMemory[]
Out[8]= 61084008448
</code></pre>
<p>(I once figured this out in desperation by reading through the code in <code>C:\Program Files\Wolfram Research\Mathematica\7.0\SystemFiles\Links\JLink\Kernel</code>. After noticing it was listed in <code>Options[ReinstallJava]</code> it seemed kind of obvious…)</p>
http://stackoverflow.com/questions/928387/xemacs-dotemacs-config-so-that-one-can-paste-without-getting-funny-chars/989801#9898012Answer by andrew for xemacs: dotemacs config so that one can paste without getting "funny" charsandrew2009-06-13T02:40:39Z2009-06-13T02:40:39Z<p>This isn’t a clipboard or cygwin problem. If you save a UTF-8 text file with curly quotes in notepad and open it in XEmacs 21.4, you’ll get junk. According to the <a href="http://www.xemacs.org/Documentation/21.5/html/lispref%5F64.html#SEC862" rel="nofollow">XEmacs reference documentation</a>, Unicode is not supported before version 21.5.6. Maybe try a <a href="http://mirrors.xmission.com/cygwin/release/xemacs/" rel="nofollow">later version</a>?</p>
http://stackoverflow.com/questions/867130/is-it-possible-to-programmatically-disable-the-caps-lock-key-on-windows/942764#9427640Answer by andrew for Is it possible to programmatically disable the Caps Lock key on Windows?andrew2009-06-03T02:08:40Z2009-06-03T02:08:40Z<p>The question <a href="http://stackoverflow.com/questions/826986/how-to-make-a-custom-keyboard-layout/837747#837747">How to make a Custom Keyboard layout ?</a> describes how to change the functionality of the Caps Lock key.</p>
http://stackoverflow.com/questions/885910/mathematica-graphplot-with-images/942755#9427551Answer by andrew for Mathematica GraphPlot with imagesandrew2009-06-03T02:02:40Z2009-06-03T02:02:40Z<p>Two possible issues:</p>
<ul>
<li><p>It looks like your graph, <code>Map[If[# > 2.0 , 0, 1] &, imgDistT, {2}]</code>, will contain zeroes and ones—but zeroes are invalid indices for the <code>imgs</code> array</p></li>
<li><p>The images may not appear properly due to scaling issues—for example, they might be really big only the white portion might be visible. Try specifying an explicit image size.</p></li>
</ul>
<p>What is the output of</p>
<pre><code>GraphPlot[Map[If[# > 2.0 , 0, 1] &, imgDistT, {2}],
VertexRenderingFunction -> (Module[{tmp =
Inset[Image[imgs[[#2]], ImageSize -> 10], #1, Center]},
Print[tmp]; tmp] &)]
</code></pre>
<p>?</p>
http://stackoverflow.com/questions/942361/what-is-a-good-network-graph-library-for-language-x/942731#9427311Answer by andrew for What is a good network graph library for language X?andrew2009-06-03T01:47:14Z2009-06-03T01:47:14Z<p>In Java, prefuse is by far the best graph drawing package. It has a very fast force-directed layout algorithm, and since you can tweak the parameters in real time and drag nodes around to get the graph looking the way you want, you’ll be able to explore and arrange much larger graphs than with any non-interactive system.</p>
<p>Try out this <a href="http://prefuse.org/gallery/graphview/" rel="nofollow">demo applet</a> and you’ll fall in love with it too...</p>
http://stackoverflow.com/questions/942361/what-is-a-good-network-graph-library-for-language-x/942724#9427240Answer by andrew for What is a good network graph library for language X?andrew2009-06-03T01:42:27Z2009-06-03T01:42:27Z<p>If you like the examples on <a href="http://www.research.att.com/~yifanhu/GALLERY/GRAPHS/index.html" rel="nofollow">this page</a>, take a look at Mathematica’s <a href="http://reference.wolfram.com/mathematica/tutorial/GraphDrawing.html" rel="nofollow">graph plotting</a> capabilities. The author of the gallery page, Yifan Hu, used to work for Wolfram Research, where he developed graph drawing algorithms for enormous graphs. Those algorithms are now integrated into Mathematica. Depending on how you intend to use the graph drawings, you could get a huge benefit by being able to use Mathematica to analyse your graphs; see for example this <a href="http://blog.wolfram.com/2007/08/05/the-equations-of-the-bridge/" rel="nofollow">blog post</a>.</p>
http://stackoverflow.com/questions/905426/what-books-would-you-suggest-that-are-not-directly-related-to-programming/942699#9426990Answer by andrew for what books would you suggest that are not directly related to programmingandrew2009-06-03T01:22:50Z2009-06-03T01:22:50Z<p>The most realistic depiction of the life of a computer programmer ever written is Fred Moody’s <em>I Sing the Body Electronic</em>.</p>
http://stackoverflow.com/questions/928667/is-there-a-command-line-shortcut-for-dev-null-21/928671#9286712Answer by andrew for Is there a command-line shortcut for ">/dev/null 2>&1"andrew2009-05-30T00:54:23Z2009-05-30T00:54:23Z<pre><code>>& /dev/null
</code></pre>
http://stackoverflow.com/questions/849908/how-do-i-enable-vim7-spellchecking-inside-the-pod-sections-when-editing-perl-file/850413#8504132Answer by andrew for How do I enable vim7 spellchecking inside the POD sections when editing perl files?andrew2009-05-11T22:42:10Z2009-05-11T22:42:10Z<p>grepping for “spell” in <code>/usr/share/vim/vim72/syntax/perl.vim</code>, I find some syntax definitions for POD that already include spelling, but are wrapped in an include guard for <code>perl_include_pod</code>. At the top of perl.vim, the default variables are given, and <code>perl_include_pod</code> is unlet by default.</p>
<p>So adding</p>
<pre><code>let perl_include_pod = 1
</code></pre>
<p>to <code>~/.vimrc</code> turns on syntax highlighting, with spell-check, inside POD portions of perl files.</p>
http://stackoverflow.com/questions/661722/extracting-keyboard-layouts-from-windows/837829#8378291Answer by andrew for Extracting keyboard layouts from windowsandrew2009-05-08T01:17:21Z2009-05-08T01:17:21Z<p><a href="http://www.microsoft.com/globaldev/outreach/dnloads/msklc.mspx" rel="nofollow">Microsoft Keyboard Layout Creator</a> can load system keyboards and export them as .klc files. Since it’s written in .NET you can use <a href="http://www.red-gate.com/products/reflector/" rel="nofollow">Reflector</a> to see how it does that, and use reflection to drive it.</p>
<p>I’ve already done this once before, so here’s a <a href="http://www.blindrut.ca/tmp/klc.tbz2" rel="nofollow">tarball of all the .klc files</a> for Windows XP. If you need the new layouts in Vista, re-run the code included in the tarball. It’s written in Mathematica but should be straightforward to translate to any other .NET-compatible language.</p>
http://stackoverflow.com/questions/826986/how-to-make-a-custom-keyboard-layout/837747#8377472Answer by andrew for How to make a Custom Keyboard layout ?andrew2009-05-08T00:44:48Z2009-05-08T00:44:48Z<p>For remapping CapsLock or the number keys, use <code>remapkey.exe</code> found in the <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=9D467A69-57FF-4AE7-96EE-B18C4790CFFD&displaylang=en" rel="nofollow">Windows 2003 Resource Kit Tools</a>.</p>
<p><img src="http://1wxuimvh.dreamhosters.com/remapkey.png" alt="remapkey screenshot" /></p>
<p>Keyboard layouts that show up in “Text Services and Input Languages” can’t remap CapsLock or do anything not supported by Microsoft Keyboard Layout Creator; the operating system just doesn’t support it. Anything that Microsoft can do with a keyboard layout, you can do with Microsoft Keyboard Layout Creator.</p>
http://stackoverflow.com/questions/836334/executing-commands-containing-space-in-bash/837687#8376871Answer by andrew for Executing commands containing space in bashandrew2009-05-08T00:24:36Z2009-05-08T00:24:36Z<p>You can replace your script with the command</p>
<pre><code>sh cmd
</code></pre>
<p>The shell’s job is to read commands and run them! If you want output/progress indicators, run the shell in verbose mode</p>
<pre><code>sh -v cmd
</code></pre>
http://stackoverflow.com/questions/762111/importing-in-python/762709#7627090Answer by andrew for Importing In Pythonandrew2009-04-18T01:27:44Z2009-04-18T01:27:44Z<p>For low-level control over the import process, the <a href="http://docs.python.org/library/imp.html" rel="nofollow">imp</a> module lets you import modules from arbitrary open files under arbitrary names.</p>
<p>For example, if this is <code>foo.py</code>:</p>
<pre><code>def x():
print 'hello, world'
</code></pre>
<p>Then this code:</p>
<pre><code>import imp
with open('foo.py', 'r') as module_file:
imp.load_module('module_name', module_file, '', ('', 'r', imp.PY_SOURCE))
import module_name
module_name.x()
</code></pre>
<p>prints "hello, world".</p>
http://stackoverflow.com/questions/745589/network-tools-for-exploring-the-internet-traceroute-whois/762683#7626834Answer by andrew for Network tools for exploring the internet (traceroute, whois)?andrew2009-04-18T00:56:25Z2009-04-18T00:56:25Z<p>One of the neater tools for exploring how the internet works is something called a looking-glass server, which I learned about from the book <a href="http://rads.stackoverflow.com/amzn/click/0596101511" rel="nofollow">Network Warrior</a>. Internet backbones maintain servers (usually big Cisco routers) that you can telnet into and explore the internet routing tables. See the book for more information.</p>
<p>For example, this server run by AT&T has a routing table with almost 300,000 paths between different networks.</p>
<pre><code>$ telnet route-server.ip.att.net
Trying 12.0.1.28...
Connected to route-server.ip.att.net.
Escape character is '^]'.
...
route-server>sho ip bgp summary
BGP router identifier 12.0.1.28, local AS number 65000
BGP table version is 29153790, main routing table version 29153790
278671 network entries using 33719191 bytes of memory
5155572 path entries using 268089744 bytes of memory
295859/48964 BGP path/bestpath attribute entries using 41420260 bytes of memory
63452 BGP AS-PATH entries using 1663254 bytes of memory
162 BGP community entries using 3888 bytes of memory
0 BGP route-map cache entries using 0 bytes of memory
0 BGP filter-list cache entries using 0 bytes of memory
BGP using 344896337 total bytes of memory
Dampening enabled. 1013 history paths, 747 dampened paths
BGP activity 550356/271685 prefixes, 20211607/15056035 paths, scan interval 60 s
ecs
Neighbor V AS MsgRcvd MsgSent TblVer InQ OutQ Up/Down State/PfxRcd
12.0.1.26 4 7018 0 0 0 0 0 never Active
12.122.83.91 4 7018 1291609 125027 29153796 0 0 1w6d 69953
12.122.125.4 4 7018 2155629 247496 29153796 0 0 1w6d 69949
12.123.1.236 4 7018 4161501 125028 29153796 0 0 1w6d 278594
12.123.5.240 4 7018 4332955 125025 29153796 0 0 1w6d 278593
12.123.9.241 4 7018 3975030 125019 29153796 0 0 3w2d 278594
12.123.13.241 4 7018 7796628 125023 29153796 0 0 1w6d 278589
12.123.17.244 4 7018 4176784 125018 29153796 0 0 7w3d 278589
Neighbor V AS MsgRcvd MsgSent TblVer InQ OutQ Up/Down State/PfxRcd
12.123.21.243 4 7018 4839720 125028 29153796 0 0 1w6d 278594
12.123.25.245 4 7018 4498424 125018 29153796 0 0 3w3d 278592
12.123.29.249 4 7018 4025618 125021 29153796 0 0 1w6d 278589
12.123.33.249 4 7018 4280002 125013 29153796 0 0 1w6d 278593
12.123.37.250 4 7018 5165492 125029 29153796 0 0 1w6d 278589
12.123.41.250 4 7018 4059934 125026 29153796 0 0 1w6d 278594
12.123.45.252 4 7018 4170029 125006 29153796 0 0 6w2d 278593
12.123.133.124 4 7018 4064370 125025 29153796 0 0 1w6d 278589
12.123.134.124 4 7018 3966381 125022 29153796 0 0 12w4d 278588
12.123.137.124 4 7018 5176767 125024 29153796 0 0 5w1d 278594
12.123.139.124 4 7018 4909971 125027 29153796 0 0 1w6d 278593
12.123.142.124 4 7018 4070518 125022 29153796 0 0 12w4d 278588
12.123.145.124 4 7018 3949319 125027 29153796 0 0 1w6d 278588
route-server>quit
</code></pre>
http://stackoverflow.com/questions/762647/how-many-web-pages-are-on-the-internet/762661#7626610Answer by andrew for How many web pages are on the Internet?andrew2009-04-18T00:43:48Z2009-04-18T00:43:48Z<p>It is essentially unbounded because there are sites that auto-generate content for whatever path is provided in the URL, for example this <a href="http://drunkmenworkhere.org/" rel="nofollow">binary search tree</a>.</p>
http://stackoverflow.com/questions/762631/find-out-if-a-command-exists-on-posix-system/762652#7626520Answer by andrew for Find out if a command exists on POSIX systemandrew2009-04-18T00:40:29Z2009-04-18T00:40:29Z<p>POSIX does say, “If a command is not found, the exit status shall be 127.” So you could do</p>
<pre><code><command>
if [ "${?}" = 127 ]; then
<handle not found>
fi
</code></pre>
<p>When writing shell scripts, it’s often permissible to require a bash shell (<code>#!/bin/bash</code>), because without arrays it’s pretty much impossible to handle arguments and/or filenames with spaces correctly. In that case, the bash builtin <code>type -p</code> is equivalent to which, and because it is builtin, it is portable.</p>
http://stackoverflow.com/questions/758526/testing-rss-feeds/759025#7590250Answer by andrew for Testing RSS feedsandrew2009-04-17T04:27:21Z2009-04-17T04:27:21Z<p><a href="http://www.feedvalidator.org/" rel="nofollow">http://www.feedvalidator.org/</a></p>
http://stackoverflow.com/questions/184853/xterm-control-sequence-to-t-output-to-a-file/759017#7590171Answer by andrew for Xterm control sequence to 'T' output to a file...andrew2009-04-17T04:24:46Z2009-04-17T04:24:46Z<p>This feature is called logging and exists in the source code but is disabled by default for security reasons. Do you really want everyone with the ability to write control sequences to your terminal (<em>e.g.</em>, the author of any file you might one day <code>cat</code>) to be able to write arbitrary data to arbitrarily-named files under your account?</p>
<p>For example, an attacker could easily use this functionality to modify your <code>~/.ssh/authorized_keys</code> to grant the attacker access, and change your <code>~/.profile</code> to ping the attacker with your IP address.</p>
<p>That said, if you compile xterm with <code>--enable-logging</code> AND you <code>#define ALLOWLOGFILECHANGES</code>, then according to the <a href="http://www.x.org/docs/xterm/ctlseqs.pdf" rel="nofollow">Xterm Control Sequences</a> manual, you will gain access to the following control sequences:</p>
<pre><code>^[[?46h Start logging
^[[?46l Stop logging
^[]46;filename\007 Change log file to `filename`
</code></pre>
<p>The log file name will by default be called <code>Xterm.log.hostname.yyyy.mm.dd.hh.mm.ss.XXXXXX</code>.</p>
<p>There is also an option to enable logging through a pipe, which is also very dangerous if you allow changing the logger via control sequences. That would also allow anyone to execute their code on your system.</p>
http://stackoverflow.com/questions/753823/how-do-i-apply-a-shell-command-to-many-files-in-nested-and-poorly-escaped-subdi/754474#7544741Answer by andrew for How do I apply a shell command to many files in nested (and poorly escaped) subdirectories?andrew2009-04-16T01:49:14Z2009-04-16T01:49:14Z<pre><code>find . -name '*.foo' -print0 | xargs -0 sh -c 'for F in "${@}"; do ...; done' "${0}"
</code></pre>
http://stackoverflow.com/questions/754327/emacs-elisp-dynamic-interactive-prompt/754470#7544708Answer by andrew for Emacs Elisp dynamic interactive promptandrew2009-04-16T01:42:50Z2009-04-16T01:42:50Z<p><code>M-x find-function</code> is your friend. It will tell you how anything in emacs works by showing you the source code. Using it, I find that <code>query-regexp-replace</code> calls <code>query-replace-read-args</code> which calls <code>query-replace-read-from</code> which calls <code>read-from-minibuffer</code> using a prompt created from the last used regexp, which is saved in the dotted pair <code>query-replace-defaults</code>.</p>
<p>So:</p>
<pre><code>(defun my-func ()
"Do stuff..."
(interactive)
(read-from-minibuffer "Regexp? " (first query-replace-defaults)))
</code></pre>
<p>is a command that throws up a prompt with the last entered regexp as the default.</p>
http://stackoverflow.com/questions/533960/how-do-i-run-sutton-and-bartons-reinforcement-learning-lisp-code/742941#7429412Answer by andrew for How Do I Run Sutton and Barton's "Reinforcement Learning" Lisp Code?andrew2009-04-13T03:05:29Z2009-04-13T03:05:29Z<p>Using the latest version of CCL on linux x86, with this file saved as foo.lisp:</p>
<pre><code>#+ccl (defun random-state (x y)
(ccl::initialize-random-state x y))
(load "utilities.lisp")
(use-package 'rss-utilities)
(load "testbed.lisp")
(setup)
(init)
(print (runs 10 10 .1))
</code></pre>
<p>Running</p>
<pre><code>~/svn/ccl/lx86cl -l foo.lisp
</code></pre>
<p>prints a bunch of warning messages and the desired answer of:</p>
<pre><code>(-0.77201915 0.59691894 0.78171235 0.41514033 0.6744591 0.26383805 0.8981678 1.1274683 0.50265205 0.4081622)
</code></pre>
<p>To figure out the required #'random-state defun, I guessed that the “#.(RANDOM-STATE 64497 9)” was a serialized random-state object from MCL. To see how CCL handles that, I checked what MAKE-RANDOM-STATE outputs in CCL:</p>
<pre><code>$ ~/svn/ccl/lx86cl
Welcome to Clozure Common Lisp Version 1.3-r11936 (LinuxX8632)!
? (make-random-state)
#.(CCL::INITIALIZE-RANDOM-STATE 64497 9)
</code></pre>
http://stackoverflow.com/questions/1149088/how-do-i-pass-a-function-as-a-parameter-in-emacs/1149091#1149091Comment by andrew on How do I Pass a Function as a Parameter in Emacs?andrew2009-07-21T02:15:02Z2009-07-21T02:15:02Z#'my-function is lispier.http://stackoverflow.com/questions/1112550/how-do-you-map-mac-fonts-to-windows-fonts/1112563#1112563Comment by andrew on How do you map mac fonts to Windows fontsandrew2009-07-11T00:43:14Z2009-07-11T00:43:14ZFor portability, Word documents and PDFs usually contain copies of all the used glyphs for all the fonts in the document. But not in a form that you can legally extract and use.http://stackoverflow.com/questions/931198/how-do-i-open-a-windows-in-a-different-x11-session/931216#931216Comment by andrew on how do i open a windows in a different X11 session?andrew2009-07-10T01:56:41Z2009-07-10T01:56:41ZPlease don’t recommend “horribly insecure” things.http://stackoverflow.com/questions/561273/cygwin-assembly-language-development/579987#579987Comment by andrew on Cygwin: Assembly language development?andrew2009-07-10T01:26:46Z2009-07-10T01:26:46ZIt is a bug in the site; it works properly in the preview window.
“AMD64 Architecture Programmer’s Manual” links to <a href="http://developer.amd.com/documentation/guides/Pages/default.aspx" rel="nofollow">developer.amd.com/documentation/guides/…</a>
“this page” links to <a href="http://web.archive.org/web/20050208123742/http://ocliteracy.com/techtips/win32-callconv-asm.html" rel="nofollow">web.archive.org/web/20050208123742/…</a>
I know ocliteracy.com/... is broken, that’s why I linked to the Wayback Machinehttp://stackoverflow.com/questions/986592/any-emacs-command-like-paste-mode-in-vimComment by andrew on Any Emacs command like paste-mode in vim?andrew2009-06-13T02:43:06Z2009-06-13T02:43:06ZDidn’t know about 'paste'—thanks!http://stackoverflow.com/questions/920386/how-to-allow-running-only-one-instance-of-a-java-program-at-a-time/920403#920403Comment by andrew on How to allow running only one instance of a Java program at a time?andrew2009-06-03T01:30:25Z2009-06-03T01:30:25ZThis is a bad idea because ports are allocated <i>per-system</i>, not <i>per-user</i>. On a Windows Terminal Server, Windows with Fast User Switching, Mac with Fast User Switching, or multiple people logged into a UNIX box, this becomes a denial-of-service attack.http://stackoverflow.com/questions/526782/how-do-i-limit-the-running-time-of-a-bash-script/526815#526815Comment by andrew on How do I limit the running time of a BASH script.andrew2009-02-09T02:27:57Z2009-02-09T02:27:57ZAck, don’t use kill -9 unless absolutely necessary! SIGKILL can’t be trapped so the killed program can’t run any shutdown routines to e.g. erase temporary files. First try HUP (1), then INT (2), then QUIT (3).http://stackoverflow.com/questions/198248/whats-the-bare-minimum-cygwin-install-to-have-ddd-running-properly-on-xpComment by andrew on What's the bare minimum Cygwin install to have DDD running properly on XP?andrew2009-02-03T05:35:39Z2009-02-03T05:35:39ZThe cygwin setup program is so yucky that it’s most efficient to just install every package. So it takes a few gigabytes ... don’t forget to rebase all your modules!http://stackoverflow.com/questions/151407/how-to-get-an-x11-window-from-a-process-id/151542#151542Comment by andrew on How to get an X11 Window from a Process ID ?andrew2008-09-30T02:52:17Z2008-09-30T02:52:17ZEscaping underscores with backslashes worked for me the other day…http://stackoverflow.com/questions/145291/smart-home-in-emacs/145359#145359Comment by andrew on Smart home in Emacsandrew2008-09-28T20:00:09Z2008-09-28T20:00:09ZAwesome! #'beginning-of-line-text in fsfmacs goes to the first textual character in the line, which is annoyingly not the first non-blank character in comment lines.
http://stackoverflow.com/questions/139261/how-to-create-a-file-with-a-given-size-in-linux/139415#139415Comment by andrew on How to create a file with a given size in Linux?andrew2008-09-28T01:42:06Z2008-09-28T01:42:06ZSetting count=0 avoids having to subtract a byte from the file size.http://stackoverflow.com/questions/144201/has-anyone-found-a-good-set-of-python-plugins-for-vim-specifically-module-comp/144242#144242Comment by andrew on Has anyone found a good set of python plugins for vim -- specifically module completion?andrew2008-09-28T00:36:10Z2008-09-28T00:36:10ZThe 'path' option (<a href="http://vimdoc.sourceforge.net/htmldoc/options.html#%27path%27" rel="nofollow">vimdoc.sourceforge.net/htmldoc/…</a>) lets you specify a search path...http://stackoverflow.com/questions/144761/how-to-remove-accents-and-tilde-in-a-c-stdstring/144840#144840Comment by andrew on How to remove accents and tilde in a C++ std::string andrew2008-09-28T00:31:58Z2008-09-28T00:31:58ZAh, that makes sense. Sorry to be harsh…