frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Forensic analysis of 37GB data loss caused by Cursor AI Agent

https://github.com/kotarimorm/-Report-AI-coding-agent-programmatically-bypassing-OS-security-poli...
1•GRAY_WHALE_CO•49s ago•0 comments

A sleek, wearable airbag for cyclists is nearly here

https://www.theverge.com/gadgets/911540/a-sleek-wearable-airbag-for-cyclists-is-nearly-here
1•JeanKage•58s ago•0 comments

Dual-Boot an Apple Silicon Mac in Sequoia or Tahoe

https://eclecticlight.co/2026/04/14/dual-boot-an-apple-silicon-mac-in-sequoia-or-tahoe/
1•chmaynard•1m ago•0 comments

Cloudflare Incident – Increased HTTP 5xx Errors

https://www.cloudflarestatus.com/incidents/213v4v7s7m97
1•palmeida•2m ago•0 comments

Dermcidin has antiviral activity and protects against influenza

https://www.pnas.org/doi/10.1073/pnas.2424461123
1•geox•2m ago•0 comments

Show HN: Hotel MCP server for cash and points search/booking (free)

https://www.gondola.ai/mcp
1•skyler1537•4m ago•0 comments

Can you pass the reverse Turing test?

https://nataliercargill.substack.com/p/can-you-pass-the-reverse-turing-test
1•eatitraw•5m ago•0 comments

Man suspected of Molotov attack Sam Altmans home charged with attempted murder

https://www.theregister.com/2026/04/14/altman_attempted_murder/
1•Bender•6m ago•0 comments

Linux 7.0 debuts as Linus Torvalds ponders AI's bug-finding powers

https://www.theregister.com/2026/04/13/linux_kernel_7_releaseed/
2•Bender•6m ago•0 comments

Measles takes a plane to Idaho, which has worst vaccination rate in US

https://arstechnica.com/health/2026/04/airport-measles-case-reported-in-idaho-state-with-lowest-v...
2•Bender•8m ago•0 comments

My First Fight

https://dschorno.wordpress.com/2026/04/10/my-first-fight/
1•eatitraw•10m ago•0 comments

Surf

https://about.surf.social/
1•bookofjoe•14m ago•0 comments

Show HN: Manex Hub – private AI research memory, on-device

https://manex.app/
2•krcnow•15m ago•0 comments

Show HN: Get Hired with AI, a free book I wrote on using LLMs for a job search

https://www.careervectorhq.com/book/get-hired-with-ai.html
1•dawie•16m ago•1 comments

Time for Scrutiny: Getting to the Bottom of Daylight Saving Time and Time Zones

https://fixdst.com/?rdt_cid=5846299599488362810
1•surprisetalk•16m ago•0 comments

JSON-complete data formats and programming languages

https://lemire.me/blog/2025/12/20/json-complete-data-format-and-programming-languages/
1•surprisetalk•16m ago•0 comments

Noise

https://homosabiens.substack.com/p/noise
1•surprisetalk•16m ago•0 comments

Which of these two arcades is the "world largest"

https://arstechnica.com/gaming/2026/03/which-of-these-two-arcades-is-the-world-largest-and-does-i...
1•surprisetalk•16m ago•1 comments

Tracking takedown notices filed by UK Biobank

https://biobank.rocher.lc
1•Cynddl•17m ago•0 comments

Stanford HAI Index Report 2026

https://hai.stanford.edu/ai-index/2026-ai-index-report
1•giuliomagnifico•18m ago•0 comments

Durable Objects in Dynamic Workers: Give each AI-generated app its own database

https://blog.cloudflare.com/durable-object-facets-dynamic-workers/
1•TheTaytay•18m ago•0 comments

MCP – It's Hot, but Will It Win? (2025)

https://hardcoresoftware.learningbyshipping.com/p/230-mcp-its-hot-but-will-it-win
2•tosh•20m ago•0 comments

Comad World v0.3.0 – your reading compounds into your tools

https://github.com/kinkos1234/comad-world
1•comadj•20m ago•0 comments

OpenAI Introduction (2015)

https://openai.com/index/introducing-openai/
1•downbad_•23m ago•1 comments

Colossal Pressure: Russia targets university students for military recruitment

https://www.cnn.com/2026/04/14/europe/russia-students-military-recruitment-campaign-intl-cmd
3•breve•23m ago•0 comments

CorePage: I built an AI start page to replace my tabs (notes, news, tools, chat)

https://corepage.ai/
1•devrimco•23m ago•1 comments

Moats Don't Work When Bridges Are Free

https://www.dustinalper.com/blog/bridges-are-free
2•dalps•23m ago•1 comments

Completion is a Substrate, not a UI

https://www.chiply.dev/post-icr-primer
1•chiply•24m ago•0 comments

Show HN: Valthrex – Institutional-grade crypto portfolio command deck

https://valthrex.com
1•Phantom33•25m ago•1 comments

Show HN: SafeInstall – local install-time guardrails for NPM/pnpm/bun

https://www.safeinstall.dev/
2•MichaelLabitzke•25m 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.