frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

How antisemitism is sweeping California – disguised as 'social justice'

https://nypost.com/2026/05/07/opinion/how-antisemitism-is-sweeping-california/
1•myth_drannon•1m ago•0 comments

Show HN: Sigmashake Desktop – AI Coding Agent Guardrails

https://sigmashake.com/desktop
1•cavalrytactics•3m ago•0 comments

Why Everyone's Picking Up a PSP Again in 2026

https://gardinerbryant.com/psp-in-2026/
1•Kate0CoolLibby•6m ago•0 comments

America is experiencing a productivity miracle

https://www.economist.com/finance-and-economics/2026/05/11/america-is-experiencing-a-productivity...
2•simonpure•9m ago•0 comments

Software Internals Book Club

https://eatonphil.com/bookclub.html
1•aragonite•11m ago•0 comments

Fake building: Claude wrote 3k lines instead of import pywikibot

https://fireflysentinel.github.io/posts/fake-building-claude-3000-lines/
1•firef1y1203•17m ago•0 comments

Notes from inside China's AI labs

https://www.interconnects.ai/p/notes-from-inside-chinas-ai-labs
1•gmays•19m ago•0 comments

Mona Lisa's Identity Established Beyond Doubt (2008)

https://www.uni-heidelberg.de/press/news/press552e.html
1•thunderbong•20m ago•0 comments

Microsoft fires head of Israeli subsidiary over surveillance of Palestinians

https://www.pcgamer.com/gaming-industry/microsoft-fires-head-of-israeli-subsidiary-and-other-mana...
2•donohoe•20m ago•0 comments

Floci: Light, fluffy, and always free – The AWS Local Emulator alternative

https://github.com/floci-io/floci
1•linkdd•20m ago•0 comments

A consistent pattern of lying': trial exposes what insiders think of Sam Altman

https://www.theguardian.com/us-news/2026/may/11/musk-v-openai-altman-trial
2•andsoitis•21m ago•0 comments

Instructure Security Incident Update

https://www.instructure.com/incident_update
2•danso•30m ago•2 comments

Vocal Mirror voice self-analysis tool: Talk to record, Quiet to Listen

https://danverbraganza.com/tools/vocal-mirror
1•nvader•31m ago•0 comments

Richard Bartle's Academic Papers on MUDs

https://mud.co.uk/richard/papers.htm
1•mindcrime•33m ago•0 comments

Show HN: Wispr Flow but free, 100% on-device, and open source (macOS)

https://digimata.github.io/parrot/
1•dremnik•34m ago•0 comments

Cisco CPO predicts AI will have built majority of their products by end of 2027

https://www.sdxcentral.com/analysis/cisco-cpo-predicts-ai-will-have-built-majority-of-the-vendors...
3•oavioklein•40m ago•0 comments

Ask HN: How to get started in electronic music

3•A_Random_Nerd•44m ago•3 comments

DESI Completes Planned 3D Map of the Universe and Continues Exploring

https://noirlab.edu/public/news/noirlab2610/
1•mooreds•46m ago•0 comments

Optimization of Elevator Standby Scheduling Strategy in Smart Buildings

https://www.mdpi.com/2571-5577/8/5/132
2•swq115•50m ago•1 comments

Police shut down reboot of Crimenetwork marketplace, arrest admin

https://www.bleepingcomputer.com/news/security/police-shut-down-reboot-of-crimenetwork-marketplac...
3•billybuckwheat•50m ago•0 comments

How do the most prolific people produce so much? (2023)

https://www.commonreader.co.uk/p/how-do-the-most-prolific-people-produce
1•herbertl•51m ago•0 comments

METR can barely measure Claude Mythos – 50% task horizon now exceeds 16 hours

https://hugonomy.com/news.html
1•GlyphWeaver_a•52m ago•1 comments

A paid JSON Schema validation API using x402 micropayments

https://github.com/garyedgington/project_x402
1•garyedgington•54m ago•0 comments

Film Cue – a Sushi Go-style card game about making movies

https://filmcuegame.com/
1•tinch•1h ago•0 comments

Show HN: Open-source GEO auditor (no signup)

https://www.freeaiseoaudit.com/
2•ICodeSometimes•1h ago•0 comments

Show HN: Personal Trainer – Lift, share plans, and rank with friends

https://mobile-squad.com/#personal-trainer
3•erwanalliaume•1h ago•0 comments

The Morse Code Hack That Made an AI Agent Spend $200k [video]

https://www.youtube.com/watch?v=UQ4pSVS_mN0
1•CharlesW•1h ago•1 comments

AI vs. Open Source, Part 1: The Empty Grant

https://srikanth.sastry.name/ai-vs-open-source-the-empty-grant/
1•srikanthsastry•1h ago•0 comments

A faithful LLM-wiki implementation with Wikipedia-style web browsing

https://github.com/hzw1199/CyberMe-LLM-Wiki
1•hzw1199•1h ago•1 comments

What were scanners like in the 80s? – 1988 IBM PageScanner 3119 [video]

https://www.youtube.com/watch?v=IhMzwISbIAo
2•CharlesW•1h ago•1 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.