frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

OpenAI GPT–6 Astra breaks Enigma message that has resisted solution since 2005

https://www.cryptocellar.org/bgac/the-mvueh-break.html
153•sohkamyung•1h ago•166 comments

OpenAI is about to eat Jev's lunch – Arcturus Labs

https://arcturus-labs.com/blog/2026/09/21/will-openai-eat-jevs-lunch/
37•JohnBerryman•25m ago•15 comments

Show HN: Drop – a rootless Linux sandbox with gVisor support

https://droprun.sh/
43•mixedbit•1h ago•7 comments

Jev – a curation of Jev demos on X, tools, skills, and integrations

https://github.com/Amal-David/awesome-jev
15•frostbyte7•25m ago•0 comments

Apple has added persistent 'ads' to iOS, and it's driving users crazy

https://www.techradar.com/phones/iphone/i-wish-apple-would-just-stop-that-crap-apple-has-added-pe...
89•MC995•37m ago•42 comments

Can gzip be a language model?

https://nathan.rs/posts/gzip-lm/
292•networked•8h ago•113 comments

MiMo v2.6

https://mimo.xiaomi.com/mimo-v2-6
1003•volf_•18h ago•453 comments

What Capital Never Told You About Rent

https://www.humansontheloop.com/p/rent
17•longitudinal93•2h ago•12 comments

Spymarks, Not Watermarks

https://brand.io/article/spymarks/
586•possibilistic•16h ago•141 comments

Quantum information spreading via higher-order operator correlators

https://arxiv.org/abs/2609.05472
5•northlondoner•45m ago•0 comments

Line Scan Photos from MUNI Heritage Weekend in San Francisco

https://daniel.lawrence.lu/blog/2026-09-20-muni-heritage-weekend/
74•plun9•1d ago•13 comments

We broke an Over-The-Air update on the ESP32 on purpose

https://groundrun.io/blog/we-broke-an-over-the-air-update-on-the-esp32-on-purpose/
9•adunk•1d ago•1 comments

Attention is all you have

https://alicegg.tech/2026/09/21/attention
960•zer0tonin•1d ago•288 comments

Transformers Explained Visually

https://poloclub.github.io/transformer-explainer/
534•aray07•19h ago•79 comments

I said no and Apple said yes

https://dbushell.com/2026/09/22/apple-intelligence/
556•thatslast•7h ago•446 comments

What Sun got wrong

https://bcantrill.dtrace.org/2026/09/20/what-sun-got-wrong/
643•chmaynard•1d ago•367 comments

AMD's random number generator can't generate a 0?

https://board.flatassembler.net/topic.php?t=24261
171•BruceEel•6h ago•127 comments

A font that reads what you wrote

https://rohanadwankar.github.io/posts/semfont.html
57•RohanAdwankar•2d ago•32 comments

I don't want to read what you didn't write

https://blog.colinbreck.com/i-dont-want-to-read-what-you-didnt-write/
870•mooreds•16h ago•367 comments

AI Has No Wisdom and Neither Will You

https://alexn.org/blog/2026/09/22/ai-has-no-wisdom-and-neither-will-you/
276•dimonomid•2h ago•396 comments

9 Ads per Minute: FIFA Cup 26 – "the price of the beautiful game"

https://www.bristol.ac.uk/news/2026/september/world-cup-viewers.html
137•KellyCriterion•4h ago•173 comments

MiMo-v2.6-Pro: Intelligence, Performance and Price Analysis

https://artificialanalysis.ai/models/mimo-v2-6-pro
124•theanonymousone•11h ago•47 comments

Muse, Meta's extraordinarily privileged AI assistant, has a serious 0-day

https://arstechnica.com/security/2026/09/muse-metas-extraordinarily-privileged-ai-assistant-has-a...
8•pavel_lishin•32m ago•1 comments

AI coding has made CI a bottleneck, so we reworked ours to keep up

https://linear.app/now/ci-bottleneck-reworked
285•julian_digital•19h ago•350 comments

Engineering Memory: On learning to memorize first 100 digits of pi (2024)

https://gregorygundersen.com/blog/2024/12/21/engineering-memory/
45•fuzzythinker•1d ago•29 comments

What It's Like to Work in One of America's Data Centers

https://www.wsj.com/business/what-its-like-to-work-in-one-of-americas-data-centers-b4358003
44•JumpCrisscross•1d ago•37 comments

Divide by depth for instant 3D

https://gabrieloc.com/2026/09/15/perspective.html
193•gabrieloc•2d ago•35 comments

Verda (Finland) raises $189M in Series B

https://verda.com/blog/what-189m-in-funding-unlocks-for-verda-customers
77•cmrdporcupine•5h ago•27 comments

People Training OpenAI's AI Fired for Using AI to Train the AI

