Live data from Hacker News

Viewing profile — Locke

Locke

HN member
Joined
Wed, Mar 28, 2007, 2:48 AM UTC
HN karma
764
Public activity
144 items

About Locke

[ my public key: https://keybase.io/ericidema; my proof: https://keybase.io/ericidema/sigs/lXdL8-79O5kKnqKbs5KrqgjqCSqnOm8p_I3S7M_hxo8 ]

Recent public activity

  1. comment
    Comment #28718385

    I wish we responded to situations more proportionally. In this case, someone made a joke about women not liking to reveal their true age as they get older. It's a boring cliched jo…

  2. comment
    Comment #12165586

    > One of the most amazing things about suicide is that over the past 80 years or so in the United States, suicide rates have been extremely flat. The fact that suicide rates have n…

  3. comment
    Comment #11819667

    Hi Sid, Thanks for the follow-up. I appreciate it and I'm glad that my feedback might help improve your hiring process. I don't mind your comment, and I hope you understand that th…

  4. comment
    Comment #11818353

    My recent experience with Gitlab: Went through several interviews with them, including their technical interview and had a blast. Met some nice folks and was having a lot of fun in…

  5. comment
    Comment #11750039

    As a thought exercise, suppose I have my User class and now I would like to write it as json. Do you think it would be strange if the established solution were this? class User Whe…

  6. comment
    Comment #11749724

    Nostalgia warning: I also grew frustrated with Rails / ActiveRecord and jumped to Merb / DataMapper with excitement. Perhaps it will sound like a small thing, but I remember feelin…

  7. comment
    Comment #2429851

    I read somewhere recently that replacing the dollar bill with a dollar coin would save about $5 billion over something like 30 years. The trick is no one actually wants a dollar co…

  8. comment
    Comment #2404894

    I hate to be unhelpful, but I think this problem is intractable. The fact that these meta discussions predictably offer a wide array of solutions -- many of which are at odds with …

  9. comment
    Comment #2260819

    Earnings are important, I'm sure -- but don't mistake them for wealth. I've known people with ludicrous earnings who still lived pay check to pay check. In fact, I suspect it's all…

  10. comment
    Comment #2205333

    This is not so much a possibility as an inevitability. Chances are you will fall in love and it will disrupt your life whether you're starting up or doing something else entirely. …

  11. story
  12. comment
    Comment #1927468

    I don't think this article is making a claim about whether or not these phrases indicate that someone is about to lie to you. The phrases themselves are often untrue. For example, …

  13. comment
    Comment #1895615

    - Write a video game emulator (any old console or computer platform) - Create a programming language - Restore an old broken down pinball machine - Build a mame arcade cabinet - Wr…

  14. comment
    Comment #1895419

    The quote is fine. I worry about this glorification of violence. The original article and this thread seem to be filled with adolescent fantasies of revenge against bullies past an…

  15. comment
    Comment #1895300

    I don't necessarily disagree with the original article or this sentiment. However, I have a hard time reconciling telling your child to stick up for him or herself when bullied vs …

  16. comment
    Comment #1882435

    My use of fvwm has become so minimal that I'd probably be better off switching to one of the tiling window managers. I have chromium occupying an entire page of my virtual desktop …

  17. comment
    Comment #1880886

    I've noticed that the more time I spend focused on work the more out of date I get with the cutting edge. I'm on a 3 or 4 year old thinkpad (love the keyboard!) running gentoo linu…

  18. comment
    Comment #1865146

    This is a great post from a publicity standpoint. It's never a bad thing to put a human face on your business, especially if you're still small. But, I'm afraid, the only real long…

  19. comment
    Comment #1644167

    I was just thinking today how wonderful it would be if my web browser let me navigate tabs with the same key bindings as screen. If I had a nickel for every time I've done "select …

  20. story
  21. comment
    Comment #1452622

    I'd have preferred to see a more detailed breakdown of apps. It may be a terrible market for utility apps. Or, for apps that are more feature than product. How many apps are truly …

  22. comment
    Comment #1329225

    The liquidity of Facebook Credits is a major problem. They are asking game developers to give up control of their virtual currencies. When you control your virtual currency you can…

  23. comment
    Comment #1200109

    Some of the stats are kind of self-explanatory. For example, "#8 seeds often upset higher ranked teams. In the four match-ups against #2 teams, #8 teams won twice. They have also b…

  24. comment
    Comment #1021087

    I think this observation is very true with respect to sharing with the internet at large. It's easy to dismiss some new (personal) discovery as unremarkable or obvious -- but, ther…

  25. comment
    Comment #1018902

    Yes, they are different. For example: def ex1 a = 5 if a puts "a: #{a}" end end def ex2 if a = 5 puts "a: #{a}" end end def ex3 puts "a: #{a}" if a = 5 end If we start with the cod…