frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

ArXiv to Ban Researchers for a Year If They Submit AI Slop

https://www.404media.co/new-arxiv-rules-ai-generated-papers-ban/
1•cdrnsf•2m ago•0 comments

What rebuilding AlphaGo teaches us about self-play, RL, and future of LLMs [video]

https://www.youtube.com/watch?v=X_ZVSPcZhtw
1•mfiguiere•4m ago•0 comments

Your AI Use Is Breaking My Brain

https://www.404media.co/your-ai-use-is-breaking-my-brain/
2•bonsai_spool•5m ago•1 comments

Meta to receive $3.3B in tax breaks for its $10B Louisiana data center

https://fortune.com/2026/05/14/meta-data-center-tax-break-hyperion-louisiana/
4•logickkk1•11m ago•1 comments

Claude FM

https://www.youtube.com/watch?v=YmQ7jRgf4f0
2•arishi•16m ago•0 comments

Judge Bars Kars4Kids from Broadcasting 'Misleading' Ads in California

https://www.nytimes.com/2026/05/15/us/kars4kids-advertising-banned-california.html
13•xnx•17m ago•0 comments

Hotel check-in system exposed 1M passports and driver's licenses

https://techcrunch.com/2026/05/15/a-hotel-check-in-system-left-a-million-passports-and-drivers-li...
2•p_stuart82•18m ago•0 comments

Ask an Astronaut: 333 hours of Q&A footage with astronauts

https://askanastronaut.issinrealtime.org/
1•gaws•18m ago•0 comments

Obsidian Radar Plugin

https://github.com/lfcipriani/obsidian-radar
2•lfcipriani•18m ago•0 comments

The founder's playbook: Building an AI-native startup

https://claude.com/blog/the-founders-playbook
2•shenli3514•19m ago•0 comments

Fedora Hummingbird: Taking the Hummingbird model to the full operating system

https://fedoramagazine.org/fedora-hummingbird-linux-taking-the-hummingbird-model-to-the-full-os/
1•abdelhousni•20m ago•1 comments

Google's Gemini Omni video model surfaces ahead of I/O debut

https://www.testingcatalog.com/googles-gemini-omni-video-model-surfaces-ahead-of-i-o-debut/
1•gmays•20m ago•0 comments

Analysis of 70 years of "Eurovision" lyrics

https://puntofisso.net/eurovision/
1•gaws•20m ago•0 comments

WinCE64 – Windows CE 2.11 for N64

https://github.com/ThroatyMumbo/WinCE64
4•xyru•20m ago•0 comments

The Magic of Meetups

https://elijahpotter.dev/articles/product-product-product
1•chilipepperhott•22m ago•0 comments

OpenAI Models in OpenClaw, Done Right

https://openclaw.ai/blog/openai-models-in-openclaw-done-right
2•sansuk•24m ago•0 comments

Show HN: Claude Code vs. Codex Global Usage Leaderboard

https://costhawk.ai/leaderboard
3•optimizethis•25m ago•0 comments

Stop state surveillance in Canada. Stop Bill C-22

https://www.jccf.ca/stop-bill-c-22-stop-surveillance-in-canada/
2•YoctoYARN•26m ago•0 comments

Learning, Fast and Slow: Towards LLMs That Adapt Continually

https://gepa-ai.github.io/gepa/blog/2026/05/11/learning-fast-and-slow/
2•LakshyAAAgrawal•30m ago•0 comments

A New Kind of Family-Separation Crisis

https://www.theatlantic.com/politics/2026/05/honduras-deportations-without-children/687153/
2•paulpauper•31m ago•0 comments

I Was Drowning Running 14 Markets Alone. So I Built a $0.41/Day AI Employee

https://medium.com/@alanscottencinas/i-was-drowning-running-14-markets-alone-so-i-built-a-0-41-da...
1•encinas88•31m ago•0 comments

State media control influences large language models

https://www.nature.com/articles/s41586-026-10506-7
1•paulpauper•31m ago•0 comments

What I've Been Reading

https://marginalrevolution.com/marginalrevolution/2026/05/what-ive-been-reading-288.html
2•paulpauper•32m ago•0 comments

THORChain exploit hits Bitcoin, Ethereum, and BSC: Hackers steal over $10M

https://ambcrypto.com/thorchain-exploit-hits-bitcoin-ethereum-and-bsc-hackers-steal-over-10-mln/
6•wslh•32m ago•1 comments

Tell HN: Audible app used 19.8GB of data while not being used

2•jimnotgym•33m ago•1 comments

Show HN: X open sourced their algorithm

https://www.xalgorithm.xyz/en
3•hsnrique•34m ago•0 comments

Does Trump Mobile know how many stripes are on the American flag?

https://www.theverge.com/gadgets/931347/trump-mobile-t1-phone-logo-flag-stars-stripes
4•droidjj•36m ago•0 comments

Show HN: Emergence World: World building as a way to evaluate LLMs

https://world.emergence.ai/
2•deepakakkil•37m ago•0 comments

ABC News has taken all FiveThirtyEight articles offline

https://twitter.com/baseballot/status/2055309076209492208
37•cmsparks•37m ago•13 comments

Dual Intel Arc Pro B60(48G) Inference, Virtualization, and Gaming Testing

https://www.lttlabs.com/articles/2026/05/15/maxsun-intel-arc-pro-b60-dual-48g-turbo-review
3•LabsLucas•38m 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•11mo 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•11mo 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•11mo ago
> EMACS elisp

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

wk_end•11mo 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•11mo 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•11mo 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•11mo 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.