frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

DaynaPORT SCSI/Link Linux Driver

https://github.com/jflitton/daynaport-scsilink-linux-driver
1•davewongillies•2m ago•0 comments

BSD col(1) for mandoc(1) on Linux

http://ftp.netbsd.org/pub/NetBSD/NetBSD-current/src/usr.bin/col/col.c
1•1vuio0pswjnm7•7m ago•1 comments

Small Teams Will Ship More Software Than They Can Maintain

https://www.vincentschmalbach.com/small-teams-will-ship-more-software-than-they-can-maintain/
1•vincent_s•8m ago•0 comments

'Once you have a machine think and write for you, you're cooked as a species'

https://www.theguardian.com/books/2026/jun/27/dave-eggers-once-you-have-a-machine-think-and-write...
5•devonnull•9m ago•0 comments

Science can enhance the synchronization and connection of human brains

https://www.nyu.edu/about/news-publications/news/2026/june/can-we-engineer-being-on-the-same-wave...
2•giuliomagnifico•11m ago•0 comments

Atlantic "Warming Hole" Heat Content Variations Caused by Ocean Heat Transport

https://agupubs.onlinelibrary.wiley.com/doi/10.1029/2025GL118383
2•thunderbong•12m ago•0 comments

It's dead, Jim – the old Microsoft UEFI CA from 2011 expired yesterday

https://blog.einval.com/2026/06/27
2•zdw•16m ago•0 comments

Integer programming easily encloses horse

https://dynomight.substack.com/p/horse
2•jacobedawson•16m ago•0 comments

Building an Open-Source Robot Vacuum – Meet Oomwoo

https://makerspet.com/blog/building-an-open-source-robot-vacuum-meet-oomwoo/
2•zdw•17m ago•0 comments

The Doomers Are All Right

https://asteriskmag.com/issues/14/the-doomers-are-all-right
2•littlexsparkee•22m ago•0 comments

How to Spot AI Maps

https://warmapper.substack.com/p/how-to-spot-ai-maps
2•bulla•23m ago•0 comments

Scalable Substrates for Dynamic Memory Polymers with Sensory Spines

https://github.com/triggger0357-web/PhoneServe/blob/main/paper.md
2•davidingalls•24m ago•0 comments

I made a game that teaches you how AI works

https://github.com/Tylersuard/Synapse_neural_net_training_game/tree/main
2•tylersuard•28m ago•1 comments

Cerberus – a local firewall for AI agents' tool calls

https://github.com/Adirdabush1/cerberus
2•cerberussec•29m ago•0 comments

Bashblog – a single bash script to create blogs

https://github.com/cfenollosa/bashblog
2•ludicrousdispla•30m ago•0 comments

Iran, US continue escalating attacks, recriminations over peace deal

https://www.reuters.com/world/asia-pacific/us-carries-out-fresh-strikes-against-iran-after-tanker...
2•rzk•35m ago•0 comments

ARRL Field Day 2026

https://www.arrl.org/field-day-locator
3•tepitoperrito•37m ago•1 comments

An AI Chief of Staff

https://github.com/suhasbhairav/ai-chief-of-staff
2•bsuhas•47m ago•0 comments

Wayfinder Router: deterministic routing of queries between local and hosted LLM

https://github.com/itsthelore/wayfinder-router
10•handfuloflight•48m ago•0 comments

Pac-832: A New Drug for Alzheimer's Disease

https://pacepharmaceuticals.com/overview
2•noleary•49m ago•0 comments

Life at Every Dropout Billionare Level [video]

https://www.youtube.com/watch?v=ZcfD9dBN0Tw
2•Animats•50m ago•1 comments

Show HN: Foveon – Bayer to Foveon X3, learned, Mac App using deep learning

https://code.intellios.ai/photo/
2•coolwulf•52m ago•1 comments

Show HN: NextRole – multi-agent resume tailoring and interview prep

https://github.com/tam159/next-role
2•tam159•53m ago•0 comments

Ask HN: Why are we humans still prompting to make Agents better?

2•shubhamintech•58m ago•2 comments

AI Berkshire

https://github.com/xbtlin/ai-berkshire
2•grajmanu•59m ago•0 comments

Building a custom octocopter from scratch with no prior hardware experience

https://karolina.mgdubiel.com/drone/
3•noleary•1h ago•0 comments

Chinese cars go blacker than black via hybrid nano tech

https://newatlas.com/automotive/ultra-black-cb-cnt-hybrid-coating-robust-cars/
3•breve•1h ago•1 comments

AI Is Making Silicon Valley Productive, Anxious and Afraid to Log Off

https://www.bloomberg.com/news/articles/2026-06-26/ai-anxiety-is-fueling-burnout-across-silicon-v...
2•uzyn•1h ago•0 comments

The human eye may hold the fix for self-driving cars

https://newatlas.com/technology/eye-inspired-photomemristor-self-driving-cars/
2•breve•1h ago•0 comments

I wrote a free book about Scripture, AI, and language

https://wordnamefire.com/
2•seomister7•1h 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.