frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

The AI Conundrum: We are living in highly subsidized, interesting times

1•pyeri•3m ago•0 comments

Japan chipmaking equipment suppliers report 10% drop in China sales

https://asiaai.fyi/japans-ai-shift-chip-woes-automation-hopes-cloud-expansion/
2•dweisinger•5m ago•1 comments

Nintendo Wii U games running from a 1980's Bernoulli disk [video]

https://www.youtube.com/watch?v=8GZDOpV2OXk
2•zdw•9m ago•0 comments

Ask for no, don't ask for yes (2022)

https://www.mooreds.com/wordpress/archives/3518
4•skogstokig•10m ago•0 comments

You're probably paying GPT prices for tasks that don't need GPT

https://ourtoken.ai/
2•AislinnYang•11m ago•0 comments

AI Is Taking Over Hospitals

https://www.theatlantic.com/health/2026/06/ai-healthcare-uber-moment/687567/
3•karakoram•13m ago•1 comments

I am dreading our LLM-written incident report future

https://surfingcomplexity.blog/2026/06/19/i-am-dreading-our-llm-written-incident-report-future/
2•_____k•14m ago•0 comments

Read More Fiction

https://pilk.website/5/read-more-fiction
2•npilk•16m ago•0 comments

The No Hallucination Guarantee

https://www.hudson-labs.com/blog/no-hallucination-guarantee
2•Anon84•18m ago•0 comments

We Taught a $3 Chip to Run CSS

https://geastack.com/blog-we-taught-a-chip-to-run-css
3•arbayi•21m ago•1 comments

Show HN: Tot – instant share links for HTML and Markdown files

https://github.com/plannotator/tot
3•ramoz•22m ago•0 comments

Ask HN: How should I convert Microsoft Word documents to Markdown?

2•lkrubner•23m ago•3 comments

Ask HN: What's Your Agents.md?

2•CSMastermind•25m ago•1 comments

Gumption Traps

https://en.wikipedia.org/wiki/Zen_and_the_Art_of_Motorcycle_Maintenance
2•toomuchtodo•26m ago•1 comments

More than 12.5M barrels of oil passed through Strait of Hormuz after deal signed [video]

https://www.youtube.com/watch?v=3_EQnkYc60U
2•Bender•28m ago•0 comments

Snowboard Kids 2 is Recompiled

https://blog.chrislewis.au/snowboard-kids-2-is-recompiled/
3•knackers•29m ago•0 comments

Quality in the Age of Slop

https://sinclairtarget.com/blog/2026/06/01/quality-in-the-age-of-slop/
2•weebst•30m ago•0 comments

Show HN: DebugBrief – turn debugging sessions into reports, no AI

https://github.com/harihkk/Debug-Brief
3•itshkrishna•30m ago•0 comments

Partial Application

https://en.wikipedia.org/wiki/Partial_application
2•tosh•31m ago•0 comments

False Balance

https://en.wikipedia.org/wiki/False_balance
2•chistev•33m ago•0 comments

KiCad-captouch: Capacitive touch interface generation

https://github.com/unwndevices/kicad-captouch
2•peteforde•35m ago•0 comments

The Path of Madness

https://brandur.org/nanoglyphs/029-path-of-madness
2•jordanscales•35m ago•0 comments

The Science That Turned Lizard Venom into GLP-1s Is Under Attack

https://www.nytimes.com/2026/06/20/opinion/glp1-research-science-funding.html
4•rmason•39m ago•1 comments

SHOW HN: I built a social profile for vibecoders to share & store their projects

https://kritive.com
2•sonOfHades•43m ago•1 comments

CMS Trap (2013)

https://max.engineer/cms-trap
1•tosh•44m ago•0 comments

Fastest Commodore PET Using the MCL65(2025)

https://hackaday.io/project/204693-worlds-fastest-commodore-pet-using-the-mcl65
1•rolph•46m ago•0 comments

JustHTML 3.0.0: A new HTML5 parser architecture

https://friendlybit.com/python/justhtml-3-parser-architecture/
1•EmilStenstrom•47m ago•0 comments

Thinking at the Edge

https://mklyons.com/blog/thinking-at-the-edge
1•mklyons•47m ago•0 comments

Graphene experts are trying to close reproducibility gap in 2D materials

https://cen.acs.org/materials/2-d-materials/graphene-2D-materials-reproducibility-industry/104/we...
3•EvgeniyZh•49m ago•0 comments

Founding Systems Engineer, hardtech startup, full time, ONSITE SF/hybrid

https://docs.google.com/document/d/1pudvLsPYiVOAItGD5lDM7zSJhSXqg2qRYWVOdyVp2wc/edit?usp=sharing
1•PapillonStar•50m ago•1 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.