Viewing profile — unauth
unauth
HN member- Joined
- Thu, Jun 23, 2011, 3:58 AM UTC
- HN karma
- 5
- Public activity
- 2 items
- HN profile
- View on Hacker News ↗
About unauth
No profile information was provided.
Recent public activity
-
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.
-
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…