frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

A Tetrational Self-Cleaning Turing Machine

https://nickdrozd.github.io/2026/09/01/tetrational-self-cleaning-turing-machine.html
1•nickdrozd•4m ago•0 comments

Spring Boot Tips: Easiest Way to Provide Environment Variables

https://www.sivalabs.in/blog/spring-boot-tips-easiest-way-to-provide-env-vars/
1•ejboy•7m ago•0 comments

Tesla Begins Offering Rides in a Car Without a Steering Wheel

https://www.nytimes.com/2026/09/03/business/tesla-cybercab-robotaxi-rides.html
3•telotortium•8m ago•0 comments

FrontierMath Erdős

https://epoch.ai/latest/announcing-frontiermath-erdos
1•cainxinth•9m ago•0 comments

Show HN: Jetway, a working airline GDS and message router

https://github.com/adamf/jetway
1•adam_gyroscope•13m ago•0 comments

Congratulations to the Winners of the 2026 Online Journalism Awards

https://awards.journalists.org/2026/09/03/congratulations-2026-oja-virtual-ceremony-winners/
3•rdmuser•18m ago•0 comments

Why I am so against volunteering in academia (ecology-edition)

https://statmodeling.stat.columbia.edu/2026/08/19/why-i-am-so-against-volunteering-in-academia-ec...
2•luu•24m ago•0 comments

British police try to track down theft of 70k pints worth of Guinness stout

https://apnews.com/article/guinness-heist-stout-stolen-truck-depot-pabst-pbr-88b7745450be79af57d3...
2•ChrisArchitect•24m ago•0 comments

Delve (YC W24) accused of misleading customers with 'fake compliance'

https://finance.yahoo.com/sectors/technology/articles/delve-accused-misleading-customers-fake-170...
2•mgh2•25m ago•2 comments

Where Europe Goes to Gig

https://europeancorrespondent.com/en/r/where-europe-goes-to-gig
1•gmays•30m ago•0 comments

Project Xanadu: Even More Hindsight

https://gwern.net/xanadu
2•andsoitis•31m ago•0 comments

Mercury Poisoning Situation at MIT [video]

https://www.youtube.com/shorts/Z78WXXQd4ok
1•fortran77•32m ago•0 comments

Patient Who Received Pig Kidney First to Progress to Human Kidney Transplant

https://hms.harvard.edu/news/patient-who-received-pig-kidney-becomes-first-progress-human-kidney-...
1•bookofjoe•32m ago•0 comments

Burning Man has become a wrinkled sausage fest of aging millennial men

https://nypost.com/2026/09/03/us-news/burning-man-has-become-a-wrinkled-sausage-fest-of-aging-mil...
1•fortran77•33m ago•0 comments

Stream Ciphers and ChaCha20-Poly1305

https://ekunazanu.foo/lab/stream-ciphers/
1•vismit2000•33m ago•0 comments

Release 13.1.5 · Grafana/Grafana

https://github.com/grafana/grafana/releases/tag/v13.1.5
1•kyisaiah47•34m ago•0 comments

Late Merge

https://third-bit.com/2026/06/03/late-merge/
1•greyface-•35m ago•0 comments

Show HN: a Rust compiler translating Joern CPGs to Nuclei templates

https://medium.com/@mhiritarek/why-i-built-a-deterministic-cpg-to-nuclei-compiler-in-rust-bcb6c7a...
1•Tarek-M•37m ago•0 comments

The Summer of Open Weights

https://martinalderson.com/posts/the-summer-of-open-weights/
1•gmays•41m ago•0 comments

What is Nueralese and Why is it Bad

https://www.lesswrong.com/posts/RCYF2rW8wgusidZk7/what-is-neuralese-and-why-is-it-bad
1•tristanMatthias•43m ago•0 comments

An Alternative to Jira ScriptRunner

https://github.com/ONES-com/onescript-workflow-automation
1•BeautifulONES•43m ago•0 comments

The Last Interview

https://nition.momentstudio.co.nz/p/the-last-interview
2•Nition•45m ago•0 comments

NuFinder, a macOS file manager with real RAID across S3-compatible buckets

https://nufinder.org/
1•LouisvilleGeek•51m ago•0 comments

Kalder CEO Pleads Guilty to Securities Fraud

https://www.justice.gov/usao-sdny/pr/kalder-ceo-pleads-guilty-securities-fraud
3•mgh2•51m ago•0 comments

BoardUI

https://github.com/BoardUI/boardui
1•handfuloflight•58m ago•0 comments

Ask HN: How do you break AI agents out of the "apologize and repeat" loop

2•Marvin_RunAI•59m ago•0 comments

Remember Bebo? Founder shares the story

https://www.youtube.com/watch?v=H3QXvlY-kYM
1•kirstyaden•1h ago•0 comments

ArtStation Should Put Artists First

https://magazine.artstation.com/2026/09/ai-updates-from-artstation/
3•doppp•1h ago•0 comments

Crew – A multiplayer AI workspace for humans and agents, now with iOS apps

https://github.com/JamelHammoud/crew
1•alihammoud21•1h ago•0 comments

Wikimedia Workers Overwhelmingly Win Union with 93% Yes Vote

https://www.wired.com/story/wikipedia-workers-vote-on-whether-to-unionize/
4•taftfartley•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.