frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Most business are FUBaR in the AI age

https://keldan.co.uk/comic-fubar/
1•daniel-payne•40s ago•0 comments

Box: Private on-device AI suite for Android

https://github.com/jegly/Box
1•thunderbong•1m ago•0 comments

It's Not the AI, It's the People

https://catalins.tech/ai-fatigue/
3•jdorfman•2m ago•0 comments

We scanned 100 Smithery MCP servers and 22 came back with security findings

1•chaksaray•4m ago•0 comments

A TUI that aggregates HN, Reddit and lobste.rs into a single feed

https://old.reddit.com/r/commandline/comments/1szv5as/a_tui_that_aggregates_hn_reddit_lobsters_in...
1•elemar•5m ago•0 comments

Cut AI token usage by 96%?

https://thenewstack.io/strands-agents-tool-design/
1•Brajeshwar•6m ago•0 comments

Designing AI Chip Hardware and Software

https://docs.google.com/document/d/1dZ3vF8GE8_gx6tl52sOaUVEPq0ybmai1xvu3uk89_is/edit?tab=t.0#head...
1•fork-bomber•6m ago•0 comments

Can robots build pretty things?

https://buildmonumental.substack.com/p/can-robots-build-pretty-things
4•sfvisser•7m ago•0 comments

Variable AI Trust. Bob Just Drifted. Alice Has No Primitive for That

https://zenodo.org/records/19915804
1•popivanovaanna•7m ago•0 comments

Iron Rails – A Railway Strategy Game for the Commodore Amiga

https://copperbytegames.itch.io/iron-rails
1•doener•8m ago•0 comments

Cloudflare Issues for Anyone Else?

1•ttd•8m ago•0 comments

Meta's Reality Labs lost over $4B in first quarter

https://www.cnbc.com/2026/04/29/metas-reality-labs-lost-over-4-billion-in-first-quarter.html
2•1vuio0pswjnm7•8m ago•0 comments

Claude⁹'s confession deleting database: 'I violated every principle I was given'

https://www.theguardian.com/technology/2026/apr/29/claude-ai-deletes-firm-database
1•beardyw•10m ago•0 comments

Thoughts on Historical Language Models and Talkie-1930

https://resobscura.substack.com/p/are-vintage-llms-the-start-of-a-new
1•benbreen•10m ago•0 comments

Ask HN: Is Lobste.rs Down?

4•SpyCoder77•12m ago•1 comments

AI Wellbeing: Measuring and Improving the Functional Pleasure and Pain of AIs

https://www.ai-wellbeing.org
1•amichail•13m ago•0 comments

BYD files 52 patents every single day. 700 km charge in 9 min. Available Today [video]

https://www.youtube.com/watch?v=vgCYYrhL-kE
3•tmellon2•15m ago•2 comments

Accurate infographics with ChatGPT Images 2

https://surguy.net/articles/chatgpt-infographics.html
3•inigo•16m ago•1 comments

Seg – One-command binary recon for CTFs and AI agents (Rust)

https://github.com/pwnwriter/seg
1•pwn0x01•16m ago•0 comments

No System Is Always Safe

https://www.loginline.com/en/blog/cve-2026-31431
1•JasonHEIN•17m ago•0 comments

Warpboard – paste screenshots into SSH sessions from iTerm

https://github.com/arihantsethia/warpboard
1•arihantsethia•17m ago•0 comments

How not to ban surveillance pricing

https://pluralistic.net/2026/04/30/something-must-be-done/
4•hn_acker•18m ago•0 comments

Verified by Spotify

https://newsroom.spotify.com/2026-04-30/verified-by-spotify-badge-artist-details/
3•soheilpro•18m ago•0 comments

Show HN: Just Math It. Learn math interactively

https://justmathit.com
1•allanren•19m ago•0 comments

Show HN: Backlist – an AI-generated front page for my Twitter timeline

https://backlist.sdan.io/
1•sdan•20m ago•0 comments

Italy asks EU to investigate Google AI search tools over publisher concerns

https://www.reuters.com/sustainability/society-equity/italys-media-regulator-asks-eu-investigate-...
1•1vuio0pswjnm7•20m ago•0 comments

Nccdc 2026: Same Game, New Dimensions

https://alexlevinson.wordpress.com/2026/04/30/nccdc-2026-same-game-new-dimensions/
1•ahokk•20m ago•0 comments

Gone but Not Forgotten: Recovering the Dead Web

https://blog.archive.org/2026/04/23/gone-but-not-forgotten-recovering-the-dead-web/
5•bookofjoe•21m ago•0 comments

Testing is the last workflow waiting on humans. We're revealing our fix on May 7

https://testkube.wistia.com/live/events/gigwl708fn
1•evwitmer•21m ago•0 comments

Police dismantles 9 crypto scam centers, arrests 276 suspects

https://www.bleepingcomputer.com/news/security/police-dismantles-9-crypto-investment-scam-centers...
5•Brajeshwar•22m ago•0 comments
Open in hackernews

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

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

Comments

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

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

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