frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

The Watch – Runway Song

https://www.youtube.com/watch?v=uF7lmsP3vJY
1•marcelix•2m ago•0 comments

188,000 Show HN posts, 14 years of data: what predicts GitHub stars

https://danfking.github.io/blog/2026/04/23/show-hn-by-the-numbers/
1•BundyBear•4m ago•0 comments

Hypen – Declarative UI Language for Cross-Platform Development

https://hypen.space/introducing-hypen
2•ravenical•15m ago•0 comments

Show HN: Cheap-IM – CPU-only voice agent approximating Thinking Machines' demo

https://github.com/kouhxp/cheap-im
1•mrkn1•19m ago•0 comments

Zero, a systems language for small native agent tools

https://github.com/vercel-labs/zero
1•mjgil•23m ago•0 comments

ZeroBloat: Open-source desktop app for removing Android bloatware

https://github.com/AdhwaithAS/ZeroBloat
2•pentagrama•26m ago•0 comments

Show HN: Building ClueDay, a daily clue-based word-game

https://tanyagupta10.substack.com/p/if-you-havent-vibecoded-already-build
1•tannyc•31m ago•0 comments

Target can't measure their own bins

https://ninjacheetah.dev/2026/05/17/target-cant-measure.html
2•argee•35m ago•0 comments

Searching "remove definition" on Google results in pointless AI text

https://www.google.com/search?q=remove+definition
2•tech234a•35m ago•0 comments

Show HN: I containerized my AI agents and dev tools

https://github.com/SamInTheShell/aetherion
1•SamInTheShell•41m ago•0 comments

I made realtime raytraced reflections for my portfolio site

https://taggartmaher.com/projects/this-website
2•xialo•42m ago•0 comments

Show HN: Agetor - An open-source Harness Orchestrator

https://github.com/alamops/agetor
1•drakochack•44m ago•0 comments

Do LLMs hold the opinions they give you?

https://twitter.com/pandya_marut/status/2056151597642838487
1•mwiki•52m ago•0 comments

Does Wellington have the most beautiful commute in the world?

https://www.rnz.co.nz/news/regions_wellington/595529/cyclists-commute-at-sunrise-on-the-beautiful...
1•colinprince•53m ago•0 comments

Do less so you can do better (2020)

https://www.indiehackers.com/post/do-less-so-you-can-do-it-better-3ea77e92b4
2•chr15m•56m ago•0 comments

WriteUp: 16 Bytes of x86 that turn Matrix rain into sound

https://hellmood.111mb.de//wake_up_16b_writeup.html
3•HellMood•59m ago•0 comments

Scientists have invented a way to erase bad memories. But should we?

https://www.sciencefocus.com/future-technology/erase-painful-memories
3•amichail•1h ago•2 comments

Rust Async and the Arm Generic Timer

https://thejpster.org.uk/blog/blog-2026-05-17/
1•hasheddan•1h ago•0 comments

Dealing with a Fake a World

2•morpheos137•1h ago•1 comments

Design posters showcasing your country's electrical grid

https://github.com/open-energy-transition/grid2poster
8•lyoncy•1h ago•1 comments

100% Vibe Code

https://humansvsai.io
1•creatorcuffee•1h ago•0 comments

Why ML is a metaphor for life

https://adeshpande3.github.io/Why-Machine-Learning-is-a-Metaphor-For-Life
2•_josh_meyer_•1h ago•0 comments

Finding the Time on AArch32

https://thejpster.org.uk/blog/blog-2026-05-16/
1•hasheddan•1h ago•0 comments

Meta AI Incognito Mode Chats

https://about.fb.com/news/2026/05/incognito-chat-whatsapp-meta-ai/
1•hdjY28•1h ago•0 comments

Financial Services Hackathon for Autism

https://fsi-hack4autism.github.io
1•hbcondo714•1h ago•0 comments

I reduced my OpenClaw token usage by 10x

https://brtkwr.com/posts/2026-05-17-reducing-openclaw-token-usage/
1•brtkwr•1h ago•0 comments

I want to talk population panic and understanding demography

https://bsky.app/profile/karenguzzo.bsky.social/post/3lor4lsga4c2c
2•doener•1h ago•0 comments

EPI – forensic evidence containers for AI agentSCITT-compatible, EU AI Act-ready

https://github.com/mohdibrahimaiml/epi-recorder
1•afridi_epilabs•1h ago•0 comments

Dealing with Incomplete Copyleft Source That Doesn't Correspond

https://sfconservancy.org/blog/2026/may/17/incomplete-corresponding-source-code-copyleft-agpl/
2•jacquesm•1h ago•0 comments

ElliQ is a surprisingly helpful companion robot for older adults

https://www.theverge.com/gadgets/928806/elliq-intuition-robotics-hands-on
1•sohkamyung•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•12mo ago
Downloadable: https://zenodo.org/records/15424968/files/deputy-els.pdf

Comments

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

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

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