frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

"AI is someone else's GPU"

https://waterpigs.co.uk/notes/5cVMNm/
1•jruohonen•4m ago•0 comments

Show HN: Web Speed – A shared web-map registry for AI agents (MCP, open source)

https://www.getwebspeed.io/
1•Dominic_P•7m ago•0 comments

Ask HN: Is ChatGPT suppose to spit out its own instructions that easy?

1•ipster_io•12m ago•0 comments

Richard Scolyer Has Died

https://www.bbc.com/news/articles/c14yz5jg476o
1•nicwilson•13m ago•1 comments

Centuries-old logbooks reveal how bowhead whales are recovering from near-extin…

https://theconversation.com/centuries-old-logbooks-reveal-how-bowhead-whales-are-recovering-from-...
1•rbanffy•14m ago•0 comments

We Are in the Anthropocene–Now What?

https://agupubs.onlinelibrary.wiley.com/doi/10.1029/2025EF007730
1•littlexsparkee•15m ago•0 comments

What we know about the plan to give Americans an equity stake in AI

https://www.ft.com/content/8559a3f9-86de-4a1c-8a75-6623e83e6a00
1•samvher•15m ago•1 comments

Show HN: Avibe – your AI agent lives on your machine, reachable from your phone

https://github.com/avibe-bot/avibe
1•alex_metacraft•15m ago•0 comments

Subscribe to My Substack:)

https://bionorthtech.substack.com/subscribe
1•hellocock•16m ago•0 comments

Qanah – WireGuard-Like P2P VPN

https://github.com/xlmnxp/qanah
1•xlmnxp•19m ago•0 comments

KNN early termination in Manticore Search

https://medium.com/@s_nikolaev/knn-early-termination-in-manticore-search-39e55ac18d62
1•snikolaev•19m ago•0 comments

Show HN: Agam – Activation-based memory for Claude Code, not retrieval

https://github.com/CrypticCortex/agam
1•aghoraguru•23m ago•0 comments

Nithya Raman knocks Spencer Pratt off second place in LA mayor's race

https://nypost.com/2026/06/07/us-news/nithya-raman-knocks-spencer-pratt-off-second-place-in-la-ma...
2•SilverElfin•25m ago•4 comments

Show HN: SoundScope - PS1 Audio Visualizer in your Browser

https://soundscope.greg.technology/
1•gregsadetsky•26m ago•0 comments

AI for the Operator

https://github.com/cerebrocybersolutions/cerebro-whitepaper
1•cerebrocyber•26m ago•0 comments

You Can Walk to the World Cup in New Jersey. But Should You?

https://www.nytimes.com/2026/06/07/opinion/world-cup-new-york-new-jersey-transit-walk.html
1•berns•27m ago•0 comments

Reward Hacking, the Loophole Lesson: Winning the Signal, Losing the Reason

https://medium.com/@yassien/reward-hacking-the-loophole-lesson-winning-the-signal-losing-the-reas...
1•yassien•30m ago•0 comments

Show HN: My home server got unplugged, so I built a recovery CLI

https://homebutler.dev
2•swq115•30m ago•0 comments

The deadliest poison known to AI

https://iocaine.madhouse-project.org/
1•jruohonen•34m ago•0 comments

Show HN: I put my Claude Code rate-limit burndown in the status line

https://www.aimhuge.com/blog/claude-code-status-line
2•fotoflo•35m ago•1 comments

Show HN: Organizer Timelines for everything you want to remember

https://www.useorganizer.com/
1•mcapodici•40m ago•0 comments

Flutter OTA Code Push, Shorebird Alternative Open Source Flutter Patcher

https://github.com/xuelinger2333/flutter_patcher
1•faangguyindia•45m ago•1 comments

Is this the correct interpretation? (users use too many tabs?)

https://ux.stackexchange.com/questions/123870/why-do-browsers-allow-users-to-open-more-tabs-than-...
1•LearnYouALisp•55m ago•3 comments

Nvidia/Nvidia-Nemotron-3-Ultra-550B-A55B-BF16

https://huggingface.co/nvidia/NVIDIA-Nemotron-3-Ultra-550B-A55B-BF16
2•geoffbp•55m ago•0 comments

IMF warns inflation risks remain elevated ahead of Fed meeting

https://www.reuters.com/world/imf-urges-fed-caution-inflation-warsh-prepares-chair-first-policy-m...
1•latentframe•57m ago•0 comments

Bumblebees have tiny brains but can solve problems like chimps and elephants

https://www.npr.org/2026/06/07/nx-s1-5846947/bumblebees-problem-solving-research
4•RyeCombinator•57m ago•1 comments

SDSU Wired Its Dorms with 1,300 AI Cameras Without Telling Students

https://reclaimthenet.org/sdsu-adds-1300-ai-cameras-330-in-student-dorms
10•iamnothere•59m ago•1 comments

PEP 668 – Marking Python base environments as "externally managed"

https://peps.python.org/pep-0668/
1•thatxliner•1h ago•0 comments

Technical details of the attack described by Markoff in NYT

http://www.kohala.com/start/shimomura.95jan25.txt
2•jruohonen•1h ago•0 comments

1k Data Breaches Later, the Disclosure Lag Is Worse

https://www.troyhunt.com/1000-data-breaches-later-the-disclosure-lag-is-worse-than-ever/
21•882542F3884314B•1h ago•2 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)