frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Fermat's Last Theorem: Anthropic has beaten me to it

https://xenaproject.wordpress.com/2026/09/04/flt-anthropic-has-beaten-me-to-it/
1•ravenical•56s ago•0 comments

Patterns of Cairo

https://www.patternsofcairo.com
1•asimpletune•2m ago•0 comments

Trump administration opens probe into Tesla's self-driving Cybercab

https://www.politico.com/news/2026/09/04/trump-cybercab-musk-probe-01064706
2•apparent•3m ago•0 comments

AWS-bench: Benchmark for evaluating AI coding agents on real-world AWS tasks

https://github.com/aws-bench/aws-bench
1•Betelbuddy•5m ago•0 comments

OpenAI agents hijacked German website before Hugging Face hack, report claims

https://www.bbc.com/news/articles/ckg725z5kgzo
1•theanonymousone•5m ago•0 comments

Could Cargo's scheduler be better?

https://spirali.github.io/blog/cargo-scheduler/
1•birdculture•7m ago•0 comments

Thinking in Code

https://aishwaryagoel.com/thinking-in-code/
1•agcat•9m ago•0 comments

Data from drones in Ukraine is fueling a new Wild West marketplace

https://www.technologyreview.com/2026/09/04/1143452/drone-data-wild-west/
1•jonbaer•10m ago•0 comments

Ask HN: How do you know if you have a product problem or a distribution one?

1•mustafak99•13m ago•0 comments

Friendly names for private services using Headscale, CoreDNS and DNSimple

https://www.coryd.dev/posts/2026/friendly-names-for-private-services-using-headscale-coredns-and-...
1•cdrnsf•14m ago•0 comments

Prediction: GPU's are currently the cheapest they're ever gonna be

1•217•17m ago•2 comments

Blockchain und Bitcoin erklärt in 6 Episoden – Episode 5

https://medium.com/@chris.ahrweiler/blockchain-und-bitcoin-erkl%C3%A4rt-in-6-episoden-episode-5-1...
1•docjojo•17m ago•0 comments

Household Laser Cuts

https://cceckman.com/writing/household-laser-cuts/
2•evakhoury•18m ago•0 comments

EPA Moves to Drop Protections for More Wetlands

https://www.nytimes.com/2026/09/04/climate/epa-wetlands-water-protections.html
1•jonrcooper•18m ago•0 comments

Zstandard einfach erklärt in 2 Episoden – Episode 2

https://medium.com/@chris.ahrweiler/zstandard-einfach-erkl%C3%A4rt-in-2-episoden-episode-2-1d8e4c...
1•docjojo•19m ago•0 comments

What Is a Neki Router?

https://planetscale.com/blog/what-is-a-neki-router
1•yakkomajuri•19m ago•0 comments

Patient Received Pig Kidney Becomes First to Progress to Human Kidney Transplant

https://hms.harvard.edu/news/patient-who-received-pig-kidney-becomes-first-progress-human-kidney-...
1•DeepLogin•20m ago•0 comments

Chinese businesses giving away AI tokens with coffee, credit cards, dumplings

https://restofworld.org/2026/china-ai-tokens-consumer-rewards-credit-cards-telcos-deepseek/
4•billybuckwheat•21m ago•0 comments

Atmosphere Explorer Browse and manage data across the AT Protocol

https://pds.ls/
2•Bluestein•21m ago•0 comments

Show HN: Marketplace for finding craft fairs and vendor events

https://www.boothscout.com
2•wowinter15•22m ago•1 comments

What is known about how Eric Lu factored the 862-bit RSA-260 after 35 years

https://lilting.ch/en/articles/rsa-260-factored-how-computed
2•upofadown•23m ago•0 comments

Show HN: Set Game for iOS

https://apps.apple.com/us/app/setle/id6801995128
1•elilevin•24m ago•0 comments

Statichost.eu – 100% European static site hosting

https://www.statichost.eu/
5•p4bl0•26m ago•0 comments

Ask HN: Anyone's gonna use GPT-6 Astra in Microsoft Foundry?

1•skwasimin•28m ago•0 comments

Kubernetes Promotes Kyaml as a Safer, More Consistent Way to Work with Manifests

https://www.infoq.com/news/2026/09/kubernetes-kyaml-manifests/
3•theanonymousone•30m ago•0 comments

Macha: Save 42% tokens. Use South Indian English inspired response style for AI

https://github.com/kingroryg/macha
2•rgbimbochamp•31m ago•0 comments

Show HN: Tesoro.help – rogue AI helpdesk for my kid's high school

https://tesoro.help/
1•MediaSquirrel•31m ago•0 comments

Scientists observe Einstein's gravity in the quantum world

https://www.ox.ac.uk/news/2026-08-28-scientists-observe-einsteins-gravity-in-the-quantum-world
1•mudil•32m ago•0 comments

Doh-proxy – An simple DNS-over-HTTPS (DoH) proxy server written in Go

https://github.com/afonsofrancof/doh-proxy
1•peter_d_sherman•32m ago•0 comments

OpenAI rolls out GPT-6 Astra to Pro, Enterprise

https://9to5mac.com/2026/09/04/openai-releasing-major-upgrade-to-chatgpt-and-codex-with-gpt-6-ast...
1•utiiiD•33m 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.