frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

I collected 1k cancellation URLs and built them into an iOS app

https://apps.apple.com/us/app/subscriptioncat-reminder/id6760429188
1•hiroshichan•1m ago•0 comments

No semicolons needed: a survey of programming language syntaxes

https://terts.dev/blog/no-semicolons-needed/#lua
1•fanf2•2m ago•0 comments

Cursor Composer 2 is just Kimi K2.5 with RL

https://twitter.com/fynnso/status/2034706304875602030
1•mirzap•2m ago•0 comments

The Soul of a Pedicab Driver

https://www.sheldonbrown.com/pedicab.html
1•haritha-j•3m ago•0 comments

Chemical pollutants are rife across the oceans

https://www.nature.com/articles/d41586-026-00850-z
1•Brajeshwar•5m ago•0 comments

Norway's Consumer Council takes aim at enshittification

https://www.theregister.com/2026/03/06/forbrukerradet_aim_enshittification/
1•rbanffy•5m ago•0 comments

Electric plasma guided with ultrasonic fields

https://www.science.org/doi/full/10.1126/sciadv.adp0686
1•akshatjiwan•6m ago•0 comments

Show HN: Popoto – A Redis/Valkey ORM with Django-Like Syntax for Python

https://popoto.readthedocs.io/en/latest/
1•tomcounsell•10m ago•0 comments

O'Sullivan makes highest-ever break with historic 153

https://www.bbc.co.uk/sport/snooker/articles/cn4391l3lvxo
1•mellosouls•10m ago•1 comments

Mac OS X 25th Anniversary: The Foundation of Apple's Rise

https://www.goto10retro.com/p/mac-os-x-25th-anniversary-the-os
1•rbanffy•11m ago•0 comments

Show HN: Cybertt – Cybersecurity Tabletop

https://cybertt.xyz/
1•pluppen•14m ago•0 comments

Final Report of Grid Incident in Spain and Portugal on 28 April 2025 [pdf]

https://eepublicdownloads.blob.core.windows.net/public-cdn-container/clean-documents/Publications...
1•sam_lowry_•16m ago•1 comments

Show HN: ClawMUD – A persistent world where only AI agents play, humans spectate

https://clawmud.ai
1•allenhsutw•17m ago•0 comments

Things Fall Apart

https://en.wikipedia.org/wiki/Things_Fall_Apart
3•chistev•26m ago•1 comments

Show HN: Added API key support to my AI writing assistant extension

1•jerrygoyal•26m ago•0 comments

Essex police pause facial recognition camera use after study finds racial bias

https://www.theguardian.com/technology/2026/mar/19/essex-police-pause-facial-recognition-camera-u...
2•Brajeshwar•26m ago•0 comments

Dinit a systemd alternative without age-verification requirements

https://davmac.org/projects/dinit/?hs=1
1•grigio•29m ago•2 comments

Day 21. Iran is entering the Persian New Year, in digital darkness

https://mastodon.social/@netblocks/116260457585027609
1•us321•33m ago•0 comments

Free API-First Web Scrapers (YouTube, Bluesky, Reddit, Google Maps)

https://github.com/spinov001-art/awesome-web-scraping-2026
1•aimarketintel•34m ago•0 comments

VS Code Sessions: an attempt at competing with Cursor and Antigravity

https://twitter.com/_EDM115/status/2034577130630029632
1•EDM115•35m ago•0 comments

Portless replaces port numbers with stable .localhost URLs for local development

https://port1355.dev/
2•napolux•35m ago•0 comments

Uber to Invest Up to $1.25B in Rivian Robotaxis

https://www.wsj.com/business/autos/uber-to-invest-up-to-1-25-billion-in-rivian-robotaxis-8b295925
1•JumpCrisscross•38m ago•0 comments

The Trickonometry of Math Olympiad Inequalities (2025)

https://www.andreinc.net/2025/03/17/the-trickonometry-of-math-olympiad-inequalities/
1•vismit2000•39m ago•0 comments

Open standard for stable machine-readable facts for AI systems

https://groundingpage.com/
1•fhouser•40m ago•0 comments

List of Equipment of the Islamic Revolutionary Guard Corps Navy

https://en.wikipedia.org/wiki/List_of_equipment_of_the_Islamic_Revolutionary_Guard_Corps_Navy
1•JumpCrisscross•43m ago•0 comments

USS Ford forced to withdraw due to laundry fire and toilet sabotage [video]

https://www.youtube.com/watch?v=gy5fsq1hvqo
3•burnt-resistor•45m ago•2 comments

Role-based AI persona packs for Claude Code and Cursor

1•ratnesh_maurya•49m ago•0 comments

Managing Dotfiles with Chezmoi

https://stoddart.github.io/development/tools/open-source/reviews/2024/09/08/managing-dotfiles-wit...
2•wyclif•50m ago•0 comments

Tell HN: Claude Returning 429 in OpenCode

1•ramon156•55m ago•0 comments

NeXTSTEP 3.3 Developer Documentation (1995)

https://www.nextop.de/NeXTstep_3.3_Developer_Documentation/
2•h4ch1•55m ago•0 comments
Open in hackernews

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

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

Comments

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

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

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