frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Codex starts encrypting sub-agent prompts

https://github.com/openai/codex/issues/28058
301•embedding-shape•3h ago•184 comments

Codex scraped the ICM website and discovered 2026 Fields Medal winner list

https://phemex.com/news/article/2026-fields-medal-winners-list-leaked-includes-two-peking-univers...
116•zaikunzhang•3h ago•79 comments

Proof of Care in the Age of A.I

https://jacobfilipp.com/care/
74•jfil•1h ago•36 comments

Beautiful Type Erasure with C++26 Reflection

https://ryanjk5.github.io/posts/rjk-duck/
41•RyanJK5•1h ago•15 comments

OpenAI mandates hardware-backed passkeys for Trusted Access Cyber members

https://www.yubico.com/blog/openai-mandates-hardware-backed-passkeys-for-trusted-access-cyber-mem...
16•speckx•27m ago•4 comments

Coding agents think ahead of time

https://arxiv.org/abs/2607.05188
46•andre15silva•2h ago•34 comments

Demis Hassabis has a plan to harness AI safely

https://twitter.com/demishassabis/status/2076957440109625718
14•asiergoni•5h ago•3 comments

Show HN: I RL-trained an agent that trains models with RL (for –$1.3k)

https://github.com/Danau5tin/ai-trains-ai
40•Danau5tin•1h ago•16 comments

Tensor Is the Might

https://zserge.com/posts/tensor/
22•eatonphil•1h ago•8 comments

Kids (With Phones) Are Alright

https://heatherburns.tech/2026/07/08/the-kids-with-phones-are-alright/
39•JumpCrisscross•3d ago•39 comments

Japan develops a method to recover up to 90% of lithium from used EV batteries

https://tech.supercarblondie.com/japan-recovers-up-to-90-of-lithium-from-used-ev-batteries/
655•donohoe•12h ago•174 comments

A Philosopher's One-Word Theory to Explain Why the World Feels So Weird

https://www.derekthompson.org/p/a-philosophers-one-word-theory-to
6•FinnLobsien•22m ago•2 comments

Punch Yourself in the Face with Reality

https://adi.bio/reality
72•AdityaAnand1•3h ago•30 comments

Show HN: Juggler – an open-source GUI coding agent, by the creator of JUCE

https://github.com/juggler-ai/juggler
8•julesrms•1d ago•2 comments

Alternative(s) to run CUDA on non-Nvidia hardware

https://www.hpcwire.com/2026/07/09/spectral-compute-aims-to-set-cuda-free-will-it-succeed/
94•alok-g•6h ago•43 comments

Actegories

https://bartoszmilewski.com/2026/06/30/actegories/
32•ibobev•3h ago•4 comments

Germany set to restrict its Freedom of Information Act

https://www.dw.com/en/germany-freedom-of-information-act/a-77939695
140•robtherobber•2h ago•82 comments

Australian energy retailers must provide three hours of free daytime electricity

https://lenergy.com.au/free-daytime-electricity-is-coming-heres-how-it-actually-works/
175•i2oc•10h ago•274 comments

Differentiable Fortran with LFortran and Enzyme

https://docs.pasteurlabs.ai/projects/tesseract-core/latest/blog/2026-07-09-enzyme-lfortran-autodi...
21•dionhaefner•2h ago•4 comments

Paxos Made Simple (2001)[pdf]

https://lamport.azurewebsites.net/pubs/paxos-simple.pdf
7•grep_it•4d ago•0 comments

Indian scientists produce most detailed 3D atlas of the human brainstem

https://www.bbc.com/news/articles/cg53l737v1qo
126•BaudouinVH•7h ago•16 comments

The git history command

https://lalitm.com/post/git-history/
373•turbocon•13h ago•257 comments

The Future Worth Building Is Human

https://thinkingmachines.ai/blog/the-future-worth-building-is-human/
77•bilsbie•3h ago•46 comments

Just Let Me Write Digits

https://gendx.dev/blog/2026/07/13/input-digits.html
117•brandon_bot•8h ago•44 comments

YouTrackDB is a general-use object-oriented graph database

https://github.com/JetBrains/youtrackdb
153•gjvc•11h ago•53 comments

Notable Knot Index (2016)

https://knots.neocities.org/knotindex
49•surprisetalk•5d ago•7 comments

Fundamentals of Wireless Communication (2005)

https://web.stanford.edu/~dntse/wireless_book.html
159•teleforce•12h ago•10 comments

New York becomes the first state to impose a data center moratorium

https://www.reuters.com/world/new-york-becomes-first-state-impose-data-center-moratorium-2026-07-14/
10•granfalloon•22m ago•0 comments

Show HN: Rejourney – Open-source revenue leak prediction for web and mobile apps

https://github.com/rejourneyco/rejourney
20•mrr7337•3h ago•2 comments

How to build a circular LCD clock

https://blinry.org/lcd-clock/
119•birdculture•2d ago•54 comments
Open in hackernews

Differentiable Fortran with LFortran and Enzyme

https://docs.pasteurlabs.ai/projects/tesseract-core/latest/blog/2026-07-09-enzyme-lfortran-autodiff.html
21•dionhaefner•2h ago

Comments

dionhaefner•2h ago
Author here — I work on Tesseract at Pasteur Labs, and I wrote this up because the "what if this was possible" was bugging me for way too long :)

I was surprised by how well this worked, the LFortran + Enzyme stack seems to be a very clean way to get gradients through Fortran code via LLVM IR transformations. Pretty cool to see a 220-line Fortran heat solver turn into ~6,900-line reverse pass automatically if I dare say so.

Would be awesome to see this applied to a real scientific codebase, and I hope that the demo is enough to convince people that it’s worth trying.

srean•36m ago
Very interesting. Does LFortran have the same internal array layout as the standard C runtime ?

A shared layout and a shared calling convention would be very nice.

Sorry about my naive question. Haven't touched Fortran directly in three decades I think.

EDIT: thanks for your reply. For some reason it has been flagged dead. So am responding here. You can mail dang hn at ycombinator dot co m about the flagging. He is very nice.

wombatpm•10m ago
Lots of scientific code in Fortran has sparse arrays, so a NxN array that only has values on 5 diagonals will store that as 5xN array to save memory allowing you to run a larger problem.
srean•6m ago
That's a very orthogonal issue.

Sparse arrays are supported on C libraries too. I have done my time with CSC and CSR even inside Python that called out to C libraries.