Viewing profile — heifer2822
heifer2822
HN member- Joined
- Fri, Nov 27, 2015, 6:53 PM UTC
- HN karma
- 53
- Public activity
- 16 items
- HN profile
- View on Hacker News ↗
About heifer2822
No profile information was provided.
Recent public activity
-
comment
Comment #17268089
pretty simplistic and bad take
-
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…
-
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.
-
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.
-
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.
-
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…
- comment
-
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…
-
comment
Comment #14881857
I think, as a starting place, Apple's Swift Programming Guide is hard to beat
- comment
-
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 …
-
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…
-
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…
-
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.
-
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…
-
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.