frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Fibonacci slop is out of control [video]

https://www.youtube.com/watch?v=LWJzirlCv8I
1•marvinborner•10s ago•0 comments

Show HN: Git-ownership – A tool to visualize code ownership over time from Git

https://github.com/MichaelMure/git-ownership
1•michaelmure•46s ago•0 comments

AI agent can't tell if what it reads is TRUE/FALSE. I built an API to fix that

https://thepolarisreport.com
1•JohnnyWestt•1m ago•1 comments

TV's TV (1987) & TV Games Encyclopedia (1988)

https://blog.gingerbeardman.com/2026/03/01/tvs-tv-1987-and-tv-games-encyclopedia-1988/
1•surprisetalk•2m ago•0 comments

Lent and Lisp

https://leancrew.com/all-this/2026/02/lent-and-lisp/
1•surprisetalk•2m ago•0 comments

Are GLP-1s the Cure for Drunken Rape Culture?

https://thefrontierpsychiatrists.substack.com/p/are-semaglutide-and-tirzepatide-the
1•surprisetalk•2m ago•0 comments

Speaking is quick, listening is slow

https://interconnected.org/home/2026/02/27/asymmetry
1•surprisetalk•2m ago•0 comments

Show HN: Reprompt – Score your AI coding prompts with NLP papers

https://github.com/reprompt-dev/reprompt
1•LuxBennu•2m ago•0 comments

Likely Crypto Airdrop Scam Targeting GitHub Contributors (OpenClaw / $Claw)

1•prakashqwerty•2m ago•0 comments

Tech boss uses AI and ChatGPT to make his dog a cancer vaccine

https://www.thestreet.com/health/tech-boss-uses-ai-and-chatgpt-to-make-his-dog-a-cancer-vaccine
1•notagoodidea•3m ago•0 comments

I Went Looking for the History of the Baguette

https://substack.com/profile/480273928-df/note/c-229594309
1•dbfhac•3m ago•0 comments

Show HN: AWSight: flat-rate AWS security checks mapped to CIS/NIST

1•kevincloudsec•4m ago•1 comments

We Have Learned Nothing

https://colossus.com/article/we-have-learned-nothing-startup-pundits/
1•jger15•6m ago•0 comments

Do we need social AI media without identity?

https://livingecho.eth.limo
1•sebklaey•7m ago•1 comments

Show HN: NoteCove – local-first notes&tasks, synced via your own cloud storage

https://notecove.io/
1•drewcsillag•7m ago•0 comments

It's Their Mona Lisa

https://ironicsans.ghost.io/its-t-mona-lisa/
1•ramimac•9m ago•0 comments

AI makes everything easy to build and impossible to sell

https://www.vita-ai.net/blogs/ai-creator-economy-disruption
2•jdeng•9m ago•0 comments

Pardoned for Fraud, a CEO Mounts His Comeback: 'We Can Trust You Now'

https://www.wsj.com/business/trevor-milton-pardon-nikola-trump-3163e19c
2•jgalt212•9m ago•1 comments

Monitoring Your Node.js App Health on Fly.io

https://blog.appsignal.com/2026/03/12/monitoring-your-node.js-app-health-on-fly-io.html
1•Liriel•10m ago•0 comments

Try not to get scammed while looking for work

https://trysound.io/try-not-to-get-scammed-while-looking-for-work/
1•birdculture•10m ago•0 comments

Show HN: Bricka – compare how news outlets frame the same story

https://www.getbricka.com/
1•notrlyEuropean•10m ago•1 comments

Show HN: Ironsmith – MTG card (de)compiler and multiplayer rules engine

https://chiplis.com/ironsmith/
1•nicolas-siplis•10m ago•0 comments

The Nitrogen Trap

https://shanakaanslemperera.substack.com/p/the-nitrogen-trap
1•DivingForGold•10m ago•1 comments

Social media is a defective product

https://www.newscientist.com/article/2519708-social-media-is-a-defective-product/
1•Brajeshwar•10m ago•0 comments

Claude-to-IM Skill: Bridge Claude Code / Codex to Telegram, Discord

1•funnycoding•10m ago•0 comments

Show HN: Precise AI Motion Control for Kling 3.0

1•naxtsass•11m ago•0 comments

A pixel-art office for your AI agents

https://agent-office.pixelandprocess.de/
1•pixelandprocess•14m ago•0 comments

Iran conflict turns shipping market into 'Wild West'

https://www.ft.com/content/69f0f8a4-2567-44f4-a7b7-6ce4c62ab0e2
1•alecco•14m ago•2 comments

Why Your OpenClaw's Browser Keeps Getting CAPTCHAs

https://bennhuang.com/posts/why-your-openclaws-browser-keeps-getting-captchas/
2•bennhuang•17m ago•0 comments

Increased Errors on Opus 4.6

https://status.claude.com/incidents/0dvq4gvy5f5f
1•zurfer•17m ago•0 comments
Open in hackernews

The Business Case for Vanilla JavaScript

https://lewiscampbell.tech/blog/250430.html
6•LAC-Tech•10mo ago

Comments

copypaper•10mo 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•10mo ago
What benefits of a framework?

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

proc0•10mo 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•10mo 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•10mo 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•10mo 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•10mo 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.