Live data from Hacker News

Viewing profile — unauth

unauth

HN member
Joined
Thu, Jun 23, 2011, 3:58 AM UTC
HN karma
5
Public activity
2 items

About unauth

No profile information was provided.

Recent public activity

  1. comment
    Comment #2703571

    web development mostly. Big Japanese companies use perl for their backend and you can find many blog entries about perl in Japanese.

  2. comment
    Comment #2686601

    if order does not matter: var sum=0,i=list.length; while(i--) sum += list[i].amount; if it does: var sum=0,i=0,ln=list.length; while (ln-- && (sum += list[i++].amount)); but the fo…