Live data from Hacker News

Viewing profile — mgold

mgold

HN member
Joined
Sun, Mar 01, 2015, 9:15 PM UTC
HN karma
42
Public activity
21 items

About mgold

No profile information was provided.

Recent public activity

  1. comment
    Comment #11671794

    Apparently a human-readable homoiconic language is still an unsolved problem... In 0.17, commands and subscriptions mean that, not matter how deep you nest components, you can stil…

  2. comment
    Comment #11671784

    I thought it was a bug in the specification? (Older joke.)

  3. comment
    Comment #10845472

    I thought that you might be one of my college profs, but then realized that he would never apologize for a long post.

  4. comment
    Comment #10841113

    Yup, and I have a sneaking suspicion "Elm" is "Evan's ML", except EML sounded bad.

  5. comment
    Comment #10841098

    Most of these comments boil down to, "the food's awful and the portions are too small!". Someone wants better JS interop because Elm will be a small part of their stack; someone wa…

  6. comment
    Comment #10311436

    He actually has a pretty epic response to this. The essay he links to is the only non-asshole critique of feminism I know of. https://twitter.com/oldskirt/status/649200497291853824…

  7. comment
    Comment #9958500

    Morse code, alpha bravo charlie, ASCII... there's actually a long history of doing this. Maybe not one meant for easy of memorization and drawing though. Even Mark Whatney had to b…

  8. comment
    Comment #9809920

    I'll opine: git's sense of semantics seems to rival JavaScript's ("sure I'll add an int and a string"). I checkout branches but also checkout files to undo unstaged changes, but st…

  9. comment
    Comment #9808748

    Probably not in the next few years. However, this sort of thing is in the back of people's minds. There was a question of dropping the Int type a while back, and the objections (be…

  10. comment
  11. comment
    Comment #9808731

    If you mean parsing by machine, the solution is to have a separate machine-readable output (JSON perhaps). If you mean comprehension, that's a valid point that is being discussed e…

  12. comment
    Comment #9808726

    I have tried to talk Evan (Elm's creator) out of the first person, but as you can see he likes it. But I think you bring up an important point: for some people, being able to use t…

  13. comment
    Comment #9797785

    It wasn't immediately clear to me, but this library tracks both the state (e.g. "state1") and a payload, some arbitrary value. This already seems like two separate concerns? As for…

  14. comment
    Comment #9746534

    To quote Alan Cooper, you don't want to be first to market, you want to be best to market. Build something great and let your opponent make the painful first inroads.

  15. comment
    Comment #9733820

    What happens when you introduce a bug that isn't discovered for 6 months? What happens if you think of a better way to do something? What happens if you're working on something and…

  16. comment
    Comment #9733795

    Some of the arguments may seem plausible in theory, but as soon as I contemplate doing my 9-to-5 dev work without source control (specifically git)-- yeah, no, not happening.

  17. comment
    Comment #9655043

    It saves snapshots of you git history. So we have version control... for our version control? Slick.

  18. comment
    Comment #9618294

    It sure would be nice to have `--dry-run --verbose` to see exactly what it's going to do.

  19. comment
  20. comment
    Comment #9551628

    If someone thinks selectAll is inconsistent, they probably don't understand the central enter/update/exit pattern [1]. D3 is a powerful _drawing_ library and I've used it for total…

  21. comment
    Comment #9551546

    D3 has nested selections that let you handle cases like this. The data for a single element can be an array, and if that element is a div (HTML) or g (SVG) you can do another join …