frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Political Neutrality Benchmark of popular AI models

https://neutralityproject.org/results.html
1•ryzvonusef•6m ago•0 comments

Short Reflection on being Offline for 24 hours

https://lewiscampbell.tech/blog/260712.html
2•LAC-Tech•15m ago•0 comments

xs: Concatenative array language inspired by kdb+/q in OCaml

https://cryptm.org/xs/
2•tosh•15m ago•0 comments

Edge Password Bulk Manager

https://github.com/marinfrankovic/EdgePasswordManager
2•taubek•17m ago•0 comments

NetBSD as a Desktop: A Nostalgic '90s Experience

https://www.howtogeek.com/i-tried-netbsd-as-a-desktop-and-it-felt-like-stepping-into-the-90s-in-a...
2•birdculture•21m ago•0 comments

Teleflow: A local-first teleprompter and selfie recorder for creators

https://getteleflow.com
2•63labs•22m ago•0 comments

Show HN: LifePath – See what Einstein was doing at your exact age

https://thelifepaths.com/
2•pro_methe5•24m ago•2 comments

Forget "Fat" Models. The Future Is Narrow

https://adlrocha.substack.com/p/adlrocha-forget-fat-models-the-future
2•adlrocha•26m ago•0 comments

Show HN: InLie – See manipulation tactics in political videos, live

https://chromewebstore.google.com/detail/inlie-—-political-manipul/oajemdmhhgpifbdncldjappndcpe...
3•ivan_holovach•31m ago•0 comments

I Built a WordPress Plugin Nobody Asked For. Here's Why –. and How

https://notes.nagdy.me/2026/07/built-wordpress-plugin-nobody-asked-for-heres-why-and-how/
2•taubek•31m ago•0 comments

Stop Getting 'Good' at ChatGPT (2024)

https://hitsubscribe.com/surviving-the-great-commoditizer-stop-getting-good-at-chatgpt/
2•LAC-Tech•33m ago•0 comments

Atomic Physics in Pure Anglo-Saxon

https://www.ling.upenn.edu/~beatrice/110/docs/uncleftish-beholding.html
2•xelxebar•34m ago•0 comments

Show HN: Zero Trust Boundary for Agents

https://github.com/Open-AGS/attestor
3•Oxlamarr•34m ago•0 comments

Senator Lindsey Graham, Republican of South Carolina, Dies at 71

https://www.nytimes.com/2026/07/12/us/politics/lindsey-graham-dead.html
5•josefrichter•36m ago•2 comments

Moving Averages (2022)

https://gregorygundersen.com/blog/2022/06/04/moving-averages/
2•tosh•38m ago•0 comments

Lame 4.0 Released

https://sourceforge.net/p/lame/mailman/message/59357706/
2•robin_reala•40m ago•0 comments

Intro to Multiplicative Calculus [video]

https://www.youtube.com/watch?v=O1ds53ADmOU
1•soupspaces•45m ago•0 comments

'I'm not a programmer' anymore: Linus Torvalds on the only two tools he uses now

https://www.zdnet.com/article/open-source-summit-linus-torvalds/
1•makerdiety•46m ago•1 comments

Unify AI Horn alternative using ESP32, WizNet 5500, Poe and a Ti Amp

https://www.hackster.io/c_m_cooper/announce-for-unify-e9c652
1•cromka•48m ago•0 comments

Show HN: Inkfold – workspace across multiple AI providers with shared memory

https://www.inkfold.app/
1•hannan2•50m ago•0 comments

Why Mechanical Sympathy? (2011)

https://mechanical-sympathy.blogspot.com/2011/07/why-mechanical-sympathy.html
1•tosh•54m ago•0 comments

Word Count Benchmarks for Websites and Email

https://medium.com/@thesuperrepemail/word-count-benchmarks-for-websites-and-email-d3a7eb6bbea8
2•rajkverma123•54m ago•0 comments

List of theaters and campaigns of World War II

https://en.wikipedia.org/wiki/List_of_theaters_and_campaigns_of_World_War_II
2•zeristor•56m ago•0 comments

China unveils high-power microwave weapon arsenal with up to 100 gigawatts

https://www.scmp.com/news/china/science/article/3360000/100-gigawatts-china-unveils-its-high-powe...
2•msalsas•58m ago•0 comments

ESDM Is Now Open Source

https://docs.eventsourcingdb.io/blog/2026/07/13/esdm-is-now-open-source/
3•goloroden•1h ago•0 comments

T. rex fossil could become most expensive dinosaur ever sold

https://www.bbc.co.uk/news/articles/c4gykgyn1r4o
2•beardyw•1h ago•0 comments

24-zig

https://en.wikipedia.org/wiki/24-zig
1•Lammy•1h ago•0 comments

Show HN: PalExplorer – peer-to-peer file sharing with no central server

https://palexplorer.com
2•hannan2•1h ago•1 comments

The Caste of Intelligence and the Big Tech Blueprint

https://calcrecipe.com/en/workshop/5
1•wsdn•1h ago•0 comments

Agent Service – promptable AI agents with guardrails and downloadable packages

https://buy.stripe.com/5kQ5kEaUKd8w0qr0FKe3e00
1•mknight2690•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.