Live data from Hacker News

Viewing profile — deadlockfeet

deadlockfeet

HN member
Joined
Tue, Jun 29, 2010, 9:06 PM UTC
HN karma
1
Public activity
5 items

About deadlockfeet

No profile information was provided.

Recent public activity

  1. comment
    Comment #1478582

    200$ is a monthly salary for average middle class indians

  2. comment
    Comment #1476210

    Do you have dysgraphia?? I had same and used a writer for most of my important tests and it has helped me a lot. I dont care about my handwriting and it has helped me focus on othe…

  3. comment
    Comment #1476133

    Thanks StackExhange Statistical Analysis was taking too long to start, they had set unviable goal for a beta version

  4. comment
    Comment #1472862

    from my CS class last sem I clearly remeber this one: Semaphores and Monitors are different. Monitors are implemented by compiler to make sure that thread dont mess up with the mem…

  5. comment
    Comment #1472837

    hmm here is my solution for solving the reverse the list problem Reverse(pStart) { pOld = null pCursor =pStart while (pCursor !=null) Change(pCursor,pOld) // Passed by reference } …