frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Ask HN: How do you make the LLM generate good code?

1•bjourne•1m ago•0 comments

Why AI Is a Bubble

https://federicozebele.substack.com/p/this-is-why-ai-is-a-bubble-and-what
1•stanislavb•1m ago•0 comments

Europe must choose between AI and climate goals, data center lobby says

https://www.politico.eu/article/europe-choose-ai-climate-goals-data-center-chief-warns/
1•cdrnsf•3m ago•0 comments

AI Is Not a Tool

https://theconvivialsociety.substack.com/p/your-ai-is-not-a-tool
1•longdefeat•3m ago•0 comments

Robots will replace 700k delivery workers 'sooner or later' warns JD.com boss

https://www.ft.com/content/465635e2-633b-4311-afe5-9b3bff8c9240
1•momentmaker•6m ago•1 comments

The AI shift in cyber risk: why leaders must act now

https://www.cyber.gov.au/about-us/view-all-content/news/five-eyes-cyber-security-agencies-statement
1•Khaine•6m ago•0 comments

Kya is hiring an AI/ML Engineer

https://www.kyahq.com/careers/software-engineer-ai-ml
1•Johnall_n•6m ago•1 comments

Bipartite Matching Is in NC

https://scottaaronson.blog/?p=9851
2•amichail•9m ago•0 comments

Q.js: modern front-end framework for 2026. No build scripts unlike React et al.

https://www.npmjs.com/package/@qbix/q.js
1•EGreg•9m ago•1 comments

Hyperbolic Discounting

https://en.wikipedia.org/wiki/Hyperbolic_discounting
1•rzk•10m ago•0 comments

Report: Kennedy Space Center not ready for era of super heavy rockets

https://arstechnica.com/space/2026/06/report-kennedy-space-center-not-ready-for-era-of-super-heav...
1•voxadam•11m ago•0 comments

Show HN: FastAPI Cloud is in public beta, deploy apps with FastAPI deploy

https://fastapicloud.com/
1•tiangolo•12m ago•1 comments

Payoff Progress of an Amortizated Loan

https://push.cx/payoff-progress
1•pavel_lishin•14m ago•0 comments

Daybreak

https://openai.com/daybreak/
1•Recursing•17m ago•0 comments

Mod Logs: Save every change, thank yourself later

https://unstack.io/mod-logs-save-every-change-thank-yourself-later
1•ScottWRobinson•17m ago•0 comments

Knowledge Agents: Beat Frontier Models with Better Structure

https://weightythoughts.com/p/knowledge-agents-beat-frontier-models
1•lklinger•17m ago•0 comments

Show HN: Who's in the weights? – which people 13 language models know

https://whos-in-the-weights.vercel.app/
1•heterodoxjedi•18m ago•0 comments

PsychAdapter: Personality in LLM output via trait-language patterns, not prompts

https://github.com/humanlab/psychadapter
1•indynz•20m ago•0 comments

A Source of Mysterious Repeating Radio Signals from Space Has Been Identified

https://www.wired.com/story/a-source-of-mysterious-repeating-radio-signals-from-space-has-been-id...
1•ubutler•20m ago•0 comments

The database that refused to die: How Postgres survived its own creators

https://www.theregister.com/databases/2026/06/22/the-database-that-refused-to-die-how-postgres-su...
2•jnord•21m ago•0 comments

The fake ABC News articles trying to sell you a scam

https://www.abc.net.au/news/2026-06-23/fake-abc-website-scam-facebook-ads/106653690
2•Gaishan•22m ago•0 comments

Vibedrop: Ephemeral Hosting for Agents

https://vibedrop.sh/
1•mormonnegro•23m ago•0 comments

Trump Demands "?" For the "Vandalism" of a $14M Swimming Pool

https://thenewassociationwebmasters.blogspot.com/2026/06/trump-demands-years-in-prison-after.html
4•laurentlof•23m ago•5 comments

Worldfall- a beautiful web novel about change and the diffusion of technology

https://worldfall.ink/
1•pfwitt•24m ago•1 comments

Show HN: WorldOS – A fully customizable AI simulation sandbox game

https://worldos.cc/
5•DomaLamma•24m ago•2 comments

European AWS SES Alternative

https://janlukas.blog/thoughts/2026/06/european-ses-alternative
2•jlelse•27m ago•0 comments

Cloudflare, Chrome, Firefox Developing Next-Gen Privacy Pass: PACTs

https://www.theregister.com/software/2026/06/22/cloudflare-teams-up-with-big-browsers-to-help-web...
2•dongcarl•30m ago•0 comments

AI Pauses

https://thezvi.substack.com/p/ai-173-ai-pauses
1•gmays•35m ago•0 comments

ChatGPT app store falters six months after launch

https://www.latimes.com/business/story/2026-03-30/chatgpt-app-store-falters-six-months-after-launch
2•mmarian•35m ago•0 comments

Locally running World Model that turns images into playable environments

https://old.reddit.com/r/LocalLLaMA/comments/1ub2kmt/comment/oswjlhg/
1•abhisoflucidml•35m 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.