frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Killing in Japan Stirs Fear of New Crime Rings That Recruit the Vulnerable

https://www.nytimes.com/2026/05/20/world/asia/japan-tokuryu-crime-killing.html
1•mistersquid•58s ago•0 comments

What will better AI mean?

https://geohot.github.io//blog/jekyll/update/2026/05/20/what-will-better-mean.html
1•speckx•3m ago•0 comments

I got ratioed by 300 writers

https://booksbyjeffrey.substack.com/p/i-got-ratioed-by-300-writers
1•exolymph•4m ago•0 comments

TeamPCP Interview

https://buymeacoffee.com/insidedarknet/teampcp-interview
1•Cider9986•5m ago•0 comments

SQL injection on Drupal sites using PostgreSQL

https://www.drupal.org/sa-core-2026-004
2•nwellnhof•6m ago•0 comments

Muxy is a lightweight terminal for Mac with a mobile app for remote control

https://github.com/muxy-app/muxy
1•543310•6m ago•0 comments

SpaceX picks Goldman Sachs for lead left position on record-breaking IPO

https://www.cnbc.com/2026/05/19/spacex-picks-goldman-sachs-to-lead-record-breaking-ipo-sources-sa...
1•cwwc•8m ago•0 comments

Former Cuban president Raúl Castro indicted in US over fatal downing of 2 planes

https://www.bbc.com/news/live/czr24nr681gt
2•tartoran•9m ago•0 comments

Garry Tan – How one founder becomes a 1000x engineer (Stanford) [video]

https://www.youtube.com/watch?v=Lri2LNYtERM
2•sebzuddas•9m ago•0 comments

ReMarkable Connection Utility (RCU)

https://www.davisr.me/projects/rcu/
1•nathell•9m ago•0 comments

Assoc between preop vit D level andpostop pain in breast cancer surgery patients

https://rapm.bmj.com/content/early/2026/05/04/rapm-2025-107495
1•bookofjoe•9m ago•0 comments

Premium Deception: Uncovering a Global Android Carrier Billing Fraud Campaign

https://zimperium.com/blog/premium-deception-uncovering-a-global-android-carrier-billing-fraud-ca...
2•speckx•11m ago•0 comments

Cooling copper plates could slash data center energy use by 90%

https://newatlas.com/energy/cooling-copper-plates-data-center-energy-use/
4•geox•11m ago•0 comments

8k Meta employees are waking up to an email saying they've been laid off

https://qz.com/meta-layoffs-8000-jobs-ai-restructuring-052026
3•robertkarl•13m ago•0 comments

HP Now Sponsoring the Linux Vendor Firmware Service / Fwupd

https://www.phoronix.com/news/HP-Sponsoring-LVFS-Fwupd
1•mikece•14m ago•0 comments

The materials that make fusion possible [video]

https://www.youtube.com/watch?v=jgHB0NLfj4c
1•mpweiher•14m ago•0 comments

The Day Google Stopped Selling Software

https://newtonschooloftech.substack.com/p/the-day-google-stopped-selling-software
1•ash1794•14m ago•0 comments

ExtendDB: An open source DynamoDB-compatible adapter

https://aws.amazon.com/blogs/database/introducing-extenddb-an-open-source-dynamodb-compatible-ada...
2•alexbilbie•16m ago•0 comments

Sam Altman is giving OpenAI tokens in exchange for equity in YC Companies

https://www.inc.com/ben-sherry/sam-altman-says-openai-will-exchange-this-critical-ai-asset-for-st...
3•ageofattention•16m ago•0 comments

UAE says new pipeline that will bypass Strait of Hormuz is nearly 50% complete

https://www.cnbc.com/2026/05/20/uae-pipeline-strait-hormuz-iran-war-oil.html
1•shinryudbz•18m ago•0 comments

My obsession with the em dash and how I use it today

https://dhruvahuja.me/posts/emighty-have-fallen/
1•dhruv_ahuja•19m ago•0 comments

Swiss Open Source Software Benchmark

https://ossbenchmark.com/institutions
1•reconnecting•21m ago•0 comments

ElevenLabs Speech Engine

https://elevenlabs.io/speech-engine
1•mfiguiere•21m ago•0 comments

Tom Cruise Scientology Video – ( Original Uncut)

https://www.youtube.com/watch?v=UFBZ_uAbxS0
2•Cider9986•22m ago•0 comments

Stores Are Tracking Your Every Move [video]

https://www.youtube.com/watch?v=uuuey5v_f58
2•Cider9986•22m ago•0 comments

Ask HN: We built a good implementation of dev containers: Seeking GTM partners

1•airocker•23m ago•0 comments

The Book of Numbers

https://www.infinitelymore.xyz/p/the-book-of-numbers
3•FillMaths•24m ago•0 comments

Why Compiled AI Makes AI Enterprise Ready

https://blog.inxm.ai/p/why-compiled-ai-makes-ai-enterprise
1•raelmiu•26m ago•0 comments

What A.I. Did to My College Class

https://www.nytimes.com/2026/05/17/opinion/chatgpt-ai-college-school-graduation.html
2•paulpauper•28m ago•0 comments

To My Editors and Publishers

https://lee-phillips.org/AIStatement/
1•leephillips•31m 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•12mo 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•12mo 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•12mo 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•12mo ago
> EMACS elisp

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

wk_end•12mo 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•12mo 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•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•12mo ago
Well... believe it or not, some have thought of using lisp for AI for quite some time. ;-)
froh•12mo 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•12mo 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•12mo 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•1y ago
Impressive.