frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Predicting the 2026 Bristol Bay and Kodiak Salmon Runs

https://www.salmonfinder.com/2026/05/13/bristol-bay-kodiak-predictions-2026
1•mooreds•2m ago•0 comments

The SF gathering that summed up the ruthless class war billionaires are waging

https://www.sfgate.com/local/article/tech-leaders-job-market-22259786.php
2•iancmceachern•2m ago•0 comments

Trump said he'd 'remember' companies forgoing tariff refunds. Many still applied

https://www.cnbc.com/2026/05/22/trump-tariff-refunds-walmart-home-depot-target-apply.html
1•MilnerRoute•2m ago•0 comments

"Subligence" – proposed coinage for LLM "intelligence"

https://chatgpt.com/share/6a1047b9-1cf0-83ea-82ff-13249b331ad1
1•akiarie•3m ago•1 comments

How we work: AI skills (Solo founder, AI, CyFun consultants and advisors)

https://easycyberprotection.com/about/how-we-work/
1•ToJans•3m ago•0 comments

Ask HN: Forbid Reddit HN Submissions?

1•nateb2022•4m ago•0 comments

The case for a puritan Spotify: Why it's time to strip away the bloat

https://medium.com/@stockphotojim/the-case-for-a-puritan-spotify-why-its-time-to-strip-away-the-b...
1•aeuropean12•6m ago•0 comments

Governor Newsom signs order to prepare workers for potential AI disruption

https://www.gov.ca.gov/2026/05/21/governor-newsom-signs-first-of-its-kind-executive-order-to-prep...
1•samch•6m ago•0 comments

Another California tech company lays off thousands, citing AI

https://www.latimes.com/business/story/2026-05-22/another-california-tech-company-lays-off-thousands
1•1vuio0pswjnm7•7m ago•0 comments

Show HN: HeadlessPDF – An API for Generating PDFs from URLs

https://headlesspdf.com/
1•skill347•7m ago•0 comments

Emergent Inequality, and Random Handouts

https://faingezicht.com/articles/2026/04/14/emergent-inequality/
1•ZacnyLos•9m ago•0 comments

I wanted async/await but I got a concurrency model

https://blog.kulman.sk/i-wanted-async-await/
1•ingve•10m ago•0 comments

SkyCards, ground truth: reverse‑engineering a flight‑spotting game

https://blog.jonlu.ca/posts/skycards
1•ZacnyLos•11m ago•0 comments

How the AI backlash could cost investors

https://www.axios.com/2026/05/22/ai-data-centers-stocks-jobs
1•1vuio0pswjnm7•12m ago•1 comments

Americans overwhelmingly oppose data centers. Women most of all

https://19thnews.org/2026/05/women-opposition-ai-data-centers/
2•cdrnsf•12m ago•0 comments

SaaS Starter Kit Based on FilamentPHP

https://filaas.com
1•krzysztofengpl•15m ago•1 comments

Marketing demanded IT add website feature that was working

https://www.theregister.com/software/2026/05/22/marketing-demanded-it-add-website-feature-that-wa...
2•ludovicianul•17m ago•0 comments

Real-world Oura Ring 3 battery degradation after 24 months

https://nexragear.com/oura-ring-3-battery-degradation/
1•NexraGear•18m ago•0 comments

A Neighborhood Lobby Outlasts a Venture Bet

https://brewhubsystems.com/p/how-a-neighborhood-lobby-outlasts
1•tomc267•18m ago•0 comments

Most OKR software adds complexity instead of helping – can this be different?

https://okrnest.com/
1•webpal•19m ago•0 comments

Jonathan Livingston Seagull

https://en.wikipedia.org/wiki/Jonathan_Livingston_Seagull
2•simonebrunozzi•22m ago•0 comments

Show HN: Myco – coordinate Claude and DeepSeek and other LLMs in one agent swarm

https://github.com/primoia/myco
1•cezarvil•24m ago•0 comments

Ask HN: Who needs contributors? (May 2026)

3•need_a_work23•24m ago•0 comments

AI Has a Memory. It Just Doesn't Know What to Remember

https://medium.com/@vektormemory/your-ai-has-a-memory-it-just-doesnt-know-what-to-remember-7d28ec...
1•vektormemory•25m ago•0 comments

OpenAI's Codex Can Now Use Your Mac Even When It's Locked

https://www.macrumors.com/2026/05/22/codex-use-mac-apps-when-locked/
1•tosh•26m ago•0 comments

How do you build a semiconductor company on something that's free?

https://www.siliconimist.com/p/the-open-source-silicon-business
3•johncole•26m ago•1 comments

Nvidia on track to be leading CPU supplier too, says CFO

https://www.theregister.com/systems/2026/05/21/nvidia-on-track-to-be-worlds-leading-cpu-supplier-...
3•ksec•29m ago•0 comments

The Companies Cutting Headcount for AI Will Lose to the Ones Who Didn't

https://libertas.software/en/knowledge-hub/19/the-companies-cutting-headcount-for-ai-will-lose-to...
2•soft-research•30m ago•0 comments

Show HN: DecisionBox – Point it at Databricks. Walk away with insights.

https://decisionbox.io/integrations/databricks/
2•seltug•30m ago•0 comments

TB-303 emulator that runs in the browser and in the DAW

https://ya3.surge.sh/
2•stagas•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•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.
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.

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•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)

fithisux•1y ago
Impressive.