frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Shadow Blocker Blocklist – DNS blocklist from per-platform research

https://github.com/CorleoneSalute/SHADOW-BLOCKER-BLOCKLIST
1•Corleone612•51s ago•0 comments

Google DeepMind CEO Demis Hassabis is stepping down

https://www.axios.com/2026/08/05/google-deepmind-demis-hassabis-ai
2•ot•1m ago•0 comments

The next chapter of our AI momentum

https://blog.google/company-news/inside-google/message-ceo/next-chapter-ai-momentum/
1•colesantiago•1m ago•0 comments

Four Top Google A.I. Researchers Form New Startup

https://www.nytimes.com/2026/08/05/technology/google-researchers-ai-startup.html
2•louiereederson•2m ago•0 comments

anydoc: Rust library that converts 14 document formats to Markdown

https://github.com/firecrawl/anydoc
1•amplitudes•2m ago•0 comments

ViperJS – a JavaScript engine in safe Rust, zero deps, 84% of test262

https://github.com/MerlijnW70/viperjs
1•MerlijnW70•4m ago•0 comments

Show HN: Everfree -AI cowriter note app on GitHub backend & Evernote migration

https://everfree.vercel.app/
1•adi2907•4m ago•0 comments

At 45-Years-Old, C-Kermit Gets Its First New Release in 15 Years

https://fossforce.com/2026/08/at-45-years-old-c-kermit-gets-its-first-new-release-in-15-years/
2•speckx•4m ago•0 comments

Rainy Day Thoughts on AI

https://third-bit.com/2026/08/04/rainy-day-thoughts-on-ai/
1•meetpateltech•5m ago•0 comments

Negative-Interest Tech Debt

https://jesseduffield.com/Negative-interest-tech-debt/
2•lwhsiao•7m ago•0 comments

Adding Recursive Functions to Futhark

https://futhark-lang.org/blog/2026-08-05-recursion.html
1•Svip•7m ago•0 comments

Inside the Long, AI-Powered Quest to Perfect Pringle-Making

https://www.wsj.com/tech/ai/inside-the-long-ai-powered-quest-to-perfect-pringle-making-ab37a231
1•thm•8m ago•0 comments

Tiny Black Holes May Be Exploding Stars Across the Milky Way

https://www.sciencedaily.com/releases/2026/07/260729051515.htm
1•jandrewrogers•8m ago•0 comments

Fontstash: Light-weight online font texture atlas builder

https://github.com/memononen/fontstash
1•klaussilveira•9m ago•0 comments

The power of key paths in Swift

https://www.swiftbysundell.com/articles/the-power-of-key-paths-in-swift/
1•conferza•10m ago•0 comments

Using Trust and Safety Tycoon in the Classroom

https://www.techdirt.com/2026/08/04/using-trust-safety-tycoon-in-the-classroom/
1•hn_acker•10m ago•0 comments

Yet another metaphor about tech debt

https://ericwbailey.website/published/heres-yet-another-metaphor-about-tech-debt/
1•speckx•11m ago•0 comments

Ask HN: What paid tools have you now replaced with personalized AI-coded tools?

1•gtbcb•13m ago•0 comments

Show HN: DotDoctor – Interactive CLI tool to diagnose dev env and update system

https://github.com/m11tya/DotDoctor
1•m1tya•13m ago•0 comments

33554432px is the max value ff a CSS length layout unit

https://nerdy.dev/max-value-of-a-css-length-layout-unit
1•speckx•15m ago•0 comments

Would You Like to Come to a Barbecue?

https://nothingbutawordbag.substack.com/p/would-you-like-to-come-to-a-barbecue
1•herbertl•15m ago•0 comments

Things I would like to tell my 10 year old self

https://winnielim.org/journal/things-i-would-like-to-tell-my-10-year-old-self/
1•herbertl•16m ago•0 comments

Plate – A rich-text editor framework for React

https://platejs.org/
1•mrlightful•17m ago•0 comments

How–and Why–To Cull Your Book Collection

https://lithub.com/how-and-why-to-cull-your-book-collection/
1•herbertl•17m ago•0 comments

Spam on GitHub

https://blog.gitguardian.com/40-million-fake-push-when-spam-commits-took-over-the-public-github/
2•guisch•17m ago•0 comments

Write/read review your interview at a company

https://www.apply-tracker.com/en/company-reviews
1•mirnumbing•18m ago•0 comments

The Friendship That Made Google (2018)

https://www.newyorker.com/magazine/2018/12/10/the-friendship-that-made-google-huge
2•tosh•18m ago•0 comments

NASA's Curiosity Mars Rover Discovers Field of Honeycomb Textures

https://www.nasa.gov/missions/mars-science-laboratory/curiosity-rover/nasas-curiosity-mars-rover-...
1•Tomte•19m ago•0 comments

It's cute how Grandma doesn't even know how to blood tithe to the Data Lord

https://www.mcsweeneys.net/articles/its-cute-how-grandma-doesnt-even-know-how-to-blood-tithe-to-t...
2•diafygi•20m ago•0 comments

Show HN: Vest.fyi – equity calculator shows range of outcomes and benchmarks

https://vest.fyi/
1•egyptianblue•20m ago•1 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)