frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Hermes Kanban – Multi-Agent Profile Collaboration

https://hermes-agent.nousresearch.com/docs/user-guide/features/kanban
1•fallinditch•4m ago•1 comments

Show HN: HP Jornada 545 Emulator

https://lapocket.neocities.org/
1•eafer•6m ago•0 comments

Show HN: Raven – encrypted messages hidden inside ordinary text

https://sendraven.ink
1•OAraLabs•7m ago•0 comments

Meta's AI Crawler Crashing My DB, and What I Did About It

https://usero.io/blog/meta-ai-crawler-crashing-my-db
1•willsmith72•7m ago•0 comments

CERN's migration path from CentOS Linux to Debian

https://lwn.net/SubscriberLink/1092512/45bba78661c89e5a/
1•chmaynard•9m ago•0 comments

July in Servo

https://servo.org/blog/2026/08/31/july-in-servo/
3•caminanteblanco•17m ago•0 comments

Talentblender.com – The Future's Marketplace

https://talentblender.com/register
1•seraph2000•19m ago•0 comments

1% increase in immigration leads to a 1.78%-2.97% increase in Far-Right voting (2024)

https://www.sciencedirect.com/science/article/abs/pii/S1062976924001315
5•cwwc•19m ago•1 comments

Debian code search: fast TurboPFor with Go SIMD

https://michael.stapelberg.ch/posts/2026-09-06-dcs-fast-turbopfor-go-simd/
1•valyala•20m ago•0 comments

National security risk: Berlin data leak causes major repercussions

https://www.heise.de/en/news/National-security-risk-Berlin-data-leak-causes-major-repercussions-1...
2•doener•23m ago•0 comments

But what about video games?

https://blog.glyph.im/2026/09/but-what-about-video-games.html
2•lumpa•23m ago•0 comments

The Operational Limits of Agent Security (Dec 2025)

https://cupcake.eqtylab.io/security-disclaimer/
2•ramoz•25m ago•0 comments

Infinite Digest: Illustrated Companion to David Foster Wallace's Infinite Jest

https://samizdat.co/digest/
1•CharlesW•29m ago•0 comments

Show HN: Inbundly – Google Inbox-style bundles for Gmail (open-source)

https://benoror.bearblog.dev/bringing-google-inboxs-bundles-back-to-gmail/
1•benoror•30m ago•0 comments

Cloudflare hid my site from AI. I sell AI visibility

https://foundash-ai.github.io/
1•boiled_potato•30m ago•0 comments

Fortune Telling Fraud

https://en.wikipedia.org/wiki/Fortune_telling_fraud
2•stephenlf•30m ago•1 comments

Why are drug overdose deaths declining?

https://www.statnews.com/2026/09/03/drug-overdose-deaths-down-sharply-commonwealth-fund-study/
2•EA-3167•41m ago•1 comments

CSPRNG - Cryptographically Secure Pseudorandom Number Generator

https://en.wikipedia.org/wiki/Cryptographically_secure_pseudorandom_number_generator
2•gurjeet•43m ago•0 comments

TraceUX: Self-Hosted, Privacy-First Session Replay

https://github.com/fjosue4/trace-ux
1•fjosue4•46m ago•0 comments

The Carob Trust Prize for Academic Courage

https://www.wsj.com/opinion/an-award-for-scholars-who-tell-the-truth-3c5d37e8
1•mudil•47m ago•0 comments

8 years after launch, BepiColombo begins Mercury arrival

https://www.space.com/space-exploration/missions/a-new-mission-starting-today-8-years-after-launc...
2•gmays•48m ago•0 comments

Imagine the Universe Is Running on Rovi's Games Console

https://medium.com/@legentis/imagine-the-universe-is-running-on-rovis-games-console-904974763d65
2•DavidElliman•49m ago•1 comments

Security Baseline: A Practical Guide to Ubuntu Desktop Security 24.04/26.04

https://github.com/EugeXo/security-baseline-ubuntu
2•EugeXo•52m ago•0 comments

Keeping the Candle Lit

https://idiallo.com/blog/keeping-the-candle-lit
3•foxfired•1h ago•0 comments

France Champagne Output Set to Halve on Heat Waves and Drought

https://www.bloomberg.com/news/articles/2026-09-07/france-champagne-output-set-to-halve-on-heat-w...
4•geox•1h ago•0 comments

Enough

https://github.com/jtc268/enough
3•husky8•1h ago•0 comments

The Cordon Sanitaire/Brandmauer Was a Mistake

https://twitter.com/phl43/status/2097026853412204731
4•barry-cotter•1h ago•0 comments

Utah development wants to be a solution for affordable housing

https://www.sltrib.com/news/2026/09/06/lehi-townhome-complex-shows-how/
2•toomuchtodo•1h ago•1 comments

What Hidden Motives Imply

https://www.overcomingbias.com/p/what-hidden-motives-imply
2•paulpauper•1h ago•0 comments

Like Terraform, but in Lean 4

https://ngrislain.github.io/blog/2026-9-6-like-terraform-but-in-lean-4/
2•ngrislain•1h ago•0 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)