Viewing profile — tisc
tisc
HN member- Joined
- Thu, Nov 21, 2019, 9:00 AM UTC
- HN karma
- 54
- Public activity
- 14 items
- HN profile
- View on Hacker News ↗
About tisc
No profile information was provided.
Recent public activity
-
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.
-
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…
-
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...
-
comment
Comment #42875760
Maybe they use AI to monitor traffic, but it is still learning :)
-
comment
Comment #42316683
Because everytime I perform NPM operations I'm slapped in the face with `This version is no longer supported.`.
-
comment
Comment #42308329
Eslint version 9 has been causing some headaches, as it broke all existing plugins.
-
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. …
-
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 :)
-
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 …
-
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…
-
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…
-
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…
-
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…
-
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…