frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Bash is all you need. A nano Claude Code–like agent, built from 0 to 1

https://github.com/shareAI-lab/learn-claude-code
1•Oras•32s ago•0 comments

Hardware passkeys are winning on security, losing on adoption

https://www.corbado.com/blog/hardware-passkey-adoption-observability
1•vdelitz•1m ago•0 comments

Too Much Color

https://www.keithcirkel.co.uk/too-much-color/
3•Keithamus•1m ago•0 comments

CPG – Generate Cilium network policies from dropped Hubble flows

1•soulkyu•3m ago•0 comments

What's my JND? – a colour guessing game

https://www.keithcirkel.co.uk/whats-my-jnd/?r=ARUjKP__-ve-
2•Keithamus•4m ago•0 comments

I think I'm turning into a vibe coder

1•bekauridev•6m ago•0 comments

Measuring the Weight of an Electron (2017)

https://deftly.net/posts/2017-06-01-measuring-the-weight-of-an-electron.html
2•asimovDev•7m ago•0 comments

I made myself a device that tells me what plane flies above my home

https://old.reddit.com/r/aviation/comments/1roy7qs/i_made_myself_a_device_that_tells_me_what_plane/
1•taubek•8m ago•0 comments

Working to Decentralize FedCM

https://atproto.com/blog/working-to-decentralize-fedcm
1•erlend_sh•11m ago•0 comments

Wolfram LLM Benchmarking Project

https://www.wolfram.com/llm-benchmarking-project/
1•amai•12m ago•0 comments

Recreate Lost Chinese Font from ancient books using AI

https://github.com/kaonashi-tyc/Zi-QuanHengDuLiang
1•kaonashi-tyc-01•14m ago•0 comments

Why Your AI Coding Agent Gets Worse over Time (and How to Fix It)

https://www.davidreis.me/2026/why-your-ai-coding-agent-gets-worse-over-time
1•dreis_sw•14m ago•0 comments

Tim FTTH and GeForce Now: Diagnosing an ICMP Black Hole on PPPoE

https://paolocostanzo.github.io/tim-packet-loss-gfn/
1•PCostanzo•14m ago•1 comments

EVi, a Hard-Fork of Vim

https://codeberg.org/NerdNextDoor/evi
1•todsacerdoti•15m ago•0 comments

Unleash raises $35M to help enterprises govern AI-generated code

https://siliconangle.com/2026/03/04/unleash-raises-35m-rein-ai-driven-software-risk/
1•ivarconr•15m ago•0 comments

You could be next The lawyers and scientists training AI to steal their careers

https://www.theverge.com/cs/features/877388/white-collar-workers-training-ai-mercor
1•JeanKage•20m ago•0 comments

The Star Chamber: Multi-LLM Consensus for Code Quality

https://blog.mozilla.ai/the-star-chamber-multi-llm-consensus-for-code-quality/
1•gsaslis•22m ago•0 comments

Vibe Tuning Startup - Waitlist (ex google labs + deepmind)

https://vibetune.framer.ai/
1•pranavch28•22m ago•0 comments

Post-quantum cryptography beyond TLS

https://www.akamai.com/blog/security/post-quantum-cryptography-beyond-tls
1•fanf2•24m ago•0 comments

An Ode to Craftsmanship in Software Development

https://www.infoworld.com/article/4140156/an-ode-to-craftsmanship-in-software-development.html
2•SuaveSteve•24m ago•0 comments

Bell's X-76 Fold-Away Rotor Aircraft Is DARPA's Newest X-Plane

https://www.twz.com/air/bells-x-76-fold-away-rotor-aircraft-is-darpas-newest-x-plane
1•throwawayffffas•25m ago•0 comments

Claude helped me get a traffic light reprogrammed in my town

https://www.reddit.com/r/ClaudeAI/s/yqe7NEFI6b
1•merlindru•27m ago•0 comments

Show HN: SoloDB 1.1 – embedded .NET document DB with real referential integrity

https://unconcurrent.com/articles/SoloDB110.html
1•falsename•27m ago•0 comments

Stop using chat history as your agent's state store

https://blog.raed.dev/posts/agentic-workflows-are-not-conversations/
1•Raed667•29m ago•1 comments

MPs reject ban on social media for under-16s

https://www.theguardian.com/uk-news/2026/mar/09/proposed-ban-on-social-media-for-under-16s-reject...
1•chrisjj•35m ago•0 comments

Making your JITted Code known: Let me count the ways

https://wakelift.de/2026/03/09/making-your-jitted-code-known-let-me-count-the-ways/
1•lizmat•35m ago•0 comments

Ask HN: Are there any alternatives to LocalStack?

1•sceptic123•35m ago•1 comments

Increased risk of bullying in open-plan offices

https://www.eurekalert.org/news-releases/1118481
1•robtherobber•36m ago•0 comments

We got tired of ChatGPT confidently giving wrong answers about our SDK

https://blog.leanmcp.com/blog/llms-getting-leanmcp-wrong
1•jialu1•40m ago•0 comments

RISC-V Integrated Matrix Extension Release for Internal Review

https://github.com/riscv/integrated-matrix-extension/releases
1•camel-cdr•41m 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.