Live data from Hacker News

Viewing profile — heifer2822

heifer2822

HN member
Joined
Fri, Nov 27, 2015, 6:53 PM UTC
HN karma
53
Public activity
16 items

About heifer2822

No profile information was provided.

Recent public activity

  1. comment
    Comment #17268089

    pretty simplistic and bad take

  2. comment
    Comment #16362968

    I don't think it's comparable to Amazon's mark-up. The alternative to Amazon is walmart.com, ebay.com, etc., all of which can be directly compared. Instacart provides a delivery se…

  3. comment
    Comment #15697156

    If you remove the government backing you'll see more of a divide on the socioeconomics of who gets to go to college and who is too risky to lend to.

  4. comment
    Comment #15539033

    I think button touches aren't triggered until animations finish so if you do 1 + 2 + 3 real fast, the second "+" won't register.

  5. comment
    Comment #15241306

    Yeah, I tried that advice yesterday and none of the links work. They just give some error after you fill them out.

  6. comment
    Comment #14981492

    The utility is that it's a trust-less transfer of value between two parties. Essentially, it's like being able to send cash, anonymously if you chose, to someone else, without an i…

  7. comment
  8. comment
    Comment #14881953

    I agree but Swift is a new enough language that I'm not sure such a resource exists yet. When I learned Swift I just skimmed through the parts that weren't interesting and that wor…

  9. comment
    Comment #14881857

    I think, as a starting place, Apple's Swift Programming Guide is hard to beat

  10. comment
  11. comment
    Comment #14696911

    I'm not an expert on this but I think the point was market cap is the value of all outstanding shares. Tesla raised money through venture capital while GM raised money by going to …

  12. comment
    Comment #14665736

    It's TDD. Just because the whole app wasn't developed with TDD doesn't mean you can't test drive a bug fix. There's a bug, you write a test, "this bug shouldn't exist", that test c…

  13. comment
    Comment #14664364

    I think TDD helps or doesn't help depending on the circumstances. The problem is the people who claim there's One True Way. For instance, if you were working on a big app and there…

  14. comment
    Comment #14432853

    I think they said the product decision was made primarily to prevent abuse. I don't think a cookie could stop a sophisticated abuser.

  15. comment
    Comment #14373874

    selection?.organization?.owner is an optional value, meaning it might be nil/null. That "if let" basically says if it's not nil to assign its value to "person" and execute the bloc…

  16. comment
    Comment #10638402

    checkout Koa to see a great use case of generators. By yielding to asychronous code (instead of callbacks) you can write JS that looks like it's synchronous.