frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Knowledge workers don't need frontier models

https://mukulsingh105.github.io/articles/slm-routing-knowledge-workers.html
1•azhenley•3m ago•0 comments

Making Sense of Data from Wearable Health Trackers

https://undark.org/2026/06/16/opinion-wearable-health-tracker-data/
2•EA-3167•4m ago•0 comments

Ask HN: Why is there suddenly a downvote button?

2•SpyCoder77•5m ago•2 comments

Show HN: Evaluating Local LLMs as language translators for my app

https://lector.dev/eval/
3•3stacks•6m ago•0 comments

The scandal of two-tier degrees Extra time infantilizes students

https://unherd.com/2026/05/the-scandal-of-two-tier-degrees/
2•grimcompanion•6m ago•0 comments

The AI startup with no AI: Aussie boss jailed for misleading investors

https://www.smh.com.au/technology/australian-start-up-boss-who-faked-revenue-gets-nine-years-jail...
4•contingencies•9m ago•1 comments

Show HN: StaleTrace – A temporal ledger that catches stale-state agent bugs

https://stale-trace.vercel.app/
2•zahraarman•9m ago•0 comments

Need guidance on Go-To-Market strategy

2•brainstorm23•18m ago•0 comments

Claude FM music for thinking and building [video]

https://www.youtube.com/watch?v=tRsQsTMvPNg
3•gjvc•19m ago•0 comments

Ask HN: Will programmers write more efficient code during the memory shortage?

16•amichail•22m ago•16 comments

Ask every top AI at once. Compare. Pick the best

https://gangstaai.org/
2•MarkoRocko•22m ago•2 comments

Show HN: I built an extendable full document markup language

https://longform.occultist.dev
2•angrybards•22m ago•0 comments

Waved Studio – browser-native wavetable editor

https://wavedstudio.online/landing/
3•sp8m8•24m ago•1 comments

My 1992 view of the problems of computer programming in 1992

https://blog.plover.com/prog/fortran-i.html
3•Brajeshwar•24m ago•0 comments

Americans express unease over SpaceX's influence on retirement savings

https://www.theguardian.com/science/2026/jun/19/spacex-retirement-savings-elon-musk
21•ValentineC•27m ago•1 comments

Comparison of simulation environments for robot training data

https://www.humanoidsdata.com/articles/simulation-environments-robot-training-data
2•torayeff•28m ago•0 comments

François Englert (1932 – 2026)

https://home.cern/francois-englert-1932-2026/
2•nhatcher•30m ago•0 comments

How do flocking birds and schools of fish move?

https://www.nyu.edu/about/news-publications/news/2026/june/how-do-flocking-birds-and-schools-of-f...
3•hhs•35m ago•0 comments

The Secret Revolution in Battery Technology: 3-D Printing

https://www.wsj.com/tech/battery-technology-3d-printing-c319ca9a
2•Brajeshwar•38m ago•0 comments

Nub: an all-in-one toolkit for Node.js

https://nubjs.com/blog/introducing-nub
2•eikowagenknecht•39m ago•0 comments

Fish oil supplements may not prevent Alzheimer's-related decline: study

https://news.keckmedicine.org/fish-oil-supplements-may-not-prevent-alzheimers-related-decline/
2•hhs•39m ago•1 comments

Government's websites are asking to be hacked

https://groundup.org.za/article/heres-how-insecure-governments-websites/
2•Jimmc414•41m ago•0 comments

PC-free YouTube streaming rig on a Pi 4, built for engraving coins

https://github.com/Coreymillia/YouTube-Pi4-StreamMachine
2•Teever•41m ago•0 comments

Show HN: Timestamp and provenance records for AI-assisted creative work

https://colossee.com
3•celestino_127•43m ago•0 comments

I need people to understand that Palantir is not an engineering marve

https://bsky.app/profile/chadloder.dev/post/3moo3wm25722q
4•doener•46m ago•1 comments

Job postings aren’t jobs

https://workshift.org/job-postings-arent-jobs/
5•hhs•47m ago•2 comments

New Air Force One is unveiled, a $400M plane gifted by Qatar

https://www.cbsnews.com/news/air-force-one-new-plane-trump-qatar/
3•naturalmovement•48m ago•0 comments

Superagers

https://pilot-protection-services.aopa.org/news/2026/june/01/superagers
3•dp-hackernews•49m ago•0 comments

More than chatbots: Why business AI agents are the next product battleground

https://www.rnz.co.nz/news/science-and-technology/600928/more-than-chatbots-why-business-ai-agent...
4•billybuckwheat•50m ago•0 comments

When the ability to smell goes away

https://knowablemagazine.org/content/article/health-disease/2026/what-happens-brain-lose-sense-of...
2•Brajeshwar•57m 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.