Live data from Hacker News

Viewing profile — tmstieff

tmstieff

HN member
Joined
Wed, Jan 11, 2017, 3:24 PM UTC
HN karma
290
Public activity
23 items

About tmstieff

No profile information was provided.

Recent public activity

  1. comment
    Comment #47467578

    It does use React for rendering the terminal UI.

  2. comment
    Comment #47230376

    I have the same issue. It gives this very weird minor sense of public speaking anxiety where I almost feel the need to write down what I'm about to say, which negates the whole pur…

  3. comment
    Comment #43620446

    The easiest alternative is using a where clause and filtering by an ID range. Eg: "WHERE id between 1000 and 1200". But this introduces a ton of limitations with how you can sort a…

  4. comment
    Comment #36706024

    Firefox also started moving away from a shared memory model towards sandboxed tabs during that period, which had an effect on memory consumption.

  5. comment
    Comment #35493194

    Curious if you're referring to Maya the 3d application or something else?

  6. story
  7. comment
    Comment #31273310

    This seems like an outrageous statement on its face. They probably have React on their resume because that is where the job market has drifted. No one is getting hired these days, …

  8. comment
    Comment #31193111

    Good point, I immediately read it and replaced "role" with programmer since it was posted on HN.

  9. comment
    Comment #31192160

    Isn't the point of having a PM to bridge the gap between leadership that knows the domain of "it" and IT who knows how to implement general business needs onto a technical solution…

  10. comment
    Comment #30945198

    The article actually argues the opposite. Developers should move their focus to integration / "real-world" tests. The major summary bullet point being: "Aim for the highest level o…

  11. comment
    Comment #30358495

    I'm working on a codebase that evolved at the same pace as React, but without any thought for idiomatic principals. As a result, you have class-based components, purely functional …

  12. comment
    Comment #30006721

    I think I agree with you as well. Although it is hard for me to picture exactly how you've structured your dependency graph. In any case, extracting the business logic into some so…

  13. comment
    Comment #29406589

    I've tried this now on my 2019 Macbook pro, and my 2018 Thinkpad T480 running Linux. On Mac, I can't say I really noticed a difference. Also there were quite a few font rendering i…

  14. comment
    Comment #29240493

    SHA-1 collisions have been proven as an attack vector for a few years now. https://security.googleblog.com/2017/02/announcing-first-sha...

  15. story
    Ask HN: Alternative YouTube recommendation engine?

    The general consensus on HN seems to be that the Youtube recommendations are subpar. You can watch a seemingly benign video and suddenly Youtube assumes you are interested in going…

  16. comment
    Comment #25006311

    Anyone have production experience with Crystal? I know it's not 1.0 yet, but there are some fairly mature web frameworks available that make the language look pretty attractive.

  17. comment
    Comment #24919207

    Germany and Sweden are the top 2 most litigious countries in the world, so I guess perception is off.[1] The USA is still in the top 5 though. [1] https://www.academia.edu/35495485…

  18. story
  19. comment
    Comment #23756691

    I've been on a few projects now that attempted to implement most of these patterns wholesale. The idea is simple to grasp and implement with a small team, but it's been nearly impo…

  20. comment
    Comment #23641262

    The article mentions they had someone else sit in on the test rather than take it themselves.

  21. comment
    Comment #23498626

    Seems many commenters missed this statement. It's also troubling how common it is to hear assertions that async is king especially on projects where your future scale is unknown. B…

  22. story
  23. comment
    Comment #15049335

    The left hand side only reserves the memory, the right hand side actually initializes the object. A bit redundant I agree, but to the compiler it is two atomic operations.