frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Anthropic's in-house data analytics with Claude

https://claude.com/blog/how-anthropic-enables-self-service-data-analytics-with-claude
1•dmpetrov•1m ago•0 comments

Google to add sources in AI Searches, allow to opt out following UK ruling

https://sfist.com/2026/06/03/google-to-add-clearer-attributions-to-ai-searches-allow-sites-to-opt...
2•xyzal•4m ago•0 comments

The Electrodynamics of Moving Bodies by A. Einstein June 30, 1905 [pdf]

https://users.physics.ox.ac.uk/~rtaylor/teaching/specrel.pdf
1•chistev•6m ago•0 comments

OpenAI and Anthropic Sign Letter to Prevent AI-Developed Biological Weapons

https://www.wired.com/story/openai-anthropic-letter-ai-biological-weapons/
2•dangoldbj•9m ago•0 comments

So Long, CHU, and Thanks for All the Time Signals

https://hackaday.com/2026/05/27/so-long-chu-and-thanks-for-all-the-time-signals/
1•austinallegro•12m ago•0 comments

What's new in Swift: May 2026 Edition

https://swift.org/blog/whats-new-in-swift-may-2026/
1•frizlab•12m ago•0 comments

Exploring Otel data in the console via axiom.co

https://github.com/axiomhq/ax
2•Licenser•13m ago•1 comments

Majorana 2 – Microsoft's new quantum chip

https://news.microsoft.com/source/features/innovation/majorana-2-microsoft-discovery-agentic-ai/
3•dangoldbj•15m ago•0 comments

AgentRail. An AI-agent friendly layer for websites

https://github.com/gharibyan/agentrail
1•xgharibyan•17m ago•0 comments

30 things I've learned from 30 years freelancing

https://lernerpython.com/2025/12/08/30-things-ive-learned-from-30-years-in-business/
2•reuven•23m ago•0 comments

Embrace the Grind (2021)

https://jacobian.org/2021/apr/7/embrace-the-grind/
1•tosh•26m ago•0 comments

What to Write

https://jacobian.org/2009/nov/10/what-to-write/
1•tosh•32m ago•0 comments

Show HN: The largest free animated icon library for Vue (523 Lucide icons)

https://respeak-io.github.io/lucide-motion-vue/
1•evolabs•32m ago•0 comments

Snowflake Datastream: Kafka-native streaming in Snowflake

https://www.snowflake.com/en/product/features/datastream/
1•Dionakra•33m ago•0 comments

Memory AI Server Aims to Shatter the Memory Wall

https://spectrum.ieee.org/huge-memory-ai-server
2•rbanffy•33m ago•0 comments

France Needs 45 Years to Grow its way out

https://julienreszka.com/blog/france-needs-45-years-to-grow-its-way-out/
1•julienreszka•34m ago•0 comments

Do you find yourself aimlessly scrolling? You're not alone

https://www.bbc.com/news/articles/czd2mq505dpo
3•bishopsmother•36m ago•0 comments

Realtime regression in non-English production voice agents

https://community.openai.com/t/realtime-regression-in-non-english-production-voice-agents-gpt-rea...
1•bishopsmother•37m ago•0 comments

Pensero – Token winter is coming

https://pensero.ai/blog/token-winter-is-coming
1•sabatesduran•39m ago•0 comments

KDE Has Long Used Dragons, and Dragons Come from Hatched Eggs

https://techrights.org/n/2026/06/03/KDE_Has_Long_Used_Dragons_and_Dragons_Come_From_Hatched_Eggs....
1•amcclure•39m ago•0 comments

Haiku, a generative music album for macOS

https://www.giorgiosancristoforo.net/ooame/
1•ron_k•40m ago•0 comments

HPE Catches Its First GenAI Wave with Enterprises, Sovereigns, and Neoclouds

https://www.nextplatform.com/compute/2026/06/04/hpe-catches-its-first-genai-wave-with-enterprises...
1•rbanffy•40m ago•0 comments

Drew DeVault Can Still Redeem His Reputation

https://techrights.org/n/2026/06/04/Drew_DeVault_Can_Still_Redeem_His_Reputation_Revisiting_His_A...
1•amcclure•41m ago•1 comments

Microsoft, Atom Computing, EeroQ update their quantum computing progress

https://arstechnica.com/science/2026/06/microsoft-atom-computing-eeroq-update-their-quantum-compu...
1•rbanffy•42m ago•0 comments

Emacs with a native Metal rendering back end (macOS)

https://github.com/tanrax/emacs-gpu
2•andros•45m ago•0 comments

D4M

https://d4m.mit.edu/
1•tosh•46m ago•0 comments

GNU/Linux Usage Rising Among Gamers, but "Hardware Survey Data Not Available."

https://techrights.org/n/2026/06/03/GNU_Linux_Usage_Rising_Among_Gamers_But_Hardware_Survey_Data_...
3•amcclure•46m ago•0 comments

WebGPU simulation of a magnetic table clamp

https://jasmcole.com/2026/05/30/clamperes-law
1•jasmcole•48m ago•0 comments

New York's 3D printer law is NOT gun control; it's manufacturing control [video]

https://www.youtube.com/watch?v=ma12AyQHzYs
1•dataflow•48m ago•0 comments

Signal Without Smartphone

https://github.com/almet/signal-without-smartphone
2•p4bl0•50m ago•0 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)