frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

I Bought and Restored "Old" Technology to Prove the Economy Is Imploding [video]

https://www.youtube.com/watch?v=C_0xBbEFjLk
1•rglover•1m ago•0 comments

Flock cameras haven't improved Atlanta's crime clearance rates

https://atlpresscollective.com/2026/07/28/flock-cameras-atlanta-clearance-rates/
1•jimt1234•1m ago•0 comments

macOS 27 Golden Gate features redesigned traffic light window controls

https://9to5mac.com/2026/08/17/macos-27-golden-gate-beta-6-features-redesigned-traffic-light-wind...
2•akyuu•3m ago•0 comments

Speeding Up the Plush Garbage Collector

https://pointersgonewild.com/2026-08-17-speeding-up-the-plush-garbage-collector/
1•matt_d•3m ago•0 comments

Cumora, a cross-platform team chat where AI agents work alongside humans

https://github.com/yetone/cumora
1•jinqueeny•3m ago•0 comments

Autists Posts to Moltbook

https://www.moltbook.com/post/134f96ff-e275-45db-a52c-561b68b8c923
1•andytratt•4m ago•0 comments

Skills from a Smart Bear

https://skills.asmartbear.com/
1•duck•4m ago•0 comments

Identity Theft, Credit Reports, and You

https://www.kalzumeus.com/2017/09/09/identity-theft-credit-reports/
1•Anon84•6m ago•0 comments

Con Kolivas Revives -ck Patches & MuQSS To Improve Linux Desktop Responsiveness

https://www.phoronix.com/news/Con-Kolivas-Linux-Patches-2026
1•voxadam•6m ago•0 comments

Sources: NBA has no evidence Ballmer funneled money to Leonard via sponsors

https://www.espn.com.au/nba/story/_/id/49639157/nba-la-clippers-aspiration-investigation-steve-ba...
2•edfsadfer•7m ago•0 comments

Cursor Origin is now live

https://xcancel.com/cursor_ai/status/2089399057659596847
1•SpyCoder77•7m ago•0 comments

Examining RFK Jr.'S Role in the Measles Outbreak

https://www.nationalreview.com/news/examining-rfk-jr-s-role-in-the-measles-outbreak/
1•petethomas•7m ago•0 comments

U.S. data-center capacity may nearly double by 2028

https://aicharts.grok.me/c/data-center-power
1•echohive42•8m ago•0 comments

Russia fires economist over Ukraine war warning

https://www.ft.com/content/a1b720e3-e1e6-4a13-bdb0-9cc27399ceb4
1•petethomas•10m ago•0 comments

Linux 7.2 Released

https://kernelnewbies.org/Linux_7.2
1•diegocg•12m ago•1 comments

AI writes dead code – the Go team's deadcode tool finds it in one command

https://towardsdev.com/how-to-find-and-remove-the-dead-code-your-agent-wrote-752eb1e738d0?sk=283d...
1•cheikhdev•13m ago•0 comments

Why Is It So Hard to Build a Transformer?

https://www.nytimes.com/interactive/2026/08/17/magazine/transformers-power-electric-grid.html
1•donohoe•16m ago•0 comments

MidWestWhips

http://www.midwestwhips.com/index.html
2•sickophancy•19m ago•0 comments

3D FPS Gaming on the Commodore PET [video]

https://www.youtube.com/watch?v=aTkArf0htMw
1•amichail•22m ago•0 comments

Pfizer, Valneva Lyme vaccine starts review in Europe

https://pharmaphorum.com/news/pfizer-valneva-lyme-vaccine-starts-review-europe
1•cubefox•23m ago•0 comments

Feel the burn: 90% of people heal faster by focusing on their pain – study

https://www.timesofisrael.com/feel-the-burn-90-of-people-heal-faster-by-focusing-on-their-pain-is...
2•calf•25m ago•1 comments

DOJ Official Flags Stanford for Scrutiny over Foreign Donations

https://www.bloomberg.com/news/articles/2026-08-17/doj-official-flags-stanford-for-scrutiny-over-...
2•petethomas•25m ago•0 comments

The bitter lesson is the observation in artificial intelligence

https://en.wikipedia.org/wiki/Bitter_lesson
2•doener•27m ago•0 comments

Multi-stage distributed query execution in ClickHouse Cloud

https://clickhouse.com/blog/multi-stage-distributed-query-execution-clickhouse-cloud
1•samaysharma•27m ago•0 comments

Bluesky draws its logo on screenshots

https://timmarinin.net/2026/bluesky-screenshots/
44•gavide•29m ago•26 comments

scScript for Linux

https://scapplications.com/
3•OptionOfT•31m ago•1 comments

Sailors on the USS Abraham Lincoln reportedly dealing with poor conditions

https://taskandpurpose.com/news/uss-abraham-lincoln-conditions-sailors/
3•bushwart•32m ago•0 comments

The Carrion-Eaters: What We Did to Jason Arday

https://samkriss.substack.com/p/the-carrion-eaters
3•jiblish•32m ago•0 comments

Nation's Largest Reservoirs Are Drying Up, Threatening Life in the Southwest

https://www.nytimes.com/2026/08/17/climate/lake-powell-record-low-colorado.html
13•johntfella•34m ago•13 comments

DEF Con 33 – Kill List: Hacking an Assassination Site on the Dark Web [video]

https://www.youtube.com/watch?v=cYZmRp90hss
2•Bender•37m 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.