frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

GitHub Actions for Gradle v6: What's Changing and Why

https://blog.gradle.org/github-actions-for-gradle-v6
1•arkon_hn•28s ago•0 comments

TIL: Uv Settings I Changed after LiteLLM

https://antisimplistic.com/posts/2026-03-28-til-uv-settings-after-litellm/
1•vinhnx•1m ago•0 comments

Grade Caps Fail the Game Theory Exam

https://www.thecrimson.com/article/2026/3/27/kominers-harvard-grade-cap/
1•yurivish•5m ago•0 comments

Building a computer from scratch and running C++ on it [video]

https://www.youtube.com/watch?v=lBooqws52YA
1•vinhnx•10m ago•0 comments

The US and Israel are making the Islamic republic stronger

https://www.aljazeera.com/opinions/2026/3/28/how-the-us-and-israel-are-making-the-islamic-republic
5•samizdis•14m ago•0 comments

Heerich.js – A tiny engine for 3D voxel scenes rendered to SVG

https://meodai.github.io/heerich/
1•OuterVale•17m ago•0 comments

Understanding Semiconductors: A Technical Guide for Non-Technical People

https://link.springer.com/book/10.1007/978-1-4842-8847-4
1•teleforce•26m ago•0 comments

Linux on Claude

https://github.com/prairielabs/LinuxOnClaude
1•indigodaddy•28m ago•0 comments

Can AI Exit Vim?

https://theadamcolton.github.io/can-ai-exit-vim
2•topwalktown•28m ago•2 comments

Five Things to Know About the Siri Chatbot Coming in iOS 27

https://www.macrumors.com/2026/03/27/ios-27-siri-chatbot-features/
1•evo_9•29m ago•0 comments

Calculate Dora Metrics for Free

https://www.arewedeploying.com/
2•jahrichie•32m ago•1 comments

Turing Complete

https://store.steampowered.com/app/1444480/Turing_Complete/
1•jr-14•36m ago•0 comments

Meet The 'Corporate Bro' Making Millions Satirizing Tech Sales

https://www.wsj.com/business/media/meet-the-corporate-bro-making-millions-satirizing-tech-sales-d...
1•petethomas•37m ago•0 comments

Claude found zero days in Ghost and the Linux kernel

https://twitter.com/chiefofautism/status/2037951563931500669
1•Murfalo•41m ago•0 comments

Rama matches CockroachDB's TPC-C performance at 40% less AWS cost

https://blog.redplanetlabs.com/2026/03/17/rama-matches-cockroachdbs-tpc-c-performance-at-40-less-...
1•nathanmarz•44m ago•0 comments

Sel – short film lauren flinner

https://www.youtube.com/watch?v=rhCn9DgOSiI
1•marysminefnuf•1h ago•0 comments

Kee – Key combination matching on the modern web

https://github.com/juzerzarif/kee
2•juzerzarif•1h ago•1 comments

Show HN: PeriodicTableOfElements.org

https://periodictableofelements.org/?lang=en
3•nadermx•1h ago•0 comments

Social media is populist and polarising; AI may be the opposite

https://www.ft.com/content/3880176e-d3ac-4311-9052-fdfeaed56a0e
1•malloryerik•1h ago•1 comments

Show HN: Anamnesis – Open-source 4D strategic memory engine for AI agents

https://github.com/gayawellness/anamnesis
2•gayawellness•1h ago•0 comments

Pretext Demos

https://chenglou.me/pretext/
1•vinhnx•1h ago•0 comments

Alzheimer's disease mortality among taxi and ambulance drivers (2024)

https://www.bmj.com/content/387/bmj-2024-082194
26•bookofjoe•1h ago•11 comments

pbix-mcp — create and modify Power BI PBIX files in pure Python

https://github.com/d0nk3yhm/pbix-mcp
2•d0nk3yhm•1h ago•0 comments

Translating non-trivial codebases with Claude

https://blog.danieljanus.pl/2026/03/26/claude-nlp/
1•vinhnx•1h ago•0 comments

Catching crumbs from the table by Ted Chiang (2000) [pdf]

https://gwern.net/doc/fiction/science-fiction/2000-chiang.pdf
2•sendes•1h ago•1 comments

The Opt Out Project

https://www.optoutproject.net/
4•billybuckwheat•1h ago•0 comments

BubbleWrap your dev env and agents

https://dpc.pw/posts/bubblewrap-your-dev-env-and-agents/
2•vinhnx•1h ago•0 comments

A simple explanation of the key idea behind TurboQuant

https://old.reddit.com/r/LocalLLaMA/comments/1s62g5v/a_simple_explanation_of_the_key_idea_behind/
2•thunderbong•1h ago•0 comments

IN Event of Moon Disaster [pdf]

https://www.archives.gov/files/presidential-libraries/events/centennials/nixon/images/exhibit/rn1...
2•interweb•1h ago•0 comments

Anthropic's Mythos leak: 3k files in a public CMS, and what the docs revealed

https://medium.com/ai-advances/anthropic-claude-mythos-leak-analysis-b77c1b304eb8
5•Aedelon•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•10mo ago
Downloadable: https://zenodo.org/records/15424968/files/deputy-els.pdf

Comments

droideqa•10mo 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•10mo ago
Pretty readable code
reuben364•10mo 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•10mo 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•10mo 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•10mo 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•10mo ago
> EMACS elisp

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

wk_end•10mo 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.
kscarlet•10mo 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.

dang•10mo ago
Any URL for this that we can open in a browser (as opposed to the dreaded "Content-Disposition: attachment")?
Jtsummers•10mo 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•10mo ago
Thanks! I've switched to that above, and put the downloadable link in the top text.
reikonomusha•10mo 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•10mo 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•10mo ago
Well... believe it or not, some have thought of using lisp for AI for quite some time. ;-)
froh•10mo 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•10mo 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•10mo 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)

fithisux•10mo ago
Impressive.