frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Unjica

https://unjica.com
1•unjica•34s ago•0 comments

Understanding Map of Content (MOC) in Zettelkasten

https://publish.obsidian.md/johndray/020+Zettelkasten/Understanding+Map+of+Content+(MOC)+in+Zette...
1•ankitg12•1m ago•0 comments

Boss – Dependency Manager for Delphi and Lazarus

https://github.com/HashLoad/boss
1•TheWiggles•6m ago•0 comments

Image Converter/Compressor

https://filelite.app
1•gintokinx•10m ago•0 comments

Show HN: Modern Robotics Registry – mapping the new robotics ecosystem

https://roboticsregistry.net
1•make_it_sure•12m ago•1 comments

DSLs Enable Reliable Use of LLMs

https://martinfowler.com/articles/llm-and-dsls.html
2•SirOibaf•13m ago•0 comments

America stands on the shoulders of Soviet engineers

https://write.as/cxgd70ai1rc57
1•garn810•15m ago•0 comments

Bringing Up the RK3576 NPU on Mainline Linux: A Byte-Exact Single-Task Path

https://zenodo.org/records/21348017
1•giuliomagnifico•16m ago•0 comments

Why Europe is suddenly betting big on drones

https://www.cnbc.com/2026/07/15/drones-defense-europe-autonomous-weapons.html
2•01-_-•16m ago•0 comments

Google's AI search features pose 'unacceptable risk' to children

https://www.pbs.org/newshour/nation/googles-ai-search-features-pose-unacceptable-risk-to-children...
1•01-_-•17m ago•0 comments

Telegram Serverless

https://core.telegram.org/bots/serverless
1•soheilpro•17m ago•0 comments

New era for Gibraltar with removal of border controls with Spain

https://www.bbc.com/news/articles/cwydz60j3eno
7•tosh•18m ago•1 comments

Musk promises purge after Grok Build caught sending repos to the cloud

https://www.theregister.com/ai-and-ml/2026/07/14/musk-promises-purge-after-grok-build-caught-send...
3•dools•23m ago•0 comments

Mind Training in Daily Life: Nothing Special

https://studybuddhism.com/en/tibetan-buddhism/mind-training/what-is-mind-training/mind-training-i...
1•rramadass•23m ago•1 comments

NeurIPS Mech Interp Workshop is getting more AI slop

https://twitter.com/NeelNanda5/status/2077117795066871908
1•martianvoid•29m ago•0 comments

OpenBAO: Manage, store, and distribute sensitive data

https://openbao.org/
1•poly2it•29m ago•0 comments

Photo Vault. Encrypted. Invisible

https://vault-application.com/
1•janandonly•29m ago•0 comments

Don't Sleep on BitNet (2025)

https://jackson.dev/post/dont-sleep-on-bitnet/
1•thomasjb•32m ago•0 comments

Space cargo costs falling faster than steamship freight in the 1800s

https://www.thetimes.com/business/technology/article/space-cargo-costs-falling-fast-wqqlvsws9
2•TMWNN•35m ago•0 comments

AI in Australia's Interests

https://www.pm.gov.au/media/ai-australias-interests-0
2•softveda•38m ago•0 comments

ConlangCrafter: Constructing Languages with a Multi-Hop LLM Pipeline

https://github.com/morrisalp/ConlangCrafter
1•jbotz•39m ago•1 comments

Financial documents that feel like notes

https://www.typeclerk.com/
1•astonfred•39m ago•0 comments

Show HN: HumansMap: Explore organizations and people connection graphs

https://humansmap.com/
1•scurnus•47m ago•1 comments

Show HN: Create Telegram New Rich Messages Without Telegram Premium

https://github.com/rassvetteam/Amethyst-Post-Bot
1•waterflane•49m ago•0 comments

China and the new era of critical minerals diplomacy

https://archive.fo/20260715052604/https://www.ft.com/content/a5018a00-0f96-4b39-b82f-c4ccd5e929f7
2•ironyman•51m ago•0 comments

Show HN: PDF Recover – Chrome extension for yanking PDFs out of webpages

https://github.com/unprovable/PDFRecover/
1•unprovable•52m ago•1 comments

Soofi: Complete training code for an open-source foundation model

https://github.com/soofi-project/Soofi-Pretraining
2•mnewme•53m ago•0 comments

Ask HN: Question regarding personal knowledge management

1•diarrheaasmr•54m ago•0 comments

BYD can take Toyota's crown without the US market, says top executive

https://www.ft.com/content/ee2919bc-d6f3-4e07-b823-983265b0b8f9
3•JumpCrisscross•55m ago•0 comments

Using Go for Mobile Apps

https://www.davidsobsessions.com/p/one-year-of-gomobile/
2•theHocineSaad•56m ago•0 comments
Open in hackernews

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

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

Comments

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

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

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

•
1y 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•1y 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)