HackerTrans
TopNewTrendsCommentsPastAskShowJobs

jazzypants

680 karmajoined 4 năm trước
I'm a web developer.

Submissions

Reddit's home screen now forces a "for you" feed that cannot be turned off

old.reddit.com
6 points·by jazzypants·tháng trước·3 comments

"No REST for Cap'n Web" – Kenton Varda at Node Congress 2026

youtube.com
2 points·by jazzypants·2 tháng trước·0 comments

comments

jazzypants
·3 ngày trước·discuss
Do you think that all ziglings refuse to write idiomatic code, have public fights with the language maintainers, and then write giant blog posts about how they're ditching the language because it just isn't good enough?
jazzypants
·3 ngày trước·discuss
Ad Hominem is only a fallacy when the speaker's personal qualities are irrelevant to the topic at hand. When one man has unilateral control over a project, you have to consider it as an extension of their personality.
jazzypants
·4 ngày trước·discuss
It's still useful for things like onboarding the fourth person to your start-up. Good types get you half the way to good documentation.
jazzypants
·10 ngày trước·discuss
"identity politics" is such a lame way of saying "having a conscience".
jazzypants
·11 ngày trước·discuss
Do you read it on your phone? This website's (lack of a) mobile design makes it really hard to read. If I don't use my mobile app of choice (Harmonic), I have to zoom in really close and scroll all over the place. It's really annoying. The font is way too small, and it's hard-coded.
jazzypants
·16 ngày trước·discuss
Poe's law strikes again.

https://en.wikipedia.org/wiki/Poe's_law
jazzypants
·16 ngày trước·discuss
We can only hope she wins her GitHub rate limit appeal soon.

This was hilarious. I didn't know that I needed AI slop satire in my life.
jazzypants
·19 ngày trước·discuss
Because Microsoft Word doesn't write blog posts for you

Edit: I just realized that Microsoft Word probably does do that now, and I hate it.
jazzypants
·19 ngày trước·discuss
No offense, but this sentiment is diluted by commits like this:

https://github.com/nfcampos/loop-dev/commit/e28b1fce0078e605...

I assume that GP was just saying that they would prefer to read these thoughts written by a human author (preferably you). I agree.
jazzypants
·19 ngày trước·discuss
I think it's insane to suggest that software developers should ever get to the point where they don't even comprehend their code.

Before someone else says it, no I don't read the assembly code that is produced by my compilers. However, I can generally predict what kind of assembly will be produced, and the result is deterministic unlike LLMs. It seems like most vibe coders scoff at the idea of even looking at the code, and it just seems untenable to me when we're working with (usually correct) stochastic parrots.
jazzypants
·22 ngày trước·discuss
1995-1999. Strict equality was introduced in ES3 which was first released in December 1999.

https://www-archive.mozilla.org/js/language/e262-3.pdf
jazzypants
·25 ngày trước·discuss
Yes, exactly! Now, it's all built into the platform.

The first WAI-ARIA specification was published in 2014 [0]. HTML5 became an official W3C recommendation that same year [1]. It includes semantic elements like <nav> and <main> that have ARIA roles built in [2]. The Wikipedia page for WAI-ARIA includes the "five rules of ARIA" where the first rule is "Don’t use ARIA if you can achieve the same semantics with a native HTML element or attribute" [3].

You almost always still need some extra ARIA attributes to be fully accessible, but it's much less extra work than most other platforms and it works (mostly) the same on every operating system (including phones). You don't have to build anything yourself-- you just have to know which attributes to use. Just ask any blind people you know whether they prefer using a website or a native app.

[0] https://www.w3.org/TR/2014/REC-wai-aria-20140320/Overview.ht...

[1] https://www.w3.org/news/2014/html5-is-a-w3c-recommendation/

[2] https://www.w3.org/WAI/WCAG22/Techniques/html/H101

[3] https://en.wikipedia.org/wiki/WAI-ARIA
jazzypants
·25 ngày trước·discuss
This is one of the reasons why web technology is so popular and persistent. You get almost all of that for free as long as you use semantic HTML.
jazzypants
·25 ngày trước·discuss
They think that AI is so perfect and wonderful that they didn't even do a "find the security bugs" prompt on their crummy vibe coded website.
jazzypants
·25 ngày trước·discuss
I think we're doing just fine considering how they have all the resources and every possible advantage, but we're still seeing headlines like this.
jazzypants
·25 ngày trước·discuss
The only one that's not entirely true is the water usage concern. The vast amount of water usage is non-consumptive, and you can even use reclaimed wastewater. To be clear, I'm on your side-- I just want to make sure that we don't give our opponents any ammunition by spouting misinformation. I'm happy to be proven wrong on this. https://blog.andymasley.com/p/the-ai-water-issue-is-fake
jazzypants
·25 ngày trước·discuss
You think this is the media's fault? The media didn't force Altman and Amodei to tell everyone they were about to lose their jobs. The media didn't force Microsoft and Google to push half-cocked AI features into all of their products. The media didn't concoct secretive deals with municipalities so that residents didn't know data centers were being built in their neighborhoods until it was too late.

The AI industry has caused every single issue that it faces. It's absurd that you can't see this. "The media" barely even means anything anymore as the current landscape is so fractured. Who are you even talking about? Ed Zitron?
jazzypants
·tháng trước·discuss
Fair enough. Thank you for sating my curiosity. I'm not quite as optimistic as you, but I'm excited at the potential to be proven wrong. :)
jazzypants
·tháng trước·discuss
Are you ever reading the code? What do you do when the LLM can't fix a bug? Do you not wish you had a more intimate first-hand knowledge of the code when fixing things yourself?

Please don't tell me that never happens-- I've had one just in the last week and I use both OpenAI and Anthropic foundation models.
jazzypants
·tháng trước·discuss
How would you detect the presence of bugs in this scenario? How would you make sure the LLM isn't adding yet another useless, redundant function to the code base? Even if there isn't a bug in this PR, do you not want to be familiar with the actual shape of the code in case you need to dig through it while bug hunting later?

Every time I try to take a hands-off approach to the code like this, I come to regret it later. The code ends up bloated and labyrinthine. When I let it grow unabated, it becomes gradually more difficult for the LLM to understand the intended structure as the project becomes too big for the model to keep the whole thing in its context.