Hacker News
The will to power will return
Article URL: https://world.hey.com/dhh/the-will-to-power-will-return-58ffb9dc
Comments URL: https://news.ycombinator.com/item?id=48889057
Points: 1
# Comments: 0
The Illusion of Competence
Article URL: https://www.theminimalistdeveloper.com/the-illusion-of-competence/
Comments URL: https://news.ycombinator.com/item?id=48889047
Points: 2
# Comments: 0
Show HN: TradingSpy-Loop based research and backtesting trading Agent
Hi all, I build this agent for beginners to use it locally in this laptop
Comments URL: https://news.ycombinator.com/item?id=48889045
Points: 1
# Comments: 0
Don't Put All Your Tokens in One Basket
Article URL: https://www.theminimalistdeveloper.com/dont-put-all-your-tokens-in-one-basket/
Comments URL: https://news.ycombinator.com/item?id=48889029
Points: 1
# Comments: 1
The Harness Is Not the Model: How Far Scaffolding Takes a Weak LLM
Article URL: https://manazir.dev/work/the-harness-is-not-the-model
Comments URL: https://news.ycombinator.com/item?id=48889024
Points: 1
# Comments: 0
I wrote an OS to express my love for Neuro-Sama
64-bit UEFI OS. Ring 0 only. No ring 3. Cooperative multitasking (tasks yield manually). No context switching — all tasks share one 128MB stack. IDT 0-31 only. VA=PA. PCI, XHCI, RDTSC, HDA, ATA, FAT32, GPT, REP(string instructions), AVX256, SSE4.2, FPU, NT(Non-Temporal). All polling.
(I used LLM in some of my code.)
Github Link: https://github.com/Dydudu37d/NeuroSamaOS
I'm the author. Happy to answer any questions!
Comments URL: https://news.ycombinator.com/item?id=48889020
Points: 1
# Comments: 0
Clive Wearing
Article URL: https://en.wikipedia.org/wiki/Clive_Wearing
Comments URL: https://news.ycombinator.com/item?id=48889002
Points: 1
# Comments: 0
Show HN: I built a tool for people juggling too many projects
We built Toward to solve our own problem —multiple projects everywhere, updates scattered, nothing organized. It's stupid-simple: update what happened, system threads it, intelligence surfaces. We've been using it internally and thought HN might appreciate it.
Comments URL: https://news.ycombinator.com/item?id=48888997
Points: 1
# Comments: 0
Show HN: Reproducible head-to-head benchmarks for WordPress backup plugins
Article URL: https://backuparena.com
Comments URL: https://news.ycombinator.com/item?id=48888960
Points: 1
# Comments: 0
Show HN: A simple timing utility written in Rust
Article URL: https://github.com/CallMeAlphabet/timeit
Comments URL: https://news.ycombinator.com/item?id=48888939
Points: 1
# Comments: 0
Llambda.lisp an LLM Engine in Pure Common Lisp
Article URL: https://github.com/jrm-code-project/llambda
Comments URL: https://news.ycombinator.com/item?id=48888922
Points: 1
# Comments: 0
Migrating 65B Database Rows
Article URL: https://usefathom.com/blog/two-database-migrations-and-a-divorce
Comments URL: https://news.ycombinator.com/item?id=48888916
Points: 1
# Comments: 0
Most website owners don't know the 5 stages of a domain expiration
Article URL: https://urlwatch.io/blog/5-stages-domain-expiration.php
Comments URL: https://news.ycombinator.com/item?id=48888901
Points: 2
# Comments: 0
The Linux Watchdog Driver API
Article URL: https://docs.kernel.org/watchdog/watchdog-api.html
Comments URL: https://news.ycombinator.com/item?id=48888897
Points: 1
# Comments: 0
WSJ Article Claiming China Has Matched Anthropic Is Obvious Nonsense
Article URL: https://www.lesswrong.com/posts/2zSpuGJRk6EyjHAL6/wsj-article-claiming-china-has-matched-anthropic-is-obvious-1
Comments URL: https://news.ycombinator.com/item?id=48888893
Points: 1
# Comments: 0
Stories Told About Data Centres
Article URL: https://pxlnv.com/blog/stories-told-about-data-centres/
Comments URL: https://news.ycombinator.com/item?id=48888880
Points: 2
# Comments: 0
Debateee, a place for structured online debates
Article URL: https://www.debateee.com/
Comments URL: https://news.ycombinator.com/item?id=48888878
Points: 1
# Comments: 0
OVS and OVN Explained: The Networking Stack Behind OpenStack
Article URL: https://www.openstack.org/blog/ovs-and-ovn-explained-the-networking-stack-behind-openstack/
Comments URL: https://news.ycombinator.com/item?id=48888678
Points: 1
# Comments: 0
Ransomware negotiator hired to represent victims was working for the attackers
Show HN: TokenDrift – find hardcoded colors/spacing hiding in your CSS
Hi HN — I built TokenDrift, a CLI that scans a codebase for design system drift: hardcoded colors and off-scale spacing that quietly bypass your design tokens.
npx tokendrift .
It's zero-dependency Node, runs entirely locally, and gives you a Drift Score (0-100) plus a report showing exactly which files and lines are responsible. --share is opt-in and uploads only the report data (never source), if you want a link to paste in a PR or Slack.
Why I built it: every design system I've worked with rots the same way. Someone hardcodes #3B82F6 under deadline pressure, someone else does margin: 13px instead of the actual spacing scale, and six months later nobody can say when "mostly following the system" became "barely following it" — because nothing was measuring it.
Three real examples, not staged demos — I ran it against open-source repos and checked every number by hand before publishing: - Dub (dub.co): 82/100, 93% token adoption https://tokendrift-vedantyedes-projects.vercel.app/r/9GNaJ2M... - Formbricks: 87/100, 96% adoption https://tokendrift-vedantyedes-projects.vercel.app/r/JuKMkzk... - Twenty (CRM): 77/100, 80% adoption — one CSS file explains most of the gap: it declares its own tokens at the top and then falls back to a dozen+ different raw hex values in the rest of the file anyway. https://tokendrift-vedantyedes-projects.vercel.app/r/60K5vks...
Current scope: CSS/SCSS/JS/TS/JSX/TSX, auto-detects tokens from CSS custom properties, Tailwind config, or W3C token JSON. No Vue/Svelte support yet, no auto-fix (by design — I'd rather show you where the drift is than guess at a rewrite).
Source: https://github.com/vedantyede/tokendrift npm: https://www.npmjs.com/package/tokendrift
Happy to answer questions about the scoring formula, the false positives I found and fixed while building this (test files count as drift by default in a naive version — worth watching for if you build something similar), or anything else.
Comments URL: https://news.ycombinator.com/item?id=48888631
Points: 1
# Comments: 0
