Live data from Hacker News

Viewing profile — FurrBall

FurrBall

HN member
Joined
Sat, Jul 13, 2013, 2:19 AM UTC
HN karma
51
Public activity
50 items

About FurrBall

No profile information was provided.

Recent public activity

  1. comment
    Comment #6901954

    Too slow for me on Chrome.

  2. comment
    Comment #6898910

    Baldur's Gate 2 is still my all-time favorite. It is more than just a game. One of humanities greatest works of art.

  3. comment
    Comment #6817648

    "...we'd like to extend an invitation to you to apply again whenever you feel more capable". Sounds like it was written by a pompous egg head on a power trip.

  4. comment
    Comment #6784911

    I play yahoo's online chess once and a while.

  5. comment
    Comment #6756909

    Wages cannot be too low. It's simple supply and demand. Too many workers, with little demand for their work. Evidenced by the fact people are willing to work at wal-mart wages. I w…

  6. comment
    Comment #6686727

    I'd suggest skipping Clojure altogether. The JVM cannot support tail call optimizations. Use of recursion will be muffled a bit. Not very lispy. Newer is not always better. Try rac…

  7. comment
    Comment #6670842

    I was part of a haunted house. Kids went through the backyard and garage. With really good candy at the end (snickers bars, kit kat, etc) My girlfriend's brother was a clown with a…

  8. comment
    Comment #6670129

    I don't have a tombstone worthy project. But my favorite personal project is a database comparison tool. It is basically a "diff" on databases. Everything from the schema, to store…

  9. comment
    Comment #6670087

    "the tools I use recognize that structure" Yes. I would describe it as parsing the content into a tree. Interaction's with content can then be legal operations on the tree, instead…

  10. comment
    Comment #6587036

    Absolutely. Generics are too powerful an abstraction to do without in 2013. I can't imagine coding without them. Go is a no-go for me. Everyone talks down on C++ but it's one of th…

  11. comment
    Comment #6544736

    Sure there are health issues from inhaling smoke. But a strategy of suppression and control rarely creates a better world. Instead it empowers criminal organizations who use violen…

  12. comment
    Comment #6534217

    I use C++. For user applications, not "systems". -Momentum. I am already familiar with it. -RAII and smart pointers -Generics -Best supported for cross-platform mobile phone use.

  13. comment
    Comment #6533670

    They are treating people like cattle. Herd em up, brand em, and profit.

  14. comment
    Comment #6520987

    It's a community of hackers. But topics are not restricted by category.

  15. comment
    Comment #6510559

    I thought I was the only one using C# and Postgres. Secret's out!

  16. comment
    Comment #6507949

    Because it makes the troll more elegant and pure.

  17. comment
    Comment #6478901

    "Us founders are blitzing 80+ hours a week." This is where most people with a family would stop reading. "If you're young and energetic, come join us." That is border-line ageist. …

  18. comment
    Comment #6478723

    That wording doesn't sound very attractive. Down right scary actually.

  19. comment
    Comment #6470136

    I'd buy a house for myself. I'd buy 1 low-end rental property (dip my toes in with 1 before finding out I don't like land-lording). With that much cash, inflation becomes a big iss…

  20. comment
    Comment #6448822

    Well you do have to ban raw pointers. Heap allocation is safe with smart pointers.

  21. comment
    Comment #6438770

    New? I'm still going headfirst down the Emacs rabbit hole. You can never escape wonderland.

  22. comment
    Comment #6411187

    It's not strange if you consider there were no female programmers on the team. Demographics is a different point all together.

  23. comment
    Comment #6399534

    Pasting a response: Blocks are an improvement, but not the same as RAII. A block is literally converted to a try-finally by the compiler. It is the same thing with a cleaner syntax…

  24. comment
    Comment #6399524

    Reality is there are many Java code bases which handle resources like this. For java 6 and below this not bad code; it is how you are forced to deal with resources. Even with the n…

  25. comment
    Comment #6399230

    I look at Java code and it horrifies me. Java is great if your resource is memory. It turns into a horrible unsafe mess the moment your resources are not memory. //C++ RAII goodnes…