frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: Three Emojis, a daily word puzzle for language learners

https://threeemojis.com/en-US/play/hex/en-US/2025-11-07
12•knuckleheads•1h ago•1 comments

Show HN: Pingu Unchained an Unrestricted LLM for High-Risk AI Security Research

https://pingu.audn.ai
4•ozgurozkan•28m ago•2 comments

Show HN: I scraped 3B Goodreads reviews to train a better recommendation model

https://book.sv
554•costco•2d ago•227 comments

Show HN: Command line YouTube downloader,a universal media solution for everyone

https://github.com/Saffron-sh/m2m
3•saffron-sh•1h ago•2 comments

Show HN: I built a Free "Masterclass" from YouTube clips

https://opencademy.com/
3•longerpath•1h ago•7 comments

Show HN: OSS implementation of Test Time Diffusion that runs on a 24gb GPU

https://github.com/eamag/MMU-RAG-competition
19•eamag•9h ago•0 comments

Show HN: Dynamic code and feedback walkthroughs with your coding Agent in VSCode

https://www.intraview.ai/hn-demo
39•cyrusradfar•1d ago•9 comments

Show HN: See chords as flags – Visual harmony of top composers on musescore

https://rawl.rocks/
121•vitaly-pavlenko•2d ago•28 comments

Show HN: qqqa – A fast, stateless LLM-powered assistant for your shell

https://github.com/matisojka/qqqa
151•iagooar•1d ago•84 comments

Show HN: TabPFN-2.5 – SOTA foundation model for tabular data

https://priorlabs.ai/technical-reports/tabpfn-2-5-model-report
71•onasta•1d ago•12 comments

Show HN: Extending LLM SVG generation beyond pelicans and bicycles

https://gally.net/temp/20251107pelican-alternatives/index.html
5•tkgally•9h ago•0 comments

Show HN: Linguistic RL – A 7B model discovers Occam's Razor through reflection

https://github.com/DRawson5570/linguistic-rl-scheduling
2•drawson5570•6h ago•0 comments

Show HN: Ambient light sensor control of keyboard and screen brightness in Linux

https://github.com/donjajo/als-led-backlight
21•donjajo•5d ago•1 comments

Show HN: Lanturn – A smart headlamp running voice+vision on ESP32

https://github.com/getchannel/lanturn
2•Aeroi•6h ago•1 comments

Show HN: XML-Lib – An over-engineered XML workflow with guardrails and proofs

https://github.com/farukalpay/xml-lib
3•HenryAI•6h ago•0 comments

Show HN: A Lightweight Kafka Alternative

5•kellyviro•7h ago•0 comments

Show HN: I made a better DOM morphing algorithm

https://joel.drapper.me/p/morphlex/
7•joeldrapper•9h ago•0 comments

Show HN: Flutter_compositions: Vue-inspired reactive building blocks for Flutter

https://github.com/yoyo930021/flutter_compositions
44•yoyo930021•1d ago•23 comments

Show HN: [npm] Recreation of YouTube's "ambient glow" effect

https://www.npmjs.com/package/video-ambient-glow
2•JSXJedi•10h ago•1 comments

Show HN: A CSS-Only Terrain Generator

https://terra.layoutit.com
363•rofko•3d ago•82 comments

Show HN: Chess960v2 – 100 Rounds Done, Some Openings Still Undefeated

https://chess960v2.com/en
3•lavren1974•14h ago•0 comments

Show HN: I built a search engine for all domains on the internet

https://domainexplorer.io
5•iryndin•15h ago•7 comments

Show HN: Switchport – A/B Test Your LLM Prompts in Production

https://switchport.ai/
2•rjfc•15h ago•0 comments

Show HN: FlashVSR – High-Speed 4K Video Super-Resolution

https://www.aiupscaler.net/flashvsr
2•lu794377•17h ago•0 comments

Show HN: Practice your captcha skills with Google's weirdest Street Views

https://street-captcha.netlify.app/
3•SantiDev•17h ago•1 comments

Show HN: What Is Hacker News Working On?

https://waywo.eamag.me/
12•eamag•1d ago•2 comments

Show HN: ApiMug – Terminal UI for Browsing / Testing APIs from OpenAPI/Swagger

https://github.com/doganarif/ApiMug
3•Arifcodes•20h ago•0 comments

Show HN: VT Code – Rust TUI coding agent with Tree-sitter and AST-grep

https://github.com/vinhnx/vtcode
3•vinhnx•20h ago•2 comments

Show HN: BookPace – Track your reading time (with NFC tags for physical books)

https://www.bookpace.app
3•wjhypo•21h ago•4 comments

Show HN: Strange Attractors

https://blog.shashanktomar.com/posts/strange-attractors
798•shashanktomar•6d ago•78 comments
Open in hackernews

Show HN: Linguistic RL – A 7B model discovers Occam's Razor through reflection

https://github.com/DRawson5570/linguistic-rl-scheduling
2•drawson5570•6h ago
Author here. I built a system where a small language model (qwen2.5:7b) learns through reflection rather than weight updates.

The unexpected finding: the model discovered Occam's Razor on its own.

Starting accuracy: 51.3% (zero-shot baseline) After learning: 78.0% (+26.7 percentage points)

But the numbers don't tell the full story. The learning journals reveal something profound:

Phase 1: The model hallucinated complex solutions ("use interval trees!", "apply graph theory!"). Accuracy stayed low (~35%).

Phase 2: Journal entries started showing doubt: "Since the problem is straightforward, focusing on basic interval checking..."

Phase 3: The breakthrough - the model wrote: "This suggests a fundamental misunderstanding of how to handle overlapping intervals."

It admitted it was wrong. From that moment, everything changed.

The distillation process acts as evolutionary selection: simple ideas that work survive, complex ideas that fail get filtered out.

Key advantages: - Fully interpretable (read the complete thought process) - Runs on consumer hardware (no GPU training) - Strategies are transferable text documents - Models learn to doubt themselves (AI safety implication)

All code and papers are open source. The experiment takes ~40 minutes to reproduce on a laptop.

Happy to answer questions about the approach, results, or implementation!