frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

The OpenCode default session prompts for plan and edit

https://github.com/anomalyco/opencode/tree/dev/packages/opencode/src/session/prompt
1•walrus01•1m ago•0 comments

Marketing sucks when all you want to do is build."builder's dopamine"

https://www.reddit.com/r/SaaS/comments/1vblhwy/comment/p0z1i6b/
1•absolutedev•3m ago•0 comments

Future euro banknote design proposals

https://www.ecb.europa.eu/euro/banknotes/future_banknotes/html/design-proposals.en.html
1•austinallegro•3m ago•0 comments

Most speed readers break on Japanese, Chinese and Thai

https://www.readkinetic.com/blog/speed-reading-japanese-chinese-thai
1•SamuraiLion•11m ago•0 comments

Show HN: Lightweight, S3-compatible object storage server

https://vaults3.com/
1•open_source_new•12m ago•0 comments

Police in US are using the power of podcasts to crack unsolved murders

https://www.bbc.co.uk/news/articles/cpw9q0ekd9eo
1•zeristor•13m ago•0 comments

Churchill's Ersatz Meeting with Lincoln's Ghost (2018)

https://richardlangworth.com/lincolns-ghost-churchill-white-house
1•thunderbong•21m ago•0 comments

A migrant surge tests Spain's open policies

https://economist.com/europe/2026/07/31/a-migrant-surge-tests-spains-open-policies
20•andsoitis•24m ago•10 comments

Chinese AI Researchers Are Finding Their Voice on X

https://www.wired.com/story/chinese-ai-researchers-are-finding-their-voice-on-x/
4•joozio•25m ago•0 comments

A big win for Android interoperability

https://www.openhomefoundation.org/blog/a-big-win-for-android-interoperability/
1•saeedesmaili•32m ago•0 comments

Spain Regains Control of Enclave After Migrants Overrun It

https://www.wsj.com/world/europe/spain-rushes-to-control-border-after-tens-of-thousands-of-migran...
3•andsoitis•36m ago•0 comments

GPT has proved nonsofic groups are exist

https://twitter.com/iron_redux/status/2083360414037938609
3•demirbey05•36m ago•0 comments

OpenAI's work on Git for large repositories

https://openai-git-upstream.openai.chatgpt.site/
3•fratellobigio•46m ago•0 comments

Applied Electrodynamics (YC S26) A new kind of camera that can see through walls

https://twitter.com/bavser/status/2082868602240385526
2•max_zorin_phd•51m ago•1 comments

Fall of Civilisations: Majapahit – Empire of the Islands [video]

https://www.youtube.com/watch?v=01CZBhZM430
2•hunglee2•53m ago•0 comments

The Open Weight Revolution with Simon Willison

https://oxide-and-friends.transistor.fm/episodes/the-open-weight-revolution-with-simon-willison
1•tosh•55m ago•0 comments

SodaSlim Refreshing Wellness Drink

https://finance.yahoo.com/healthcare/articles/sodaslim-releases-updated-2026-highlights-122400710...
1•miskaash•58m ago•0 comments

My PM agent suggests firing my coding agents and creating a replacement

https://twitter.com/samliuhappy/status/2083437451729949004
4•Bobby_Liu•1h ago•1 comments

Migrating pynfra gh actions pipeline to dsci

https://gemini.google.com/share/2cb21bc5b39a
1•melezhik•1h ago•1 comments

Fast Rust Library for PDF text extraction

https://github.com/firecrawl/pdf-inspector
3•abrbhat•1h ago•0 comments

UPC grants InterDigital second 11-country injunction against Disney

https://ipfray.com/breaking-upc-grants-interdigital-second-11-country-injunction-against-disney/
1•ksec•1h ago•0 comments

A Ton of Space Junk Tumbles Unpredictably to Earth Every Week

https://www.nytimes.com/2026/07/31/world/asia/space-debris-falling-crashing-earth-risk.html
2•0in•1h ago•0 comments

The Screen Act Threatens Privacy Far Beyond Adult Websites

https://www.eff.org/deeplinks/2026/07/screen-act-threatens-privacy-far-beyond-adult-websites
4•mdp2021•1h ago•1 comments

NeverWrite, the ultimate agentic Markdown workspace

https://github.com/jsgrrchg/NeverWrite
1•jsgrrchg•1h ago•0 comments

What Happened to NeXT Computer? Why Steve Jobs' Failed Workstation Became macOS

https://www.youtube.com/watch?v=2mrwr21XkBc
2•cable2600•1h ago•1 comments

The Old Man and the App

https://zhenyi.gibber.blog/the-old-man-and-the-app
1•zhenyi•1h ago•0 comments

Dependency Cultures [video]

https://www.youtube.com/watch?v=E82ly38YEEQ
1•bobajeff•1h ago•0 comments

Show HN: TikTok Coin Calculator – viewer costs vs. creator earnings

https://coinvaluecalc.com/
1•zhonglinxin•1h ago•1 comments

Audio8 TTS Preview 0.6B

https://huggingface.co/Audio8/Audio8-TTS-Preview-0.6B-ONNX-INT4
1•MehrdadKhnzd•1h ago•0 comments

Stateless MCP has recaptured my interest

https://simonwillison.net/2026/Jul/31/stateless-mcp/
1•tosh•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.