frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Postgres AT TIME ZONE 'UTC' does NOT do what you think it does

https://bookofrevenue.com/blog/6ab81e9a97a13f0001f7e4e1/postgres-at-time-zone-u-does-not-do-what-...
1•birdculture•53s ago•0 comments

Trying GPT-6 Sol with AI SDK Evaluation API

https://vercel.com/i/using-gpt-6-sol-with-ai-sdk-evaluation
1•flashbrew•6m ago•0 comments

Show HN: TanStack Start and TanStack AI Jev Integration

https://vercel.com/i/using-jev-in-tanstack-start-with-tanstack-ai
1•flashbrew•6m ago•0 comments

Another week, another data breach for Revolut customers

https://www.theregister.com/cyber-crime/2026/09/25/another-week-another-data-breach-for-revolut-c...
2•imalerba•8m ago•0 comments

Ask HN: What does your AI workflow look like?

1•tadziokas•9m ago•0 comments

The Importance of Human Knowledge in the AI Era

https://jonbehnken.substack.com/p/the-case-for-learning
1•greedywhale•12m ago•0 comments

Claude Isn't Allowed to Write Me Prose

https://blog.kvit.app/posts/agent-not-allowed-to-write-prose/
2•skolos•14m ago•0 comments

YouTube stores three auto-extracted frames for every video, and nobody uses them

https://github.com/InfinityLoop1308/PipePipeClient/pull/98
2•jrejaud•15m ago•0 comments

How AI Is Accelerating PCB Design and Prototyping

https://www.eetimes.com/how-ai-is-accelerating-pcb-design-and-prototyping/
1•giuliomagnifico•19m ago•0 comments

Poisoning a Go Cache

https://lukasschwab.me/blog/gen/poisoning-go-cache.html
2•ingve•23m ago•1 comments

Genius AI APı Anahtarı

1•Ayazefe•23m ago•0 comments

Makeraoke: Share your side project in a video between three and nine minutes

https://www.reddit.com/r/Makeraoke/
1•cs1996•23m ago•0 comments

Musk – Official Trailer (2026)

https://www.youtube.com/watch?v=-52sVAzXwLM
3•Betelbuddy•24m ago•0 comments

Sandbox-first AI coding harness

https://chock.ws/
1•rosscomputerguy•28m ago•0 comments

Show HN: Peekaboolean – image and jev-like typed questions in typed anwers out

https://github.com/bykof/peekaboolean
1•bykof•30m ago•0 comments

I Posed as a Problem Gambler. DraftKings Made Me a VIP

https://www.propublica.org/article/draftkings-sports-gambling-problem-vip-fanduel
5•theblazehen•30m ago•1 comments

Show HN: Afterlife Vault – a virtual dead man's switch

https://afterlife-vault.com
1•wmeter•31m ago•1 comments

Using Claude Code: Spending your effort

https://claude.dev/blog/spending-your-effort/
2•e12e•31m ago•0 comments

The year AGI happened, and some unhinged predictions

https://w.ouzu.im/aweb/unhinged
1•dsign•35m ago•0 comments

Show HN: LightCloud – A cloud console organised like file system

https://www.light-cloud.com/
2•yullius•35m ago•0 comments

From game physics to care robots (2023) [The Royal Society] [video]

https://www.youtube.com/watch?v=R1D9Ma4m9Q0
1•zeristor•38m ago•0 comments

How can you quikly tell if a technical article lacks firsthand experience?

2•sarra01•40m ago•0 comments

There are no borders or boundaries on our planet (2023)

https://stargazingguy.co.uk/2023/05/02/there-are-no-borders-or-boundaries-on-our-planet/
1•ssernikk•43m ago•0 comments

Rust for C# and .NET developers guide by Microsoft

https://microsoft.github.io/rust-for-dotnet-devs/latest/
2•AbuAssar•46m ago•0 comments

New Futex Syscalls for Helping Valve's ARM64 Gaming Ambitions

https://www.phoronix.com/news/FUTEX-Robust-List2-Syscalls
1•renehsz•47m ago•0 comments

GLiNER2.5-Decide and Jev: a decision model you run, and one you call

https://soniqo.audio/blog/gliner-decide-vs-jev
2•aufklarer•51m ago•0 comments

I Taught the Iliad to Chinese Teenagers (2021)

https://scholars-stage.org/how-i-taught-the-iliad-to-chinese-teenagers/
1•Tomte•54m ago•0 comments

Retrieval Practice: The Most Powerful Learning Strategy You're Not Using (2017)

https://www.cultofpedagogy.com/retrieval-practice/
2•Tomte•55m ago•0 comments

Show HN: Gigantua – A Black Hole in your Browser

https://claude.ai/artifact/XmWGFtQPgn8aJvU193Ksf8
3•robotsmakelove•57m ago•1 comments

A Maintainer in Residence: Scott Schafer for the Cargo Team

https://blog.rust-lang.org/2026/09/22/announcing-a-maintainer-in-residence-scott-schafer-for-the-...
1•hnisjafx40•1h ago•0 comments
Open in hackernews

The Business Case for Vanilla JavaScript

https://lewiscampbell.tech/blog/250430.html
6•LAC-Tech•1y ago

Comments

copypaper•1y ago
I would personally never touch a frontend not written with a framework. Sounds like a terrible developer experience--especially with a team. But from reading your article, it sounds like your issue is with React itself. I would recommend you try Svelte, it sounds like what you're looking for. It's as close to vanilla js as you can get with all the benefits of a framework.
LAC-Tech•1y ago
What benefits of a framework?

I think that's why I wrote this - I almost completely fail to see them.

proc0•1y ago
I think React caved in to wider adoption pressure to introduce abstractions that are intuitive on the surface level but are costly in terms of large scale complexity.

> It's "declarative" right up until you're debugging stateful hooks, or resorting to useRef, or trying to reason about when a "component" re-renders

Maybe they should have modularized the core library more and have these things be separate, because the core idea of a uniflow pattern with reactivity is good.

I think what happened, at least in frontend, is that the industry pushed away from having engineers do any design or architecting on the frontend. All of these high level patterns have been "outsourced" to frameworks, and the result usually is something that has trouble scaling and adjusting to whatever domain it's in.

LAC-Tech•1y ago
Maybe they should have modularized the core library more and have these things be separate, because the core idea of a uniflow pattern with reactivity is good.

That's what SolidJS does. IE the signal implementation is completely stand alone. I feel like it's better at doing what react purports to do then react is.

* think what happened, at least in frontend, is that the industry pushed away from having engineers do any design or architecting on the frontend. All of these high level patterns have been "outsourced" to frameworks*

I don't think react patterns are particularly high level, or do they save you from architecture. Whether it's vanilla JS or react, you still have to design.

proc0•1y ago
Oh I haven't looked at Solidjs yet, interesting will take a look. And yeah you may still need to design your application, but having hooks be something that is out-of-the-box pushes you into certain patterns and needs to be actively ignored to avoid its design influence. I've worked in large codebases where they make almost everything into hooks, and they start getting ridiculous, breaking composability but at the same time giving the illusion that you are making your code more modular.
GianFabien•1y ago
I write web front-ends for industrial embedded systems. So my experience might differ from business WebApps.

In my experience it requires a longer learning curve for the various frameworks than to simply learn the relevant Web API. My learning is very much JIT and over time I have built up a robust class library that gets my stuff done. When I get stuck ChatGPT suggests fixes that sometimes work and spare me from losing more hair.

LAC-Tech•1y ago
My experience too - part of what I found is how much about how react worked I'd forgotten. But the browser itself was easier to pick up.