frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

No semicolons needed: a survey of programming language syntaxes

https://terts.dev/blog/no-semicolons-needed/#lua
1•fanf2•1m ago•0 comments

Cursor Composer 2 is just Kimi K2.5 with RL

https://twitter.com/fynnso/status/2034706304875602030
1•mirzap•1m ago•0 comments

The Soul of a Pedicab Driver

https://www.sheldonbrown.com/pedicab.html
1•haritha-j•2m ago•0 comments

Chemical pollutants are rife across the oceans

https://www.nature.com/articles/d41586-026-00850-z
1•Brajeshwar•4m ago•0 comments

Norway's Consumer Council takes aim at enshittification

https://www.theregister.com/2026/03/06/forbrukerradet_aim_enshittification/
1•rbanffy•4m ago•0 comments

Electric plasma guided with ultrasonic fields

https://www.science.org/doi/full/10.1126/sciadv.adp0686
1•akshatjiwan•5m ago•0 comments

Show HN: Popoto – A Redis/Valkey ORM with Django-Like Syntax for Python

https://popoto.readthedocs.io/en/latest/
1•tomcounsell•9m ago•0 comments

O'Sullivan makes highest-ever break with historic 153

https://www.bbc.co.uk/sport/snooker/articles/cn4391l3lvxo
1•mellosouls•9m ago•1 comments

Mac OS X 25th Anniversary: The Foundation of Apple's Rise

https://www.goto10retro.com/p/mac-os-x-25th-anniversary-the-os
1•rbanffy•10m ago•0 comments

Show HN: Cybertt – Cybersecurity Tabletop

https://cybertt.xyz/
1•pluppen•13m ago•0 comments

Final Report of Grid Incident in Spain and Portugal on 28 April 2025 [pdf]

https://eepublicdownloads.blob.core.windows.net/public-cdn-container/clean-documents/Publications...
1•sam_lowry_•15m ago•1 comments

Show HN: ClawMUD – A persistent world where only AI agents play, humans spectate

https://clawmud.ai
1•allenhsutw•16m ago•0 comments

Things Fall Apart

https://en.wikipedia.org/wiki/Things_Fall_Apart
3•chistev•25m ago•1 comments

Show HN: Added API key support to my AI writing assistant extension

1•jerrygoyal•25m ago•0 comments

Essex police pause facial recognition camera use after study finds racial bias

https://www.theguardian.com/technology/2026/mar/19/essex-police-pause-facial-recognition-camera-u...
2•Brajeshwar•25m ago•0 comments

Dinit a systemd alternative without age-verification requirements

https://davmac.org/projects/dinit/?hs=1
1•grigio•28m ago•2 comments

Day 21. Iran is entering the Persian New Year, in digital darkness

https://mastodon.social/@netblocks/116260457585027609
1•us321•32m ago•0 comments

Free API-First Web Scrapers (YouTube, Bluesky, Reddit, Google Maps)

https://github.com/spinov001-art/awesome-web-scraping-2026
1•aimarketintel•33m ago•0 comments

VS Code Sessions: an attempt at competing with Cursor and Antigravity

https://twitter.com/_EDM115/status/2034577130630029632
1•EDM115•34m ago•0 comments

Portless replaces port numbers with stable .localhost URLs for local development

https://port1355.dev/
2•napolux•34m ago•0 comments

Uber to Invest Up to $1.25B in Rivian Robotaxis

https://www.wsj.com/business/autos/uber-to-invest-up-to-1-25-billion-in-rivian-robotaxis-8b295925
1•JumpCrisscross•37m ago•0 comments

The Trickonometry of Math Olympiad Inequalities (2025)

https://www.andreinc.net/2025/03/17/the-trickonometry-of-math-olympiad-inequalities/
1•vismit2000•38m ago•0 comments

Open standard for stable machine-readable facts for AI systems

https://groundingpage.com/
1•fhouser•39m ago•0 comments

List of Equipment of the Islamic Revolutionary Guard Corps Navy

https://en.wikipedia.org/wiki/List_of_equipment_of_the_Islamic_Revolutionary_Guard_Corps_Navy
1•JumpCrisscross•42m ago•0 comments

USS Ford forced to withdraw due to laundry fire and toilet sabotage [video]

https://www.youtube.com/watch?v=gy5fsq1hvqo
3•burnt-resistor•44m ago•2 comments

Role-based AI persona packs for Claude Code and Cursor

1•ratnesh_maurya•48m ago•0 comments

Managing Dotfiles with Chezmoi

https://stoddart.github.io/development/tools/open-source/reviews/2024/09/08/managing-dotfiles-wit...
2•wyclif•49m ago•0 comments

Tell HN: Claude Returning 429 in OpenCode

1•ramon156•54m ago•0 comments

NeXTSTEP 3.3 Developer Documentation (1995)

https://www.nextop.de/NeXTstep_3.3_Developer_Documentation/
2•h4ch1•54m ago•0 comments

What happened when an Arab neuroscientist took the helm at an Israeli university

https://www.science.org/content/article/what-happened-when-arab-neuroscientist-took-helm-israeli-...
2•tzury•54m 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.