Viewing profile — heatdeath
heatdeath
HN member- Joined
- Tue, Jun 29, 2010, 11:19 PM UTC
- HN karma
- 2
- Public activity
- 15 items
- HN profile
- View on Hacker News ↗
About heatdeath
No profile information was provided.
Recent public activity
-
comment
Comment #1550601
How many programmers you know like video games?
-
comment
Comment #1550596
Another article demanding that coders have no self-respect, but this time, it's assumed that self-respect is a masculine trait.
-
comment
Comment #1544687
I've held GSG for a year or so and wondered why it wasn't gaining while gold, oil, and everything else was going up. Is there any way to invest in oil using a standard brokerage ac…
-
comment
Comment #1544174
Does FreeBSD have any real purpose anymore except as the base of your new proprietary OS?
-
comment
Comment #1538817
As if government stimulus was the only cause of economic growth.
-
comment
Comment #1536004
I think everyone has realized this by now.
-
comment
Comment #1524265
Maybe they did. It's not like you'd know.
-
comment
Comment #1519731
It's perfectly normal. You just have to deal with it like everyone else does. Depression is mainly alleviated by doing something productive almost every day. That way, your night f…
-
comment
Comment #1496661
Frontend and backend are different skill sets and proficiencies. Backend is more analytic, frontend is more aesthetic. I've never worked at a company that didn't have this distinct…
-
comment
Comment #1496588
We took what you're used to... and flipped it around! Did I just blow your mind??
-
comment
Comment #1489871
The "hacked" dock looks disgusting.
-
comment
Comment #1488995
"Still on" and intend to stay on.
-
comment
Comment #1474562
Speak for yourself.
-
comment
Comment #1474169
If you're a rational person, you can learn a lot from other people's mistakes.
-
comment
Comment #1473236
void reverse_list(head) { struct node* current = head; struct node* last = NULL; struct node* next; while(current != NULL) { next = current->next; current->next = last; last = curr…