frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

China can survive without the Strait of Hormuz

https://www.reuters.com/graphics/IRAN-CRISIS/CHINA-OIL/egpbeormkvq/
1•giuliomagnifico•9s ago•0 comments

Beyond Bestsellers: How We're Teaching IKEA's Recommender to Think Differently

https://medium.com/flat-pack-tech/beyond-the-bestsellers-how-were-teaching-ikea-s-recommender-to-...
1•robin_reala•2m ago•0 comments

Claude Code Leaks

https://github.com/rosaboyle/awesome-cc-oss
1•dheerajmp•3m ago•1 comments

Mad Bugs: Vim vs. Emacs vs. Claude

https://blog.calif.io/p/mad-bugs-vim-vs-emacs-vs-claude
1•Munksgaard•7m ago•0 comments

NASA: Artemis II Live Views from Orion

https://www.youtube.com/watch?v=6RwfNBtepa4
1•nstj•7m ago•0 comments

The World Sees Trump's America as a Sad Joke

https://newrepublic.com/article/205701/europe-american-decline-trump-greenland
1•chmaynard•8m ago•0 comments

TuxCraft – easy open-source tool to run Minecraft servers

1•Cheesehamster•8m ago•0 comments

The most-disliked people in the publishing industry

https://www.woman-of-letters.com/p/the-most-disliked-people-in-the-publishing
1•Caiero•9m ago•0 comments

How do the likely/unlikely macros in the Linux kernel work?

https://stackoverflow.com/questions/109710/how-do-the-likely-unlikely-macros-in-the-linux-kernel-...
1•tosh•14m ago•0 comments

NumPy as Synth Engine

https://kennethreitz.org/essays/2026-03-29-numpy_as_synth_engine
1•signa11•14m ago•0 comments

The potential of erroneous outbound traffic

https://blog.apnic.net/2026/04/01/the-potential-of-erroneous-outbound-traffic/
1•jruohonen•17m ago•0 comments

Why heroism is bad, and what we can do to stop it

https://sre.google/resources/practices-and-processes/no-heroes/
1•walterbell•18m ago•0 comments

When AI Fails

https://whenaifail.com/
1•clubdorothe•21m ago•0 comments

Microsoft closes worst quarter since 2008: 'Redmond is in a pickle'

https://www.cnbc.com/2026/03/31/microsofts-stock-closes-worst-quarter-since-2008-financial-crisis...
1•1vuio0pswjnm7•22m ago•2 comments

Multi-agent systems have a distributed systems problem

https://christophermeiklejohn.com/ai/agents/distributed/zabriskie/2026/03/30/multi-agent-systems-...
2•azhenley•22m ago•0 comments

Index providers shouldn't bend the rules for Elon Musk

https://economist.com/leaders/2026/03/31/index-providers-shouldnt-bend-the-rules-for-elon-musk
2•andsoitis•23m ago•1 comments

From Organizational Hierarchy to Intelligence

https://block.xyz/inside/from-hierarchy-to-intelligence
1•walterbell•27m ago•0 comments

Dnf5-ageist: Age verification for DNF5 [video]

https://www.youtube.com/watch?v=flH17X32MrY
1•goode•27m ago•0 comments

Ask HN: Is weird it that Anthropic raised my API limit from $500/mo to $200k?

1•noduerme•28m ago•1 comments

Better Blog AI | Automated Blog publishing to any CMS

https://betterblogai.com
1•leula_t•32m ago•2 comments

Reverse-engineering the Alesis MMT8 firmware

https://github.com/dnewcome/mmt8
2•dnewcome•33m ago•1 comments

OnlyOffice Gets Forked as "Made in Europe", Sparks Licensing and Trust Debate

https://itsfoss.com/news/onlyoffice-forked/
2•abdelhousni•39m ago•0 comments

Show HN: SwiftLM – Qwen Chat on iPhone, 100B+ Moe on M5 Pro 64GB (Native Swift)

https://github.com/SharpAI/SwiftLM
1•aegis_camera•39m ago•0 comments

The Sims Creator's Quest to Turn His and Your Own Mind into a Video Game

https://www.vulture.com/article/will-wright-proxi-the-sims-games.html
2•chaostheory•40m ago•0 comments

Improving my focus by giving up my big monitor

https://ounapuu.ee/posts/2026/04/01/focus/
2•Fudgel•44m ago•1 comments

Allbirds, once valued at $4B, just sold its assets for next to nothing

https://www.msn.com/en-us/money/companies/allbirds-the-tech-bro-favorite-once-valued-at-4-billion...
3•timr•45m ago•0 comments

DSTs Are Just Polymorphically Compiled Generics

https://faultlore.com/blah/dsts-are-polymorphic-generics/
1•g0xA52A2A•45m ago•0 comments

Create polished, pro-grade screen recordings – MIT Licensed

https://github.com/webadderall/Recordly
1•pbd•46m ago•1 comments

Claude Wrote a Full FreeBSD Remote Kernel RCE with Root Shell (CVE-2026-4747)

https://github.com/califio/publications/blob/main/MADBugs/CVE-2026-4747/write-up.md
3•ishqdehlvi•51m ago•0 comments

Security vulnerabilities in popular MCP servers (auth bypass, RCE, API keys)

https://old.reddit.com/r/netsec/comments/1s7tyuh/one_post_request_six_api_keys_breaking_into/
1•politelemon•53m ago•0 comments
Open in hackernews

The Lisp in the Cellar: Dependent types that live upstairs [pdf]

https://zenodo.org/records/15424968
88•todsacerdoti•10mo ago
Downloadable: https://zenodo.org/records/15424968/files/deputy-els.pdf

Comments

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

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

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