Live data from Hacker News

Viewing profile — jedwards1211

jedwards1211

HN member
Joined
Tue, May 19, 2015, 1:22 AM UTC
HN karma
31
Public activity
46 items

About jedwards1211

No profile information was provided.

Recent public activity

  1. comment
    Comment #47656590

    The streams API exists on the FE, you can pipe an upload or download through a TransformStream to monitor progress

  2. comment
    Comment #46926662

    The other thing that's dumb about this is frameworks are usually consolidating repetitive boilerplate so it's going to cost a lot more tokens for an AI to inline everything a frame…

  3. comment
    Comment #46774285

    I know what you mean, but from a physics perspective, no, it just takes force to move mass. More mass will generate more downward force due to gravity, and more force in other dire…

  4. comment
    Comment #46724238

    for example, I got fed up with the old form library we were using because it wasn't capable of checking field names/paths and field value types at compile time and I kept having un…

  5. comment
    Comment #46724159

    Some of the biggest improvements I've made in the clarity and typesafety of the code I write came from seeing the weak points while slogging through writing code, and choosing or w…

  6. comment
    Comment #46654937

    I’ve VNCed into CI to debug selenium tests failing because of platform font and scrollbar rendering. I never really thought about doing that locally in a docker container, but it d…

  7. comment
    Comment #46499303

    The people who love writing code were the ones who created the languages and frameworks that make it even possible for an LLM to cobble something together for you. There is tons of…

  8. comment
    Comment #46499158

    I think it’s easier to manage full-stack development as a solo developer now even without AI. Now TypeScript catches a lot of my mistakes before they reach runtime. Now I have good…

  9. comment
    Comment #46498987

    I don’t think it’s a good idea to require an icon for everything, some actions are hard to depict with an icon. But on the other hand, I think 95% of the icons in the first menu in…

  10. comment
    Comment #46498876

    Yeah in Typescript I rarely run into null deference errors at runtime either. It can happen if you unsafely cast the type of values coming into your code, but if you runtime valida…

  11. comment
    Comment #46498754

    After using TypeScript I see userland Maybe types as a workaround for a language design flaw. When the builtin type system allows you to declare nullable and non-nullable reference…

  12. comment
    Comment #45651486

    Stack-based programming may be simple but it doesn’t seem like it would be easy to read and understand for large-scale programs at all.

  13. comment
    Comment #44988798

    There’s been a lot of criticism that Koko’s language abilities were overblown and her expressions were overinterpreted as well.

  14. comment
    Comment #44805550

    I think it’s mainly because they struggled to get consensus on which syntax to go with for pipelines, since people were divided into three different camps. I wish they would just s…

  15. comment
    Comment #44781902

    You’re shooting yourself in the foot if you put naked fetch calls all over the place in your own client SDK though. Or at least going to extra trouble for no benefit

  16. comment
    Comment #44781888

    What is a validation quirk that would happen when using server side Zod schemas that somehow doesn’t happen with a codegened client?

  17. comment
    Comment #44781851

    The schema definition is more efficient than writing input validation from scratch anyway so it’s completely win/win unless you want to throw caution to the wind and not do any val…

  18. comment
    Comment #44781843

    This has been the case for quite awhile, most of the things in this article aren’t brand new

  19. comment
    Comment #44578817

    Oof. Now I’m looking into using an extension someone wrote to publish to Redis straight from Postgres, as a replacement for NOTIFY statements in triggers. Kind of a mess but any ot…

  20. comment
    Comment #44514809

    I think the pain of explaining to the LLM what I want is what's kept me from using AI at all so far

  21. comment
    Comment #44503941

    It's the new form of giving into the customer, lol

  22. comment
    Comment #43562188

    simplicity and ease of use is a pretty compelling feature to a lot of people, if not you

  23. comment
    Comment #43099747

    I don’t think there’s anything in ISO 8601 pertaining to integers that represent the number of years since some specific year though. ISO 8601 prescribes string representations, no…

  24. comment
    Comment #43099691

    The original post on X completely misinterpreted this to mean that ISO 8601 established days since 1875 as a standard date storage format

  25. comment
    Comment #43099610

    I’m still kind of surprised they would store days since 1800, but it makes a lot more sense than 1875. At least with 1800 the last two digits are the same, so debugging it is somew…