frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: TypeBook.lol: Gamified reading by typing novels

https://typebook.lol/
1•vegnus•27s ago•0 comments

Empirical results fine-tuning π0.5 on a real manufacturing task

https://dream-machines.eu/blog/pi05-fine-tuning
1•dopaul•1m ago•0 comments

CropIntel – crop disease detection from a leaf photo

https://cropintel.org
1•rakshithj09•2m ago•0 comments

8 in 10 people aged 16-34 say smartphone use harms their everyday life

https://nltimes.nl/2026/09/23/8-10-people-aged-16-34-say-smartphone-use-harms-everyday-life
3•TechTechTech•2m ago•0 comments

Screen Lane

https://nickalexander.org/screen-lane.html
1•nick007•3m ago•0 comments

Jensen Huang on AI Alarmists – NYT Ezra Klein Show

https://www.nytimes.com/2026/09/23/opinion/ezra-klein-podcast-jensen-huang.html
1•athrowaway3z•4m ago•1 comments

Data centers are black boxes, but California wants to change that

https://www.theverge.com/policy/999412/data-center-water-electricity-disclosure-bills
1•speckx•4m ago•0 comments

A lightweight terminal UI for Colima on macOS

https://github.com/leodeim/colimui
1•ygagaga•5m ago•0 comments

Show HN: SDF Studio – Create 2D SDF scenes, compile to GLSL

https://linkdd.github.io/sdf-studio/
1•linkdd•7m ago•0 comments

How to serve trillions of tokens for trillion-parameter coding agents

https://modal.com/blog/trillion-tokens-trillion-parameters
1•kkm•7m ago•0 comments

Google Beam expands to new countries

https://blog.google/innovation-and-ai/technology/research/google-beam-expansion/
1•xnx•10m ago•0 comments

Brazil's Lula Campaign Dataset

https://huggingface.co/datasets/geoffchan/lula-footage/viewer/default/train
1•rodrigueslotu•11m ago•0 comments

Starbucks Korea CEO dismissed, what about startups?

https://2nd-look.vercel.app
1•adarshmd•11m ago•0 comments

GitCaliber, swap github.com for gitcaliber.com to get a Git repo explained

https://www.gitcaliber.com
1•bengunvl•11m ago•0 comments

Show HN: I made an app that transform your daily habits into a medieval

https://www.reddit.com/r/ProductivityApps/comments/1wnd233/comment/pbipzwg/
1•macfleid•13m ago•0 comments

City council can approve license plate cameras without you ever finding out

https://alprradar.com/
3•Cider9986•14m ago•0 comments

My relationship with AI: seductive, frustrating and always demanding vigilance

https://www.theguardian.com/commentisfree/2026/sep/24/my-complicated-relationship-with-ai-chatgpt...
3•jethronethro•16m ago•0 comments

Dr Tricks Senior Dev N2 Taking Job W AI

1•JacobEdmondKerr•16m ago•0 comments

If Carpenters Were Hired Like Programmers (2013)

https://web.archive.org/web/20140316234620/http://www.jasonbock.net/jb/News/Item/7c334037d1a9437d...
2•legitster•16m ago•0 comments

My Story

https://github.com/Sovereign-Intel-Founder/sovereignintelfounder
1•Joshua445•16m ago•0 comments

The Unhired Index: Big Tech revenue-headcount trend suggests 185K missing hires

https://www.drorpoleg.com/charts/unhired/
1•keeda•18m ago•2 comments

Security Debt: How Legacy Systems Increase Cyber Risk

https://www.cybrsecmedia.com/security-debt-series-part-1-legacy-systems/
1•speckx•18m ago•0 comments

How Apple uses faulty silicon to power fab new devices

https://www.cultofmac.com/news/apple-chip-binning
2•wslh•19m ago•0 comments

AOS GLM Language Engine – Beta Test

https://github.com/ThePikey/AOS_GLM_language
1•imageanet•23m ago•0 comments

Ask HN: How do you test Lambda/ECS code before deploying?

1•ioanarebeca•25m ago•2 comments

Work, Wellbeing, and Choice: Empirical Lessons for AI Futures

https://arxiv.org/abs/2609.11019
1•gwintrob•25m ago•0 comments

Local AI News Feed

https://local-ai-signal.vercel.app/
1•agcat•27m ago•2 comments

The Fine-Grained City Needs an Operating System

https://courtyardurbanist.com/p/the-fine-grained-city-needs-an-operating
1•idbnstra•30m ago•0 comments

Small Modular Reactors: a short history of a nuclear pipe dream

https://engelsbergideas.com/essays/smrs-a-short-history-of-a-nuclear-pipe-dream/
1•bazzmt•31m ago•0 comments

LensVLM: Compressing long context as images, expanding only relevant pages

https://huggingface.co/apple/LensVLM-9B
2•victormustar•31m 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.