frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Trump to give Republicans a 3-1 FCC majority, not filling empty Democratic seat

https://arstechnica.com/tech-policy/2026/08/trump-to-give-republicans-a-3-1-fcc-majority-isnt-fil...
1•mdp2021•53s ago•0 comments

Paramount to Leave CA If States Refuse to Negotiate Settlement in Antitrust Suit

https://variety.com/2026/film/news/david-ellison-move-paramount-out-of-california-states-antitrus...
1•indigodaddy•2m ago•0 comments

Cursor and SpaceXAI launch Grok Bot for work beyond coding

https://runtimewire.com/article/cursor-spacexai-launch-grok-bot-general-purpose-agents
1•ryanmerket•2m ago•0 comments

How we control a remote browser with a Chrome extension faster than Playwright

https://www.browserbase.com/blog/stagehand-v4
1•Kylejeong21•2m ago•0 comments

Something Nobody Told You About the Image Element (It Can Overflow)

https://master.dev/blog/something-nobody-told-you-about-the-image-element-it-can-overflow/
2•ibobev•5m ago•0 comments

CSS Properties You Should Know for Better Text Designs

https://master.dev/blog/typographic-css-tricks/
1•ibobev•5m ago•0 comments

View Transitions: Careful Not to Make Stuff Unclickable

https://master.dev/blog/view-transitions-careful-not-to-make-stuff-unclickable/
1•ibobev•6m ago•0 comments

Nigeria: Lifting the Lid: Internal docs expose Shell's negligent oil operations

https://www.amnesty.org/en/documents/afr44/1304/2026/en/
1•RetroTechie•7m ago•1 comments

Show HN: Zsort, a fast import organizer for Zig

https://github.com/mstdokumaci/zsort
1•mstdokumaci•7m ago•0 comments

Mourning and moving on: rituals for leaving a career (2014)

https://franceshocutt.com/2014/09/10/on-mourning-and-moving-on-rituals-for-leaving-a-career/
1•downbad_•7m ago•0 comments

Signing and verifying AI outputs with revocable trust

https://www.youtube.com/watch?v=8OF1gS5jn3w
1•lyfeninja•7m ago•0 comments

Don't Lock User Data Behind Paywalls

https://onlinegoddess.net/2026/08/dont-lock-user-data-behind-paywalls/
1•speckx•7m ago•0 comments

Goodhart's Law Isn't as Useful as You Might Think (2023)

https://commoncog.com/goodharts-law-not-useful/
1•downbad_•7m ago•0 comments

Atypical Combinations and Scientific Impact [pdf]

https://www.kellogg.northwestern.edu/faculty/uzzi/htm/papers/science-2013-uzzi-468-72.pdf
1•highfrequency•8m ago•0 comments

Show HN: I used AI to filter AI content from HN

https://www.unslop.news
1•otherayden•8m ago•0 comments

We didn't kill physical media. You did

https://vladthe.dev/blog/we-didn-t-kill-physical-media-you-did
1•pacMakaveli•9m ago•0 comments

Why Americans fear getting old

https://inews.co.uk/news/world/america-cant-afford-to-retire-4478290
1•robtherobber•9m ago•0 comments

Ads may be leaving the windows search box

https://blogs.windows.com/windows-insider/2026/07/13/improving-windows-search-box-with-less-clutt...
1•sklargh•9m ago•0 comments

A Herbal Product Sold at Gas Stations Is Being Blamed for an Addiction Crisis

https://www.wsj.com/health/healthcare/a-herbal-product-sold-at-gas-stations-is-being-blamed-for-a...
1•thm•9m ago•0 comments

Make everything look like a software project

https://excamera.substack.com/p/make-everything-look-like-a-software
1•jamesbowman•9m ago•0 comments

Marc Andreessen on How Michael Ovitz and CAA Took over Hollywood

https://twitter.com/davidsenra/status/2086978352880209932
1•tosh•9m ago•0 comments

What happens between clicking Apply and a recruiter seeing your resume

https://relocateme.substack.com/p/an-ats-rejected-my-resume-is-it-true
2•andrewstetsenko•10m ago•0 comments

SendtoWin, a cold-email infra company, lands top 6% of fastest-growing US firms

https://fortune.com/press-releases/sendtowin-inc-5000-fastest-growing-companies-2026-08-11/
1•SantiDev•11m ago•0 comments

Verifrog – a Verilog/SystemVerilog testing framework an AI agent can drive

https://github.com/bryancostanich/verifrog
2•bryancostanich•13m ago•0 comments

Open source resume builder that refuses to lie for you

https://github.com/jananthan30/Resume-Builder
1•jananthan30•14m ago•0 comments

Learn A.I. Basics

https://www.youtube.com/channel/UCcG_dNoR8D_W5D38xMsE_ag
1•jeffjbowie2•15m ago•0 comments

Mojo 1.0 Release

https://mojolang.org/releases/v1.0.0/
2•melodyogonna•16m ago•0 comments

Dearly Beloved Dingo

https://archaeology.org/issues/online/digs-discoveries/dearly-beloved-dingo/
1•NoRagrets•16m ago•0 comments

AI Changes the Economics of JIT Compilers

https://malisper.me/how-ai-changes-the-economics-of-jit-compilers/
1•poly2it•17m ago•0 comments

Woman Pulled over at Gunpoint Twice After Flock Camera Glitch

https://guessingheadlights.com/yall-failed-me-woman-pulled-over-at-gunpoint-twice-after-flock-cam...
3•cdrnsf•18m 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)