Live data from Hacker News

Viewing profile — mdc2161

mdc2161

HN member
Joined
Wed, Nov 27, 2013, 4:54 PM UTC
HN karma
71
Public activity
32 items

About mdc2161

No profile information was provided.

Recent public activity

  1. comment
    Comment #43295580

    It is very much not being turned into synchronous code. There are a lot of reasons to use async code, and they're all still valid with this pattern. For example: - the event loop i…

  2. comment
    Comment #43294138

    If the inner function is async, then its callers need to be async as well (see https://journal.stuffwithstuff.com/2015/02/01/what-color-is-... ). Important to note that unless the …

  3. comment
    Comment #43293242

    Strong agree based on my experience. Worth noting that this is easily enforceable with eslint: https://typescript-eslint.io/rules/return-await/

  4. comment
    Comment #43290759

    > Engineering productivity can’t be measured by tracking new features. Garbage in, garbage out. And as a measure of engineering productivity, story points/feature count/Jira are pr…

  5. story
  6. story
  7. comment
    Comment #27156633

    Apple's numbers here are a lot better than I expected! For comparison, many of the other FAANG companies fare much worse, and many of the smaller companies I saw when consulting an…

  8. comment
    Comment #27142628

    If he were a comedian, I believe he would be given more slack (assuming he changed the tenor of his jokes in the intervening years). As a manager, as someone responsible for others…

  9. comment
    Comment #27142478

    > People who express disdain towards the current social structure and disparage groups like white men get hired left and right Have you seen _any_ major tech company with close to …

  10. comment
    Comment #23237802

    Git push and pull on gitlab repos is down, returning 403s. This is breaking CI pipelines as well.

  11. story
  12. story
  13. comment
    Comment #18720578

    Seems similar to the guide-wheel system shown in the Boring Company's demo yesterday: https://www.wired.com/story/elon-musk-boring-company-car-fli... It seems the Boring Company ex…

  14. comment
    Comment #16968918

    SEEKING WORK | NYC or REMOTE | FULL-STACK, REACT NATIVE My preferred stack is Typescript, React Native, Node Koa, and PostgreSQL, but I'm productive in a number of other technologi…

  15. comment
    Comment #16967340

    26 years and 100% in Shanghai https://www.theatlantic.com/photo/2013/08/26-years-of-growth...

  16. story
  17. comment
    Comment #15899758

    It's definitely not just the top charts. Notably it has picked up when someone near me was playing Chopin on a piano as well as the occasional KPop tune my girlfriend is listening …

  18. comment
    Comment #14440906

    Personal anecdote: I didn't major in it because I had no idea I would enjoy it. I was fortunate that my engineering program had two semesters of Java. We spent more time hand drawi…

  19. comment
    Comment #14256232

    I ran into this a lot while crossing the border into Canada as a consultant, I presume it is similar crossing the border in the other direction. Internal business meetings did not …

  20. comment
    Comment #13831419

    Dealt with similar issues as both a host and a guest. The biggest problem to me is poor expectation setting. There are hosts that run BnB quality services, ones that run a mock-hot…

  21. comment
    Comment #13284962

    If you like whoaremyrepresentatives, we would love feedback on [Act On This]( https://www.actonthis.org/ ) as well. We don't go down to as local of a level yet, but are more focuse…

  22. comment
    Comment #13126805

    > Use SQL to corrupt their databases! Use alphabet to write this comment!

  23. comment
    Comment #11972832

    A few counter points: - hardware exclusives may be a better business model, but consumers (at least a vocal subset) clearly don't like them - Microsoft seems to be moving towards h…

  24. comment
    Comment #11489358

    It works great, too, for abstracting away fetch logic to middleware (as in this blog post) or to a shared module. And it is in the redux tutorials, but buried in the advanced secti…

  25. comment
    Comment #11489153

    I just started with redux-saga which uses ES6 generators to handle app control flow. After first impressions, I'd say it's worth a look if you're running into anything near as comp…