Live data from Hacker News

Viewing profile — markov_twain

markov_twain

HN member
Joined
Sat, Feb 02, 2013, 12:37 AM UTC
HN karma
23
Public activity
15 items

About markov_twain

No profile information was provided.

Recent public activity

  1. comment
    Comment #7557895

    Github keeps the refs for pull requests separate from branches and tags. For example, you can fetch pull request #123 into a local branch called pull-123 with: `git fetch origin re…

  2. comment
    Comment #7545371

    Here's an entirely working example I just created: https://gist.github.com/benolee/ca49aaa9a0363c18904b

  3. comment
    Comment #5468445

    Thanks for this--I mentioned finagle to jcoglan on twitter yesterday after I read his blog post, and I don't think he was aware of the similarities. I actually didn't know about fu…

  4. comment
    Comment #5465942

    NoSQL also exists. Carlo Strozzi first used the term NoSQL in 1998 as a name for his open source relational database that did not offer a SQL interface. http://publications.lib.chal…

  5. comment
    Comment #5465889

    Even worse, he lists "brainfuck" as a technology that's easier to use outside of the big-company matrix. There is no such thing as "brainfuck". There are various dialects and deriv…

  6. comment
    Comment #5322835

    I randomly stumbled across this gist by tenderlove https://gist.github.com/tenderlove/4576780 that displays references as a tree view using d3.js. I think that this gist in particu…

  7. comment
    Comment #5291125

    AFAIK, to use the brightbox packages on heroku you'd have to write a buildpack that either downloads all the dependencies and runs through the same build process that brightbox use…

  8. comment
    Comment #5291040

    Heroku apps at the very least sit behind the heroku router, which I would assume is in the same datacenter. If the information in this quora answer http://www.quora.com/Scalability…

  9. comment
    Comment #5291001

    Unfortunately, Ruby 1.9.x is not copy-on-write friendly, mainly due to the garbage collection strategy. I would venture to guess that most Rails apps these days are running on some…

  10. comment
    Comment #5272746

    This bit of ruby should take care of it HashMap = HashTable = Map = Table = Dictionary = Hash And if you're feeling adventurous, Object.send :remove_const, :Hash

  11. comment
    Comment #5233047

    Literally reinventing the wheel

  12. comment
    Comment #5183274

    fwiw, I find the syntax definition in the ruby_parser gem at https://github.com/seattlerb/ruby_parser/blob/master/lib/rub... to be much easier reading, as it's written for racc (th…

  13. comment
    Comment #5156921

    Why has arithmetic become the universal example of currying and partial function application? Examples: "Currying", Section 9.3 of Programming in Scala (addition); Ruby 1.9.3 docum…

  14. comment
    Comment #5155242

    well, I hate to beat a dead horse, but here's a one-liner (ruby): (map1.keys | map2.keys).map(&:to_s).sort.join(", ").instance_eval { empty? ? " " : self }

  15. comment
    Comment #5154519

    so this is horribly non-idiomatic ruby, but it was fun p ->(*_) { _.reduce({}, :merge).tap { |_| return " " if _.empty? }.keys.uniq.map(&:to_s).sort.join(", ") }.({c:3,d:4,b:2}, {f…