frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: Freelang – a direct-to-assembly syscall lang with rad concurrency

https://freelang.dev
1•keepamovin•1m ago•0 comments

Reddit Is Blocking Some Users from Accessing Its Website from Mobile Devices

https://arstechnica.com/information-technology/2026/05/why-reddit-blocked-my-daily-visit-to-its-m...
1•Brajeshwar•2m ago•0 comments

The Programming Language for Agents

https://zerolang.ai/
1•alex_x•4m ago•0 comments

Three's a party: US, China, and now Russia are on the prowl in GEO

https://arstechnica.com/space/2026/05/threes-a-party-us-china-and-now-russia-are-on-the-prowl-in-...
1•rbanffy•4m ago•0 comments

What Software Is Made Of

https://siderea.dreamwidth.org/1219758.html
1•teddyh•6m ago•0 comments

Show HN: Whisper Large V3 Turbo Stream API

https://www.makeform.ai/f/mtwDANdO
1•tamnv•9m ago•0 comments

EV charging station fire caused by remote technician, report finds

https://vancouver.citynews.ca/2026/05/15/ev-charger-fire-caused-u-s/
1•Throwthrowbob•10m ago•0 comments

South Korea says it will pursue all options to avoid Samsung strike

https://www.reuters.com/business/world-at-work/south-korea-says-it-will-pursue-all-options-avoid-...
3•01-_-•12m ago•0 comments

The ultimate female fantasy – A feminist critique of Beauty and the Beast

https://storica.club/blog/beast-was-the-best-part/
8•muge•13m ago•0 comments

Europe Just Unveiled a Serious Rival to SpaceX's Starship

https://scitechdaily.com/europe-just-unveiled-a-serious-rival-to-spacexs-starship/
3•01-_-•13m ago•0 comments

AVX-512

https://en.wikipedia.org/wiki/AVX-512
1•tosh•13m ago•0 comments

Datacenters slurping up so much juice they boosted prices 75%

https://www.theregister.com/on-prem/2026/05/15/datacenters-slurping-juice-help-drive-75-jump-in-p...
1•Bender•16m ago•0 comments

Google users fight for refunds as unauthorized API usage bills soar

https://www.theregister.com/ai-ml/2026/05/13/google-users-fight-for-refunds-as-unauthorized-api-u...
2•Bender•16m ago•0 comments

Is Britain Ungovernable?

https://www.cnn.com/2026/05/16/uk/uk-government-prime-minister-leadership-starmer-ungovernable-la...
2•Bender•22m ago•0 comments

The filesystem is the API (with TigerFS)

https://www.youtube.com/watch?v=RFLk5iLyFG4
1•der_gopher•25m ago•0 comments

Brown vs. Board of Education (May 17th, 1954)

https://en.wikipedia.org/wiki/Brown_v._Board_of_Education
3•simonebrunozzi•27m ago•0 comments

PyPI packages are increasing rapidly

https://rushter.com/blog/pypi-packages/
2•f311a•29m ago•0 comments

Physicists Can't Agree on What Quantum Mechanics Says about Reality

https://www.scientificamerican.com/article/physicists-divided-on-what-quantum-mechanics-says-abou...
2•rramadass•29m ago•0 comments

God Exists. Here Is How Things Work

https://barabeke.substack.com/p/god-exists-here-is-how-things-work
3•barabeke•33m ago•1 comments

Show HN: AutoAlert – Android app that announces UPI payments

https://play.google.com/store/apps/details?id=com.autoalert.upisoundalert&hl=en_US
2•anithakarri001•38m ago•0 comments

Microsoft AI chief gives 18 months for whitecollar work to be automated by AI

https://fortune.com/article/why-microsoft-ai-chief-mustafa-suleyman-predicts-ai-automation-18-mon...
3•RyeCombinator•39m ago•3 comments

Show HN: Gonfire – analyze Claude Code session logs to see how candidates think

1•abr0ahm•39m ago•0 comments

Llama.cpp b9180: MTP support landed

https://github.com/ggml-org/llama.cpp/releases/tag/b9180
1•usagisushi•46m ago•0 comments

Show HN: OpenClaw is just not dangerous enough. I needed something else

https://github.com/kkovacs/kklaw
2•kkovacs•49m ago•0 comments

Optimizing your website for generative AI features on Google Search

https://developers.google.com/search/docs/fundamentals/ai-optimization-guide
2•tjek•49m ago•0 comments

What do you want to ask the online safety minister about social media?

https://www.bbc.com/newsround/articles/ceqp2gxerl4o
1•DropDead•49m ago•0 comments

I Replaced a $460/Month Sales Stack with a $0.41/Day System I Built Myself

https://alanscottencinas.medium.com/i-replaced-a-460-month-sales-stack-with-a-0-41-day-system-i-b...
4•encinas88•50m ago•0 comments

Why birth rates are falling everywhere all at once

https://www.ft.com/content/fba35eca-df3a-4ad6-b42d-eb08eb7c9ad3
1•mmarian•52m ago•1 comments

Before it gets a number – About CVE, CWE and vulnerabilities prevention

https://quodeq.ai/blog/before-the-number/
3•quodeq•57m ago•0 comments

A passage from Homer's Iliad has been discovered inside the an Egyptian mummy

https://www.scientificamerican.com/article/passage-from-homers-iliad-discovered-in-the-abdomen-of...
1•wslh•1h ago•0 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.