frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: React-Rewrite – A visual editor for React that writes code, no LLM

https://github.com/donghaxkim/react-rewrite
1•donghaxkim•2m ago•0 comments

The Shrinking Synthesis: a 2037–2047 window for AI's institutional reformation

https://papers.ssrn.com/abstract=6731418
1•danielz-p•3m ago•0 comments

Show HN: Use Kimi and OpenAI Subscriptions in Claude Code

https://github.com/raine/claude-code-proxy
1•rane•3m ago•0 comments

Show HN: 500 years of Joseon court omens as an observability dashboard

https://ajin.im/is/building/omen.ops/
1•poppypetalmask•3m ago•0 comments

The Shell University

https://www.chronicle.com/article/the-shell-university
1•Michelangelo11•9m ago•1 comments

Grifters, cynics, and true believers: The family tree of vaccine opponents

https://arstechnica.com/science/2026/05/grifters-cynics-and-true-believers-the-family-tree-of-vac...
2•rbanffy•13m ago•0 comments

2D Particles sandbox using WebGPU

https://2sandbox.tulv.in/
1•atulvi•13m ago•0 comments

Bubbles: From "tronics" to "dot com" (1999)

https://www.forbes.com/1999/01/14/mu3.html
3•jumploops•13m ago•1 comments

Impossibly rare tropical bird swooped over California. Experts fear a trend

https://www.sfgate.com/california/article/rare-tropical-species-southern-california-22282620.php
2•c420•14m ago•0 comments

Show HN: leaf – one month later: website, releases and lots of improvements

https://leaf.rivolink.mg
1•RivoLink•17m ago•0 comments

Boston Mystery Boom

https://www.wcvb.com/article/did-you-feel-it-viewers-report-hearing-mystery-boom-across/71450011
2•benwhitehead21•18m ago•0 comments

Possible meteor/bolide atmospheric entry east of Boston

https://twitter.com/NStewWX/status/2060792766997655903
2•twoodfin•19m ago•0 comments

Meta is reportedly developing an AI pendant

https://techcrunch.com/2026/05/30/meta-is-reportedly-developing-an-ai-pendant/
2•rishikeshs•21m ago•0 comments

In Pursuit of Understanding the Crash in Me/CFS

https://likeannopeningbandforthesun.substack.com/p/in-pursuit-of-understanding-the-crash
1•brandonb•21m ago•0 comments

Fluid Fire Simulation Sandbox

https://www.escapemotions.com/experiments/fluid_fire_3/
2•Leftium•22m ago•0 comments

Development and validation of a digital biomarker for peripheral artery disease

https://www.nature.com/articles/s41746-026-02655-w
1•brandonb•23m ago•0 comments

Compare AI Model Pricing Across 9 Providers (385 Models)

https://silkdock.ai/rankings
3•aqib-public•23m ago•1 comments

Ernst & Young published cybersecurity report full of hallucinations

https://gptzero.me/investigations/ey
22•smartmic•24m ago•7 comments

Thiel moves family to Milei's libertarian Argentina

https://www.ft.com/content/3d7ab893-1842-4c6c-a3d9-26871d79dde4
3•mmarian•24m ago•1 comments

How Does Google Maps Work? [video]

https://www.youtube.com/watch?v=kS-CGkiPetQ
1•tacon•26m ago•0 comments

People Keep Damaging Garbage Trucks by Throwing Car Batteries in the Trash

https://www.thedrive.com/news/people-keep-throwing-away-car-batteries-in-dumpsters-and-thats-a-re...
3•01-_-•26m ago•0 comments

What the OSS Summit Says About OSS in 2026

https://redmonk.com/sogrady/2026/05/19/oss-summit-2026/
1•mooreds•27m ago•0 comments

United flight diverted to Wisconsin after passenger's attempts to breach cockpit

https://www.cnn.com/2026/05/30/us/united-airlines-unruly-passenger-wisconsin
2•mooreds•27m ago•1 comments

SoftBank pledges €75B to build Europe's biggest AI facility in France

https://www.ft.com/content/1022f9bd-5b6d-44a5-9303-c8b05b8c6463
2•bazzmt•28m ago•1 comments

Getting changes from FusionAuth theme updates

https://fusionauth.io/community/forum/topic/3105/getting-changes-from-theme-updates
1•mooreds•28m ago•0 comments

DHS says it's 'drawing up plans' to ban international arrivals at SFO

https://www.sfgate.com/travel/article/dhs-ban-international-arrival-sfo-22280740.php
4•consumer451•30m ago•1 comments

You don't have a willpower problem. You have a slot machine in your pocket

https://stvrrll1ght.substack.com/
2•maheenahmed•31m ago•0 comments

Cardiopulmonary Exercise Testing Explained for Regular People

https://likeannopeningbandforthesun.substack.com/p/cardiopulmonary-exercise-testing
1•brandonb•33m ago•0 comments

Huawei thanks US for restrictions that supercharged China semiconductor industry

https://www.tomshardware.com/tech-industry/huawei-chairman-thanks-the-us-for-supercharging-chinas...
3•dabinat•33m ago•0 comments

Don't Forget To Flush (2025) [video]

https://www.youtube.com/watch?v=f30PceqQWko
2•tosh•33m 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)