frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Lore: Next-generation open source version control

https://github.com/EpicGames/lore
1•taubek•1m ago•0 comments

Gambling disorder cases skyrockets in states where sports betting is legal

https://twitter.com/cremieuxrecueil/status/2070651565107446116
1•MrBuddyCasino•1m ago•0 comments

The New York Times Amends Lawsuit Against OpenAI and Microsoft

https://www.nytimes.com/2026/06/25/technology/times-lawsuit-openai-microsoft.html
1•1vuio0pswjnm7•3m ago•0 comments

Promptetheus – Trace, detect, and auto-repair AI agent failures

https://github.com/obro79/promptetheus
1•tar-ive•4m ago•0 comments

People Inc. CEO accuses Google of abusing its market power

https://www.axios.com/2026/06/23/people-inc-google-ai-search-crawler
2•1vuio0pswjnm7•6m ago•0 comments

Ask HN: How much memory is useable by GPU in MacBook?

1•mzubairtahir•6m ago•0 comments

Rich and famous families teach their kids Mandarin as China's influence grows

https://www.abc.net.au/news/2026-06-27/musk-trump-bezos-zuckerberg-children-learning-mandarin/106...
1•defrost•7m ago•0 comments

My gf's birthday is my yearly reminder that I'm bad at gift-giving

https://giftmaxxing.vercel.app/
1•tar-ive•7m ago•0 comments

I HATED having to stop playin instrument togo thru pages onPDFso I used blinking

https://verceleye.vercel.app/
1•peenut•8m ago•1 comments

OpenTTD 16.0-Beta1

https://www.openttd.org/news/2026/06/25/openttd-16-0-beta1
1•untilted•10m ago•0 comments

Mythos available for select organisations

https://twitter.com/anthropicai/status/2070665903440871779
1•dsr12•12m ago•1 comments

Air conditioning torn from homes under net zero clampdown

https://www.telegraph.co.uk/money/consumer-affairs/air-conditioning-torn-from-homes-under-net-zer...
2•razor-thin•16m ago•1 comments

Photos by Om

https://www.photosbyom.com
1•adityaathalye•16m ago•1 comments

Modern GPU Programming for MLSys

https://mlc.ai/modern-gpu-programming-for-mlsys/#
1•sonabinu•30m ago•1 comments

Coding agent harness written in native Golang with built-in file and Git viewer

https://code.intellios.ai
1•coolwulf•30m ago•0 comments

2026 FIFA Worldcup Predictor

https://nutmeg-4eg.pages.dev/
1•chriszng•37m ago•2 comments

Isn't US Government trying to monopolize AI as a super power?

1•StizzurpXDD•43m ago•0 comments

SpaceX stock is a terrible buy – what that means for the bull market

https://www.msn.com/en-us/money/topstocks/spacex-stock-is-a-terrible-buy-what-that-actually-means...
1•WheelsAtLarge•46m ago•1 comments

Apple seeks to buy memory chips from blacklisted Chinese company

https://www.ft.com/content/d72a25e2-7bde-4aa9-bd8d-0c4f3d6cb2cb
1•ilreb•48m ago•0 comments

Agentic Trading on Robinhood

https://robinhood.com/us/en/agentic-trading/
4•huragok•51m ago•2 comments

(Planet Money, NPR) "We almost had a smartphone in the 90s. Why did it fail?"

https://www.npr.org/2026/06/26/nx-s1-5872785/general-magic-sony-magiclink-constraints
1•wnc3141•57m ago•2 comments

I built a marketplace where the money can be verified by anyone

https://old.reddit.com/r/SubliminalsVerytasium/comments/1ufhleb/i_built_a_marketplace_where_the_m...
1•bbenevolence•59m ago•0 comments

Find the right AI agents to build

https://www.agentideahub.com
1•mattmerrick•1h ago•0 comments

TUI email client in native Golang with LLM based drafting functions

https://mail.intellios.ai
1•coolwulf•1h ago•0 comments

Nomad: Portable, offline media server powered by the ESP32-S3 in a thumbdrive

https://www.instructables.com/Jcorp-Nomad-Mini-WIFI-Media-Server/
1•thunderbong•1h ago•0 comments

US allows Anthropic to release Mythos AI to 'trusted' US organizations

https://www.reuters.com/technology/us-releases-anthropic-model-mythos-some-us-companies-semafor-r...
1•swolpers•1h ago•0 comments

If they start to gatekeep who gets to use the best models, that is a DoW

https://twitter.com/jmrphy/status/2070528497752166454
1•Jimmc414•1h ago•0 comments

Show HN: I replaced $500/mo in freelance tools with 20 ChatGPT prompts

https://medium.com/@promptalex53/1c857c6f424a
1•promptalex53•1h ago•0 comments

WordStar: A Writer's Word Processor (1996)

https://www.sfwriter.com/wordstar.htm
11•droidjj•1h ago•4 comments

Meta asks California lawmakers for shield from child harm penalties

https://www.politico.com/news/2026/06/26/exclusive-meta-asks-california-lawmakers-for-shield-from...
2•donsupreme•1h 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.