Live data from Hacker News

Viewing profile — kfinley

kfinley

HN member
Joined
Sun, May 27, 2012, 7:55 PM UTC
HN karma
636
Public activity
51 items

About kfinley

No profile information was provided.

Recent public activity

  1. comment
    Comment #45612630

    Yes, most likely the restaurant employees. That's probably why they are starting with orders that are fulfilled by DoorDash employees. From the article > The service will begin wit…

  2. comment
    Comment #41812956

    I couldn't agree more. Out of curiosity, last year, I purchased some test strips to test my drinking water. The strips showed typical contaminates: arsenic, lead, copper etc. they …

  3. comment
    Comment #40639939

    Which browser are you using? I switched to Apple Passwords and have been using the official Chrome extension for a few months. It's not as seamless as some of the password manager …

  4. comment
    Comment #36688225

    > If any hedge funds are looking for analysts, I'm always open to offers... How would you invest based on this prediction?

  5. comment
    Comment #25066818

    > The problem is that you can’t use the 16” with an external display and the lid open without the fans spinning at full speed. I had the same problem, when connected to a USB-C mon…

  6. comment
    Comment #17271473

    Google announced, in December, that it would be opening an artificial intelligence centre in China. 1: https://www.bbc.com/news/business-42334583

  7. comment
  8. comment
    Comment #13618461

    It's possible to profit from increased volatility without knowing the direction of the move. http://www.investopedia.com/articles/active-trading/040515/h...

  9. comment
    Comment #13254052

    > "You pop it into a headset which has eye sensors on it, which enables the next iPhone to have a higher apparent frame rate and polygon count than a PC with a Nvidia 1080 card in …

  10. comment
    Comment #13016156

    > Does the 'fn' key force-change the touchbar to display F1-F12? Yes it does

  11. comment
    Comment #13016121

    I suspect we will see the share desktop experience extend to other devices. In an post release interview Jony Ive implied that the touch bar was the first step in a new paradigm. I…

  12. comment
  13. comment
    Comment #12517097

    That's a fair point. Kind of like adding a redux @connect in a child component. Edit: To the idiomatic point. The first thing that struct me when using React, was that instead of h…

  14. comment
    Comment #12517073

    You can still do nesting within a case, or add another case 'about-team': and add another {var} to your component. That's essentially what RR would do. React Router approach is pro…

  15. comment
    Comment #12511744

    Interesting change. If I understand correctly, basically you have a base component that updates fragments of the UI based on the route. const App = () => ( Hello World ) Couldn't w…

  16. story
  17. comment
    Comment #12235992

    Not that I've found.

  18. comment
    Comment #12229871

    > I wish I could revert to pre-tabs file behavior Adding the following to your User Settings should get you pretty close: { "workbench.editor.showTabs": false, "workbench.editor.en…

  19. comment
    Comment #12151918

    TypeScript 2 adds Easier Module Declarations[0]. So if a library doesn't have a type definition, you can silence errors by adding: declare module "some-module" Does that help? 0: h…

  20. comment
    Comment #11529434

    > 2.7 Apps that download code in any way or form will be rejected Is this an indication that things like CodePush[0] may be rejected in the future? 0: http://microsoft.github.io/co…

  21. story
  22. comment
    Comment #10354791

    https://github.com/vslinko/ripster

  23. story
  24. comment
    Comment #8729757

    FezVrasta - Nice work! I'm curious about your choice of license[0]. I've been considering the use of a non-commercial license for a project I'm working on. Would you mind discussin…

  25. comment
    Comment #8584047

    Yes, React components have a special `this.props.children` property [0]. Which works similarly to web components's . The current implementation of `LeftNav` doesn't allow for this,…