frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Nano Banana 2.5: Faster, Better AI Images

https://nanobanana25ai.net
1•yoxi1•1m ago•0 comments

Fast-CLI: CLI tool written in Zig for testing internet speed

https://github.com/mikkelam/fast-cli
1•hoyd•1m ago•0 comments

Sauna Jungle Expansion

https://www.saunajungle.com/
1•hubears•2m ago•0 comments

GPT-6 Sol and Luna

https://openai.com/index/introducing-gpt-6-sol-and-luna/
35•OfficialTurkey•5m ago•8 comments

Cookie started its life as a plastic bottle

https://www.acs.org/pressroom/presspacs/2026/august/this-cookie-started-its-life-as-a-plastic-bot...
1•dustfinger•6m ago•0 comments

GPT-6 Sol

https://developers.openai.com/api/docs/models/gpt-6-sol
6•sfkgtbor•6m ago•1 comments

Arguing about Arguments

https://steveklabnik.com/writing/arguing-about-arguments/
1•birdculture•7m ago•0 comments

Delaying all JavaScript doesn't make your site faster

https://michalek.blog/blog/delay-all-javascript
1•absolutmachal•7m ago•1 comments

It's Hard to Learn from Machines

https://carlkolon.com/2026/09/22/learning-from-machines/
1•cckolon•11m ago•0 comments

U.S. Climate Collection

https://usclimatecollection.org
2•Tomte•12m ago•0 comments

Prominent art therapist quoted by Vice, Forbes and others is AI-generated

https://pressgazette.co.uk/news/prominent-art-therapist-quoted-by-vice-forbes-and-others-is-ai-ge...
1•ilamont•12m ago•0 comments

Vibe code what prints money

https://buildradar.leapd.ai
2•javeedshah•12m ago•0 comments

OpenCode removed usage transparency after a billing bug was reported

https://github.com/anomalyco/opencode/issues/39822
2•bigprof•13m ago•0 comments

Reviewing Your Blog Post with an LLM

https://writethatblog.substack.com/p/reviewing-your-blog-post-llm
1•cyndunlop•15m ago•0 comments

My Weird New Hobby: Wandering Around Tokyo on Google Maps

https://ahmedhossamdev.com/writing/my-weird-new-hobby-wandering-around-tokyo/
3•ahmedhossamdev•16m ago•0 comments

U.S. Site Blocking Bill Adds VPNs to the List of Blocking Intermediaries

https://torrentfreak.com/u-s-site-blocking-bill-adds-vpns-to-the-list-of-blocking/
3•Cider9986•16m ago•0 comments

PyTauri – Tauri Bindings for Python

https://pytauri.github.io/pytauri/0.8/
1•amai•17m ago•0 comments

How Healthy Are Sardines?

https://www.nytimes.com/2026/09/14/well/eat/sardines-health-benefits-recipes.html
3•mooreds•17m ago•0 comments

Graduating into Disruption: Labor Market Outcomes for AI-Exposed College Majors

https://www.census.gov/library/working-papers/2026/adrm/CES-WP-26-56.html
1•mooreds•17m ago•0 comments

Goolsbee's Remarks at Monetary and Financial Institutions Forum Event [pdf]

https://www.chicagofed.org/-/media/publications/speeches/2026/9-21-26-omfif.pdf?sc_lang=en&hash=9...
2•mooreds•18m ago•0 comments

Porsche CEO assures staff no further job cuts planned, according to memo

https://www.reuters.com/business/world-at-work/porsche-ceo-assures-staff-no-further-job-cuts-plan...
2•frank_clover•19m ago•1 comments

Sentience, create your digital self

https://sentience.com/
2•tomaitagaki•19m ago•1 comments

'We Hacked the FBI:' Hackers Say They Have Data on All FBI Employees

https://www.404media.co/we-hacked-the-fbi-hackers-say-they-have-data-on-all-fbi-employees/
2•spenvo•19m ago•0 comments

AI design tool from GitLab founder

https://pixelcrew.ai/
3•rajivayyangar•21m ago•1 comments

Shopify CEO: employees' 'slop grenades' are making more work for everyone else

https://fortune.com/2026/09/17/shopify-tobias-lutke-ai-slop-grenades/
3•cratermoon•22m ago•0 comments

Encoding transparent videos that work in Safari, Chrome and Firefox

https://ben.terhech.de/posts/2025-02-02-transparent-video-safari.html
1•figbert•22m ago•0 comments

ConferenceRank – conference and journal deadlines for 980 CS venues

https://rabimba.github.io/ConferenceRank/
1•rabimba•24m ago•0 comments

Trump says AI will be renamed 'super intelligence' in all US documents

https://thehill.com/homenews/administration/6104142-trump-renames-ai-super-intelligence/
9•guardiangod•24m ago•1 comments

Avy Tab Switcher, Avy-style keyboard navigation for browser tabs

https://github.com/Artawower/avy-tab-swithcer
1•darkawower•26m ago•0 comments

A beginner-friendly, step-by-step guide – How to Fingerprint Popular honeypots

https://medium.com/meetcyber/how-to-fingerprint-popular-honeypots-from-your-laptop-fe3396a13211
1•ls1911•26m 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.