frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: ISC Core – Deterministic CI Artifact Attestation

https://github.com/hakannbjk55-afk/Isc-Core
1•arekon_55•32s ago•0 comments

Show HN: I built a persistent LSM-Tree storage engine in Go from scratch

1•Jyotishmoy•1m ago•0 comments

Krystal Hosting: Award-winning ethical web hosting

https://krystal.io/hosting
1•janandonly•4m ago•0 comments

Anthropic ditches its core safety promise

https://www.cnn.com/2026/02/25/tech/anthropic-safety-policy-change
2•motbus3•5m ago•0 comments

CIA offering Iranians instructions for using Tor

https://xcancel.com/jeremyscahill/status/2026321682793681241#m
2•Noaidi•6m ago•0 comments

Israeli soldiers shot a Palestinian boy and stood around as he bled to death

https://www.bbc.com/news/articles/cpqwv9vvzx9o
1•tartoran•8m ago•0 comments

For the Love of Physics – Walter Lewin's Last Lecture (2015) [video]

https://www.youtube.com/watch?v=4a0FbQdH3dY
1•vismit2000•8m ago•0 comments

Trampolining Nix with genericClosure

https://blog.kleisli.io/post/trampolining-nix-with-generic-closure
1•mikabo•9m ago•0 comments

Croatia's Telegram.hr built a successful subscription model

https://www.journalism.co.uk/how-croatias-telegram-hr-built-a-successful-subscription-model-in-a-...
1•taubek•10m ago•0 comments

Show HN: Rate the Aura of Public Figures

https://aura.marcomezzavilla.com/
1•marcomezzavilla•10m ago•0 comments

The second edition of Insurtech Digest is LIVE Dive into the latest issue

https://community.insurtechamsterdam.com/pdfviewer/insurtech-digest-powered-by-insurtech-amsterda...
1•Venesha•11m ago•0 comments

Show HN: GalataJ – Runtime-aware Java profiling inside IntelliJ and VS Code

1•yyusufaslan•12m ago•0 comments

The Weekend Sprint: An Organizer's Field Guide

https://pittsburghstartupnews.substack.com/p/an-organizers-field-guide-for-grassroots
1•kitmueller•13m ago•0 comments

Fentanyl makeover: Core structural redesign could lead to safer pain medications

https://www.scripps.edu/news-and-events/press-room/2026/20260211-janda-molecule.html
3•littlexsparkee•13m ago•0 comments

Trump Is the Crypto President. Why Is It Struggling?

https://www.nytimes.com/2026/02/26/opinion/crypto-trump-bitcoin-clarity-genius.html
2•bandwitch•13m ago•0 comments

Settlement reached in harassment case tied to eBay executives

https://www.wbur.org/news/2026/02/26/massachusetts-ebay-harassment-campaign-settlement
2•ilamont•15m ago•0 comments

Show HN: Kitten TTS Based Low-Latency Streaming Voice Assistant on CPU

https://github.com/abhishekgandhi-neo/Low-Latency-CPU-Based-Voice-Assistant
1•gauravvij137•15m ago•0 comments

KV and Vector Sorage Without Socket, Mutex or GC Overhead

https://github.com/splinterhq/libsplinter
1•tinkertim•16m ago•1 comments

Guardian in media coalition to protect original journalism from unpaid use by AI

https://www.theguardian.com/media/2026/feb/26/guardian-joins-media-coalition-to-protect-original-...
2•chrisjj•17m ago•1 comments

Nvidia Hiring Engineers to Optimize Proton and Vulkan API Performance on Linux

https://www.techpowerup.com/346714/nvidia-hiring-engineers-to-optimize-proton-and-vulkan-api-perf...
2•nixass•18m ago•0 comments

The real cost of random I/O

https://vondra.me/posts/the-real-cost-of-random-io/
1•jpineman•19m ago•0 comments

MyMintie – The dating app that shows you people who want the same goal as you

https://www.mymintie.com/en
1•allanscar•19m ago•1 comments

Swedish pensioners explain how abolishing the wealth tax changed their country

https://theconversation.com/we-got-lazy-and-complacent-swedish-pensioners-explain-how-abolishing-...
3•robtherobber•20m ago•0 comments

The Sickest Burns on the Internet Are Coming from French Bureaucrats

https://www.wsj.com/world/europe/french-response-foreign-ministry-x-account-trump-elon-musk-e7095fc1
1•impish9208•21m ago•1 comments

Show HN: I built an offline-first, privacy-focused Blood Pressure tracker

2•1derfool•26m ago•1 comments

The Future of Software

https://www.inference.vc/deep-learning-is-powerful-because-it-makes-hard-things-easy-reflections-...
4•pabo•27m ago•0 comments

An Argument for Web5.0

https://charinusraps.neocities.org/pages/writing/articles/2024-02-20-Web5.0
1•not4uffin•28m ago•0 comments

LibSQL/Hrana wrapper for CF D1. Access with any compatible client

1•michaloo•29m ago•1 comments

Human hippocampal neurogenesis in adulthood, ageing and Alzheimer's disease

https://www.nature.com/articles/s41586-026-10169-4
1•bookofjoe•30m ago•0 comments

Notes on Linear Algebra for Polynomials

https://eli.thegreenplace.net/2026/notes-on-linear-algebra-for-polynomials/
2•mfrw•30m ago•0 comments
Open in hackernews

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

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

Comments

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

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

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