frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

How LLMs Work

https://www.0xkato.xyz/how-llms-actually-work/
2•0xkato•40s ago•0 comments

It's time to fly – Codex [video]

https://www.youtube.com/watch?v=bJcA23ckzcY
1•phyzix5761•3m ago•0 comments

A Man Who Reads Books for a Living (One Every Two Days)

https://lithub.com/the-man-who-reads-books-for-a-living-one-every-two-days/
1•gmays•7m ago•0 comments

Show HN: CLI for crawling documentation sites into Markdown with defuddle

https://github.com/artemnistuley/docrawl
1•nistuley•7m ago•0 comments

The Approach to Equilibrium

https://www.guidavid.com/writing/approach-to-equilibrium
1•gdss•8m ago•0 comments

Revealing the Frontier with Stacks and Queues

https://dystroy.org/blog/stack-and-queues/
1•g0xA52A2A•11m ago•0 comments

NULLs in ClickHouse can hurt performance

https://rushter.com/blog/clickhouse-nulls/
1•birdculture•12m ago•0 comments

Why are there no good tablets at the moment?

https://neilzone.co.uk/2026/06/why-are-there-no-good-tablets-at-the-moment/
1•speckx•12m ago•0 comments

Rewiring software delivery for the agentic era

https://www.mckinsey.com/capabilities/technology/our-insights/rewiring-software-delivery-for-the-...
1•igor_mart•14m ago•0 comments

Monitor all your servers from one beautiful dashboard

https://boxwatch.app/
1•genx-joe•14m ago•0 comments

Show HN: I created a React alternative using web componnents

https://createthirdplaces.org/tech/placesjs.html
2•gulugawa•15m ago•0 comments

Multi-stage distributed query execution in ClickHouse Cloud

https://clickhouse.com/blog/multi-stage-distributed-query-execution-clickhouse-cloud
1•samaysharma•15m ago•0 comments

Stophy for AI Agents

https://stophy.dev
1•hakiiizimana•16m ago•0 comments

Trump's Takeover of the American Regulatory Machine

https://www.wsj.com/politics/policy/trump-takeover-regulators-130b57a3
4•doener•17m ago•0 comments

Analysis of Canadian Surveillance Law Expansion Under Bill C-22 – CitizenLab

https://citizenlab.ca/research/analysis-of-proposed-surveillance-law-expansion-under-bill-c-22/
2•EmbarrassedHelp•19m ago•1 comments

PaceVer (an alternative to SemVer, for mobile apps)

https://pacever.org/
2•maxloh•19m ago•0 comments

How ClickHouse Became 26x Faster at Joins

https://clickhouse.com/blog/clickhouse-fast-joins
1•samaysharma•20m ago•0 comments

Can poppy seeds make you fail a drug test?

https://www.popsci.com/health/can-poppy-seeds-cause-positive-drug-test/
2•bryan0•21m ago•0 comments

KDE Linux Is Coming Along Nicely, Ditching the AUR and Tightening Up Security

https://itsfoss.com/news/kde-linux-may-2026-update/
1•amcclure•21m ago•0 comments

God of War Laufey: First gameplay trailer

https://blog.playstation.com/2026/06/02/first-look-at-god-of-war-laufey/
1•glitchc•23m ago•0 comments

Have a "Lifetime" Without Microsoft

https://techrights.org/n/2026/06/03/Have_a_Lifetime_Without_Microsoft.shtml
1•amcclure•23m ago•1 comments

No Let, No Rec, No Problem: A Gentler Introduction to the Y and Z Combinators

https://irfanali.org/blog/zcom
1•thunderbong•25m ago•0 comments

Resolving Feynman's restaurant problem reveals optimal solutions and strategies

https://www.pnas.org/doi/10.1073/pnas.2509612123
1•tzury•26m ago•0 comments

Hundreds of cancer papers presented incorrect data after p16 protein mixup

https://forbetterscience.com/2026/06/02/mind-over-antibody/
3•ilamont•26m ago•0 comments

djbsort

https://sorting.cr.yp.to/
1•gjvc•27m ago•0 comments

How to Debug AI Agents with Traces and Evals

https://medium.com/no-time/how-to-debug-ai-agents-with-traces-and-evals-a3b72e9e7c82
1•sukhpinder0804•29m ago•0 comments

Jumping Up/Down on the Shoulders of Giants, Never Talking About What Gates Did

https://techrights.org/n/2026/06/03/Jumping_Up_and_Down_on_the_Shoulders_of_Giants_Never_Talking_...
1•amcclure•29m ago•1 comments

The importance of free software to science

https://lwn.net/Articles/1023299/
1•ssivark•30m ago•0 comments

Self-hosted dev sandboxes with preview URLs (Docker, Go, no K8s)

https://github.com/tastyeffectco/sandboxes
2•tastyeffectco•32m ago•0 comments

Artist Corporations

https://www.artistcorporations.com/
1•_century•33m 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.
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
fithisux•1y ago
Impressive.
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.

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