frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Why I'm Building Muse

https://twitter.com/alexandr_wang/status/2103551714536439951
1•tosh•25s ago•0 comments

Young organs may not be a fountain of youth for recipients

https://www.technologyreview.com/2026/09/25/1145083/young-organs-may-not-be-a-fountain-of-youth-f...
1•joozio•2m ago•0 comments

If we do not stop to help each other, what do we become?

https://blog.codinghorror.com/if-we-do-not-stop-to-help-each-other-what-do-we-become/
2•AndrewDucker•7m ago•0 comments

Anybody has experience with maintaining self hosted Git?

1•tusharmaroo•8m ago•0 comments

Alberta's image as world's only rat-free region shattered by discovery of rat

https://www.theguardian.com/world/2026/sep/25/alberta-canada-rat-patrol
3•pseudolus•14m ago•0 comments

What Is Math's Mysterious Langlands Program About?

https://www.quantamagazine.org/what-is-maths-mysterious-langlands-program-really-about-20260909/
2•signa11•16m ago•0 comments

Thought on how to deal with AI crawlers

https://copepod.dev/human-required
2•meredithbloom•16m ago•0 comments

Isn't it enough just to disconnect bloatware from internet instead of disabling?

https://f-droid.org/packages/io.github.dorumrr.de1984/
2•tukunjil•19m ago•0 comments

It's a Jev's World

https://www.bolna.ai/blog/testing-jev-on-real-phone-calls
3•xan_ps007•20m ago•0 comments

The Sleazy World of Reddit Marketing, Everything Is Fake

https://larslofgren.com/reddit-marketing/
4•landdate•26m ago•0 comments

AI was supposed to hit new grads hard. So far, unemployment data says otherwise

https://arstechnica.com/ai/2026/09/ai-was-supposed-to-hit-new-grads-hard-so-far-unemployment-data...
4•MrDresden•27m ago•1 comments

About Jammertest

https://www.jammertest.no/about/
3•Tomte•29m ago•0 comments

Novelist accused of using AI to write book removed from French prize list

https://www.theguardian.com/books/2026/sep/25/thelyson-orelien-goncourt-prize-france
3•pieterr•31m ago•0 comments

Luhnify – Zero-PII API for ID, Vat and Passport Validation (<100ms)

https://luhnify.com
2•josebermejo•34m ago•0 comments

Show HN: Translate a SVG back to a diagram – drawio

https://zoosky.github.io/accent-draw/
2•akapaka•35m ago•1 comments

LeftOpen – Native macOS menu bar app to see what's on localhost and close it

https://github.com/SonghaiFan/leftopen
2•songhai•36m ago•0 comments

Advice to a Beginning Software Engineer

https://www.seangoedecke.com/advice-to-a-beginning-software-engineer/
2•gfysfm•37m ago•0 comments

Finding the Purpose of Life

https://medium.com/@ravitandon2/the-purpose-of-life-debb9fb2e699
2•ravitandon1990•38m ago•0 comments

Using Claude Code: Spending your effort

https://twitter.com/i/status/2103576349499855160
2•Michelangelo11•38m ago•0 comments

Show HN: WhiteScreenLight.com– A pure white screen for testing/ lighting

https://whitescreenlight.com/
2•TechDevArchitec•40m ago•2 comments

Great news from Saturn's moon Enceladus in the search for life in space

https://www.eurekalert.org/news-releases/1145100?
2•andsoitis•47m ago•0 comments

Translation

2•bella786•47m ago•0 comments

Any2bazel – an OSS tool for agent-driven migrations to Bazel

https://blog.engflow.com/2026/09/09/introducing-any2bazel-oss-bazel-migration-tool/
2•nollbit•48m ago•0 comments

US DOE will give $5.25B to upgrade the grid for AI datacenters

https://www.theregister.com/systems/2026/09/25/uncle-sam-coughs-up-19b-for-grid-upgrades-as-datac...
3•meredithbloom•49m ago•0 comments

Exam

2•bella786•51m ago•0 comments

Commodified Intelligence

https://herecomesthemoon.net/2026/09/commodified-intelligence/
4•signa11•54m ago•0 comments

Sonic Pi now runs in the web

https://in-thread.sonic-pi.net/t/sonic-pi-now-runs-in-the-web/10058
3•blltprfmnk•55m ago•0 comments

Show HN: Pysimplicial, Python library for simplicial complexes in topological ML

https://github.com/kaifczxc-lab/pysimplicial
2•siritoriyowai_•55m ago•1 comments

One company is at the center of a wave of rogue AI attacks

https://www.theverge.com/ai-artificial-intelligence/1000644/irregular-rogue-ai-cyberattacks-hacki...
3•meredithbloom•56m ago•0 comments

Today, 150k – 200k kids in the USA are locked up in "fix your teen" programs

https://elan.school/
4•bingowasthename•57m 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)