Live data from Hacker News

Viewing profile — chris-martin

chris-martin

HN member
Joined
Mon, Jul 22, 2013, 5:31 AM UTC
HN karma
39
Public activity
23 items

About chris-martin

No profile information was provided.

Recent public activity

  1. story
  2. story
  3. story
  4. story
  5. comment
    Comment #9563094

    Was kind of surprised to find that this company had no Wikipedia article. Just started one: https://en.wikipedia.org/wiki/Axact How in the world do you fit a scam this big so far u…

  6. comment
    Comment #9327514

    For a lot of web development work, three is the perfect number. Terminal, IDE, browser.

  7. comment
    Comment #8244494

    Hey, I just wanted to share this library I put together, because Chain looks really promising as a way to quickly put together a Bitcoin app. I'm particularly excited about it beca…

  8. story
  9. comment
    Comment #8000639

    A short list: - Trying to making small payments is terrible; the only way to tell whether a transaction requires fees is to try it, see it fail, and parse the error message to figu…

  10. comment
    Comment #7798905

    > The hi-tech road is supposed to be installed once for several decades, where paved roads are re-paved every few years. We're comparing the cost of solar panels to the cost of pou…

  11. comment
    Comment #7569084

    Yes! (Both.) You'll end up spending an amount of BTC that is equivalent to 90% of the cost of your coffee. So, an example: If you choose the $10 option, and $10 is worth 10mBTC (ex…

  12. comment
    Comment #7384055

    Someone in Vietnam released software to the world, therefore this is a story about American culture. That's just how Americans think. It's also necessarily about modern American cu…

  13. comment
    Comment #7230482

    This headline is sickening. Comal County criminal prosecutors ruined this man's life.

  14. comment
    Comment #7216217

    PS1="$(hr -) $PS1" Beautiful. Now I need a way to make this happen in SBT too.

  15. comment
    Comment #7216152

    How about a photosynthetic process that makes graphite from atmospheric carbon dioxide?

  16. comment
    Comment #7169548

    "write a program that copies standard input to standard output": org.apache.commons.io.IOUtils.copyLarge(System.in, System.out); I despise the Java language as much as the next dev…

  17. comment
    Comment #7041523

    The Wikimedia Foundation isn't a government agency, if that's what you're asking.

  18. comment
    Comment #6294192

    > Simply snail-mail a 128 bit one-time key pad to every voter. Cool. Who do you think would pay me the most for my pad?

  19. comment
    Comment #6153081

    So... we've determined that you violated the law, but we're choosing not to enforce the law. This what the kids call a bad code smell, right?

  20. comment
    Comment #6125730

    The code that the functional programmer produces is a more direct expression of the programmer's thoughts. The author thinks "I want to map this list using this transformation" (al…

  21. comment
    Comment #6125686

    I don't think recursion itself is difficult for most people to learn. The hard part is translating recursive functions into procedures. The imperative coding is what makes it confu…

  22. comment
    Comment #6088044

    > Personally, I think imperative code is more intuitive. It matches how people think of operational behaviors. The masses agree with you, apparently. That's why they sit in their c…

  23. comment
    Comment #6088002

    What is complex about Scala's pattern matching? x matches the value x, x:A matches instances of A, A(x) matches if A.unapply(x) evaluates to a Some, and _ matches anything. Erasure…