frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

First ever AI feature film premieres at the Cannes Film Festival

https://www.cgmagonline.com/news/hell-grind-made-only-with-higgsfield-ai/
2•frays•12m ago•0 comments

SpaceX not the behemoth everyone thought

https://www.axios.com/2026/05/21/spacex-ipo-musk-ai
14•kaycebasques•23m ago•0 comments

Israel's arrogance is becoming the evidence in the case against it

https://www.aljazeera.com/opinions/2026/5/21/israels-arrogance-is-becoming-the-evidence-in-the-ca...
3•hebelehubele•25m ago•0 comments

AI workflows: an industry optimising the wrong variables

https://adsurg.substack.com/p/navigating-ai-with-paper-maps
1•adamsurg•25m ago•0 comments

Tell HN: I went to Alaska's northernmost town and this was the GeoIP location

1•ironmagma•29m ago•0 comments

Show HN: TLS Certificate Management and PKI

1•zaitanz•32m ago•0 comments

Newsom intervenes amid historic tech layoffs

https://www.sfgate.com/politics/article/newsom-california-ai-layoffs-22271312.php
3•jimt1234•43m ago•1 comments

Kyle Busch, two-time NASCAR Cup Series champion, dies at age 41

https://www.nascar.com/news-media/2026/05/21/kyle-busch-two-time-nascar-cup-series-champion-dies-...
2•avonmach•48m ago•0 comments

Destiny 2 will no longer be updated

https://twitter.com/destinythegame/status/2057506887600361720
1•azhenley•48m ago•0 comments

SpaceX Fuels More Than 3k% Return for Washington University

https://www.bloomberg.com/news/articles/2026-05-21/spacex-fuels-more-than-3-000-return-for-washin...
1•yakkomajuri•49m ago•0 comments

Show HN: Tight C, a systems language with 10 keywords

https://github.com/alonsovm44/tc-lang/
2•alonsovm44•53m ago•0 comments

Show HN: Roughform, a free Browser-Based 3D Creation Tool

https://roughform.app
1•benhmoore•54m ago•1 comments

Negation Neglect: When models fail to learn negations in training

https://arxiv.org/abs/2605.13829
1•chr15m•59m ago•0 comments

Big Tech software era is over, says top investor James Anderson

https://www.ft.com/content/9d2bd5b3-80c6-49b9-a04b-edc4162c9320
1•1vuio0pswjnm7•1h ago•2 comments

AI Model Inflation: The Unsustainable Subsidy

https://tomtunguz.com/ai-model-inflation/
2•allen-munsch•1h ago•0 comments

Nicotine Patches to Treat Long Covid

https://www.mcgill.ca/oss/article/medical-health-and-nutrition-pseudoscience/strange-story-nicoti...
1•brandonb•1h ago•0 comments

DeepSeek Founder Declares AGI Goal as $10B Round Advances

https://www.bloomberg.com/news/articles/2026-05-22/deepseek-founder-declares-agi-goal-as-10-billi...
1•petethomas•1h ago•1 comments

Americans beware: markets can be out of sync with reality

https://www.ft.com/content/d95ce239-4494-4a94-be43-fc678bc6e1c3
3•petethomas•1h ago•2 comments

Show HN: Spec-Driven Development Workflow for Claude Code

3•sermakarevich•1h ago•0 comments

The fastest manmade object ever was a manhole cover launched by nuke

https://www.wearethemighty.com/mighty-history/fastest-manmade-object/
1•thunderbong•1h ago•1 comments

From Emacs to Agents

https://vivekhaldar.com/articles/from-emacs-to-agents/
1•gandalfgeek•1h ago•0 comments

An Uncharitable Taxonomy of the AI Discourse

https://iceworks.cc/blog/uctd/
1•airhangerf15•1h ago•0 comments

Build Adafruit projects right from Firefox

https://www.firefox.com/en-US/landing/adafruit/
2•mch82•1h ago•0 comments

Alleged Kimwolf Botmaster 'Dort' Arrested, Charged in U.S. and Canada

https://krebsonsecurity.com/2026/05/alleged-kimwolf-botmaster-dort-arrested-charged-in-u-s-and-ca...
3•shepherdjerred•1h ago•0 comments

Residents burn Ebola treatment center in Congo as anger grows over the outbreak

https://www.pbs.org/newshour/world/residents-burn-ebola-treatment-center-in-congo-as-anger-grows-...
1•bryan0•1h ago•0 comments

India Launches Tradable Rainfall Futures Called Rainmumbai

https://www.bloomberg.com/news/articles/2026-05-20/india-gets-first-rainfall-hedge-as-el-nino-thr...
2•samarthr1•1h ago•0 comments

Logging Off

https://user8.bearblog.dev/logging-off/
39•James72689•1h ago•21 comments

Everything Google announced at I/O 2026: Gemini, Android, more

https://9to5google.com/2026/05/19/google-io-2026-news/
3•gmays•1h ago•1 comments

Cross-Model Context Inheritance in Anthropic's Claude: 94 Days of Non-Response

https://github.com/AIM-Nelson/cross-model-context-inheritance
1•Malinor•1h ago•0 comments

Knex Mechanical Computer (MechaDigit-1) [video]

https://www.youtube.com/watch?v=PAWZ2Zjsah0
1•Teever•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•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.
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.

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

fithisux•1y ago
Impressive.