frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

The three pillars of JavaScript bloat

https://43081j.com/2026/03/three-pillars-of-javascript-bloat
154•onlyspaceghost•5h ago•73 comments

Tinybox – Offline AI device 120B parameters

https://tinygrad.org/#tinybox
439•albelfio•11h ago•263 comments

Chest Fridge (2009)

https://mtbest.net/chest-fridge/
75•wolfi1•6h ago•50 comments

Some things just take time

https://lucumr.pocoo.org/2026/3/20/some-things-just-take-time/
622•vaylian•16h ago•196 comments

Professional video editing, right in the browser with WebGPU and WASM

https://tooscut.app/
217•mohebifar•9h ago•62 comments

Cloudflare flags archive.today as "C&C/Botnet"; no longer resolves via 1.1.1.2

https://radar.cloudflare.com/domains/domain/archive.today
100•winkelmann•3h ago•40 comments

Floci – A free, open-source local AWS emulator

https://github.com/hectorvent/floci
148•shaicoleman•9h ago•37 comments

Boomloom: Think with your hands

https://www.theboomloom.com
93•rasengan0•1d ago•8 comments

Electronics for Kids, 2nd Edition

https://nostarch.com/electronics-for-kids-2e
156•0x54MUR41•3d ago•29 comments

Bayesian statistics for confused data scientists

https://nchagnet.pages.dev/blog/bayesian-statistics-for-confused-data-scientists/
95•speckx•3d ago•25 comments

Do Not Turn Child Protection into Internet Access Control

https://news.dyne.org/child-protection-is-not-access-control/
626•smartmic•10h ago•332 comments

My first patch to the Linux kernel

https://pooladkhay.com/posts/first-kernel-patch/
5•pooladkhay•2d ago•0 comments

Alpha Micro AM-1000E and AM-1200

http://oldvcr.blogspot.com/2026/03/refurb-weekend-double-header-alpha.html
11•goldenskye•3h ago•1 comments

Grafeo – A fast, lean, embeddable graph database built in Rust

https://grafeo.dev/
210•0x1997•16h ago•69 comments

Sashiko: An agentic Linux kernel code review system

https://sashiko.dev/
14•Lwrless•3h ago•1 comments

Hide macOS Tahoe's Menu Icons

https://512pixels.net/2026/03/hide-macos-tahoes-menu-icons-with-this-one-simple-trick/
174•soheilpro•13h ago•60 comments

Trivy ecosystem supply chain briefly compromised

https://github.com/aquasecurity/trivy/security/advisories/GHSA-69fq-xp46-6x23
57•batch12•2d ago•20 comments

It's Their Mona Lisa

https://ironicsans.ghost.io/its-t-mona-lisa/
15•ramimac•3d ago•2 comments

Show HN: Termcraft – terminal-first 2D sandbox survival in Rust

https://github.com/pagel-s/termcraft
108•sebosch•12h ago•19 comments

Common Lisp Development Tooling

https://www.creativetension.co/posts/common-lisp-development-tooling
79•0bytematt•11h ago•14 comments

Training Center for Maneuvering on Manned Model Ships

https://www.portrevel.com/
7•mhb•1d ago•5 comments

The paddle wheel aircraft carriers of Lake Michigan

https://signoregalilei.com/2026/03/08/the-paddle-wheel-aircraft-carriers-of-lake-michigan/
74•surprisetalk•4d ago•8 comments

Thinking Fast, Slow, and Artificial: How AI Is Reshaping Human Reasoning

https://papers.ssrn.com/sol3/papers.cfm?abstract_id=6097646
123•Anon84•15h ago•69 comments

How Invisalign became the biggest user of 3D printers

https://www.wired.com/story/how-invisalign-became-the-worlds-biggest-3d-printing-company/
153•mikhael•3d ago•115 comments

Ubuntu 26.04 Ends 46 Years of Silent sudo Passwords

https://pbxscience.com/ubuntu-26-04-ends-46-years-of-silent-sudo-passwords/
356•akersten•1d ago•349 comments

How Ford burned $12B in Brazil (2021)

https://www.reuters.com/business/autos-transportation/how-ford-burned-12-billion-brazil-2021-05-20/
48•kaycebasques•16h ago•23 comments

