Live data from Hacker News

Viewing profile — chancho

chancho

HN member
Joined
Thu, Mar 12, 2009, 6:44 PM UTC
HN karma
961
Public activity
335 items

About chancho

No profile information was provided.

Recent public activity

  1. comment
    Comment #29685039

    "White diaspora" is blowing my mind a bit. I think I would have been slapped by my social studies teachers if I ever used that phrase to describe colonialism. (I'm white, US)

  2. comment
    Comment #23359974

    You are a piece of shit.

  3. comment
  4. comment
    Comment #14519397

    Careful, that pseudocode has a famous error in it. Finding it is an illuminating exercise.

  5. comment
  6. comment
    Comment #3661909

    JavaScript for Node ? Isn't that a bit like saying "Java for Minecraft"? I can think of at least one popular use of JavaScrip that predates Node.

  7. comment
    Comment #3641718

    Boost.Intrusive does this, without the casting or offsetof'ing. http://www.boost.org/doc/libs/1_47_0/doc/html/intrusive.html Not that most of what you said isn't true. Just picking…

  8. comment
    Comment #3615059

    You have a strange definition of "excel".

  9. comment
    Comment #3615051

    Totally agree, but I just have to pick one nit on your final point re GHC and unpacking: If you do this you forfeit all generic programming because a 'lifted' polymorphic type has …

  10. comment
    Comment #3607660

    Have you looked at the Haskell Ix class? http://www.haskell.org/onlinereport/ix.html It generalizes the choice of 0 or 1 to an arbitrary starting index. So when you create an array…

  11. comment
    Comment #3605931

    Why is there not a service that tracks news stories and algorithmically relates them into the narrative of history, driven by the singular question of "why?"? Something in between …

  12. comment
    Comment #3583478

    I think a better analogy would be a farmer tending to his crops. Google users are not the customers, they're the product.

  13. comment
  14. comment
    Comment #3555377

    C++ template's aren't just unusual, they're unique among mainstream languages. They're C++'s secret weapon. These days, if you're not making heavy use of templates in your C++ code…

  15. comment
    Comment #3521496

    The more targeted the advertising, the more effective and therefore valuable it is. But it's still hard to know what people want or need to buy right now They can (and do) personal…

  16. comment
    Comment #3498345

    "Some of the best ideas may initially look like they're serving the movie and TV industries. Microsoft seemed like a technology supplier to IBM before eating their lunch, and Googl…

  17. comment
    Comment #3495161

    If the good costs more to make than the buyer is willing to pay then there is no price because there is no sale, so clearly price depends on cost. Functions can have more than one …

  18. comment
    Comment #3428696

    I just about spat my coffee out when I saw that nio bytebuffers used 32 bit ints for everything. (I'm not normally a java guy.) I thought "oh hey a direct byte buffer will be a gre…

  19. comment
    Comment #3414670

    What a treasure trove of open source project / startup names. Gobo, Boober, Mokey, Doozer, Gorg. One of them already ends in ly, Wembly.

  20. comment
    Comment #3410328

    The presence of "octonions" in the boost library kept me from seriously considering it for like 2 years. I understand the rationale--that by making it monolithic they're getting mo…

  21. comment
    Comment #3398505

    Because Google has a monopoly on non-shitty free email with GMail, in the same way that Microsoft has (had?) a monopoly on hardware-independent operating systems with DOS/Windows. …

  22. comment
    Comment #3289035

    > what happens in HPC tends to filter down to servers Is this conventional wisdom? How does a petaflop race affect app servers and databases? It seems like most traditional server …

  23. comment
    Comment #3229861

    What exactly does "viable" mean in this context? Because the husband and wife team behind NameVoyager have had the baby name trend visualization market cornered for years now. http…

  24. comment
    Comment #3180746

    Space leaks, stack overflows (foldl vs. foldl'), failed pattern matches (head []), etc. There are tons of bugs lurking in well-formed Haskell programs.

  25. comment
    Comment #2909756

    Just to pile on: 0-based indexing is also more convenient when you want to build a multi-dimensional array from a one-dimensional array primitive using the integer division and mod…