frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Motorola phones have started hijacking the Amazon app to insert affiliate codes

https://9to5google.com/2026/05/25/motorola-amazon-app-hijacking-behavior/
2•Cider9986•12m ago•0 comments

Show HN: Self-hosted collaborative SQL editor for teams

https://github.com/p-raj/collab-sqlc/
1•joddystreet•14m ago•0 comments

Show HN: Lily Design System: Components for React, Vue, Svelte, HTML, More

https://lilydesignsystem.github.io/
1•jph•19m ago•0 comments

Show HN: AgentToolBench-Code – security benchmark for AI coding agents

https://gist.github.com/allenwu-blip/fa2bd0218b93a1d7aef765817e3c6608
1•allenwu06•23m ago•0 comments

Earthion: A New Mega Drive-Style Shoot-Em-Up

https://earthiongame.com/
1•MrBuddyCasino•26m ago•0 comments

Linux Compromises, Broken Embargoes, and the Shrinking Patch Window

https://www.askbaize.com/blog/linux-compromises-broken-embargoes-and-the-shrinking-patch-window
1•laurex•27m ago•0 comments

The CISO's Guide to IDE Security in 2026

https://yeethsecurity.com/blog/2026-05-21-CISO-Guide-IDE-Security
1•somerandom1337•28m ago•0 comments

Argus – multi‑agent AI coding assistant that never gets stuc

https://github.com/argustek/Argus
1•argustek•32m ago•0 comments

Why the Smart Home Bubble Popped

https://hackaday.com/2026/05/21/why-the-smart-home-bubble-popped/
9•lxm•33m ago•3 comments

The open-source ACP orchestrator

https://github.com/alfonsodg/aintegrix
1•alfonsodg•42m ago•0 comments

GSD [NPM get-shit-done-cc] is now OpenGSD

https://www.opengsd.net/
1•_blk•43m ago•0 comments

Show HN: Rapel – chunked resumable downloads in unstable networks

https://github.com/redraw/rapel
1•autorun•44m ago•0 comments

Webwright: A Terminal Is All You Need for Web Agents

https://www.microsoft.com/en-us/research/articles/webwright-a-terminal-is-all-you-need-for-web-ag...
3•pyinstallwoes•48m ago•0 comments

Self-hosting Wafrn behind another Caddy, with Bluesky support

https://blog.goodanser.com/fediverse/post/03c6a4f4-cdd4-4027-a6a4-5017dd9154bd
1•mooreds•50m ago•0 comments

Mashing up modelling techniques for fun and profit

https://event-driven.io/en/on-mashing-up-modelling-techniques/
1•mooreds•51m ago•0 comments

The Ask

https://randsinrepose.com/archives/the-ask/
2•mooreds•52m ago•0 comments

SK Group chairman says memory chip shortage will last until 2030

https://www.tomshardware.com/pc-components/dram/sk-group-chairman-says-memory-chip-shortage-will-...
3•SiqingYu•57m ago•0 comments

Publishing's Latest Piracy Problem: Audiobooks on YouTube

https://www.nytimes.com/2026/05/21/books/audiobook-piracy-youtube.html
3•lxm•1h ago•0 comments

Waymo suspends all freeway rides over safety issues

https://sfstandard.com/2026/05/21/waymo-suspends-all-freeway-rides-safety-issues/
7•romanhn•1h ago•0 comments

Artificial Intelligence Floods Court Dockets with Home-Brewed Lawsuits

https://www.nytimes.com/2026/05/25/us/politics/artificial-intelliegence-courts.html
3•jrmg•1h ago•1 comments

Human-Made Materials Now Weigh More Than All Life on Earth Combined (2020)

https://www.smithsonianmag.com/smart-news/human-made-materials-now-weigh-more-all-life-earth-comb...
3•thunderbong•1h ago•0 comments

GitHub commit Verification logic flaw and bypass

1•handwritter•1h ago•0 comments

Brockovich AI Data Center Reporting

https://www.brockovichdatacenter.com/
2•cdrnsf•1h ago•0 comments

Pinned – daily geography pin-drop game (pinned.engineering)

https://www.pinned.engineering/
1•Hddharry•1h ago•0 comments

Models Have Blind Spots: Debugging Unfamiliar Code with a Multi-LLM Loop

https://sosuke.com/models-have-blind-spots-debugging-unfamiliar-code-with-a-multi-llm-loop/
1•sosuke•1h ago•0 comments

Show HN: Pgcraft – a lazygit-style TUI for Postgres

https://github.com/lucasfrederico/pgcraft
3•lucasfrederico•1h ago•0 comments

LibreOffice Tips and Tricks: Replacing Microsoft Fonts (2020)

https://blog.documentfoundation.org/blog/2020/09/08/libreoffice-tt-replacing-microsoft-fonts/
1•bariumbitmap•1h ago•0 comments

Ente's Legacy Kit Feature

https://ente.com/blog/legacy-kit/
2•gurjeet•1h ago•0 comments

Matchmaker: A Powerful and Modern Searcher

https://github.com/Squirreljetpack/matchmaker
2•squirreljetpack•1h ago•1 comments

MileStone: A Multi-Objective Compiler Phase Ordering Framework

https://arxiv.org/abs/2605.23435
1•matt_d•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.