frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Gudlaugur Fridporsson

https://en.wikipedia.org/wiki/Gu%C3%B0laugur_Fri%C3%B0%C3%BE%C3%B3rsson
1•chistev•29s ago•0 comments

Modulejail: Proactively shrink a Linux host's kernel-module attack surface

https://github.com/jnuyens/modulejail
1•thunderbong•1m ago•0 comments

Kalshi and Polymarket Are Spoiling Reality TV Shows

https://variety.com/2026/tv/news/kalshi-polymarket-spoilers-reality-studios-1236756590/
1•thm•5m ago•0 comments

We ended up with Palantir and how to replace it

https://berthub.eu/articles/posts/some-notes-on-palantir/
1•ahubert•6m ago•0 comments

Ask HN: Where AI Researchers Congregate?

1•kosolam•7m ago•0 comments

More Dads Are Scaling Back at the Office for Kids and Housework

https://www.wsj.com/lifestyle/careers/more-dads-are-scaling-back-at-the-office-for-kids-and-house...
1•Anon84•9m ago•0 comments

Technical Coaching: A Side-Quest for Architects

https://www.youtube.com/watch?v=2cqgDKN48ak
1•RebootStr•18m ago•0 comments

The AI Superstars Who Say a 'Vibe Slop' Crisis Is Coming

https://www.wsj.com/tech/ai/vibe-coding-slop-ai-tools-e6a99394
1•doener•19m ago•0 comments

Show HN: Directionally bad – a newsletter about risks of AI centralization

https://deaination.substack.com/p/directionally-bad-issue-002
2•sultee•21m ago•0 comments

Supply chain attacks and OSS sustainability go hand in hand

https://twitter.com/mitchellh/status/2057567975826395606
1•tosh•23m ago•0 comments

Dario and Daniela Amodei on Oprah [video]

https://www.youtube.com/watch?v=w5dJqHilu5s
1•kerim-ca•27m ago•0 comments

Did Google's AI agents build an operating system for $916?

https://www.normaltech.ai/p/did-googles-ai-agents-really-build
1•smartmic•28m ago•0 comments

What spec-driven development gets wrong

https://www.augmentcode.com/blog/what-spec-driven-development-gets-wrong
2•fagnerbrack•35m ago•0 comments

The AI Great Leap Forward (A Warning)

https://mamund.substack.com/p/the-ai-great-leap-forward-a-warning
2•fagnerbrack•35m ago•0 comments

- -dangerously-skip-reading-code – olano.dev

https://olano.dev/blog/dangerously-skip/
1•fagnerbrack•35m ago•0 comments

Post-Primary-Care

https://fulghum.io/post-primary-care
1•jordanf•38m ago•0 comments

Obsidian: The free and flexible app for your private thoughts

https://obsidian.md/
1•doener•38m ago•0 comments

The success of 'natural language programming'

https://brooker.co.za/blog/2025/12/16/natural-language.html
2•jruohonen•42m ago•0 comments

One solution for Maine's struggling fishing industry? Give fillets away for free

https://www.npr.org/2026/05/23/nx-s1-5756374/food-fish-maine-portland-donations
1•defrost•43m ago•0 comments

Ask HN: Anyone catch the bug in codex with /goals?

1•Justlayme•43m ago•0 comments

3 years on from laying off over 1k, Hasbro encouraging survivors to not unionize

https://www.pcgamer.com/gaming-industry/3-years-on-from-laying-off-over-1-000-people-hasbro-and-w...
3•Michelangelo11•44m ago•0 comments

The Documentary That Drops You into a Class War [with Murder] [video]

https://www.youtube.com/watch?v=IlId4uqzUfA
1•burnt-resistor•46m ago•0 comments

The Pkg.go.dev API

https://go.dev/blog/pkgsite-api
1•tjek•47m ago•0 comments

Spas Are Just Harder, and Always Will Be (2013)

http://wgross.net/essays/spas-are-harder
2•downbad_•48m ago•0 comments

What the $#@! is Parallelism, Anyhow? (2009)

https://web.archive.org/web/20091103162537/http://software.intel.com/en-us/articles/what-the-is-p...
2•tosh•53m ago•0 comments

Speeding up MuJoCo 460x with Jax

https://www.alexinch.com/blog/mjx
1•ainch•53m ago•0 comments

Antigravity IDE

https://antigravity.google/product/antigravity-ide
1•lastdong•58m ago•0 comments

To ODC or Not to ODC: Insight for May 2026

https://www.swfound.org/publications-and-reports/to-odc-or-not-to-odc-insight-2026
1•T-A•1h ago•0 comments

SerpSpur vs. SEO Giants

1•WildSense•1h ago•0 comments

What the hell are we doing?

https://addisoncrump.info/research/what-the-hell-are-we-doing/
3•jruohonen•1h 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.