frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

The top,771 sites block at least one AI search crawler

https://ai-visibility.lastminutedealshq.com/sites-blocking-ai-search
1•reesecalder•1m ago•0 comments

Prototype graph-based social media

https://neui-connect.vercel.app?_vercel_share=f3VnOd8GCZwFxssgRBoj9FUXqHwg8hBC
1•Evanescia•2m ago•0 comments

O'Charley's

https://en.wikipedia.org/wiki/O%27Charley%27s
1•Bluestein•3m ago•0 comments

Apple, Please Open Up iOS

https://swapnilchauhan.com/blog/apple-please-open-up-ios/
1•swapxstar•4m ago•1 comments

Show HN: Xivizley – Visual Docker Compose and Homelab Architect

https://xivizley.com.tr
1•Xivizley•4m ago•0 comments

Reaction: "A Quick Look at Atomics in C"

https://informationalwayswin.blogspot.com/2026/09/reaction-quick-look-at-atomics-in-c.html
1•odilelof•9m ago•0 comments

Show HN: Liniora – Ever thought about replacing your project manager?

https://liniora.com
3•omarammura•12m ago•0 comments

"The CUDA Moat is Gone" – TechTechPotato with AI& founder David Bennet [video]

https://www.youtube.com/watch?v=TiRxcPQNcBA
3•olvy0•13m ago•0 comments

Experiment: How easy is it to buy a research paper on the black market?

https://news.err.ee/1610129869/experiment-how-easy-is-it-to-buy-a-research-paper-on-the-black-market
4•jruohonen•14m ago•0 comments

OpenRGB 1.0 Released

https://openrgb.org/
2•MattTheRealOne•16m ago•0 comments

Show HN: Rust-split – save your tokens on large Rust source files

4•owebeeone•17m ago•1 comments

Build with Replit Against Managed Postgres in Databricks Apps

https://docs.replit.com/updates/2026/09/11/changelog
1•utiiiD•18m ago•0 comments

Journal Editors: How are you evaluating AI assisted papers?

https://mathoverflow.net/questions/515144/journal-editors-how-are-you-evaluating-ai-assisted-papers
1•jjgreen•20m ago•0 comments

We're All Going to Die

https://www.noahpinion.blog/p/heres-how-were-all-going-to-die
2•throw0101a•21m ago•0 comments

Karaoke for one: China's $1T 'loneliness economy'

https://www.cnn.com/2026/09/12/business/asia-loneliness-economy-intl-hnk-dst
1•michaelsbradley•22m ago•0 comments

Overshoot: The World Is Hitting Point of No Return on Climate

https://e360.yale.edu/features/1.5-degrees-tipping-points
2•throw0101a•23m ago•0 comments

Hydra

https://en.wikipedia.org/wiki/Hydra_(genus)
1•tosh•23m ago•0 comments

Show HN: Parallel Coding Agents on Mobile

https://github.com/PlathsOven/maestro
4•Entropnt•24m ago•0 comments

Show HN: Email Client with Backups

https://mailvaultapp.com/
1•spacecash21•24m ago•0 comments

AI changing the calculus for Canadian students interested in comp sci

https://www.theglobeandmail.com/canada/article-ai-computer-science-students-and-schools-that-hope...
3•AnodicElegy•27m ago•1 comments

Fresh: Terminal based IDE and text editor: easy, powerful and fast

https://github.com/sinelaw/fresh
2•linkdd•27m ago•0 comments

TinyEMU is a system emulator for the RISC-V and x86 archs

https://github.com/dearchap/tinyemu
2•Bluestein•29m ago•0 comments

ProLogium begins mass production of solid-state battery at 381 Wh/kg

https://finance.yahoo.com/energy/articles/prologium-begins-mass-production-high-070000793.html
2•akamaka•29m ago•0 comments

HTTPS Everywhere?

https://blog.altos.au/post/https-everywhere/
1•meetpateltech•31m ago•0 comments

Subjective reports and visual targets during attempted out-of-body experiences

https://www.sciencedirect.com/science/article/abs/pii/S1550830726001941?via%3Dihub
2•bookofjoe•36m ago•0 comments

Here Comes the Sun

https://granta.com/here-comes-the-sun/
1•jruohonen•38m ago•1 comments

Show HN: TattooPreview AI – a planning workflow for tattoo artist conversations

https://tattoopreviewai.com
2•robot1996•41m ago•0 comments

Show HN: I wrote a book on using AI in game design production (free on GitHub)

https://github.com/eremes81/game-design-ai-practice-en
3•eremes81•42m ago•0 comments

Fuck it, make it anyway

https://www.joelotter.com/posts/2026/09/make-it-anyway/
54•JayOtter•44m ago•20 comments

Dimit – warm a Mac screen to pure red and pin the backlight against PWM

https://github.com/azakapro/dimit
2•azakapro•45m 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.