User ehdr - Stack Overflowmost recent 30 from stackoverflow.com2009-11-26T21:07:32Zhttp://stackoverflow.com/feeds/user/5039http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/993434/what-language-is-to-binary-as-perl-is-to-text7What language is to binary, as Perl is to text?ehdr2009-06-14T18:31:23Z2009-07-26T21:03:57Z
<p>I am looking for a scripting (or higher level programming) language (or e.g. modules for Python or similar languages) for effortlessly analyzing and manipulating binary data in files (e.g. core dumps), much like Perl allows manipulating text files very smoothly.</p>
<p>Things I want to do include presenting arbitrary chunks of the data in various forms (binary, decimal, hex), convert data from one endianess to another, etc. That is, things you normally would use C or assembly for, but I'm looking for a language which allows for writing tiny pieces of code for highly specific, one-time purposes very quickly.</p>
<p>Any suggestions?</p>
http://stackoverflow.com/questions/60367/the-single-most-useful-emacs-feature/74602#746025Answer by ehdr for The single most useful Emacs featureehdr2008-09-16T17:06:29Z2008-09-16T17:06:29Z<p>Another one of my favorites is the transpose-* family of functions. They allow you to instantly switch two units of text around the current position of the cursor. For example, <code>tranpose-words</code> on key <code>M-t</code> switches the word in front of your cursor with the one behind it, <code>tranpose-chars</code> on <code>C-t</code> does the same with characters.</p>
<p>Perhaps the most useful variants are <code>tranpose-lines</code> (and especially the <code>tranpose-line-up</code> and <code>-down</code> variants of XEmacs) for moving lines around, and <code>transpose-paragraph</code> which switches entire blocks of code instantly.</p>
<p>If you really master these commands and make them part of the "active set" of emacs features that you actually use all the time, you will find that they add a whole new flow to editing code.</p>
<p>And, important as always, it sure does impress people who don't (yet) know the power of emacs. :)</p>
http://stackoverflow.com/questions/60367/the-single-most-useful-emacs-feature/60537#6053747Answer by ehdr for The single most useful Emacs featureehdr2008-09-13T13:33:23Z2008-09-16T16:56:52Z<p>A not so well known feature that I find very useful is <code>M-x align-regexp</code>. If you mark a region and execute it, you will be asked for a regular expression, and emacs will then line up the first match of that expression on every line, by padding with spaces (or tabs, if you like). For example, say that you have a list of variables in your code:</p>
<pre><code>int a = 2;
int a_longer_variable_name = 73;
int i = 0;
</code></pre>
<p>Then you can mark those lines and to <code>M-x align-regexp</code> and specify <code>=</code> as the expression, and it will align it like:</p>
<pre><code>int a = 2;
int a_longer_variable_name = 73;
int i = 0;
</code></pre>
<p>Maybe not the most important feature in the world, but I use it regularly, and it sometimes impresses non-emacs people. :)</p>
http://stackoverflow.com/questions/60464/changing-the-default-folder-in-emacs/60531#605313Answer by ehdr for Changing the default folder in emacsehdr2008-09-13T13:21:11Z2008-09-13T13:21:11Z<p>The default folder is actually the same as the current working folder for the buffer, i.e. it can be different for every file you work with. Say that the file you are working with is located in <code>C:\dir_a</code>, then the working directory for that buffer will by default be <code>C:\dir_a</code>. You can change this with <code>M-x cd</code> and type in whatever directory you would like to be the default instead (and by default I mean the one that will show up when you do <code>C-x C-f</code>).</p>
<p>If you start emacs without opening a file, you will end up with the <code>*scratch*</code> buffer open. If you started emacs from a Windows shortcut, the working directory will be the same as that specified in the shortcut properties. If you started it from the command line, it will be the directory from where you started it. You can still change this default directory with <code>M-x cd</code>, also from the <code>*scratch*</code> buffer.</p>
<p>Finally, you can do as Vadim suggests and put</p>
<pre><code>(cd "c:/dir_a/")
</code></pre>
<p>in your <code>.emacs</code> file, to make that directory the default no matter how you start emacs.</p>
http://stackoverflow.com/questions/59483/confused-by-gdb-print-ptr-vs-print-s/59553#595531Answer by ehdr for Confused by gdb print ptr vs print "%s"ehdr2008-09-12T17:22:24Z2008-09-12T17:22:24Z<p>I agree with mweerden. Trying something I believe is similar to your code, I get:</p>
<pre><code>(gdb) print cwd
$1 = "/media", '\0' <repeats 782 times>, "\016���" ...
(gdb) print (char*) cwd
$2 = 0xbfc8eb84 "/media"
</code></pre>
<p>from gdb, so it seems that since <code>cwd</code> was defined as <code>char cwd[3500]</code>, gdb prints the entire array, while if you tell gdb to interpret it as a <code>char*</code>, it will work as you expect. If your application crashes, I would assume it is because of something else (perhaps the extra garbage at the end of the <code>cwd</code> array?).</p>
http://stackoverflow.com/questions/54365/prepend-to-a-file-one-liner-shell/59504#595043Answer by ehdr for prepend to a file one liner shell? ehdr2008-09-12T16:51:54Z2008-09-12T16:51:54Z<p>It may be worth noting that it often is a <a href="http://www.linuxsecurity.com/content/view/115462/81/" rel="nofollow" title="Safely Creating Temporary Files in Shell Scripts, by Stefan Nordhausen at LinuxSecurity">good idea</a> to safely generate the temporary file using a utility like <a href="http://www.mktemp.org/" rel="nofollow" title="mktemp homepage">mktemp</a>, at least if the script will ever be executed with root privileges. You could for example do the following (again in bash):</p>
<pre><code>(tmpfile=`mktemp` && { echo "prepended text" | cat - yourfile > $tmpfile && mv $tmpfile yourfile; } )
</code></pre>
http://stackoverflow.com/questions/993434/what-language-is-to-binary-as-perl-is-to-textComment by ehdr on What language is to binary, as Perl is to text?ehdr2009-06-14T20:14:12Z2009-06-14T20:14:12ZYes, I know about BFD, but I'm looking for something much more lightweight. And I will be using it for other things besides core dumps.http://stackoverflow.com/questions/993434/what-language-is-to-binary-as-perl-is-to-text/993542#993542Comment by ehdr on What language is to binary, as Perl is to text?ehdr2009-06-14T19:31:52Z2009-06-14T19:31:52ZActually, speed is not that much of an issue for me, as I will mostly use it to "browse" some binary blob (e.g. a core dump, or data recorded from a stream) more or less interactively, with a size that can usually be counted in megabytes.
You don't happen to know of any such library packages for C that are worth checking out?http://stackoverflow.com/questions/993434/what-language-is-to-binary-as-perl-is-to-textComment by ehdr on What language is to binary, as Perl is to text?ehdr2009-06-14T18:48:27Z2009-06-14T18:48:27ZCasting binary to strings is what I use today (in Python or Perl) but I have a feeling that there must be some smoother and more powerful way of doing this out there. I edited the question to try to explain why C is not the answer, in this case.http://stackoverflow.com/questions/103016/broken-pipe-no-longer-ends-programsComment by ehdr on Broken pipe no longer ends programs ?ehdr2008-09-19T18:33:43Z2008-09-19T18:33:43ZIt would help to know what shell you are using, and more specifics about what do_something_intensive actually does. Also, what do you mean by "obviously still running"? Does it show up in a ps listing, or is that the shell is unresponsive? Feel free to edit your question with more details!http://stackoverflow.com/questions/103316/in-bash-environmental-variables-not-tab-expanding-correctlyComment by ehdr on In bash, environmental variables not tab-expanding correctlyehdr2008-09-19T18:12:58Z2008-09-19T18:12:58ZIt would be very helpful to know which Linux distribution or which variant of Unix you are using.http://stackoverflow.com/questions/60367/the-single-most-useful-emacs-featureComment by ehdr on The single most useful Emacs featureehdr2008-09-18T19:52:50Z2008-09-18T19:52:50ZConsider modifying the question to ask for "The single most useful Emacs feature" (or "The most useful obscure feature..." or something). This way people can vote on specific answers, and your question in effect becomes a poll.