frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Meta Muse Glimmer – Open weights 30B local coding model

https://research.meta.ai/blog/introducing-muse-glimmer-open-agentic-model
692•riordan•6h ago•388 comments

Show HN: Ante, a coding agent in a single binary that runs offline

https://github.com/AntigmaLabs/ante
29•ubermon•1h ago•10 comments

Kinney Drugs pulls back AI phone assistant after hundreds of customer complaints

https://www.wcax.com/2026/08/07/kinney-drugs-pulls-back-ai-phone-assistant-after-hundreds-custome...
44•kotaKat•2h ago•31 comments

Exploiting System Management Mode with a very long interrupt

https://github.com/xoreaxeaxeax/smiiiiiiiiiiiiiiii
28•WhiteDawn•1h ago•7 comments

Sonic Pi v5 Released

https://www.patreon.com/samaaron/posts/sonic-pi-v5-166001392
24•samaaron•3d ago•5 comments

Magnitude 7.4 Earthquake – 5 km S of San José del Palmar, Colombia

https://earthquake.usgs.gov/earthquakes/eventpage/us6000tjl2/executive
65•Bender•1h ago•19 comments

50k Boat Names

https://www.beautifulpublicdata.com/boat-names/
104•jonathanmkeegan•4h ago•56 comments

Squeak 6.1

https://squeak.org/release_notes/6.1/
106•fniephaus•4h ago•57 comments

Mars Bar from 1991 found – and it's 20g bigger than today's

https://www.bbc.com/news/articles/c1j1kjy7gewo
152•RickJWagner•1h ago•175 comments

Ask HN: In your experience, what are sound conventions for e-ink UI development?

40•BoxOfRain•2d ago•6 comments

Docker Sandboxes – Disposable, isolated sandboxes for AI agents

https://www.docker.com/products/docker-sandboxes/
489•etoxin•11h ago•301 comments

Launch HN: Stoa Markets (YC S26) – A Marketplace for GPUs and AI Servers

https://www.stoaexchange.com
8•erenberke•33m ago•0 comments

Midlife Vascular Risk Burden and Dementia-Free Survival Years

https://www.neurology.org/doi/10.1212/WN9.0000000000000152
19•bookofjoe•1h ago•2 comments

Why Addresses Have Numbers

https://thehistoricalinsights.page/2026/06/why-addresses-have-numbers.html
11•historical1234•55m ago•7 comments

Mistral Patent for "Code implemented tool calls"

https://patentsgazette.uspto.gov/week26/OG/html/1547-5/US12670045-20260630.html
125•theanonymousone•3h ago•113 comments

Parametron: 50s Japanese computer that uses neither transistors nor vacuum tubes

https://ethw.org/Milestones:Parametron,_1954
117•xeonmc•6h ago•34 comments

Itadakimasu: A Word You Say to the Food, Not the Cook

https://thetokyohermit.substack.com/p/itadakimasu-a-word-you-say-to-the
40•surprisetalk•1h ago•13 comments

Over 181,000 AI meeting recordings left wide open in note taking app

https://bobdahacker.com/blog/tldv-hack
334•colesantiago•4h ago•111 comments

Back to the Future of Handwriting Recognition

https://jackschaedler.github.io/handwriting-recognition/
10•at1as•1h ago•2 comments

Study links GLP-1 drugs to bigger jump in women's employment than a degree

https://finance.yahoo.com/healthcare/articles/harvard-study-links-glp-1-123000637.html
72•metadat•1h ago•69 comments

The Tragedy of the Cognitive Commons

https://arxiv.org/abs/2607.29380
5•jmintz•1h ago•0 comments

Exploring Claude/GPT Knowledge Cutoffs and Pre-Training Timelines

https://blog.sshh.io/p/exploring-claudegpt-knowledge-cutoffs
14•sshh12•2h ago•2 comments

There Is No "Done": Reflections on a Completed at Thru-Hike (2022)

https://thetrek.co/appalachian-trail/there-is-no-done-reflections-on-a-completed-at-thru-hike/
12•mooreds•2h ago•1 comments

Tail-call optimization in C is relatively recent

https://lwn.net/Articles/1034703/
82•prakashqwerty•5h ago•53 comments

What Happened to HackerOne?

https://blog.teknogeek.io/posts/what-happened-to-hackerone/
346•hipparchus•14h ago•180 comments

Run Android ARM64 VR APKs on Apple Vision Pro

https://github.com/shinyquagsire23/Klepton
150•LorenDB•13h ago•48 comments

An Interesting Fourier Transform – 1/F Noise

https://www.dsprelated.com/showarticle/40.php
101•q7m•3d ago•21 comments

Humanising LLM Outputs Is Dumb

https://kuber.studio/blog/Reflections/Humanising-LLM-Outputs-is-Actually-Dumb
11•kuberwastaken•3h ago•0 comments

How Blackwing Pencils are Made [video]

https://www.youtube.com/watch?v=fow-LsdaH2E
68•NaOH•5d ago•32 comments

Show HN: Voice driven murder mystery, Interview AI suspects with your voice

https://www.whodunnitai.com/
175•MrRowTheBoat•13h ago•71 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)