User Hinrik - Stack Overflowmost recent 30 from stackoverflow.com2009-12-04T19:52:56Zhttp://stackoverflow.com/feeds/user/10689http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1450169/how-do-i-emulate-vims-softtabstop-in-emacs3How do I emulate vim's 'softtabstop' in emacs?Hinrik2009-09-20T03:00:46Z2009-09-21T04:06:57Z
<p>I've been trying to get into emacs lately, and one of the things I need to get right is indentation.</p>
<p>Example 1:</p>
<pre><code>sub foo {
my $bar = 'quux';
|
</code></pre>
<p>Example 2:</p>
<pre><code>sub foo {
my $bar = 'quux'; |# foo
</code></pre>
<p>Imagine that the pipe character in the above examples indicates the cursor position. Now, I use (4) spaces for every indent level (no tabs), and I have emacs setup to indent my code automatically with that in mind. No problems there. But in the examples above, if I were to hit backspace at the indicated cursor positions, I want emacs to backspace all the way back to the next indent level (column / 4). That is, I want it to treat the preceding whitespace as if it were made up of tabs. Instead, it always just erases a single space character.</p>
<p>In vim, I turn on 'expandtab' to make it insert spaces instead of tabs, and 'softtabstop', which makes it (among other things) backspace to the next "soft tabstop" as described above.</p>
<p>In emacs, I suppose I could (if I knew emacs/elisp better) bind backspace to a function which does something like the following:</p>
<pre><code>if indent-tabs-mode is nil
if the cursor position is preceded by whitespace
calculate the position of the previous "soft tabstop"
if there's enough whitespace
backspace all the way to that point
else
backspace by one character
</code></pre>
<p>What I want to know is, is there a simpler way to do this, and/or does anyone know of an existing solution?</p>
http://stackoverflow.com/questions/194812/list-of-freely-available-programming-books/1218386#12183861Answer by Hinrik for List of freely available programming booksHinrik2009-08-02T08:06:23Z2009-08-02T08:06:23Z<p><a href="http://www.perl.org/books/beginning-perl/" rel="nofollow">Beginning Perl</a>, by Simon Cozens.</p>
http://stackoverflow.com/questions/24310/programming-a-simple-irc-internet-relay-chat-client/844821#8448216Answer by Hinrik for Programming a simple IRC (Internet-Relay-Chat) Client.Hinrik2009-05-10T06:22:26Z2009-06-30T12:49:48Z<p>An earlier post mentioned RFC1459. While it is a very good introduction to IRC, it has actually been superseded by RFCs 2810-2813. Here is a more complete list of documentation you need to program anything IRC-related:</p>
<ul>
<li><a href="http://tools.ietf.org/html/rfc1459" rel="nofollow">RFC1459</a> (original RFC; superseded, but still useful)</li>
<li><a href="http://tools.ietf.org/html/rfc2810" rel="nofollow">RFC2810</a> (IRC architecture)</li>
<li><a href="http://tools.ietf.org/html/rfc2811" rel="nofollow">RFC2811</a> (IRC channel management)</li>
<li><a href="http://tools.ietf.org/html/rfc2812" rel="nofollow">RFC2812</a> (IRC client protocol)</li>
<li><a href="http://tools.ietf.org/html/rfc2813" rel="nofollow">RFC2813</a> (IRC server protocol)</li>
<li><a href="http://www.irchelp.org/irchelp/rfc/ctcpspec.html" rel="nofollow">CTCP specification</a></li>
<li><a href="http://www.irchelp.org/irchelp/rfc/dccspec.html" rel="nofollow">DCC specification</a></li>
<li><a href="http://www.invlogic.com/irc/ctcp.html" rel="nofollow">Updated CTCP specification</a> (not all clients support this)</li>
<li><a href="http://www.irc.org/tech%5Fdocs/draft-brocklesby-irc-isupport-03.txt" rel="nofollow">ISupport (response code 005) draft</a> (almost all servers support this nowadays)</li>
</ul>
http://stackoverflow.com/questions/844762/unix-regex-for-adding-contents-in-a-file/844788#8447880Answer by Hinrik for unix regex for adding contents in a fileHinrik2009-05-10T05:49:18Z2009-05-10T05:49:18Z<p>Here's one in Perl.</p>
<pre><code>$ cat foo.txt
asdfb ... 1
adfsdf ... 2
sdfdf .. 3
$ perl -a -n -E '$total += $F[2]; END { say $total }' foo
6
</code></pre>
<p><a href="http://en.wikipedia.org/wiki/Perl%5Fgolf" rel="nofollow">Golfed</a> version:</p>
<pre><code>perl -anE'END{say$n}$n+=$F[2]' foo
6
</code></pre>
http://stackoverflow.com/questions/768175/what-is-the-most-pythonic-way-to-provide-a-fall-back-value-in-an-assignment/769022#7690223Answer by Hinrik for What is the most Pythonic way to provide a fall-back value in an assignment?Hinrik2009-04-20T16:26:17Z2009-04-20T16:26:17Z<p>Just some nitpicking with your Perl example:</p>
<pre><code>my $x = undef;
</code></pre>
<p>This redundant code can be shortened to:</p>
<pre><code>my $x;
</code></pre>
<p>And the following code doesn't do what you say it does:</p>
<pre><code>my $a = $x || $y;
</code></pre>
<p>This actually assigns $y to $a when $x is <em>false</em>. False values include things like <code>undef</code>, zero, and the empty string. To only test for definedness, you could do the following (as of Perl 5.10):</p>
<pre><code>my $a = $x // $y;
</code></pre>
http://stackoverflow.com/questions/251694/how-can-i-check-if-i-have-a-perl-module-before-using-it/261474#2614741Answer by Hinrik for How can I check if I have a Perl module before using it?Hinrik2008-11-04T10:35:48Z2008-11-04T10:35:48Z<p>And if you require a specific version of the module:</p>
<pre><code>my $GOT_READKEY;
BEGIN {
eval {
require Term::ReadKey;
Term::ReadKey->import();
$GOT_READKEY = 1 if $Term::ReadKey::VERSION >= 2.30;
};
}
# elsewhere in the code
if ($GOT_READKEY) {
# ...
}
</code></pre>
http://stackoverflow.com/questions/66330/perl-aids-for-regression-testing/71235#712352Answer by Hinrik for Perl aids for regression testingHinrik2008-09-16T11:03:38Z2008-09-16T11:12:29Z<p>I question those of you who recommend the use of PerlUnit. It hasn't had a release in 3 years. If you really want xUnit-style testing, have a look at <a href="http://search.cpan.org/perldoc?Test::Class" rel="nofollow">Test::Class</a>, it does the same job, but in a more Perlish way. The fact that it's still maintained and has regular releases doesn't hurt either.</p>
<p>Just make sure that it makes sense for your project. Maybe good old <a href="http://search.cpan.org/perldoc?Test::More" rel="nofollow">Test::More</a> is all you need (it usually is for me). I recommend reading the "<em>Why you should [not] use Test::Class</em>" sections in the docs.</p>
http://stackoverflow.com/questions/1450169/how-do-i-emulate-vims-softtabstop-in-emacsComment by Hinrik on How do I emulate vim's 'softtabstop' in emacs?Hinrik2009-09-20T18:00:26Z2009-09-20T18:00:26ZOne small update: I got one thing wrong. When vim can't go back to the next soft tab stop, it deletes as much whitespace as possible (i.e. 1 to 3), not just 1.http://stackoverflow.com/questions/427332/asdf-installing-libraries-from-the-command-line/427333#427333Comment by Hinrik on asdf-installing libraries from the command-lineHinrik2009-09-20T01:17:54Z2009-09-20T01:17:54ZWhat does asdf_oos do?