frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Minimal Life by Computer

https://www.nature.com/articles/s41587-026-03110-7
1•XzetaU8•2m ago•0 comments

Rented intelligence: AI's mainframe moment

https://www.mjeggleton.com/blog/AIs-mainframe-moment
1•michaelje•3m ago•0 comments

Remembering Piotr "Chastell" Szotkowski

https://pragtob.wordpress.com/2026/04/12/remembering-piotr-chastell-szotkowski/
1•nathell•5m ago•0 comments

How can you build your own SoC with HOOKPROBE; a democratic approach to security

https://github.com/hookprobe/hookprobe
1•hookprobe•6m ago•1 comments

Digital sovereignty isn't just a buzzword – it's the future

https://www.theregister.com/2026/04/13/digital_sovereignty/
1•beardyw•10m ago•0 comments

Can AI be a 'child of God'? Inside Anthropic's meeting with Christian leaders

https://www.msn.com/en-us/news/us/can-ai-be-a-child-of-god-inside-anthropic-s-meeting-with-christ...
1•benkan•10m ago•0 comments

Did Tom Steyer Buy His Own Prediction Market? The Data Says Maybe

https://simplefunctions.dev/opinions/steyer-prediction-market-self-promotion
1•patrickliu0077•11m ago•1 comments

Y Combinator lets you cross the line [video]

https://www.youtube.com/watch?v=ptT_LGfT69k
1•waihtis•12m ago•0 comments

Sadly, the End of Star Trek Is Now Official

https://screenrant.com/star-trek-strange-new-worlds-starfleet-academy-sets-destroyed/
1•benkan•12m ago•0 comments

Ask HN: Is Codex really on Par with Claude Code?

1•shivang2607•13m ago•0 comments

Booking.com warns customers of possible data and security breach

https://www.abc.net.au/news/2026-04-13/booking-com-data-security-breach-personal-details/106557630
4•volongoto•14m ago•0 comments

Can't reach private IPv6 hosts on networks without global IPv6 connectivity

https://issues.chromium.org/issues/40435291#comment39
1•anotherhue•17m ago•1 comments

Show HN: Manico – macOS app switcher where single keys activate apps

1•nank1ro•20m ago•0 comments

Architecture as Code to Teach Humans and Agents About Architecture

https://www.oreilly.com/radar/architecture-as-code-to-teach-humans-and-agents-about-architecture/
1•BerislavLopac•20m ago•0 comments

Analysis of Claude Code cache bugs causing 10-20x token inflation

https://github.com/ArkNill/claude-code-hidden-problem-analysis
2•ankitg12•21m ago•0 comments

Show HN: Real-Time, Streaming SQL Queries on Flight Data

https://dashboard.transcend.modolap.com/queries?mode=demo
2•ronfriedhaber•24m ago•0 comments

Learn LLM Internals

https://github.com/amitshekhariitbhu/llm-internals
2•pallavishekhar•26m ago•0 comments

Ask HN: Are you negatively affected by the recent economic stagnation?

1•adinhitlore•28m ago•0 comments

Mythos, Muse, and the Opportunity Cost of Compute

https://stratechery.com/2026/mythos-muse-and-the-opportunity-cost-of-compute/
2•swolpers•28m ago•0 comments

Python Package Compiler:Package Matlab Programs for Deployment as Python Package

https://www.mathworks.com/help/compiler_sdk/ml_code/pythonpackagecompiler-app.html
1•teleforce•30m ago•0 comments

Claude Code Prompt Patcher

https://gist.github.com/roman01la/483d1db15043018096ac3babf5688881
2•sscaryterry•32m ago•1 comments

Ask HN: What is the most essential feature you expect from a home automation?

1•dr_inf•34m ago•0 comments

Build a Sovereign Local AI Stack: Ollama and Open WebUI and Pgvector 2026

1•anju-kushwaha•36m ago•0 comments

Donald Trump's America Is Deeply Unwell, and It's Time to Say So

https://newrepublic.com/article/208971/donald-trump-america-deeply-unwell-it-time-say
2•hkhn•38m ago•0 comments

I hacked a way to check my CV score before submitting on linkedin

https://cvrepair.guru/ats-checker
1•ahmedgmurtaza•39m ago•1 comments

After a Dark Week, Americans Should Turn to Jimmy Carter's Malaise Speech

https://www.liberalcurrents.com/after-a-dark-week-americans-should-turn-to-jimmy-carters-malaise-...
1•hkhn•41m ago•0 comments

Sentinel-Based Code Tracing via Runtime Code Section Patching

https://revers.engineering/
1•swq115•45m ago•0 comments

Show HN: MacBook Neo Review 2026

1•anju-kushwaha•46m ago•0 comments

Show HN: I built a benchmark platform for WordPress backup plugins

1•ibrahimwithi•53m ago•0 comments

We Raised $15M and Had 61% Uptime. Here's Every Mistake That Got Us There

https://medium.com/@me_24829/we-had-61-uptime-heres-every-mistake-that-got-us-there-cdcee1731a26
1•guigaribaldi•54m 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.