frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

SeL4 – a formally verified, capability-based microkernel

https://sel4.systems/
1•wh313•1m ago•0 comments

Businesses scramble to get noticed by AI search

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

Spilling the Neural Tea: A Journey Down the Side-Channel

https://www.sigarch.org/spilling-the-neural-tea-a-journey-down-the-side-channel/
2•jruohonen•7m ago•0 comments

What's your video agency tool stack?

https://timeliner.io
1•joeyparker•13m ago•1 comments

Non-Normal Distributions in the Real World

https://qualityamerica.com/LSS-Knowledge-Center/statisticalinference/non_normal_distributions_in_...
1•Tomte•16m ago•0 comments

Federated Wiki

http://fed.wiki.org/view/welcome-visitors/view/about-federated-wiki
1•RebelPotato•18m ago•0 comments

Three hundred synths, 3 hardware projects, and one app

https://midi.guide/blog/three-hunded-synths-one-app/
1•ductionist•18m ago•0 comments

New Rule on Web and Mobile Accessibility for State and Local Governments (2024)

https://www.ada.gov/resources/2024-03-08-web-rule/
2•divbzero•19m ago•0 comments

Matrix-matrix multiplication, from less conventional points of view

https://okmij.org/ftp/Algorithms/matmul.html
1•nbaksalyar•19m ago•0 comments

CLI tool to generate the maximum possible LOC and commits in minimum time

https://github.com/jshchnz/codemaxxed
1•SheinhardtWigCo•20m ago•0 comments

CarriFit – Free AI Calorie Counter

https://play.google.com/store/apps/details?id=com.carrifit.app&hl=en_US
1•mytesting•28m ago•0 comments

Addyosmani/agent-skills: Prod-grade skills for AI coding agents

https://github.com/addyosmani/agent-skills
2•msolujic•28m ago•0 comments

People Love to Work Hard

https://www.anildash.com/2026/04/06/people-love-to-work-hard/
2•zdw•32m ago•0 comments

Chinese pigs fed new menu as Beijing weans farmers off US soy

https://www.reuters.com/world/china/chinese-pigs-fed-new-menu-beijing-weans-farmers-off-us-soy-20...
1•petethomas•39m ago•0 comments

AI Agent Traps

https://papers.ssrn.com/sol3/papers.cfm?abstract_id=6372438
2•_____k•40m ago•0 comments

Skunk: a Rust based language that compiles to Go

2•stickynotememo•46m ago•1 comments

Anthropic revenue growth: $11 billion since start of March

1•aurareturn•46m ago•0 comments

Decrypting a DPRK macOS infostealer: 571 values via CPU emulation

https://github.com/Darksp33d/hyperhives-macos-infostealer-analysis
1•darksp33d•1h ago•0 comments

ClearSpec – Turn vague goals into specs that AI agents can execute

https://www.clearspec.dev/
1•mikopiko•1h ago•0 comments

Global human population has surpassed Earth's sustainable carrying capacity

https://iopscience.iop.org/article/10.1088/1748-9326/ae51aa
1•littlexsparkee•1h ago•0 comments

Are We Augmented by AI Yet?

https://unskilled.blog/posts/are-we-augmented-by-ai-yet/
1•meysamazad•1h ago•0 comments

Asia's EVolution: How the Toyota Prius Comes to Die in Mongolia [video]

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

Show HN: A Framework for Evaluating Coding Agents on Sequential SWE

https://arxiv.org/abs/2604.03035
1•tdchaitanya•1h ago•0 comments

Mark Zuckerberg's turbulent bet on AI

https://www.ft.com/content/cd3c6867-2f73-417d-a299-fb91a57bfe08
3•bram98•1h ago•0 comments

OpenAI, Anthropic, Google unite to combat model copying in China

https://www.businesstimes.com.sg/international/global/openai-anthropic-google-unite-combat-model-...
3•doppp•1h ago•0 comments

Google AI Edge Eloquent (iOS)

https://apps.apple.com/us/app/google-ai-edge-eloquent/id6756505519
2•ukuina•1h ago•1 comments

Happiness is a maintenance problem, not a discovery problem

https://gist.github.com/emeitch/390360452a9f5e37fa39ff91c836edbd
1•emeitch•1h ago•0 comments

Sync Chrome Tabs Across Multiple Computers

https://www.rabbitpair.com/en/blog/chrome-tab-sync-across-devices-guide
1•xiguali•1h ago•0 comments

Gestify – Gesture Controls for Every Web Video

https://www.rabbitpair.com/en/blog/gestify-mobile-fullscreen-video-guide
1•xiguali•1h ago•0 comments

Old wisdom from StackOverflow (2021): Code quality is a competitive advantage

https://stackoverflow.blog/2021/10/18/code-quality-a-concern-for-businesses-bottom-lines-and-empa...
4•perpetua•1h ago•3 comments
Open in hackernews

The Business Case for Vanilla JavaScript

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

Comments

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

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

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