frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: Dante-Qwen-4B – Curing LLM "Neurosis" with a Divine Comedy Curriculum

https://huggingface.co/hunterbown/dante-qwen-4b
1•hunterbown•1m ago•1 comments

Show HN: Oblit – A zero-dependency, binary-first protocol for Node.js (Show HN

1•_melikeymen_•2m ago•0 comments

Scientists identify the evolutionary "purpose" of consciousness

https://scitechdaily.com/scientists-identify-the-evolutionary-purpose-of-consciousness/
1•amanaplanacanal•2m ago•0 comments

Social media research tool lowers the political temperature

https://news.stanford.edu/stories/2025/11/social-media-tool-polarization-user-control-research
1•quadtree•2m ago•0 comments

Rethinking Duplication

https://medium.com/@HobokenDays/rethinking-duplication-c1f85f1c0102
1•HideInNews•2m ago•0 comments

Anti-patterns while working with LLMs

https://instavm.io/blog/llm-anti-patterns
1•mkagenius•2m ago•0 comments

C++ Web Server on my custom hobby OS

https://oshub.org/projects/retros-32/posts/getting-a-webserver-running
3•joexbayer•4m ago•0 comments

The Unexpected Effectiveness of One-Shot Decompilation with Claude

https://blog.chrislewis.au/the-unexpected-effectiveness-of-one-shot-decompilation-with-claude/
5•knackers•11m ago•1 comments

Bringing Sexy Back. Internet surveillance has killed eroticism

https://lux-magazine.com/article/privacy-eroticism/
5•eustoria•14m ago•0 comments

Matrix Core Programming on AMD CDNA4 Architecture

https://rocm.blogs.amd.com/software-tools-optimization/matrix-cores-cdna/README.html
2•salykova•14m ago•0 comments

Computer Says No:O

1•Pocomon•17m ago•0 comments

Apple and Intel Rumored to Partner on Mac Chips

https://www.macrumors.com/2025/11/28/intel-rumored-to-supply-new-mac-chip/
21•bigyabai•18m ago•1 comments

Who wins when we filter the open web through an opaque system?

https://hidde.blog/filtered-open-web/
2•ChrisArchitect•18m ago•0 comments

Go Proposal: Goroutine Metrics

https://antonz.org/accepted/goroutine-metrics/
4•blenderob•20m ago•0 comments

The Idiot Sandwich – On Embedding Alt Text

https://shkspr.mobi/blog/2025/11/the-idiot-sandwich-on-embedding-alt-text/
2•blenderob•20m ago•0 comments

200 Lines of Python beats $50M supercomputer – Navier-Stokes at Re=10⁸ [pdf]

https://philpapers.org/archive/CAMIIA-3.pdf
7•jcamlin•23m ago•4 comments

Hacker News AI newsletter – weekly round up of the most popular AI links from HN

https://hackernewsai.com
3•alexgotoi•23m ago•3 comments

So you wanna build a local RAG?

https://blog.yakkomajuri.com/blog/local-rag
5•pedriquepacheco•24m ago•0 comments

Happiness research doesn't make you happy

https://www.technotheoria.org/p/happiness-research-doesnt-make-you
2•paulpauper•27m ago•0 comments

Lowtype: Elegant Types in Ruby

https://codeberg.org/Iow/type
6•birdculture•29m ago•1 comments

New version of HugstonOne with Qwen Next 80B support and Memory

https://github.com/Mainframework/HugstonOne/releases/tag/HugstonOne_Enterprise_Edition_with_memory
1•trilogic•29m ago•0 comments

The Neoliberal Era Was Not Pro-Market Enough

https://www.richardhanania.com/p/the-neoliberal-era-was-not-pro-market
3•paulpauper•29m ago•0 comments

Airloom – 3D Flight Tracker

https://objectiveunclear.com/airloom.html
9•azinman2•30m ago•1 comments

Beads_viewer: Keyboard-driven terminal interface for the Beads issue tracker

https://github.com/Dicklesworthstone/beads_viewer
2•latchkey•33m ago•0 comments

Shrinking While Linking

https://www.tweag.io/blog/2025-11-27-shrinking-static-libs/
1•synergy20•34m ago•0 comments

(Digital) Elbows Up

https://pluralistic.net/2025/11/28/disenshittification-nation/
3•hn_acker•36m ago•0 comments

Lobsters Interview

https://susam.net/my-lobsters-interview.html
1•blenderob•36m ago•0 comments

Useful Black Friday dev resources I came across today

https://github.com/greatfrontend/black-friday-cyber-monday-deals
3•demon1421•39m ago•0 comments

Best URL Shortener – super clean / no ads

https://svwt.cc
5•swiftvault•41m ago•1 comments

The Fat-Tailed Sheep on the First Fleet; Australia's First Sheep

https://www.singletonmills.com/sydney-first-sheep.html
4•Y_Y•41m ago•1 comments
Open in hackernews

Lowtype: Elegant Types in Ruby

https://codeberg.org/Iow/type
6•birdculture•29m ago

Comments

graypegg•17m ago
It's not always a good thing, but I love Ruby's ability to define new runtime-valid syntax that looks pretty much native to Ruby itself.

    def method(thing: String | "default value")
the pipe operator seems to be defined here, as just a regular method: https://codeberg.org/Iow/type/src/commit/aaa079bf3dd2ac6b471... the type gets picked out by the module included in the class you want typechecked, which reads the default value from all methods (which is the "real" ruby syntax here, where `thing` is assigned a default value of the result of calling `String | "default value"`) and uses that for type checking.

I like that over-flexibility... it's regularly too clever and makes it difficult to follow the flow of an application, but I like it all the same.