Viewing profile — kanatohodets
kanatohodets
HN member- Joined
- Tue, Nov 06, 2012, 12:25 AM UTC
- HN karma
- 48
- Public activity
- 16 items
- HN profile
- View on Hacker News ↗
About kanatohodets
No profile information was provided.
Recent public activity
- comment
-
comment
Comment #10826189
I landed my current job after being contacted from my "Who wants to be hired?" post. I'm not exactly a rockstar ninja, but I was pinged by multiple people: a pleasant surprise and …
-
comment
Comment #10702523
Perl has distinct operators for string concatenation and numeric addition (as well as string comparison/numeric comparison): $ perl -E 'say "plus: ", 1 + "1"' plus: 2 $ perl -E 'sa…
-
comment
Comment #9554228
If a bit of self promotion is allowed, check out https://github.com/spring1944/spring1944 . It's an RTS, so a little more action oriented than the (typically) more detailed turn ba…
-
comment
Comment #8217794
Gogs uses a mix of GoGits, a partially Go implementation of git, and the traditional git binary via os/exec. A quick scan shows that it relies on the binary for perhaps the majorit…
-
comment
Comment #7974277
Location: Midwestern US, targeting Europe. Remote: Potentially, but I'd probably just move to you if you're in a neat place. Willing to relocate: If it involves crossing an ocean, …
- story
-
comment
Comment #7315800
Check out http://mojolicio.us/ for a more modern take on web dev in Perl -- the most common deployment is a nginx reverse proxy in front of the built-in (non-blocking and preforkin…
-
comment
Comment #7096855
It's even crazier/cooler than that: https://metacpan.org/pod/release/BOOK/perlsecret-1.005/lib/p... -- lots of (mostly harmless/golf-oriented) fun with combining perl operators.
- story
-
comment
Comment #6790021
Interesting to think about the sorts of cultural markers that other languages have. Maybe this is just another way of saying 'code smell', but there must be similar elements for JS…
-
comment
Comment #6762000
Great article! Wish I'd found it a few months ago when I was reading HOP and trying to wrap my head around subroutine installation using globs. One of my favorite design elements o…
-
comment
Comment #6512376
Well, the goal is to make sure that the plentiful modules on the CPAN (all in Perl 5) are usable for everybody involved. You're right, directly mixing Perl 5 and Perl 6 isn't likel…
-
comment
Comment #6512012
Judging by the ample supply of version number rimshots, some clarification might be helpful: this isn't a Perl release, nor is it a new Perl version. It's the name of a general pro…
-
comment
Comment #6511835
It's a list of projects all loosely oriented around untying Perl 5 the language from perl the runtime. Perl 6 has already done this, with several (Parrot, JVM, Mono/.NET) VMs curre…
-
comment
Comment #5125660
For the folks who struggle with Lua's language design: try thinking of it like Crockford's Good Parts of Javascript with a slightly different syntax (and arrays/objects rolled into…