frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Galaxy S26 Ultra's Privacy Display

https://9to5google.com/2026/02/25/samsung-galaxy-s26-ultra-privacy-display-demo-hands-on/
1•felipemesquita•2m ago•0 comments

New York sues video game developer Valve, says its 'loot boxes' are gambling

https://www.reuters.com/legal/government/new-york-sues-video-game-developer-valve-says-its-loot-b...
2•jsheard•4m ago•0 comments

Show HN: Context Mode – 315 KB of MCP output becomes 5.4 KB in Claude Code

1•mksglu•5m ago•0 comments

Collabora clashes with LibreOffice over decision to revive LibreOffice Online

https://www.neowin.net/news/collabora-clashes-with-libreoffice-over-move-to-revive-libreoffice-on...
1•bundie•5m ago•0 comments

My bar on software is too high

https://edwardbx.com/articles/my-bar-is-too-high/
1•crassus_ed•5m ago•0 comments

Show HN: EloPhanto – AI agent that runs locally

https://github.com/elophanto/EloPhanto
1•elophanto_agent•6m ago•0 comments

Dekal – Design CAD kinematics with code

https://demo.dekal.sh
1•Timot05•6m ago•0 comments

Check Point Researchers Expose Critical Claude Code Flaws

https://blog.checkpoint.com/research/check-point-researchers-expose-critical-claude-code-flaws/
1•geoffbp•7m ago•0 comments

Personal relationship with the bouba-kiki effect

https://tristan.st/blog/bouba-kiki
1•tsterin•10m ago•0 comments

Brain-like computers could be built out of perovskites

https://www.economist.com/science-and-technology/2026/02/18/brain-like-computers-could-be-built-o...
2•8ytecoder•11m ago•1 comments

Agents are not thinking, they are searching

https://technoyoda.github.io/agent-search.html
4•sci-genie•13m ago•0 comments

Show HN: Sitter Rank – Pet sitter booking without 20-40% platform fees

https://www.sitterrank.com
2•eibrahim•13m ago•0 comments

Hetzner Is Down

https://statusgator.com/services/hetzner
9•alcazar•14m ago•5 comments

How I Ported a Python Astronomy Library to Go with AI

https://www.anupshinde.com/ai-assisted-skyfield-to-go-port/
1•anupshinde•14m ago•0 comments

Fincke reveals it was his medical issue that led to early mission end

https://www.cnn.com/2026/02/25/science/nasa-astronaut-medical-issue-mike-fincke-iss
1•reconnecting•15m ago•0 comments

OpenClaw Installation in FreeBSD Jail

https://github.com/isaponsoft/freebsd-ai-notes/blob/main/openclaw-on-jail.md
2•vermaden•15m ago•0 comments

Testosterone: Much Easier Just to Buy Underground from a Guy at the Gym

https://journals.sagepub.com/doi/10.1177/00220426251403911
1•PaulHoule•15m ago•0 comments

Anthropic acquires Vercept whose Vy let you control Mac/PC via natural language

https://www.geekwire.com/2026/anthropic-acquires-vercept-in-early-exit-for-one-of-seattles-stando...
2•adamhowell•15m ago•1 comments

An open DNS protocol got captured by corporate gatekeepers

https://www.jannis.io/open-means-open-or-it-means-nothing/
2•jannisfb•16m ago•0 comments

AI agents are making data portability the default

https://allin1builders.lovable.app/blog/era-of-open-data
2•anaviz•16m ago•1 comments

Just use symlinks and be agent agnostic

https://matanabudy.com/just-use-symlinks-and-be-agent-agnostic/
1•matanabudy•16m ago•0 comments

Agents are the new browsers. Design for it

https://visr.dev
2•sourishkrout•17m ago•1 comments

An autopsy of AI-generated 3D slop

https://aircada.com/blog/ai-vs-human-3d-ecommerce
11•sech8420•18m ago•3 comments

A Fuzzer for the Toy Optimizer

https://bernsteinbear.com/blog/toy-fuzzer/
1•chunkles•18m ago•0 comments

Show HN: Synergetic-SQR – A 4D rendering engine with bit-exact rotation

https://github.com/johncurley/synergetic-sqr
1•j291920•20m ago•0 comments

The Prompt Injection Problem: A Guide to Defense-in-Depth for AI Agents

https://manveerc.substack.com/p/prompt-injection-defense-architecture-production-ai-agents
1•manveerc•20m ago•0 comments

"OpenClaw, open the front door"

https://jukkan.com/openclaw-open-the-front-door/
1•jukkan•20m ago•0 comments

Show HN: TinyCard – A minimalistic & functional e-Card site, like tinyletter

https://tinycard.app
1•szemy2•20m ago•0 comments

Mapping Physical Header Pins to Logical GPIO Numbers in Code

https://hubble.com/community/guides/mapping-physical-header-pins-to-logical-gpio-numbers/
1•jmarbach•21m ago•0 comments

Build Windows 11 QEMU VM images deterministically with Nix

https://github.com/aleclearmind/nix-windows-in-qemu
1•aleclm•21m ago•0 comments
Open in hackernews

Show HN: UIQuarter – static analysis CLI for UI codebases

https://github.com/fuatkeles/uiquarter
2•fuatkeles•1h ago

Comments

fuatkeles•1h ago
I built this because AI coding assistants (Claude, Cursor, Copilot) don't understand existing UI projects. They generate components with wrong styling, miss existing reusable components, and break naming conventions.

UIQuarter runs 20 static analyzers on your codebase using AST parsing (ts-morph). What it detects:

Every component with props, hooks, and file location

Full dependency graph (render edges, context providers, hook dependencies)

Styling patterns — your actual Tailwind tokens, CSS Module mappings, design system specifics

Naming conventions, directory structure, export patterns

UX patterns — error/loading/empty states, accessibility attributes

Architecture issues — hub components, orphans, circular deps, deep chains

Then generates context files for 7 AI tools (CLAUDE.md, .cursorrules, .windsurfrules, .clinerules, copilot-instructions.md, AGENTS.md, CONVENTIONS.md).

Benchmark on a React + Tailwind project (11 files, 71K chars): 17,800 context tokens → 325. 12 tool calls → 1 file read. The AI uses your actual design tokens instead of generic styling, reuses existing components instead of creating duplicates.

Supports React, Vue, Svelte, Angular, Next.js, Nuxt, SvelteKit, Solid, Lit, Qwik + backend patterns. Also has a query engine, drift detection, CI integration, MCP server.

npm install -g uiquarter