https://www.404media.co/people-training-openais-ai-fired-for-using-ai-to-train-the-ai/
38•pier25•1h ago•21 comments

NASA’s Mars Sample Return mission is dead

https://www.science.org/content/article/nasa-s-mars-sample-return-mission-dead
433•Muhammad523•19h ago•348 comments
Open in hackernews

The Lisp in the Cellar: Dependent types that live upstairs [pdf]

https://zenodo.org/records/15424968
88•todsacerdoti•1y ago
Downloadable: https://zenodo.org/records/15424968/files/deputy-els.pdf

Comments

droideqa•1y ago
Sadly "deputy clojure" on Google brings no results...

The only hint is this repo[0] referenced in the paper.

[0]: https://gitlab.com/fredokun/deputy

agumonkey•1y ago
Pretty readable code
reuben364•1y ago
Thinking out aloud here.

One pattern that I have frequently used in EMACS elisp is that redefining a top-level value overwrites that value rather than shadowing it. Basically hot reloading. This doesn't work in a dependently typed context as the type of subsequent definitions can depend on values of earlier definitions.

    def t := string
    def x: t := "asdf"
    redef t := int
redefining t here would cause x to fail to type check. So the only options are to either shadow the variable t, or have redefinitions type-check all terms whose types depend on the value being redefined.

Excluding the type-level debugging they mention, I think a lean style language-server is a better approach. Otherwise you are basically using an append-only ed to edit your environment rather than a vi.

extrabajs•1y ago
I don’t see the connection to dependent types. But anyway, is ‘redef’ part of your language? What type would you give it?
reuben364•1y ago
I just wrote redef to emphasize that I'm not shadowing the original definition.

    def a := 1
    def f x := a * x
    -- at this point f 1 evaluates to 1
    redef a := 2
    -- at this point f 1 evaluates to 2
But with dependent types, types can depend on prior values (in the previous example the type of x depends on the value t in the most direct way possible, as the type of x is t). If you redefine values, the subsequent definitions may not type-check anymore.
extrabajs•1y ago
I see what you mean. But would you not experience the same sort of issue simply from redefining types in the same way? It seems this kind of destructive operation (whether on types or terms) is the issue. As someone who's used to ML, it seems strange to allow this kind of thing (instead of simply shadowing), but maybe it's a Lisp thing?
resize2996•1y ago
> EMACS elisp

I used this to write the front end for an ATM machine.

wk_end•1y ago
I've fantasized about some kind of a dependently-typed Smalltalk-like thing before, and in those fantasies the solution would be that changes would be submitted in the form of transactions - they wouldn't be live until you bundled them all together into one big change that would be fully type-checked, as you describe.
dang•1y ago
Any URL for this that we can open in a browser (as opposed to the dreaded "Content-Disposition: attachment")?
Jtsummers•1y ago
https://zenodo.org/records/15424968 - This at least takes you to a webpage where you can view the paper. If you select to download it, it still downloads of course instead of just opening in the browser.
dang•1y ago
Thanks! I've switched to that above, and put the downloadable link in the top text.
reikonomusha•1y ago
Related context: The 2025 European Lisp Symposium [1] was just wrapped a few hours ago in Zurich. There was content on:

- Static typing a la Haskell with Coalton in Common Lisp

- Dependent typing with Deputy in Clojure (this post)

- The Common Lisp compiler SBCL ported to the Nintendo Switch

- Common Lisp and AI/deep learning

- A special retrospective on Modula and Oberon

- Many lightning talks.

[1] https://european-lisp-symposium.org/2025/index.html

no_wizard•1y ago
I feel like Lisp would be an ideal language for AI development. Its exceedingly good for DSL development and pattern matching. Its already structurally like math notation as well, which I would think would lend itself to thinking how models would consume information and learn
rscho•1y ago
Well... believe it or not, some have thought of using lisp for AI for quite some time. ;-)
froh•1y ago
indeed.

Peter Norvig, 1992

Paradigms of AI Programming: Case Studies in Common Lisp

https://g.co/kgs/hck8wsE

https://en.m.wikipedia.org/wiki/Peter_Norvig

it's no coincidence Google is actively maintaining sbcl, either.

Zambyte
fithisux•1y ago
Impressive.
kscarlet•1y ago
The only option that you described is called "hyperstatic global environment".

And it is called that for a reason, it is not very dynamic :) and probably too static to the taste of many Lisp and all Smalltalk fans.

•
1y ago
Why not go all the way to the source? John McCarthy coined the term "artificial intelligence", and then invented / discovered LISP in pursuit of it in the 1950s :D
ayrtondesozzla•1y ago
https://quantumzeitgeist.com/lisp-and-the-dawn-of-artificial...

Lisp was the de facto language of artificial intelligence in the U.S. for many years. Apparently Prolog was popular in Europe (according to Norvig's PAIP)