frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Structured-Prompt-Driven Development (SPDD)

https://martinfowler.com/articles/structured-prompt-driven/
1•zdw•53s ago•0 comments

Measuring Cache Hierarchy Latency on the Apple M4

https://soohamurai.com/2026/01/31/Measuring-Cache-Hierarchy-on-Apple-M4/
1•neelrafiz•1m ago•0 comments

A week of debugging the Notion MCP in Claude

https://automato.substack.com/p/build-task-manager-claude-live-artifacts
1•andrewstetsenko•3m ago•0 comments

Mobile Observability for AI Agents

https://blog.bitdrift.io/post/query-reality-ai-observability
1•karinakarina3•3m ago•0 comments

Five AI Agent Failures in 36 Days. Zero Times the Agent Caught It

https://grith.ai/blog/36-days-5-ai-agent-security-failures-0-self-detections
1•edf13•4m ago•0 comments

FDA finds 'significant violations' committed by major manufacturer

https://www.dailymail.com/health/article-15769673/FDA-warning-manufacturer-pain-relievers-ADHD-dr...
2•Bender•4m ago•1 comments

US judges weigh risks as AI seeps into judicial work

https://www.reuters.com/legal/government/us-judges-weigh-risks-ai-seeps-into-judicial-work-2026-0...
2•1vuio0pswjnm7•4m ago•1 comments

Show HN: I built a zero-tracking news hub to escape doomscrolling and clickbait

1•blazeeofsun•5m ago•0 comments

Trump Fired the National Science Board. Here's Why That Matters

https://www.forbes.com/sites/johndrake/2026/04/25/trump-fired-the-entire-national-science-board-h...
2•pseudolus•5m ago•0 comments

PgBackRest is archived, what now?

https://percona.community/blog/2026/04/28/pgbackrest-is-archived-what-now/
1•nikolay_sivko•6m ago•0 comments

VibeLens: Visualize, personalize, and audit your AI agent sessions

https://github.com/CHATS-lab/VibeLens
1•yejh•6m ago•0 comments

Another US state wants to force registration for all e-bikes

https://electrek.co/2026/04/27/another-us-state-wants-to-force-registration-for-all-e-bikes/
1•Bender•6m ago•0 comments

Open routines, local AI workflow automation

https://open-routines.com/
1•lbreakjai•6m ago•0 comments

CATL says sodium batteries are mainstream-ready, signs 60 GWh deal

https://electrek.co/2026/04/27/catl-sodium-ion-battery-60gwh-energy-storage-deal/
1•Bender•7m ago•0 comments

Show HN: Rhythmguard – spacing scale enforcement for CSS and Tailwind

https://github.com/PetriLahdelma/stylelint-plugin-rhythmguard
1•PetriLahdelma•8m ago•0 comments

Architectural Requirements for Agentic AI Containment

https://arxiv.org/abs/2604.23425
1•Mitchellrichard•8m ago•0 comments

PAVO-Bench – 50K voice turns and an 85K-param router for ASR→LLM→TTS

https://github.com/vnmoorthy/pavo-bench
1•vnmoorthy•8m ago•0 comments

The medieval habit of 'two sleeps'

https://www.bbc.com/future/article/20220107-the-lost-medieval-habit-of-biphasic-sleep
1•smusamashah•9m ago•0 comments

Language Models Are Few-Shot Learners, They Just Can't Remember

https://www.aravindjayendran.com/writing/few-shot-learners-cant-remember
1•maxaravind•9m ago•1 comments

Data Lineage in DuckDB: How Duck_lineage Tracks Every Query

https://ilum.cloud/blog/data-lineage-in-duckdb-how-duck_lineage-tracks-every-query/
1•tanelpoder•11m ago•1 comments

Attack of the Killer Script Kiddies

https://www.theverge.com/ai-artificial-intelligence/915660/mythos-script-kiddies-hackers-attack-c...
1•Brajeshwar•12m ago•0 comments

Network Stats for Q1 2026: Neocloud Traffic Trends

https://www.backblaze.com/blog/network-stats-for-q1-2026-neocloud-traffic-trends/
1•LaSombra•12m ago•0 comments

Reporters at this news site are AI bots. OpenAI's appears to be funding it

https://www.modelrepublic.org/articles/the-reporters-at-this-news-site-are-ai-bots.-openai%E2%80%...
2•speckx•14m ago•0 comments

