Live data from Hacker News

Viewing profile — tisc

tisc

HN member
Joined
Thu, Nov 21, 2019, 9:00 AM UTC
HN karma
54
Public activity
14 items

About tisc

No profile information was provided.

Recent public activity

  1. comment
    Comment #47584443

    It does not _need_ it, that’s the thing. It has become a custom to import a dependency for a lot of things. Especially for JavaScript.

  2. comment
    Comment #46409255

    Why would you build a switch instead of relying on the user’s system settings? The only reason I can imagine is that your dark/light mode is not usable/readable so it forces the us…

  3. comment
    Comment #43119411

    Imo it’s not html, it’s browser vendors. There’s a decent specification for the `autocomplete` attribute: https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes...

  4. comment
    Comment #42875760

    Maybe they use AI to monitor traffic, but it is still learning :)

  5. comment
    Comment #42316683

    Because everytime I perform NPM operations I'm slapped in the face with `This version is no longer supported.`.

  6. comment
    Comment #42308329

    Eslint version 9 has been causing some headaches, as it broke all existing plugins.

  7. comment
    Comment #40104619

    > Have they switched of JavaScript? Because people still do. As an experiment I tend to disable JavaScript periodically. It is amazing how fast and responsive applications become. …

  8. comment
    Comment #39534965

    Costing money is one thing, but not throttling a queue consuming serverless function and effectively DDOSsing yourself is the true horror story working with serverless :)

  9. comment
    Comment #39426773

    I am curious what you - and with you more proponents of Tailwind in this thread - mean with “component” and “component framework”? I’m also Zen-garden age and with my very limited …

  10. comment
    Comment #38999570

    What strikes me about ChatGPT is the blatantly wrong answers it can give. I asked ChatGPT to solve a augmented matrix using gaussian elimination, and it failed in this straightforw…

  11. comment
    Comment #35825696

    > […] and is an issue with OAUTH This issue is not caused by OAuth, but by offering authentication via a third party. If you allow visitors to authenticate via a third party, you i…

  12. comment
    Comment #33385071

    I have been wondering about this, whether this is not simply a shift of the problem? Let’s assume we get into a world where we pay for open source. Who would we pay? The maintainer…

  13. comment
    Comment #32328930

    I've used Python, C#, Java, JavaScript and PHP, and in my experience Python is the most unpredictable of these languages. Just to name a few: - mutable default arguments - late bin…

  14. comment
    Comment #31050085

    I like to combine those: const RESEND_DELAY_MS = ONE_HOUR_IN_MS; Having the unit in the name saved me more than once and having non-contextual constants for sizes increases readabi…