Live data from Hacker News

Viewing profile — ghswa

ghswa

HN member
Joined
Thu, May 23, 2013, 6:35 AM UTC
HN karma
437
Public activity
61 items

About ghswa

No profile information was provided.

Recent public activity

  1. comment
    Comment #13963484

    At Christmas they put white lights on all of the trees except for Pete Conrad's which gets red lights. At his funeral his crew mate Alan Beam said "Pete says that while he was here…

  2. comment
    Comment #13128011

    These are the first groups that came to mind. They may not all seem applicable all of the time but I would argue that making your site accessible to as many of these people as poss…

  3. story
  4. comment
    Comment #8919105

    The online version of page 3 will remain unchanged.

  5. comment
    Comment #8898960

    Are you referring to discussions on their mailing lists? If so, could you link to them?

  6. comment
    Comment #8884797

    According to [1] it's W xor X. Interpreting that literally suggests that read only memory is disallowed as well. I'd be surprised if that's actually the case. [1] http://www.openbs…

  7. comment
    Comment #8882582

    I think you'd be surprised; this gave my wife some interesting ideas ... for work. For what it's worth she's an academic in computing.

  8. comment
    Comment #8879330

    I don't think that's particularly wishful thinking, however, your alternative phrasing could be seen as equally, if not more, leading. When quizzed on the behaviour of a C program …

  9. comment
    Comment #8874212

    It's a gotcha for anybody, like me, that expects a branch name to be 'just' a string.

  10. comment
    Comment #8859626

    If you're that worried why not cut it short to "We liked your attitude, you seem intelligent, and well-spoken, but we have concerns about your knowledge of ." There can't be any ri…

  11. comment
    Comment #7775632

    "I did write a compiler manual in 1958, which by chance was actually used as the textbook for one of my classes in 1959(!)" How many people in the world could claim something simil…

  12. story
  13. story
  14. comment
    Comment #7353809

    Even worse when it's not even a politician from your own country. I'm looking at you Rand Paul.

  15. story
  16. story
  17. comment
  18. story
  19. comment
    Comment #7232277

    It's important to remember that the "year of code" initiative is not related to the new curriculum coming into force in September 2014. My wife is writing a book for the new curric…

  20. comment
    Comment #7230737

    Reading about suicide in the news is incomparable to the kind of direct intervention I'm talking about. As john_fushi commented[1], the best thing you can do is talk about it and h…

  21. comment
    Comment #7228699

    I'll chime in here, if you don't mind - I'm bipolar[1]. My health often deteriorates for short periods of time, perhaps a day or two, sometimes a week or so. In these situations th…

  22. comment
    Comment #7228558

    As somebody who's been there (on both sides) I don't believe that anybody who might act on suicidal ideation would not have already considered suicide as an option. I'd say that, i…

  23. comment
    Comment #7228504

    So sorry for your loss EMRo. If I were anywhere nearby I'd have come along to the memorial service but the Atlantic is quite big... I hope the service goes well for you all. Sadly …

  24. comment
    Comment #7193607

    Does gcc make any kind of assumptions about signed-overflow? For example, would it eliminate the comparison in this code: int8_t i; /* ... */ i += 1; if (i == 0) { /* ... */ }

  25. comment
    Comment #7193508

    I'm enjoying this so far although a couple of things have made me scratch my head in the example code allocating a vector. int create_vector(struct vector *vc, int size) { vc->data…