frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Ask HN: How Newton did so much without tea or coffee?

1•upxx•39s ago•0 comments

Show HN: Use AI to Clean Data at Scale

https://www.cluedin.com/home
1•jerrong•5m ago•0 comments

Show HN: Elasticsale.com, an open-source SaaS for retail cashback campaigns

https://elasticsale.com
1•dcvr•5m ago•0 comments

Some fundamental theorems in math – Oliver KNILL [pdf]

https://people.math.harvard.edu/~knill/graphgeometry/papers/fundamental.pdf
2•marysminefnuf•12m ago•0 comments

The European startup market is ready for the limelight

https://techcrunch.com/2025/11/21/the-european-startup-market-is-ready-for-the-limelight/
2•paulatreides•16m ago•0 comments

Show HN: smtp.js, a drop-in relay to prevent your sites spamming your users

https://community.qbix.com/t/drop-in-smtp-relay-to-combat-bots-and-prevent-spamming-users/780
1•EGreg•16m ago•0 comments

Chomsky had deeper ties to Epstein than previously known, documents reveal

https://www.theguardian.com/us-news/2025/nov/22/noam-chomsky-jeffrey-epstein-ties-emails
5•clanky•16m ago•0 comments

An Interview with a YouTube Writer Behind 500M+ Views

https://www.humaninvariant.com/blog/youtube-interview
1•humaninvariant•17m ago•0 comments

A Fast 64-Bit Date Algorithm (30–40% faster by counting dates backwards)

https://www.benjoffe.com/fast-date-64
2•benjoffe•18m ago•1 comments

Simple One-Time Passcode Inputs

https://cloudfour.com/thinks/simple-one-time-passcode-inputs/
1•gm678•24m ago•0 comments

The Lost Cat of Sullivan's Island

https://www.trulyadventure.us/lost-on-sulls-island
1•gmays•26m ago•0 comments

GCC SC approves inclusion of Algol 68 Front End

https://gcc.gnu.org/pipermail/gcc/2025-November/247020.html
23•edelsohn•27m ago•0 comments

Build with Nano Banana Pro google official developer blog post

https://blog.google/technology/developers/gemini-3-pro-image-developers/
1•visioninmyblood•29m ago•1 comments

An Economy of AI Agents

https://arxiv.org/abs/2509.01063
3•nerder92•37m ago•0 comments

"We're in an LLM bubble," Hugging Face CEO says–but not an AI one

https://arstechnica.com/ai/2025/11/were-in-an-llm-bubble-hugging-face-ceo-says-but-not-an-ai-one/
3•gmays•38m ago•0 comments

AI bots shake up hiring process

https://fortune.com/2025/11/18/hiring-job-seekers-recruiters-talent-acquisition-ai-doom-loop-appl...
1•visioninmyblood•40m ago•0 comments

What a CTO should know about tech

https://deadsimpletech.com/blog/cto_tech_capabilities
1•thelastgallon•42m ago•1 comments

Confido, by Kurt Vonnegut

https://esl-bits.eu/ESL.English.Listening.Short.Stories/Confido/default.html
1•adamwong246•43m ago•1 comments

Rybbit – The Modern Open Source Google Analytics Replacement

https://rybbit.com/
2•inesranzo•51m ago•0 comments

Simple web app to teach financial responsibility to kids

https://familypay.us
1•yashwanthcp•56m ago•1 comments

Best AI Coding Agents – Gosu Evals

https://gosuevals.com/agents.html
1•behnamoh•1h ago•0 comments

U.S. Citizens and Chinese Nationals Arrested for Exporting AI Tech to China

https://www.justice.gov/opa/pr/us-citizens-and-chinese-nationals-arrested-exporting-artificial-in...
3•kylecazar•1h ago•1 comments

The Strange and Totally Real Plan to Blot Out the Sun and Reverse Global Warming

https://www.politico.com/news/magazine/2025/11/21/stardust-geoengineering-janos-pasztor-regulatio...
1•pseudolus•1h ago•0 comments

Three Years from GPT-3 to Gemini 3

https://www.oneusefulthing.org/p/three-years-from-gpt-3-to-gemini
2•JumpCrisscross•1h ago•0 comments

Dingo: A Meta-Language for Go

https://github.com/MadAppGang/dingo
1•todsacerdoti•1h ago•0 comments

Knowing When to Hold, Fold, or Walk Away from Tech

https://kyle.cascade.family/posts/knowing-when-to-hold-fold-or-walk-away-from-tech/
2•gm678•1h ago•0 comments

AI assets are an unconscionable risk for premium-priced games

https://www.gamesindustry.biz/ai-assets-are-an-unconscionable-risk-for-premium-priced-games-opini...
1•DDSDev•1h ago•0 comments

Experimenting with Robin Hood Hashing

https://twdev.blog/2025/11/robin_hood/
2•todsacerdoti•1h ago•0 comments

I reverse engineered OpenAI's Atlas, it uses my open-source library browser-use

1•MagMueller•1h ago•0 comments

Show HN: Eidos – AI IDE that generates and edits game prototypes instantly

https://kaausia45-jpg.itch.io/eidos-ai-prototype-ide
1•symbol_reasoner•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•6mo ago
Downloadable: https://zenodo.org/records/15424968/files/deputy-els.pdf

Comments

droideqa•6mo 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•6mo ago
Pretty readable code
reuben364•6mo 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•6mo 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•6mo 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•6mo 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•6mo ago
> EMACS elisp

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

wk_end•6mo 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•6mo 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•6mo ago
Any URL for this that we can open in a browser (as opposed to the dreaded "Content-Disposition: attachment")?
Jtsummers•6mo 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•6mo ago
Thanks! I've switched to that above, and put the downloadable link in the top text.
reikonomusha•6mo 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•6mo 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•6mo ago
Well... believe it or not, some have thought of using lisp for AI for quite some time. ;-)
froh•6mo 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•6mo 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•6mo 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•6mo ago
Impressive.