frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Isar Aerospace reaches orbit and deploys payloads on second flight

https://isaraerospace.com/press/history-for-european-spaceflight-isar-aerospace-reaches-orbit-and...
81•mpweiher•2h ago•3 comments

Cloud in a Bottle: making self-hosting accessible to everyone

https://cloudinabottle.org/blog/launch-post
389•zplizzi•9h ago•180 comments

Play GTA Vice City in the Browser

https://quenq.com/apps/vice-city-online/
28•rzk•2h ago•10 comments

Music Theory for Programmers

https://runjs.app/blog/music-theory-for-programmers
118•birdculture•3d ago•51 comments

The revolt of the reader

https://bcantrill.dtrace.org/2026/09/05/the-revolt-of-the-reader/
350•chmaynard•11h ago•139 comments

The ColorChecker, photography's most important 24 squares, turns 50

https://www.dpreview.com/news/the-colorchecker-photographys-most-important-24-squares-turns-50/
60•sohkamyung•4d ago•9 comments

OpenBSD Stories: Strange Medieval Devices

http://miod.online.fr/software/openbsd/stories/smd.html
60•zdw•3d ago•11 comments

AI, Tools and Transformation

https://www.ben-evans.com/benedictevans/2026/9/3/ai-tools-and-transformation
54•firexcy•7h ago•19 comments

Watch the 'Eclipse of the Century' Next Year When Spain, Egypt and More Go Dark

https://www.nytimes.com/2026/08/13/travel/solar-eclipse-2027-morocco-egypt.html
24•bookofjoe•3d ago•26 comments

AMD Based FreeBSD Desktop Reloaded

https://vermaden.wordpress.com/2026/09/06/amd-based-freebsd-desktop-reloaded/
48•vermaden•7h ago•3 comments

Chrome again exempts Google from user site data settings

https://lapcatsoftware.com/articles/2026/9/1.html
394•ExMachina73•9h ago•58 comments

Learn Programming with OCaml

https://usr.lmf.cnrs.fr/lpo/
253•elvis70•16h ago•93 comments

Discovery of a new OpenAI agent message board

https://collusion.wiki/
2186•moultano•1d ago•1543 comments

The "$60 Gaming PC" – AMD BC-250 (2025)

https://devquasar.com/hardware/the-60-gaming-pc-amd-bc-250/
341•networked•19h ago•99 comments

Private German rocket makes history, reaches orbit from European soil

https://www.space.com/space-exploration/launches-spacecraft/isar-aerospace-second-launch-norway-a...
594•bookmtn•13h ago•308 comments

A Computer History Time Capsule

https://blog.archive.org/2026/08/27/a-computer-history-time-capsule/
6•mooreds•4d ago•0 comments

IBM Quantum Nighthawk R2

https://www.ibm.com/quantum/blog/nighthawk-r2
3•fuglede_•3d ago•0 comments

Actively exploited sandbox RCE in all Chromium versions

https://nvd.nist.gov/vuln/detail/cve-2026-85046
775•negura•1d ago•467 comments

GPT-6 Astra on robot arms

https://openai.robocurve.org/gpt-6-astra/
179•Anon84•7h ago•131 comments

Nitter has more working instances than before the takedowns

https://codeberg.org/mv12star/shitter/wiki/Instances
679•Cider9986•1d ago•343 comments

Visualizing Rust's Vtables: How dyn Trait Works In Memory

https://sofiabelen.github.io/projects/visualizing-rusts-vtables-how-dyn-trait-works-in-memory/
172•torutofu•20h ago•32 comments

You Don't Have a Right to Safe Drinking Water, US Court Rules

https://www.motherjones.com/politics/2026/09/drinking-water-mississippi-lawsuit/
7•vrganj•20m ago•0 comments

Topologist's Map of the World

https://www.futilitycloset.com/2026/09/01/small-world-20/
87•beardyw•4d ago•25 comments

LLMs as a Cognitive Virus

https://arxiv.org/abs/2609.03344
270•canjobear•13h ago•197 comments

Site Is Closed on Sundays

https://v7.robweychert.com/
83•edent•3h ago•87 comments

How Swiss tables work in Go built-in map

https://victoriametrics.com/blog/go-swiss-table-map/index.html
78•valyala•2d ago•5 comments

RecurseCenter.return()

https://mm-dev.rocks/series/recursecenter.return/
49•evakhoury•4d ago•8 comments

Matching Puzzle Pieces and Disappointing Benchmarks

https://llogiq.github.io/2026/03/20/case.html
5•speckx•2d ago•0 comments

Balrogg: Demonically compacting (up to 15%) lossless Vorbis/Opus recompressor

https://github.com/iczelia/balrogg
82•palaiologos•2d ago•11 comments

Delidded Intel I9-14900KS CT Scan

https://www.lttlabs.com/articles/2026/09/02/delidded-intel-i9-14900ks
100•willx86•3d ago•5 comments
Open in hackernews

JEP 515: Ahead-of-Time Method Profiling

https://openjdk.org/jeps/515
101•cempaka•1y ago

Comments

nmstoker•1y ago
Would be interesting if the Faster Python team considered this approach for Python (although maybe they already did?)
motoboi•1y 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•1y 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•1y ago
I thought Graal was going to slowly replace HotSpot?
vips7L•1y ago
There was talk of the graal jit replacing C2, but native image will never replace HotSpot.
mshockwave•1y 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•1y ago
Is this similar/the same as Azul Zing’s ReadyNow feature?
rst•1y 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•1y 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•1y 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.