Viewing profile — tskrainar
tskrainar
HN member- Joined
- Wed, May 30, 2012, 4:18 PM UTC
- HN karma
- 9
- Public activity
- 4 items
- HN profile
- View on Hacker News ↗
About tskrainar
No profile information was provided.
Recent public activity
-
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…
-
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…
-
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…
-
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... }