frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Procedural UV Derivatives Evaluation in Sort Renderer

https://agraphicsguynotes.com/posts/procedural_uv_derivatives_evaluation_in_sort_renderer/
1•ibobev•33s ago•0 comments

SecretSpec 0.12: audit logs and coding agents

https://secretspec.dev/blog/secretspec-0-12-audit-logs-and-coding-agents/
1•domenkozar•1m ago•0 comments

Indian Indenture System

https://en.wikipedia.org/wiki/Indian_indenture_system
2•kayo_20211030•2m ago•0 comments

Don't Dethrone Consciousness

https://www.theintrinsicperspective.com/p/dont-dethrone-consciousness
2•surprisetalk•3m ago•0 comments

How the modern world turned gray (and why color may be coming back)

https://bigthink.com/strange-maps/grayening-why-everything-is-gray/
2•Digit-Al•4m ago•0 comments

Mastering Programming (2016, 2024)

https://tidyfirst.substack.com/p/mastering-programming
2•e12e•5m ago•1 comments

Spanish traders set the standard forGnuCash database design

https://handson.money/blog/2026-06-06-horse-arse-and-design/
2•vitalikpie•6m ago•0 comments

Blaise v0.10.0: Native Back End, Threads and Incremental Compilation

https://github.com/graemeg/blaise/discussions/82
3•mariuz•9m ago•0 comments

Show HN: Two Pillars Protocol – a maturity model for AI-era software engineering

https://assess.rlabs.cl/
3•rlabbe•9m ago•0 comments

Two Brothers Are Trying to Put the Person Back into AI

https://www.wearefounders.uk/how-two-brothers-are-trying-to-put-the-person-back-into-ai/
2•snoren•11m ago•0 comments

Get-a-Waymo: How a burglar used a robotaxi to flee the scene

https://www.sfchronicle.com/crime/article/waymo-burglary-camera-video-22277358.php
2•breve•12m ago•0 comments

AI Notepad

https://online-notepad.com/
2•ent101•12m ago•0 comments

Show HN: Nudgra – Open-source, self-hostable alternative to ManyChat

https://github.com/MaikoCode/nudgra-oss
2•Maiko11•13m ago•0 comments

A Fixation and Distance-Dependent Color Illusion

https://arxiv.org/abs/2509.11582
2•robert-boehnke•14m ago•0 comments

Melia: A Privacy-First, Modern Desktop Email Client Made Just for Linux

https://itsfoss.com/melia/
2•mikece•14m ago•0 comments

Is 'Just Buy an Index Fund' Enough? 20 Years of Backtested Data

https://ctrl-trade.com/blog/long-term-investment-strategies-compared/
2•frenxi•17m ago•1 comments

Did Ahmes find the best expansions for 2/n?

https://blog.plover.com/2026/03/17/#egyptian-fractions-2
2•surprisetalk•18m ago•0 comments

Show HN: Batch printing Avery label paper name label generator

https://name-tag-template.com
1•66k•18m ago•0 comments

Value Numbering

https://bernsteinbear.com/blog/value-numbering/
1•surprisetalk•19m ago•0 comments

Show HN: Pokayoke – deterministic guardrails for agentic coding

https://pokayoke.codes
1•sarreph•19m ago•0 comments

Classifying animal behaviour from acceleration data using a U-Net

https://www.sciencedirect.com/science/article/pii/S1574954126001676?via%3Dihub
1•PaulHoule•22m ago•0 comments

Bending Spoons Form F-1

https://www.sec.gov/Archives/edgar/data/2004711/000110465926071170/tm2613674-7_f1.htm
1•ea016•23m ago•0 comments

HN Alerts: get an email when a story is trending

https://hnalerts.com/
1•davidbarker•23m ago•0 comments

Kilo Code: Getting my Hands dirty

https://www.mariusb.net/blog/2026/06/kilo-code-getting-my-hands-dirty/
1•mariusb16•24m ago•0 comments

The quiet problem with unnecessary async

https://allthingssmitty.com/2026/06/08/the-quiet-problem-with-unnecessary-async/
1•AllThingsSmitty•24m ago•0 comments

DeepSeek Made AI Cheap. Now It Needs Billions to Keep It Cheap

https://chinacompany.substack.com/p/deepseek-made-ai-cheap-now-it-needs
1•zacfire•27m ago•0 comments

Datasette is a tool for exploring and publishing data

https://github.com/simonw/datasette
2•andsoitis•28m ago•0 comments

The iPhone explains 33–52% of fertility decline among women aged 15–44

https://www.nber.org/papers/w35310
6•delichon•29m ago•1 comments

Anthropic's Project Glasswing Update

https://www.schneier.com/blog/archives/2026/06/anthropics-project-glasswing-update.html
22•mikece•30m ago•0 comments

Y Combinator: Paxel, understand how you build with AI

https://paxel.ycombinator.com/
2•edweis•31m ago•1 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.