frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Ex-Apple engineer says Apple deliberately slows older phones via updates

https://www.macobserver.com/news/ex-apple-software-engineer-claims-apple-deliberately-slows-down-...
4•neya•8m ago•0 comments

Most Theoretical Physicists Are Doing Engineering

https://danieltan.weblog.lol/2026/05/most-theoretical-physicists-are-doing-engineering
1•danieltanfh95•13m ago•0 comments

Extended Cyber Kill Chain for AI-Era Threats

https://github.com/gouravnagar-infosec/ai-kill-chain
1•gnz1•15m ago•0 comments

Missing RAF pilot found strapped in his sunken Hurricane laid to rest

https://www.thetimes.com/uk/history/article/missing-raf-pilot-george-morley-fidler-hurricane-fran...
2•petethomas•16m ago•0 comments

Playing Wireless Audio on OpenBSD

https://xosc.org/bluetooth.html
1•JdeBP•16m ago•0 comments

Zig by Example

https://github.com/boringcollege/zig-by-example
2•dariubs•19m ago•0 comments

OpenAI for Singapore

https://openai.com/index/introducing-openai-for-singapore/
1•vinhnx•20m ago•0 comments

Infomaniak transitions to a foundation model to protect user data privacy

https://news.infomaniak.com/en/infomaniak-foundation-sovereign-cloud/
2•darktoto•20m ago•0 comments

International Orange

https://en.wikipedia.org/wiki/International_orange
1•MrJagil•21m ago•0 comments

UK Supermarkets may be asked to freeze prices of milk, eggs and bread

https://www.thetimes.com/uk/politics/article/supermarkets-freeze-prices-iran-war-0b8tlmh8c
1•petethomas•24m ago•0 comments

Graded Modal Types for Memory and Communication Safety

https://kar.kent.ac.uk/113723/
1•matt_d•26m ago•0 comments

Google's AI future demands trust and your personal data

https://www.theverge.com/tech/934172/google-io-gemini-ai-trust-personal-data
1•1vuio0pswjnm7•26m ago•1 comments

Califraudnation: CA civil rights agency closed my case to cover their mistakes

https://mattordeshook.substack.com/p/part-4-garden-gate-the-scandal
1•creativejustice•26m ago•0 comments

Net-Zero Infrastructure: Implementing Solar-Scheduled Tunnel Egress

https://claude.ai/public/artifacts/175eb839-aa6a-4ad6-9d61-c7eed27540b8
1•insta_tunnel•29m ago•0 comments

WorldParticle: Unified World Simulation of Lagrangian Particles via Transformer

https://arxiv.org/abs/2605.15305
1•vismit2000•30m ago•0 comments

RigidFormer: Learning Rigid Dynamics Using Transformers

https://arxiv.org/abs/2605.09196
1•vismit2000•31m ago•0 comments

There's No Earthly Way of Knowing Which Direction We Are Going

https://kottke.org/26/05/theres-no-earthly-way-of-knowing-which-direction-we-are-going
1•tobr•31m ago•0 comments

Downtown San Mateo Is a Monument to Insider Self-Dealing

https://maxmautner.com/2026/05/18/downtown-san-mateo-monument-insider-self-dealing.html
1•mslate•38m ago•0 comments

Using Claude Code: The unreasonable effectiveness of HTML

https://claude.com/blog/using-claude-code-the-unreasonable-effectiveness-of-html
4•choam•38m ago•2 comments

A prize-winning story published in Granta was (likely) written by AI

https://lithub.com/a-prize-winning-story-published-in-granta-was-very-likely-written-by-ai/
1•KnuthIsGod•42m ago•1 comments

Freezing Your Cake

https://taylor.town/20260518
1•Curiositry•44m ago•0 comments

ChatGPT-generated story won a prestigious literary prize

https://www.wired.com/story/commonwealth-short-story-prize-ai-allegations/
1•KnuthIsGod•46m ago•0 comments

Xezim – a Rust-based SystemVerilog simulator

https://github.com/aionhw/xezim
1•bondanr•47m ago•0 comments

We Got a CISA GitHub Leak Taken Down in Under a Day

https://blog.gitguardian.com/how-we-got-a-cisa-github-leak-taken-down-in-26-hours/
1•saikatsg•51m ago•0 comments

Istio 1.30.0 (Including Agentgateway)

https://istio.io/latest/news/releases/1.30.x/announcing-1.30/
1•qmarchi•52m ago•1 comments

India's hottest district shuts at 10 am as mercury breaches 48 C mark

https://www.hindustantimes.com/india-news/indias-hottest-district-banda-shuts-at-10-am-as-mercury...
31•rustoo•57m ago•11 comments

Personal AI for your real life. – Maple

https://www.trymaple.ai/
1•janandonly•57m ago•1 comments

Gelatine Sculpt and the Viral Gelatin Trick for Weight Loss

https://finance.yahoo.com/sectors/healthcare/articles/gelatine-sculpt-exploding-2026-viral-142500...
1•tayxwaro•59m ago•0 comments

Bubbles: Blog Post Discovery

https://bubbles.town/
1•bjhess•59m ago•0 comments

Solo Founder creating something for other Founders

https://www.ienox.dev/
1•vaishcodescape•1h ago•2 comments
Open in hackernews

The Lisp in the Cellar: Dependent types that live upstairs [pdf]

https://zenodo.org/records/15424968
88•todsacerdoti•12mo ago
Downloadable: https://zenodo.org/records/15424968/files/deputy-els.pdf

Comments

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

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

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