Live data from Hacker News

Viewing profile — tskrainar

tskrainar

HN member
Joined
Wed, May 30, 2012, 4:18 PM UTC
HN karma
9
Public activity
4 items

About tskrainar

No profile information was provided.

Recent public activity

  1. comment
    Comment #14767546

    If "fruit on toast" is a "frivolous luxury", then I can't think of a better example of how unimaginable wealth inequality in this country has become. Even at $8, that's on par with…

  2. comment
    Comment #6038838

    No. If it were, I wouldn't even consider using it. Switching between multiple interpreter installations is pretty easy (a drop down in a preference pane) -- it will find every inte…

  3. comment
    Comment #6037911

    Ever heard of Komodo? I've been using it for years for Perl development, plus it supports Python, Ruby, and a host of other languages. I wouldn't consider doing any serious Perl de…

  4. comment
    Comment #4043462

    As for named parameters, the clean/simple style I like to use is: do_stuff(Foo => 1, Bar => $baz); sub do_stuff { my %args = @_; my $foo = $args{Foo}; # etc... }