frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

If AI Helped Me Write This, Is It Still Mine?

https://kunyuan.substack.com/p/09public-essayif-ai-helped-me-write
1•hufdr•33s ago•0 comments

Show HN: WebBase-III – dBASE III rebuilt in the browser with its own interpreter

https://github.com/DDecoene/WebBaseIII
1•ddecoene•1m ago•0 comments

SCC Technical Assistance Program

https://nerocam.com/scc_tap.asp
1•luu•2m ago•0 comments

Two Indexed Hash Tables

https://vnmakarov.github.io/data%20structures/c/c++/open-source/2026/06/23/two-indexed-hash-table...
1•ibobev•2m ago•0 comments

Grok Build 0.1: Intelligence, Performance and Price Analysis

https://artificialanalysis.ai/models/grok-build-0-1-06-16
1•himata4113•7m ago•1 comments

Show HN: A minimal and beautiful card component built with pure CSS

https://ufoym.com/slicard/
3•ufoym•8m ago•0 comments

Top June 2026

https://top500.org/lists/top500/2026/06/
1•Alien1Being•9m ago•0 comments

Show HN: Language App to Learn Actual Local Slang/Dirty Talk

https://www.realtalktutor.app/
1•travel-insider•12m ago•0 comments

How to Win a Space War

https://www.a16z.news/p/how-to-win-a-space-war
2•hoag•14m ago•0 comments

Italian startup working on a 400B language model (Italian)

https://www.ilsole24ore.com/art/frontier-grand-challenge-domyn-guidera-progetto-dell-ai-sovrana-A...
2•theanonymousone•15m ago•0 comments

Cory Doctorow on the Right – and Wrong – Way to Criticize AI

https://jacobin.com/2026/06/ai-bubble-layoffs-workers-copyright
3•thunderbong•15m ago•0 comments

A Founder Rebuilt Consistency and Completed 90% of His Weekly Goals

https://karlgusta.medium.com/how-a-founder-rebuilt-consistency-and-completed-90-of-his-weekly-goa...
1•Esimit•16m ago•0 comments

Everyday I play a game of Boggle. The next day you try and beat me

https://beatmeatboggle.com/
1•avadinhvu•17m ago•0 comments

Comail

https://comail.at/
1•bladeee•19m ago•0 comments

Any growth hacking tips to get my app it's first 10 users?

1•yudomax•19m ago•3 comments

EU joins US pact to break reliance on Chinese AI supply chains (no sovereignty)

https://www.ft.com/content/681c33a0-dcb4-4a82-9aa0-8a9172f7e5bc
3•alecco•21m ago•2 comments

GitHub Is Becoming a Giant AI Code Dump

https://maref.cc/en/blog/vibe-coding-crisis/
20•Athena-maref•26m ago•20 comments

Chinese supercomputer powered by homegrown chips tops global ranking

https://www.cnn.com/2026/06/24/tech/china-tops-world-supercomputer-ranking-intl-hnk
3•A_D_E_P_T•26m ago•0 comments

Outer Product as an Introduction to APL and a Pretty Cool Thing in General (2020) [video]

https://www.youtube.com/watch?v=WlUHw4hC4OY
1•tosh•29m ago•0 comments

The End of the Craftsman?

https://schrottner.at/2026/06/24/The-End-of-the-Craftsman.html
1•aepfli•32m ago•3 comments

Show HN: Project Cherub – New TempleOS Fork. Early Build ISO and Future Plans

1•Rubinoslaw•33m ago•0 comments

Gen Z earning more than millennials did at the same age, says thinktank

https://www.theguardian.com/money/2026/jun/22/gen-z-earning-more-millennials-same-age-resolution-...
3•mmarian•35m ago•0 comments

"Guerilla War Against Computers" (1969)

https://time.com/archive/6637500/frustrations-guerrilla-war-against-computers/
1•28304283409234•36m ago•0 comments

It's Well Past Time for a Four-Day Workweek

https://jacobin.com/2026/06/schor-four-day-workweek-labor
3•robtherobber•43m ago•1 comments

GloriousEggroll's Proton has been rebased on Proton 11

https://github.com/GloriousEggroll/proton-ge-custom/releases/tag/GE-Proton11-1
2•d3Xt3r•43m ago•0 comments

Seedance 2.5

https://www.seedance2ai.app/tools/seedance-2-5
1•linzhangrun•46m ago•0 comments

Anyone else feels many LLMs are heavily biased towards consumerism these days?

2•pyeri•48m ago•0 comments

We found a bug in the hyper HTTP library

https://blog.cloudflare.com/hyper-bug/
1•vsgherzi•50m ago•0 comments

Today's Office – The Location Independent Lifestyle (A 2018 Retrospective)

https://www.ssp.sh/blog/the-location-independent-lifestyle/
1•zazuke•51m ago•0 comments

Best Chrome Bookmark extension, Visually organized grid and ultra fast search

https://chromewebstore.google.com/detail/bookmarkr-—-visual-bookma/lianafemkbankodapdaokiefoffi...
1•mnomansd•56m 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.
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)