frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Open_slate tablet promises to last a decade with swappable batteries and storage

https://newatlas.com/consumer-tech/modular-android-tablet-open-slate-braxman-swappable-batteries/
1•breve•14s ago•0 comments

Can AI solve real math proofs? Researchers put it to the test

https://www.scientificamerican.com/podcast/episode/can-ai-actually-solve-real-math-proofs-researc...
1•Brajeshwar•29s ago•0 comments

Where Are All the Campus Protests?

https://www.theatlantic.com/ideas/2026/03/campus-protests-trump-iran/686518/
1•SanjayMehta•1m ago•0 comments

LeWorldModel with Yann LeCun

https://arxiv.org/abs/2603.19312
1•guerby•2m ago•1 comments

AirDrop Your AI: How to Transfer a Living Intelligence Between Devices in 34KB

https://kody-w.github.io/2026/03/21/airdrop-your-ai/
1•bothangles•2m ago•0 comments

HP's new AI encourages you to record f2f meetings

https://www.theregister.com/2026/03/25/hp_iq_laptop_ai/
1•geekinchief•3m ago•1 comments

Why Git Worktrees Are the Missing Piece for Parallel AI Coding Agents

https://amux.io/blog/parallel-agents-isolated-worktrees/
1•Beefin•3m ago•0 comments

Improve Privacy by Running a DNS Server Without Forwarder

https://louwrentius.com/improve-privacy-by-running-a-dns-server-without-forwarder.html
1•louwrentius•5m ago•0 comments

Noteriv – Open-Source Note-Taking App

https://github.com/thejacedev/Noteriv
1•JaceDev•7m ago•1 comments

LisPy – A Lisp interpreter for AI agent orchestration

https://github.com/kody-w/lisppy
1•bothangles•8m ago•0 comments

AmigaOS 3.2 is now available digitally

https://www.hyperion-entertainment.com/index.php/news/1-latest-news/328-amigaos-32-is-now-availab...
1•codewiz•9m ago•0 comments

Android Automotive becoming 'brain' of the car

https://www.theverge.com/tech/899034/google-android-automotive-os-software-defined-vehicle
1•etothet•10m ago•0 comments

Browsers Should Have a Native Control for Per-Site Color Scheme

https://tylergaw.com/blog/color-scheme-browser-native-control/
1•m-hodges•11m ago•0 comments

Drop-in OpenAI proxy that routes to cheaper models – saves 60-85%

https://ai-bridge-router-et30.onrender.com/signup
1•BernardinoGM•13m ago•0 comments

Distributed Python with Wool: Hello World

https://medium.com/@bzurak/distributed-python-with-wool-hello-world-6f75d3b63529
1•bzurak•13m ago•0 comments

Keep up with AI with one simple list

https://www.a2i.now/
1•markke•13m ago•0 comments

Daco – CLI for search auto-completion APIs

https://github.com/djberube/daco
2•djb-at-durable•13m ago•0 comments

Ask HN: Building a deterministic AI substrate on legacy hardware

1•theantagonistai•13m ago•0 comments

Distributed Tracing in Microservices: How It Works

https://www.dash0.com/knowledge/what-is-distributed-tracing
1•ayoisaiah•14m ago•0 comments

Crossview Headlamp plugin is now available

https://artifacthub.io/packages/headlamp/crossview-headlamp/crossview-headlamp
1•moeidheidari•15m ago•0 comments

I Asked 3 AI Agents to "Make It Better" Until They Refused. Only One Did

https://pooyam.dev/ai-agents-sycophancy-test
1•py4•15m ago•0 comments

Show HN: BUY.VODKA—Search engine for US spirits label approvals (TTB/COLA)

https://buy.vodka/
1•hunterleaman•15m ago•0 comments

Show HN: First-token-only flaw in Claude Code permissions (triage bot too)

https://spitfirecowboy.com/workshop/0008-the-receipt-was-lying/
1•Apylon777•15m ago•0 comments

AI Gets Cheaper. Your AI Bill Doesn't

https://kyletsai123.substack.com/p/ai-gets-cheaper-your-ai-bill-doesnt
1•Kyle0939•16m ago•0 comments

MariaDB Completes GridGain Acquisition

https://mariadb.com/newsroom/press-releases/mariadb-completes-gridgain-acquisition-to-power-the-n...
1•Klaster_1•17m ago•0 comments

Show HN: FlowScript – Agent memory where contradictions are features

https://github.com/phillipclapham/flowscript
2•phillipclapham•17m ago•0 comments

Wristband enables wearers to control a robotic hand with their own movements

https://techxplore.com/news/2026-03-wristband-enables-wearers-robotic-movements.html
1•Brajeshwar•18m ago•0 comments

Agentic Yield- Agentic AI News and Intel for Builders and Founders

https://x.com/AgenticYield
1•akacaptain•18m ago•1 comments

Europe's Tech Exodus Drained $1.4T in Value

https://www.bloomberg.com/news/articles/2026-03-25/europe-s-tech-exodus-drained-1-4-trillion-in-v...
3•alephnerd•18m ago•1 comments

A multi-week, multi-ecosystem attack chain spanning GitHub Actions, npm, PyPI

https://ramimac.me/teampcp/
1•dsr12•19m 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.