frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

How (and why) rqlite takes control of the SQLite Write-Ahead Log

https://philipotoole.com/how-and-why-rqlite-takes-control-of-the-sqlite-write-ahead-log/
1•otoolep•1m ago•0 comments

How Weak Evidence Is Fueling a National Push to Ban Social Media for Youth

https://www.eff.org/deeplinks/2026/05/science-not-settled-how-weak-evidence-fueling-national-push...
1•hn_acker•1m ago•1 comments

Show HN: Aproxymade – plug-and-play monitoring and caching for your REST APIs

https://www.aproxymade.com/
1•msosnowski•2m ago•0 comments

Korpo Clicker

https://app.korpoclicker.pl
1•mihau•2m ago•0 comments

Show HN: AgentDeck – a game console for AI agent research

https://github.com/agentdeck/agentdeck
1•DiegoZoracKy•3m ago•0 comments

Open Source Managed Agents

https://linchpin.work/
1•nikhil61191•4m ago•1 comments

Launch HN: Ardent (YC P26) – Postgres sandboxes in seconds with zero migration

https://www.tryardent.com/
3•vc289•5m ago•0 comments

My Silicon Is Broken

https://essenceia.github.io/thoughts/broken_doc/
1•random__duck•5m ago•0 comments

The Cold War Bunker That Became Home to a Dark-Web Empire (2020)

https://www.newyorker.com/magazine/2020/08/03/the-cold-war-bunker-that-became-home-to-a-dark-web-...
1•zer0tonin•5m ago•0 comments

See every car the second it's towed in San Francisco

https://twitter.com/rodinrooh/status/2054253422971703568
1•metadat•6m ago•1 comments

AI versus Microservices

https://www.michaelnygard.com/blog/2026/05/ai-versus-microservices/
2•systems•6m ago•0 comments

The Rise of Pirate Libraries (2016)

https://www.atlasobscura.com/articles/the-rise-of-illegal-pirate-libraries
1•downbad_•8m ago•0 comments

Ask HN: Has any YC startup from the last 6–7 years scaled like Stripe or Docker?

1•AsDivyansh•9m ago•0 comments

Valve snuck a Wilhelm scream Easter egg into the new Steam Controller

https://www.pcgamer.com/hardware/steam-machines/valve-snuck-a-wilhelm-scream-easter-egg-into-the-...
2•Brajeshwar•12m ago•0 comments

Closehue.com

https://closehue.com/
1•recursive_toast•13m ago•0 comments

Chips Startup Fractile Raises $220M to Speed Up AI Queries

https://www.wsj.com/tech/ai/chips-startup-fractile-raises-220-million-to-speed-up-ai-queries-c868...
1•gchadwick•14m ago•0 comments

Flagordle.com

https://flagordle.com/
1•recursive_toast•14m ago•0 comments

The Keyboard Isn't Dead

https://www.getvoibe.com/resources/voicepilling-keyboard-isnt-dead/
2•ayushchat•14m ago•0 comments

Ask HN: Why Reddit blocks all automated access but has .json for all URLs?

2•ksajadi•16m ago•2 comments

Gecko: A fast GLR parser with automatic syntax error recovery

https://vnmakarov.github.io/parsing/compilers/c/open-source/2026/04/22/gecko-glr.html
3•PaulHoule•19m ago•0 comments

The Tech Jobs That Are Safe from AI

https://www.wsj.com/tech/ai/the-tech-jobs-that-are-safe-from-ai-8d415383
4•fortran77•19m ago•2 comments

Agent pull requests are everywhere

https://github.blog/ai-and-ml/generative-ai/agent-pull-requests-are-everywhere-heres-how-to-revie...
1•gemanor•20m ago•0 comments

OpenAI DevDay 2026

https://openai.com/index/devday-2026/
1•aquir•20m ago•0 comments

How the Bird Eye Was Pushed to an Evolutionary Extreme

https://www.quantamagazine.org/how-the-bird-eye-was-pushed-to-an-evolutionary-extreme-20260513/
1•ibobev•20m ago•0 comments

Ten Releases of Great Docs, a fairly new Python static site generator

https://opensource.posit.co/blog/2026-05-13_great-docs-ten-things/
1•richmeister•20m ago•0 comments

Show HN: Majestic, GUI for Jest

https://github.com/Raathigesh/majestic
1•bytode•21m ago•0 comments

CIA spy blames Dr Fauci for covering up Covid lab leak

https://www.dailymail.com/news/article-15814995/CIA-spy-BLAMES-Dr-Fauci-covering-Chinese-Covid-la...
4•Bender•21m ago•3 comments

I think first-pass private equity analysis will be automated

https://www.valedex.com/
1•marcelvaledex•23m ago•0 comments

Projecting React

https://tannerlinsley.com/posts/projecting-react
1•homarp•25m ago•0 comments

Cangjie, an Open-Source Compiled Language with Native Effect Handlers and ADT

https://www.infoq.com/news/2026/05/cangjie-effect-handlers-adt/
2•rezaprima•25m ago•0 comments
Open in hackernews

The Lisp in the Cellar: Dependent types that live upstairs [pdf]

https://zenodo.org/records/15424968
88•todsacerdoti•11mo ago
Downloadable: https://zenodo.org/records/15424968/files/deputy-els.pdf

Comments

droideqa•11mo 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•11mo ago
Pretty readable code
reuben364•11mo 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•11mo 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•11mo ago
Any URL for this that we can open in a browser (as opposed to the dreaded "Content-Disposition: attachment")?
Jtsummers•11mo 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•11mo ago
Thanks! I've switched to that above, and put the downloadable link in the top text.
reikonomusha•11mo 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•11mo 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•11mo ago
Well... believe it or not, some have thought of using lisp for AI for quite some time. ;-)
froh•11mo 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•11mo ago
Impressive.