frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

A Day in the Life of an Enshittificator [video]

https://www.youtube.com/watch?v=T4Upf_B9RLQ
1•davyAdewoyin•1m ago•0 comments

'Disaster waiting to happen' as 85 large oil tankers lie trapped in the Gulf

https://www.greenpeace.org/international/press-release/82052/greenpeace-disaster-oil-tankers-in-p...
1•geox•2m ago•0 comments

AI, Human Cognition and Knowledge Collapse – Daren Acemoglu

1•aanet•2m ago•0 comments

Find the perfect icon for your design

https://iconsroom.com/
2•mdanassaif•4m ago•0 comments

DuckDB Kernel for Jupyter

https://medium.com/@gribanov.vladimir/building-a-full-featured-duckdb-kernel-for-jupyter-with-a-d...
1•jonbaer•4m ago•0 comments

The Pyramid and the Tomb

https://minutes.substack.com/p/the-pyramid-and-the-tomb
1•jger15•5m ago•0 comments

Diablo 2 in First Person with Unreal Engine [video]

https://www.youtube.com/watch?v=0NPl7ZGg14E
1•metadat•10m ago•0 comments

Lp(a) testing is now recommended to prevent heart disease

https://www.npr.org/2026/03/13/nx-s1-5747111/cholesterol-guidelines-lipoproteina-test
1•brandonb•10m ago•0 comments

Simulations on Xbox 360: Cardiac arrhythmias, re-entry and the Halting problem

https://www.sciencedirect.com/science/article/abs/pii/S1476927109000486
1•rbanffy•13m ago•0 comments

Pug 3.0.4

https://github.com/pugjs/pug/releases
1•guzik•13m ago•0 comments

AutoHarness: Improving LLM agents by automatically synthesizing a code harness

https://arxiv.org/abs/2603.03329
1•simonpure•14m ago•0 comments

LightSwarm – A script making ClaudeCodeMax into a free light easy swarm

https://github.com/craftfortress/lightswarm
1•ionwake•14m ago•0 comments

People using Tesla Autopilot to drive while drunk

https://bsky.app/profile/niedermeyer.online/post/3mgxbqti3yc22
3•doener•16m ago•0 comments

Show HN: A single CLI to manage llama.cpp/vLLM/Ollama models

https://github.com/av/harbor/releases/tag/v0.4.4
1•everlier•17m ago•0 comments

Systems Thinking Is Brain Rot for Analysts

https://blundercheck.timberschroff.com/p/systems-thinking-is-brain-rot-for
1•anarbadalov•17m ago•0 comments

Way to Run OpenClaw Locally on AMD Ryzen

https://www.amd.com/en/resources/articles/run-openclaw-locally-on-amd-ryzen-ai-max-and-radeon-gpu...
1•mirzap•17m ago•1 comments

Create a 5s 1080p Video in 4.5s with FastVideo on a Single GPU

https://1080p.fastvideo.org/
7•zhisbug•17m ago•1 comments

The Long Telegram

https://en.wikipedia.org/wiki/X_Article
1•simonebrunozzi•18m ago•0 comments

Coding Is Dead, Long Live Programming

https://ian-cooper.writeas.com/coding-is-dead-long-live-programming
2•tbayramov•19m ago•0 comments

Show HN: URLert Guard – Real-time phishing forensics for Chrome

https://www.urlert.com/blog/announcing-urlert-guard
1•tomerhe•19m ago•1 comments

Define once, use everywhere: a metrics layer for ClickHouse with MooseStack

https://clickhouse.com/blog/metrics-layer-with-fiveonefour
1•oatsandsugar•21m ago•0 comments

`mcpx` – MCP in a CLI

https://github.com/evantahler/mcpx
5•evantahler•21m ago•3 comments

Social Media, Reset

https://meetzeta.com
1•paicom•22m ago•0 comments

Show HN: KayZeer – Vimium-style keyboard navigation for macOS

https://github.com/serjster/KayZeer
1•serjts•23m ago•2 comments

More than 135 open hardware devices flashable with your own firmware

https://openhardware.directory
2•iosifnicolae2•23m ago•0 comments

MacBook Neo Is the Most Repairable MacBook in 14 Years

https://www.ifixit.com/News/116152/macbook-neo-is-the-most-repairable-macbook-in-14-years
2•mrzool•24m ago•1 comments

Privacy-first tools you buy once and own forever. No subscription.Productivity

https://visualtools.cc/
2•rutkute•27m ago•1 comments

Linkding: A self-hosted bookmark manager

https://linkding.link
1•cdrnsf•32m ago•1 comments

Re//verse 2026: Hacking the Xbox One [video]

https://www.youtube.com/watch?v=FTFn4UZsA5U
2•zap_rpisec•34m ago•0 comments

Code Is a Liquid Now

https://micro.inessential.com/2026/03/13/code-is-a-liquid-now.html
1•sonicrocketman•35m ago•0 comments
Open in hackernews

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

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

Comments

droideqa•9mo 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•9mo ago
Pretty readable code
reuben364•9mo 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•9mo 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•9mo 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•9mo 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•9mo ago
> EMACS elisp

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

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