frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Writing a better reality: The case for optimistic sci-fi

https://honisoit.com/2022/03/writing-a-better-reality-the-case-for-optimistic-sci-fi/
1•andsoitis•3m ago•0 comments

Open-Source AI and Open Models Reading List

https://www.interconnects.ai/p/open-source-ai-reading-list
2•simonpure•7m ago•0 comments

AI bubble pops – Cory Doctorow

https://www.youtube.com/watch?v=LiDUg_uylyM
3•lifeisstillgood•8m ago•0 comments

What's in a name? Naming things in OpenStreetMap

https://blog.openstreetmap.org/2026/09/13/whats-in-a-name-naming-things-in-openstreetmap/
2•HotGarbage•10m ago•0 comments

Xi pushes 'Greater BRICS' economic ties to give bloc larger global role

https://www.reuters.com/business/aerospace-defense/xi-pushes-greater-brics-economic-ties-give-blo...
3•_djo_•17m ago•0 comments

Memorable moments in Chromecast's history (2024)

https://blog.google/products-and-platforms/devices/google-nest/chromecast-history/
1•gregsadetsky•19m ago•0 comments

Apple's Dimensional Drawings

https://developer.apple.com/accessories/dimensional-drawings/
2•herbertl•19m ago•0 comments

AI Boom / Bust – Boom Boom Pow

1•wwolfson97•22m ago•0 comments

"Chilling" warning or overreaction? AI bioweapons report divides experts

https://www.science.org/content/article/chilling-warning-or-overreaction-ai-bioweapons-report-div...
2•sbulaev•23m ago•0 comments

Free Domain Monitoring through echelongraph.io

1•akd29121988•27m ago•0 comments

Trump Throws His Support Behind Flock Cameras: 'I Like Them'

https://www.mediaite.com/politics/trump-throws-his-support-behind-flock-cameras-i-like-them/
3•valeg•30m ago•0 comments

The biggest dinosaurs couldn't sit on their eggs

https://www.cbc.ca/news/science/titanosaur-eggs-9.7336841
2•BiraIgnacio•30m ago•0 comments

OpenAI and Anthropic Hit the Brakes

https://www.axios.com/2026/09/13/ai-labs-regulation-safety
2•kooi•32m ago•1 comments

AI Coding Dictionary

https://www.aihero.dev/ai-coding-dictionary
1•dnw•34m ago•0 comments

The Coming War on General Computation (2011)

https://en.wikisource.org/wiki/The_Coming_War_on_General_Computation
17•gregsadetsky•35m ago•0 comments

X.com busts Chinese bot farm, incl accounts making claims about AI data centers

https://www.tomshardware.com/tech-industry/policy/x-busts-200-000-strong-chinese-bot-farm-includi...
3•throwaway2037•36m ago•0 comments

Carterfone

https://en.wikipedia.org/wiki/Carterfone
3•gregsadetsky•38m ago•0 comments

Show HN: Spikeforge

https://spikeforge.net/
1•a0174•40m ago•0 comments

Can an R/C Car Hit 100k Scale Miles? Self Driving Edition

https://www.youtube.com/watch?v=LjQ59b9OKyg
1•jdalgetty•41m ago•0 comments

Robots protest rampant AI in Poland

https://techxplore.com/news/2026-09-robots-protest-rampant-ai-poland.html
1•jareklupinski•44m ago•0 comments

Math in the Movies – Sneakers (1998)

https://theworld.com/~reinhold/math/sneakers.adleman.html
1•walterbell•45m ago•0 comments

How the Eminem Show Made Me a Hip-Hop Fan

https://medium.com/theentertainmentbreakdown/how-the-eminem-show-made-me-a-hip-hop-fan-5e9a7e1838e7
1•raynchad•45m ago•0 comments

Why Society Tears Down Its Heroes

https://medium.com/theentertainmentbreakdown/on-the-demolition-of-heroes-aec8912d8c11
2•raynchad•46m ago•2 comments

Recursive Synthetic Improvement

https://twitter.com/zafstojano/status/2097689256961466486
1•gmays•48m ago•0 comments

Agent security starts before the first prompt

https://fewshotacademy.com/blog/secure-the-tools-around-your-agent
1•mangatgoyal•48m ago•1 comments

Mental time travel and the evolution of the human mind

https://pubmed.ncbi.nlm.nih.gov/9204544/
1•andsoitis•50m ago•0 comments

X nuked my premium account out of nowhere

1•proc0•50m ago•2 comments

Ask HN: How is AI actively a threat to humanity if it's only online?

4•CM30•53m ago•6 comments

Mental Time Travel

https://royalsocietypublishing.org/rstb/article/379/1913/20230406/109563/Measuring-episodic-memor...
1•andsoitis•54m ago•0 comments

Former CIA official found with $40M in gold bars reaches tentative plea deal

https://apnews.com/article/gold-bars-cia-official-virginia-7be1def515c9aa99326eab39cd8ff589
1•Jimmc414•56m ago•2 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)