Show HN: I built a WhatsApp bot to help you remember birthdays

https://bub.club
1•jonnyburch•15m ago•0 comments

IBM Bob

https://bob.ibm.com
2•psim1•15m ago•2 comments

They said AI would kill SaaS boilerplates, but it's doing the opposite

https://wasp.sh/blog/2026/04/23/14k-stars-open-saas-ai-era
1•matijash•16m ago•0 comments

AI and Coder Employment: Compiling the Evidence [pdf] [Federal Reserve]

https://www.federalreserve.gov/econres/feds/files/2026018pap.pdf
1•ryan_j_naughton•16m ago•0 comments

Golang heap profiling without pprof enabled or eBPF

https://coroot.com/blog/zero-config-go-heap-profiling/
1•nikolay_sivko•17m ago•0 comments

No Idle GPUs: Managing Research Compute at Runway

https://runwayml.com/news/no-idle-gpus-managing-research-compute-at-runway
1•itunpredictable•17m ago•0 comments

Panama's ocean lifeline vanishes for the first time in 40 year

https://www.sciencedaily.com/releases/2026/04/260426012253.htm
1•pseudolus•18m ago•0 comments
Open in hackernews

CheerpJ 4.0: WebAssembly JVM for the browser, now with Java 11 and JNI support

https://labs.leaningtech.com/blog/cheerpj-4.0
9•apignotti•1y ago

Comments

palata•1y ago
That's technically pretty cool, but it makes me wonder:

In order to run a Java Desktop app, I need to install a JVM first (or the Desktop app can embed it, I guess that's what IntelliJ does, right?).

Now if I run CheerpJ, it means that I essentially download a JVM when I load the page (every time), and run code in that JVM. But at this point, why not downloading a Desktop app?

It feels like we are going around, shipping simple web pages together with full browsers and calling that "desktop apps" (e.g. ElectronJS), then shipping complete JVMs as web pages and calling that a "web page"... why don't we just ship simple webpages through browsers and complex desktop apps through package managers?

apignotti•1y ago
With CheerpJ you are downloading the subset of the JVM that you need, and actually only once thanks to the standard browser cache.

There are many reasons why shipping via the browser is a better choice compared to shipping desktop apps. The main 3 in my opinion are:

1. Distribution: Give your user a link and the app will start 2. Isolation: The user can have confidence the app won't read his personal files. 3. Cross-platform: Every OS and every device, for real this time

yuri91•1y ago
For reference, when loading https://browsercraft.cheerpj.com for the first time (up to loading a world), my browser downloaded ~32MB.

The second time almost nothing.

jeffreportmill1•1y ago
And here's an entire Java IDE with CheerpJ that downloads less than 15mb:

https://reportmill.com/SnapCode

palata•1y ago
> With CheerpJ you are downloading the subset of the JVM that you need

That's interesting! May I ask how it works? Does that also happen with e.g. IntelliJ?

> Every OS and every device, for real this time

Doesn't the JVM run everywhere in 2025?

apignotti•1y ago
> That's interesting! May I ask how it works? Does that also happen with e.g. IntelliJ?

Byte ranges request do most of the heavy lifting, data is loading exclusively on-demand.

> Doesn't the JVM run everywhere in 2025?

What about iOS? Android has Java, but can't run desktop Java apps. Chromebooks also have limits.

palata•1y ago
> Byte ranges request do most of the heavy lifting, data is loading exclusively on-demand.

I don't understand what that means. The JVM is supposed to interpret and sometimes compile bytecode, right? How can it be done with only a fraction of the JVM?

Or are you saying that it is constantly communicating with a server that does the work?

apignotti•1y ago
The VM itself is very small, it's the OpenJDK runtime that is quite sizeable. Byte ranges are used to only download the parts of the runtime (in terms of bytecode) that are required.

There is no server-side computation. CheerpJ runs code exclusively client-side.

palata•1y ago
But you said before that you only download a subset of the JVM, right? Or did you mean a subset of the JDK, including the JVM and... I guess other stuff?
apignotti•1y ago
I meant the JVM in an extended sense: the combination of the bytecode parsing, JIT compiler and OpenJDK runtime. You are right, I should have been more precise and refer to only the runtime part, which is by far the most significant.
palata•1y ago
I was not trying to prove you wrong, I'm just genuinely interested :-). I don't see a lot of articles about the JVM these days.