Show HN: Atomic – Self-hosted, semantically-connected personal knowledge base

https://github.com/kenforthewin/atomic
87•kenforthewin•11h ago•15 comments

A digital resource for studying the graffiti of Herculaneum and Pompeii

https://ancientgraffiti.org/Graffiti/
18•thomassmith65•4d ago•1 comments

Sandboxing: Foolproof Boundaries vs. Unbounded Foolishness (2025)

https://spawn-queue.acm.org/doi/10.1145/3733699
19•antlai•4d ago•0 comments

ZJIT removes redundant object loads and stores

https://railsatscale.com/2026-03-18-how-zjit-removes-redundant-object-loads-and-stores/
83•tekknolagi•3d ago•16 comments
Open in hackernews

JEP 515: Ahead-of-Time Method Profiling

https://openjdk.org/jeps/515
101•cempaka•10mo ago

Comments

nmstoker•10mo ago
Would be interesting if the Faster Python team considered this approach for Python (although maybe they already did?)
motoboi•10mo ago
The most impact will be achieved on java standard library, like Streams (cited in the article). Right now, although their behavior is well stablished and they are mostly used in the "factory" mode (no user subclassing or implementation of the stream api), they cannot be shipped with the JVM already compiled.

If you can find a way (which this JEP is one way) to make the bulk of the java standard api AOT compiled, then java programs will be faster (much faster).

Also, the JVM is already an engine marvel (java JIT code is fast as hell), but this will make java programs much nimbler.

rzwitserloot•10mo ago
I assume you meant with the AOT argument: "The initial few minutes of a JVM's existence, which would be the entire lifetime if you're using java the way you use e.g. your average executable in your `/usr/bin` dir".

Saying "java programs will be faster" is perhaps a bit misleading to those who don't know how java works. This will speed up only the first moments of a JVM execution, nothing more. Or, I misread the JEP, in which case I'd owe you one if you can explain what I missed.

As a java developer this will be lightly convenient when developing. We go through JVM warmup a lot more than your average user ever does. Personally I think I'm on the low end (I like debuggers, and I don't use TDD-style "what I work on is dictated by a unit test run and thus I rerun the tests a lot during development". But still it excites me somewhat, so that should mean your average java dev should be excited quite a bit by this.

I am not all that experienced in it, but I gather that lambda-style java deployments (self contained simple apps that run on demand and could in theory be operating on a 'lets boot up a JVM to run this tiny job which won't last more than half a second') have looong ago moved on from actually booting JVMs for every job, such as by using Graal, an existing AOT tool. But if you weren't using those, hoo boy. This gives every java app 'graal level bootup' for as far as I can tell effectively free (a smidge of disk space to store the profile).

For the kinds of java deployments I'm more familiar with (a server that boots as the box boots and stays running until a reboot is needed to update deps or the app itself), this probably won't cause a noticable performance boost.

indolering•10mo ago
I thought Graal was going to slowly replace HotSpot?
vips7L•10mo ago
There was talk of the graal jit replacing C2, but native image will never replace HotSpot.
mshockwave•10mo ago
in addition to storing profiles, what about caching some native code? so that we can eliminate the JIT overhead for hot functions

EDIT: they describe this in their "Alternative" section as future work

tikkabhuna•10mo ago
Is this similar/the same as Azul Zing’s ReadyNow feature?
rst•10mo ago
Faint echoes of the very first optimizing compiler, Fortran I, which did a monte carlo simulation of the flow graph to attempt to detect hot spots in the flow graph so it could allocate registers to inner loops first.
indolering•10mo ago
OpenJ9 has had some of this type of functionality for a while now. Glad to see the difference between interpreted and compiled languages continue to get fuzzier.
pjmlp•10mo ago
Even longer than that, OpenJ9 AOT capabilities, and JIT cache, go back to the Websphere Real-Time JVM, whose branding had nothing to do with J2EE application server.

Most documentation is gone from the Internet, I was able to dig one of the old manuals,

https://ftpmirror.your.org/pub/misc/ftp.software.ibm.com/sof...

These kind of features have been available in commercial JVMs like those for a while now, what the community is finally getting are free beer versions of such capabilities.