frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Building Ads Optimization

https://nima101.github.io/adsopt
1•pykello•33s ago•0 comments

Tesla's Cybertruck is turning 2. It's been a big flop

https://www.marketwatch.com/story/teslas-cybertruck-is-turning-2-its-been-a-big-flop-587eb398?mod...
1•bookofjoe•3m ago•1 comments

Branded queries filter in Google Search Console

https://developers.google.com/search/blog/2025/11/search-console-branded-filter
1•soheilpro•3m ago•0 comments

WebRTC Aec3 in Rust

https://github.com/RubyBit/aec3-rs
1•itsmeangelos•4m ago•1 comments

The Visual Display of Quantitative Information, 2nd Edition [pdf]

https://kyl.neocities.org/books/%5BTEC%20TUF%5D%20the%20visual%20display%20of%20quantitative%20in...
1•keepamovin•4m ago•0 comments

It's Always the Process, Stupid

https://its.promp.td/its-always-the-process-stupid/
3•DocIsInDaHouse•7m ago•0 comments

Grow Faster with Smarter SEO Tools

https://www.seoprosuite.co.za
1•deveintech•9m ago•0 comments

Silicon Valley sets its sights on building the perfect baby

https://fortune.com/2025/11/29/ivf-silicon-valley-billionaire-baby/
1•Brajeshwar•10m ago•0 comments

Mathematical Ceiling Reveals Why AI Stalls at Amateur Creativity

https://modernengineeringmarvels.com/2025/11/27/mathematical-ceiling-reveals-why-ai-stalls-at-ama...
2•Brajeshwar•10m ago•0 comments

Scientists Found a Weird Way to Make People Kinder: Add Batman

https://www.sciencealert.com/scientists-found-a-weird-way-to-make-people-kinder-add-batman
2•Brajeshwar•10m ago•1 comments

Umbrel Home – Black Friday – Plug and Play Home Cloud Server

https://umbrel.com/umbrelos
1•janandonly•10m ago•0 comments

Linux exclusive for now: Dell sells notebook with Qualcomm accelerator

https://www.heise.de/en/news/Linux-exclusive-for-now-Dell-sells-notebook-with-Qualcomm-accelerato...
1•doener•15m ago•0 comments

AI supply chain attacks [video]

https://www.youtube.com/watch?v=5AwCIAmivWk
1•saltysalt•19m ago•0 comments

The Triumph of Logical English

https://worksinprogress.co/issue/the-logical-triumph-of-english/
1•thinkingemote•21m ago•0 comments

Datacenters in space are a terrible, horrible, no good idea

https://taranis.ie/datacenters-in-space-are-a-terrible-horrible-no-good-idea/
3•mindracer•21m ago•0 comments

Ask HN: In December 2025 what agentic tool should I try?

1•Humorist2290•23m ago•0 comments

DNS LOC Record

https://blog.cloudflare.com/the-weird-and-wonderful-world-of-dns-loc-records/
4•mikejeays•25m ago•0 comments

Show HN:.sagent –A standardized package format for AI agents (built with Claude)

https://github.com/jinnks/special-agents
1•jinnks1881•25m ago•1 comments

SymfonyCon 2025 talks, slides and code examples are on GitHub

https://github.com/SymfonyCon/2025-talks
1•todsacerdoti•26m ago•0 comments

Hachi: An Image Search Engine

https://eagledot.xyz/hachi.md.html
9•warangal•31m ago•0 comments

Sally Rooney books may be withdrawn from UK sale over Palestine Action ban

https://www.bbc.com/news/articles/cm20ldz0g9ro
7•mhb•33m ago•5 comments

Interviewing for Evidence

https://dannorth.net/blog/interviewing-for-evidence/
1•imjacobclark•34m ago•0 comments

Quebec to ban public prayer in sweeping new secularism law

https://www.theguardian.com/world/2025/nov/28/quebec-prayer-law-canada
19•sipofwater•38m ago•9 comments

Infographics for Payment and Fintech

https://bytebytego.com/guides/payment-and-fintech/
1•atiodhammei•38m ago•0 comments

How ICE is becoming a secret police force

https://theconversation.com/how-ice-is-becoming-a-secret-police-force-under-the-trump-administrat...
37•KnuthIsGod•38m ago•0 comments

Help, My Java Object Vanished (and the GC Is Not at Fault)

https://arraying.de/posts/markword/
2•birdculture•40m ago•0 comments

Mixing water into diesel fuel lowers emissions and boosts efficiency

https://scitechdaily.com/scientists-discover-simple-diesel-hack-that-dramatically-cuts-pollution-...
3•geox•40m ago•2 comments

I Don't Want My Life to Be an Act of Letting Go

https://medium.com/@ruthodu/i-dont-want-my-life-to-be-an-act-of-letting-go-36e0b928dbe0
1•gmays•42m ago•0 comments

Show HN: PseudoRun – I built a pseudocode runner by yelling at AI

https://pseudorun.tech
1•crypt0phage•42m ago•0 comments

AWS Glue zero-ETL for self-managed Database Sources

https://aws.amazon.com/about-aws/whats-new/2025/11/glue-zero-etl-selfmanaged/
1•polskibus•45m 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.