Live data from Hacker News

Viewing profile — drewgross

drewgross

HN member
Joined
Mon, Feb 02, 2015, 5:56 AM UTC
HN karma
84
Public activity
45 items

About drewgross

No profile information was provided.

Recent public activity

  1. comment
    Comment #48076700

    It doesn't provide 100% privacy from everyone, but it does provide privacy from the web service: A worker at a physical store checks your ID, and if it says you are 18, they hand y…

  2. comment
    Comment #47831188

    The problem with insider trading in prediction markets isn't the "prediction" part, it's the "markets" part. Once there is real money changing hands, then the purpose of the predic…

  3. comment
    Comment #46964158

    If 20 people take advantage of your buffer, then you are delayed by a distance of 20 vehicle-lengths + 20 follow-distances. This is about 1000 meters, a distance which you can trav…

  4. comment
    Comment #46327850

    My reading is that this was included in point #7, i.e. access to the customer service is conditional on identity verification.

  5. comment
    Comment #42346357

    On the contrary, sticking strictly to the lane markers when everyone else is blindly straddling lanes seems the worst of all worlds.

  6. comment
    Comment #36557744

    If you want to talk about bad faith arguments, calling the AI a "hellsystem" is showing your bias just a bit.

  7. comment
    Comment #32499239

    Hackers deliberately create strange circumstances, it's the primary way to find exploits. Any code that relies on a lack of strange circumstances is a time-bomb.

  8. comment
    Comment #32195501

    0.1-1% hire rate based on applicants, or based on candidates interviewed? 0.1% hire rate of candidates interviewed doesn't seem compatible with your described growth rate, even if …

  9. comment
    Comment #29229658

    Most people don't start shopping at grey/black markets in order to avoid paying sales tax. Most people don't pay their employees under the table to avoid paying income tax. Most pe…

  10. comment
    Comment #27837032

    Not OP, but a fan of Warp. > I - and I get the impression that's true for many developers - learned early to minimize the custom config. I get the exact opposite impression. My und…

  11. comment
    Comment #26864752

    Yes. Mozilla is a non-profit, pretty much everything they do is out of charity.

  12. comment
    Comment #26703787

    It's also entirely plausible that every apartment DOES have high VOC levels, but she is the only one reacting to them. Or that other people are also reacting to them and haven't fi…

  13. comment
    Comment #26667220

    The map also explicitly lists "number of homes that would be illegal", presumably for that reason. If you make it illegal to build anything smaller than a duplex, on a lot that cur…

  14. comment
    Comment #21001383

    We have a give and take, it's called a "protected class". It lists reasons you can't fire people and includes reasons like being black or being a woman. We can update the laws to p…

  15. comment
    Comment #19021312

    No, it's actually undecidable. C++ templated have been determined to be turing complete, which means that template instantiations can encode the halting problem. Determining whethe…

  16. comment
    Comment #13657983

    Calling race conditions the "most common" vulnerability seems like some pretty extreme hyperbole. What about SQL injection or XSS?

  17. comment
    Comment #13650809

    People continue to influence their children long after they stop reproducing. Genes that help you children have more children are selected for, so something like a gene that keeps …

  18. comment
    Comment #13441993

    What he means is that the deduction has been "priced in" to the price of homes/mortgages. In a similar story, a company I used to work for once offered employees a $x incentive to …

  19. comment
    Comment #13209808

    To most people, there is no difference between "your chances to to carry or possibly have or develop health issues" and a diagnosis. Sure, I suppose I can see some small technicali…

  20. comment
    Comment #13104022

    The difference is the JS has late binding. myObj.myMethod(); Has different semantics than var x = myObj.myMethod; x(); Which causes code like: myList.map(myObj.myMethod); to behave…

  21. comment
    Comment #12965223

    > I'm not counting dependencies... and some of those dependencies are really heavy, made worse because they load incompatible versions of things (e.g. Fbjs 0.13 vs fbjs 0.15). I th…

  22. comment
    Comment #12801458

    Because it blocks anything else from happening. If on a server, it will prevent that process from handling any requests until the file has been read, and in a browser-like environm…

  23. comment
    Comment #12334167

    No they are not. They are demanding money, but they don't care if you inherited it, worked for it, found it, etc.

  24. comment
    Comment #12167511

    If I tell you not to enter my house, and take no further steps to prevent you from entering my house, such as closing the door, it's still illegal for you to enter my house. If I t…

  25. comment
    Comment #12156213

    You can have weakly/dynamically typed functional languages (most lisps for example) just like you can have strongly/statically typed procedural or OO languages, like Fortran or C++…