frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Codex starts encrypting sub-agent prompts

https://github.com/openai/codex/issues/28058
300•embedding-shape•3h ago•182 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•33 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•81 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•273 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
125•BaudouinVH•7h ago•16 comments

The git history command

https://lalitm.com/post/git-history/
373•turbocon•13h ago•256 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

Tensor Is the Might

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

Comments

srean•58m ago
> A tensor is nothing but a flat array of numbers, plus some metadata telling you how to interpret those numbers as a multi-dimensional object.

Erm... many would disagree. I think what he means is just a multidimensional array.

zserge•51m ago
Not in a general mathematical sense, of course. Rather carthesian tensors. Seems like for most libraries it's `numpy.ndarray`: https://docs.tinygrad.org/tensor/ or https://docs.pytorch.org/docs/main/tensors.html
srean•46m ago
To add to the confusion, Mathematicians and Physicists often disagree on what that word means. A Physicist's tensor is often a mathematicians tensor field.

An appropriate tensor can certainly be represented by a multidimensional array but not all multidimensional arrays are tensors, it depends on how that multidimensional array participates with others.

For example, (lat, long) is not a 2d vector although it can be represented as a 2 dimensional array.

srean•42m ago
If one wants to add the capability to reason about shape and shape compatibility, Barry Jay's FiSh would be an interesting detour.

https://web.archive.org/web/20111015133833/http://www-staff....

This was used in his shape aware language FiSh, for dealing with multidimensional arrays. Shape compatibilities were statically type checked, if I recall correctly. Shapes were also used to optimize the loops.

[Programming in FISh] https://link.springer.com/article/10.1007/s100090050037

[Towards Dynamic Shaping] https://www.researchgate.net/publication/265975794_Towards_D...

zserge•40m ago
I wish we used something else but Python as the default ML language, so that some advanced type system would work for us to ensure tensor shapes and compatibility.
srean•27m ago
Honestly, I quite like Python most of the time. The times when I don't, argghh type errors.

The worst I have had in a while is when I was dealing with a sparse array data type and getting some processing done in a C function to speed things up.

Infuriatingly enough, the index type used to change after initialising the array. It would check if Int32 could accomodate the size of the array. If it could it would downgrade to Int32 at runtime. My C counterpart had no clue.

That was so not fun to debug because the errors were intermittent (depending on the fill factor of the sparse array)

churchsub1•
3m ago
Here's a Python library for static type checking of tensor shapes: https://pypie.dev/
srean•57s ago
Thanks. Did not know about it.