frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Semantica, the Open Source Palantir for AI Agents

https://github.com/semantica-agi/semantica
1•jinqueeny•2m ago•0 comments

Show HN: FerrumPix Photo/RAW-Editor, Viewer, Gallery, Immich & Nextcloud Client

https://github.com/Bitpainter75/FerrumPix
1•Bitpainter•8m ago•0 comments

Show HN: Overcoming silicon-level aging through fault tolerance (PoC)

https://github.com/PJHkorea/adiabatic-silicon-aging-guard
1•PJHkorea•9m ago•1 comments

Show HN: A new way to read books, magnifying in and out

https://book.curiora.space/
1•pentagram•9m ago•0 comments

PINE64 halts their open-source hardware manufacturing until the AI bubble bursts

https://www.hackster.io/news/pine64-calls-time-on-the-linux-hardware-market-ceases-production-unt...
1•taxmeifyoucan•11m ago•1 comments

China Saved the Global Oil Market

https://www.commoditycontext.com/p/public-how-china-saved-the-global-oil-market
2•mooreds•11m ago•0 comments

Everyone's Using This A.I. Dictation App That I Want to Murder with a Hammer

https://www.nytimes.com/2026/08/19/magazine/ai-dictation-app-wispr.html
3•appleappleapple•13m ago•0 comments

Show HN: Bests and Worsts Reviews from Amazon

https://bestsandworsts.greg.technology/review/213786376627934
1•gregsadetsky•14m ago•0 comments

Show HN: A free accessibility scanner that says what it can't check

https://a11yscan.win
1•jrichard2026•14m ago•0 comments

Two Memory Management Optimizations Going into Linux 7.3

https://www.phoronix.com/news/Linux-7.3-MM
1•Bender•16m ago•0 comments

Corsair Cove

https://store.steampowered.com/app/1368140/Corsair_Cove/
1•doener•17m ago•0 comments

Japan to require AI firms to disclose training data

https://www.japantimes.co.jp/news/2026/08/19/japan/ai-training-data-disclosure/
2•anigbrowl•18m ago•1 comments

Two hours from idea to a live URL

https://dev.profullstack.com/~anthony/blog/024-post.html
2•buffer_overlord•21m ago•0 comments

Orion: The open-source agentic BI platform

https://orion-agent.ai
2•nicolasakf•21m ago•0 comments

Flight attendants and pilots have highest risk of dying from radiation cancers

https://www.cbc.ca/news/health/flight-crews-cancer-risk-9.7311245
1•throw0101d•21m ago•0 comments

Collaborative Human Agent Protocol (CHAP)

https://github.com/BrightbeamAI/chap
4•arsalanshahid•22m ago•0 comments

Open-fx: forked fx to run on subs

2•t0dorakis•23m ago•0 comments

Claude Opus 4.6: 900/900 zero-byte executions under a frozen protocol

https://zenodo.org/records/21696066
2•rayanpal_•24m ago•0 comments

Composing CRDTs Convergent by Construction

https://2026.splashcon.org/details/oopsla-2026/104/Composing-CRDTs-Convergent-by-Construction
2•matt_d•25m ago•0 comments

Plain Text Accounting Is Pretty Cool

https://sumnerevans.com/posts/money/plain-text-accounting/
1•birdculture•27m ago•0 comments

Node.js AI use policy and guidelines

https://github.com/nodejs/node/blob/main/doc/contributing/ai-guidelines.md
2•thesdev•28m ago•0 comments

Ask HN: We have company runway but not founder time. When do you go full-time?

3•throwaway604yvr•29m ago•0 comments

When William Schneiderman and California Communists Defeated the Smith Act

https://greysidewalk.substack.com/p/when-william-schneiderman-and-california
2•GreySidewalk•31m ago•0 comments

Reclaim the Terminal

https://nishantjosh.dev/blogs/reclaim-the-terminal/
3•cat-whisperer•32m ago•1 comments

I hijacked my Hacker News habit to learn Spanish

https://www.orangecrumbs.com/stories/how-i-hijacked-my-hacker-news-habit
1•oyster143•33m ago•0 comments

Cicada.os Graphene.os for Your Laptop

https://kpres12.github.io/Cicada.OS/
1•kpres62•34m ago•1 comments

Sing-song: a speakable encoding for long numbers and keys

https://blog.vrypan.net/2026/08/19/260819-sing-song/
1•emigre•34m ago•0 comments

OpenInfer Cloud: Free Access for Creative Developers

https://openinfer.io/cloud/
1•cjbuffington•35m ago•0 comments

Show HN: A React component optimized for 1987

https://github.com/smysnk/react-retro-display-tty-ansi-ascii
1•smysnk•37m ago•0 comments

Programming Lewis Carroll's Memoria Technica (2024)

https://ztoz.blog/posts/memoria_technica/
1•emigre•39m 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.