frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Slimbook Linux Laptops

https://slimbook.com/en/
1•maelito•4m ago•0 comments

How to Think About AI in Your Product

https://abgoyal.com/posts/how-to-think-about-ai-in-your-product/
1•ghoul2•5m ago•0 comments

Dots and Boxes – real-time multiplayer, no signup

https://dotsandboxes.aeonic.earth/
1•AmartyaMandal•11m ago•0 comments

Curated list of resources on testing distributed systems

https://github.com/asatarin/testing-distributed-systems
1•jinqueeny•13m ago•0 comments

GateGraph – deterministic governance for AI agents

https://github.com/humancoreai/Gategraph
1•humancore•18m ago•0 comments

How to Learn Agentic AI in 2026 – Without Getting Lost in Hype

https://simplai.ai/blogs/how-to-actually-learn-agentic-ai-in-2026/
2•shanmugarajsk•18m ago•0 comments

I put Codex and Claude into a tank arena. Codex is winning 55% so far

https://old.reddit.com/r/codex/comments/1tgbb28/comment/omfo1by/
2•mazzystar•33m ago•0 comments

KiviDB – In Memory Store

https://kividb.io/
1•_nvp•35m ago•0 comments

Nobody understands the point of hybrid cars [video]

https://www.youtube.com/watch?v=KnUFH5GX_fI
1•CHB0403085482•36m ago•0 comments

Show HN: A CLI command to test internet speed

https://pypi.org/project/tracerate
1•rushil_b_patel•39m ago•0 comments

Litterbox: Somewhat Isolated Development Environments [video]

https://www.youtube.com/watch?v=OMCWs7qmKFc
1•Gerharddc•39m ago•1 comments

I built an AI vulnerability scanner with Claude and Codex. It failed

https://github.com/janitor-security/the-janitor
1•GhrammR•41m ago•0 comments

RCE and arbitrary file write in Vitess vtbackup via untrusted MANIFEST fields

https://neurowinter.com/security/2026/05/18/RCE-and-arbitrary-file-write-in-Vitess-vtbackup-via-u...
1•NeuroWinter•44m ago•0 comments

The Infinite Policeman – Preliminary Movement

https://medium.com/luminasticity/the-infinite-policeman-preliminary-movement-5038a293c1f2
1•bryanrasmussen•47m ago•0 comments

Playing with Jupyter style playbooks that work with Claude Code

https://old.reddit.com/r/ClaudeCode/comments/1tgdvex/playing_with_jupyter_style_playbooks_that_work/
2•bgnm2000•49m ago•0 comments

Building a Micro-Drilling Machine [video]

https://www.youtube.com/watch?v=KrStsdNG5go
1•pillars•52m ago•0 comments

Better CSS fluid sizing with round()

https://ishadeed.com/article/css-round/
1•BaudouinVH•53m ago•0 comments

Void Room – an offline writing app that does nothing on purpose

https://noirsonance.com/product/void-room/
1•Rimedag•53m ago•0 comments

Your Evals Will Break and You Won't See It Coming

https://wanglun1996.github.io/blog/your-evals-will-break.html
1•muggermuch•53m ago•0 comments

DeerFlow 2.0 – Deep Exploration and Efficient Research Flow

https://github.com/bytedance/deer-flow
1•epaga•55m ago•0 comments

More than 100 UK datacentres plan to burn gas to generate electricity

https://www.theguardian.com/business/2026/may/18/uk-datacentres-plan-to-burn-gas-to-generate-elec...
2•pera•58m ago•0 comments

SFC vs. Vizio Ruling on General Public License Compliance

https://www.dlapiper.com/en-us/insights/publications/2026/01/sfc-v-vizio-ruling-on-general-public...
1•beckford•1h ago•0 comments

Animated 3D map of Chongqing metro [video]

https://www.bilibili.com/video/BV16Z421W7o3/?spm_id_from=333.1387.homepage.video_card.click
1•decimalenough•1h ago•1 comments

2ality Blog: Temporarily Offline because of AI

https://2ality.com
1•tbassetto•1h ago•0 comments

Old Kindle e-readers will stop working on May 20th

https://goodereader.com/blog/kindle/old-kindle-e-readers-will-stop-working-on-may-20th
3•kozmonaut•1h ago•0 comments

Ask HN: Which AI harness comes close to Claude Code?

1•shivang2607•1h ago•0 comments

Code Orange: Fail Small is complete. The result is a stronger Cloudflare network

https://blog.cloudflare.com/code-orange-fail-small-complete/
2•thewisenerd•1h ago•0 comments

`Never-ending' AI slop strains corporate hacking reward schemes

https://www.ft.com/content/dbec4441-02dc-4053-8500-85677973d324
2•1vuio0pswjnm7•1h ago•1 comments

Spring Physics in my Word Game? A technical deep dive into SvelteJS animations

https://colechamberlin.substack.com/p/spring-physics-in-my-word-game
2•jessecoleman•1h ago•0 comments

Ask HN: Favorite In-Depth Deep Dives

4•vsupalov•1h ago•1 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.