frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Phillips Machine

https://en.wikipedia.org/wiki/Phillips_Machine
1•curio_Pol_curio•30s ago•0 comments

Show HN: Mdstitch – NPM for Markdown Files

https://github.com/tannerjames711/mdstitch
1•tannerjames711•54s ago•0 comments

Bill Phillips used flowing water to model the economy

https://www.npr.org/sections/planet-money/2026/04/07/g-s1-116575/how-bill-phillips-used-flowing-w...
2•curio_Pol_curio•2m ago•0 comments

Visual Hallucinations in Psychedelics vs. Schizophrenia

https://psychedelirium.substack.com/p/pharmacology-vs-pathology-of-altered
1•yenniejun111•11m ago•0 comments

'This Is Just Not How the Human Race Should Operate,' Says US Senator

https://www.commondreams.org/news/chris-murphy-trump-threat
4•hkhn•14m ago•0 comments

OpenSource: Native screen recorder extension for Chrome

https://github.com/mbarlow/chrome-recorder
1•moo-jason•18m ago•1 comments

Larger and more instructable language models become less reliable

https://pmc.ncbi.nlm.nih.gov/articles/PMC11446866/
2•gmays•18m ago•0 comments

America: A Bet Worth Taking If You're Built for It

https://code2net.com/usa
2•xyz_ielh•27m ago•1 comments

Nodepad

https://www.nodepad.space/
1•skogstokig•28m ago•0 comments

Show HN: Arrow – A Simple Airdrop Clone

https://github.com/aabiji/arrow
1•aabiji•28m ago•0 comments

Brands Adopt 'No AI' Disclaimers to Stand Out Amid the Slop

https://www.wsj.com/cmo-today/brands-adopt-no-ai-disclaimers-to-stand-out-amid-the-slop-a92352af
2•bookofjoe•29m ago•2 comments

Insurers' $1T Buildup in Private Credit Is Leaving Regulators in Dust

https://www.wsj.com/finance/regulation/insurers-1-trillion-buildup-in-private-credit-is-leaving-r...
4•petethomas•35m ago•0 comments

Show HN: Redos-analyzer – static ReDoS detection and auto-fix for Python

https://github.com/HarshithReddy01/redos-analyzer
1•kingkongsatan•35m ago•0 comments

Artemis delivers some exceptional, high-quality photos of the Moon

https://arstechnica.com/space/2026/04/the-artemis-ii-mission-sends-back-stunning-images-of-the-fa...
4•jonbaer•36m ago•1 comments

InstaMed – Oral Dissolving Peptides with InstaRelease Technology

https://store.getinstamed.com/
1•evo_9•36m ago•0 comments

RNA barcodes enable high-speed mapping of connections in the brain

https://news.illinois.edu/rna-barcodes-enable-high-speed-mapping-of-connections-in-the-brain/
1•geox•37m ago•0 comments

He designed C++ to solve your code problems

https://stackoverflow.blog/2026/04/07/he-designed-c-to-solve-your-code-problems/
1•chrisaycock•42m ago•0 comments

Release Please

https://github.com/googleapis/release-please
1•b-man•44m ago•0 comments

Show HN: Omni Voice – AI Voice Cloning and Text-to-Speech Platform

https://omnivoice.app
2•danielmateo773•46m ago•0 comments

Training SOTA vulnerability discovery agents through RL

https://depthfirst.com/post/dfs-mini1-agent
2•growthgod•47m ago•0 comments

Personal Site Infrastructure, Diagrammed

https://www.coryd.dev/posts/2026/personal-site-infrastructure-diagrammed
1•cdrnsf•52m ago•0 comments

Apollo.io Acquires Pocus

https://www.morningstar.com/news/pr-newswire/20260319ne14558/apolloio-acquires-pocus-to-advance-i...
1•jenthoven•59m ago•0 comments

Drive9, a network drive with built-in semantic search

https://github.com/mem9-ai/drive9
1•jinqueeny•1h ago•0 comments

How Alive Can a Video Game Street Be?

https://www.youtube.com/watch?v=5wU4AB7Y2Kw
2•pippy360•1h ago•1 comments

Impact of 100% Adoption of AI Coding Agents by Non-Technical Team

https://www.kapwing.com/blog/how-we-achieved-100-adoption-of-ai-coding-agents/
2•jenthoven•1h ago•0 comments

Russia and China veto UN resolution aimed at reopening the Strait of Hormuz

https://apnews.com/article/un-iran-us-strait-hormuz-bahrain-resolution-640e644b57df5c762ed9c57ef8...
5•WaitWaitWha•1h ago•0 comments

ICE acknowledges it is using powerful spyware

https://text.npr.org/nx-s1-5776799
12•dnemmers•1h ago•1 comments

Law Students: AI Is Changing Things

https://maxglobalnews.com/the-future-of-lawyers-in-the-age-of-ai-%f0%9f%92%bb/
2•videobroker•1h ago•0 comments

Show HN: Kylrix- open source de-googled privacy suite for techies

1•nathfavour•1h ago•1 comments

The way every agent framework handles MCP is a latent security problem

2•An0n_Jon•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•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.