frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Frontier and Center: Who evaluates the evaluations?

https://cloud.google.com/blog/products/data-analytics/evaluate-agent-performance/
1•gmays•35s ago•0 comments

What Makes a Volume Bootable?

https://eclecticlight.co/2026/07/18/what-makes-a-volume-bootable/
1•frizlab•6m ago•0 comments

Klong for the Web

https://tailrecursion.com/klong/
1•wooby•7m ago•0 comments

The Swiss Cheese model, pt. 1

https://unsung.aresluna.org/the-swiss-cheese-model-pt-1/
1•frizlab•8m ago•0 comments

UnifiedIR for Julia

https://github.com/JuliaLang/julia/pull/62334
1•vimarsh6739•10m ago•0 comments

Show HN: PKPass Inspector

https://www.getleal.com/tools/pkpass-inspector
1•rikkipitt•10m ago•0 comments

High-scale web apps in any language

https://velixir.net/
1•dbContext•11m ago•0 comments

Recause – complex interactive flows as ordinary functions over explicit state

https://recause.org/
1•Ruebennase•11m ago•0 comments

Andy Burnham to scrap digital ID in first major policy pledge

https://www.bbc.co.uk/news/articles/c5y08z25q8eo
3•Lio•13m ago•0 comments

Wp2shell (CVE-2026-63030): Pre-Auth RCE Chain in WordPress Core

https://fullhunt.io/blog/2026/07/17/wp2shell-wordpress-core-pre-auth-rce-cve-2026-63030.html
1•mazen160•15m ago•0 comments

Engineered Enzyme Reverses Age-Related Protein Damage

https://lifespan.io/engineered-enzyme-reverses-age-related-protein-damage/
1•littlexsparkee•15m ago•0 comments

AI for Bug Bounty with VulneraMCP

https://www.zaproxy.org/blog/2025-11-28-enhancing-zap-with-ai-for-bug-bounty-hunting/
1•Fermino•17m ago•0 comments

$20/Month: The Price Ceiling Every AI Company Copied

https://qainsights.com/20-month-the-price-ceiling-every-ai-company-copied/
1•qainsights•19m ago•0 comments

Neoclouds owe their customers years of compute

https://www.solvimon.com/blog/neoclouds-owe-customers-years-of-compute
2•arnon•20m ago•0 comments

Heaven's IT Guy – Design Complaints

https://www.youtube.com/watch?v=--Twuo6rgIE
1•quantummagic•24m ago•0 comments

I asked a psychiatrist I know about the effects of AI

https://teadrivendevelopment.substack.com/p/i-asked-a-psychiatrist-i-know-about
1•ghassenfaidi•26m ago•0 comments

Show HN: Graph Context Engine for Reliable AI

https://kritama.com
1•zacksiri•28m ago•0 comments

Yodel Extreme

https://music.apple.com/fr/album/yodel-extreme-single/6789486724
1•frizlab•28m ago•0 comments

Co-evolution of self-replication and function in a digital primordial soup

https://arxiv.org/abs/2607.09211
2•vicgalle_•29m ago•1 comments

SmartTAR – STAR 1.3.1

https://github.com/eco-by-different/smarttar-star
1•e_b_d•31m ago•1 comments

Microsoft cuts OneDrive support for older Windows 10 versions next month

https://www.theregister.com/os-platforms/2026/07/17/microsoft-cuts-onedrive-support-for-older-win...
2•Bender•31m ago•0 comments

Ada: An AI business intelligence software from CSV and Excel(yes LLMs but more)

https://github.com/saineshnakra/automated-data-analyst
2•saineshnakra•31m ago•0 comments

Al-Munaa for OpenAI Build Week

https://devpost.com/software/zeedos-self-hosted-autonomous-ai-operating-system
1•FARHANALMUTAIRI•32m ago•0 comments

Investigating Flock: America's Mass Surveillance Company [video]

https://www.youtube.com/watch?v=S3MQLlMbS-Y
2•Bender•33m ago•0 comments

We Have a Third Eye (and It's Not Metaphysical) [video]

https://www.youtube.com/watch?v=6LP3n9V7H_8
1•Bender•34m ago•0 comments

See How Prufrock Continuously Mines (90 second video)

https://www.youtube.com/watch?v=YY2mW1SrTVI
1•rmason•36m ago•0 comments

The Fastest-Growing Risk to Air Travel Is Probably in Your Pocket

https://www.wsj.com/business/airlines/the-fastest-growing-risk-to-air-travel-is-probably-in-your-...
1•fortran77•37m ago•1 comments

Designing a programmable runtime for agent orchestration

https://randomlabs.ai/blog/onyx
1•Aditya_Swam•37m ago•0 comments

Libtsgo: TypeScript-Go embedded in C and C++

https://github.com/greergan/libtsgo
1•greergan•38m ago•0 comments

Wandr Benchmark: Evaluating Research Agents That Must Search Wide and Deep

https://research.perplexity.ai/articles/wandr-benchmark-evaluating-research-agents-that-must-sear...
1•gmays•38m 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.