frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

How Russia's nuclear-powered 'Skyfall' missile works

https://www.npr.org/2026/06/18/nx-s1-5843252/russia-nuclear-powered-missile-burevestnik
1•rolph•2m ago•0 comments

Rethinking Modularity in Ruby Applications

https://noteflakes.com/articles/2026-06-18-syntropy-modules
1•ciconia•2m ago•0 comments

Sshto v1.01

https://github.com/vaniacer/sshto
1•vaniac•3m ago•1 comments

Brexit cost 6% of UK economy, Bank of England company data suggests

https://www.bbc.com/news/articles/cvg75npqkq4o
1•johnbarron•4m ago•0 comments

Developer APIs for parsing and tailoring CVS

1•engspeedy•10m ago•1 comments

Bubble Sort Game

https://patrickgh3.itch.io/bubble-sort
1•memalign•12m ago•0 comments

Show HN: Tracking iCal feed latency across O365/Google/Apple

https://sync.timetastic.co.uk/
1•turkeywelder•13m ago•0 comments

Sorry, my software is better with agents

https://macro.land/blog/sorry-my-software-is-better-with-agents/
2•priyadarshy•17m ago•0 comments

Plotnine

https://plotnine.org/
1•tosh•18m ago•0 comments

Hey, N00B, We Didn't Hire You to Complete Tasks

https://newsletter.kentbeck.com/p/hey-n00b-we-didnt-hire-you-to-complete
2•RebootStr•19m ago•0 comments

Show HN: The Deconstructed VS Code

https://github.com/dipankar/dscode
1•dipankarsarkar•23m ago•0 comments

A coin toss isn't random. Maybe our choices aren't either

https://gt.ms/blog/free-will/?v=2
3•geetuu•23m ago•0 comments

PageToMD – A CLI tool to turn web pages into clean Markdown for AI agents

https://github.com/gs202/PageToMD
1•gs202•24m ago•0 comments

Vibe Coding at Scale? Engineering Strikes Back

https://blog.owulveryck.info/2026/06/19/vibe-coding-at-scale-engineering-strikes-back.html
1•owulveryck•24m ago•0 comments

Switching AI Tools Mid-Sprint Cost Us a Day (and What We Learned) – Week 6 R

https://theaileverageweekly.com/posts/how-switching-ai-tools-mid-sprint-cost-us-a-day-and-what-we...
1•talvardi7•24m ago•0 comments

Gistpreview.github.io: Gist HTML Preview

https://github.com/gistpreview/gistpreview.github.io
1•gurjeet•24m ago•0 comments

LUKS suspend failed to wipe volume encryption key from memory since Linux 6.9

https://mathstodon.xyz/@iblech/116769502749142438
2•microtonal•28m ago•0 comments

Why local AI – and why it matters

https://nexusfoundation.ngo/why-local-ai
2•kris_osiadacz•37m ago•0 comments

Braess's Paradox

https://en.wikipedia.org/wiki/Braess%27s_paradox
1•the-mitr•37m ago•0 comments

Bobby Prince's Doom (1993) Soundtrack Inducted into Library of Congress

https://playday.one/2026/05/14/bobby-princes-doom-soundtrack-inducted-into-library-of-congress/
2•nomilk•39m ago•0 comments

Phoebus Cartel

https://en.wikipedia.org/wiki/Phoebus_cartel
1•thunderbong•39m ago•0 comments

Build your own vulnerability harness

https://blog.cloudflare.com/build-your-own-vulnerability-harness/
2•Gipsyfine•40m ago•0 comments

Finding the Link Uber Missed: How to Connect AI Code Spend to Business Value

https://medium.com/@navigara/you-cant-measure-roi-on-ai-coding-tools-if-you-never-measured-engine...
1•alienll•43m ago•0 comments

Show HN: NetSentinel – a local network security scanner and connectivity monitor

https://github.com/ossianericson/netsentinel
2•ossianericson•43m ago•0 comments

BookMarkr – Local first visually organized bookmark Chrome extension

https://chromewebstore.google.com/detail/bookmarkr-—-visual-bookma/lianafemkbankodapdaokiefoffi...
1•mnomansd•44m ago•0 comments

Unreal deprecrates Blueprints, their visual programming language in UE6.1

https://xcancel.com/unrealengine/status/2067661808903577646
1•Signez•45m ago•0 comments

Lakehouse//RT: Real-Time Performance on a Unified Lakehouse

https://www.databricks.com/blog/introducing-lakehousert-real-time-performance-unified-lakehouse
1•throwaw12•45m ago•0 comments

How to Drive an LLM

https://home.robusta.dev/blog/how-to-drive-an-llm
1•nyellin•45m ago•0 comments

What 'Getting Your Hands Dirty' Means at LLM-Era

https://carette.xyz/posts/the_mud_and_the_mind/
6•maarcel93•52m ago•1 comments

The new HTTP QUERY method explained

https://kreya.app/blog/new-http-query-method-explained/
3•CommonGuy•53m 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.