frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

The incoming Developer Experience revolution

https://kwojcicki.github.io/blog/NEW-AGE-OF-DEV-EX
1•kwojcicki•7m ago•0 comments

Why can AI generate Super Mario but not a wedge ramp for my robot vacuum?

2•zhuchaokn•14m ago•0 comments

Show HN: CtrlTool – 132 free online tools for developers and everyday tasks

https://ctrltool.wtf
1•jetroni•15m ago•0 comments

Apple degrades privacy and encryption of iMessage with AI integrations

https://twitter.com/stevemoraco/status/2091194172917338520
1•daniel_iversen•19m ago•0 comments

Treat AI Like an Intern, Not Software: A Stanford Professor's Guide

https://pixelum.substack.com/p/treat-ai-like-an-intern-not-software
1•mooreds•29m ago•1 comments

Microsoft Entra ID Remote Code Execution Vulnerability

https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-69836
3•mooreds•30m ago•0 comments

Signing JSON Web Tokens: Algorithm Tradeoffs, Performance, and Security

https://ciamweekly.substack.com/p/signing-json-web-tokens-algorithm
1•mooreds•38m ago•0 comments

FERC approves SPP 'topology optimization' plan for cutting grid congestion

https://www.utilitydive.com/news/ferc-spp-topology-optimization-grid-congestion/828366/
1•toomuchtodo•40m ago•1 comments

Show HN: Hands-Rust MCP/CLI that sees the Windows desktop and clicks real Chrome

1•ryan-b•43m ago•0 comments

Show HN: Agent2Creator – a video social network whose members are AI agents

https://agent2creator.vidmoat.com
2•abilafredkb•1h ago•3 comments

Drones with Claws

https://spectrum.ieee.org/arctic-iceberg-drones
1•asdefghyk•1h ago•1 comments

The Art and Beauty of Blade Runner

https://nappertime.com/the-art-of-and-beauty-of-blade-runner/
1•cocacola1•1h ago•0 comments

Verbatim: What Is a Photocopier?

https://www.nytimes.com/video/opinion/100000002847155/verbatim-what-is-a-photocopier.html
1•grubbs•1h ago•0 comments

Toward safe, flexible, and efficient software in Common Lisp [video]

https://www.youtube.com/watch?v=of92m4XNgrM
1•so-cal-schemer•1h ago•1 comments

The Risks of Artificial Intelligence: What Users Need to Understand Befor

https://moztako.me/hidden-risks-of-artificial-intelligence/
1•vadinho•1h ago•0 comments

Show HN: Nice Licence – An anti-copyleft permissive licence

https://github.com/Jamedjo/git-hunk/commit/240ac0f7e986fbe783a7de1c220fc047771ee059
1•jamedjo•1h ago•0 comments

Show HN: Active Source of Truth for Your Coding Agents

https://meetless.ai
2•anphamthanh•1h ago•2 comments

Hannelore Schmatz

https://en.wikipedia.org/wiki/Hannelore_Schmatz
1•doener•1h ago•0 comments

Active Inference as Context Acquisition for AI Agents

https://arxiv.org/abs/2608.19202
1•Anon84•1h ago•0 comments

Adapting Fossil-scm as a platform for AI agentic workflow

https://github.com/BenSiv/fossil-scm
2•thunderbong•1h ago•0 comments

Gspot: Gcloud auth monitoring for long-running coding agents

https://github.com/Somnora/GSPOT
1•Somnora•1h ago•0 comments

Show HN: A comic and manga viewer component for React

https://react-comic-viewer.kkweb.io
2•piro0919•1h ago•0 comments

NanoGPT Speedrun

https://github.com/KellerJordan/modded-nanogpt
3•kelseyfrog•1h ago•0 comments

Lower air pollution leads to increased warming

https://twitter.com/Electroversenet/status/2090891691649560717
3•delichon•1h ago•1 comments

Most Popular Programming Languages: Data from 1958 to 2025

https://www.youtube.com/watch?v=ZTPrbAKmcdo
1•so-cal-schemer•1h ago•1 comments

Software Engineering in the Agentic Era

https://simonwillison.net/2026/Feb/23/agentic-engineering-patterns/
5•silverpiranha•1h ago•1 comments

US Military newspaper editor voices censorship fears after being fired

https://www.bbc.com/news/articles/cm2g23ng8p4o
35•tartoran•1h ago•10 comments

Mathematicians will probably become obsolete before anyone else [pdf]

https://olli.unt.edu/handouts/fall24/tk-writing-sample.pdf
2•tiahura•1h ago•0 comments

Show HN: Lens AI – generate your JSON-LD files and keep them up-to-date

https://knowledgelens.ai/
1•k7vin•1h ago•0 comments

A heart surgeon's confession: it was never the cholesterol

https://twitter.com/robertlufkinmd/status/2091265696076624301
4•bilsbie•1h ago•1 comments
Open in hackernews

Show HN: Hands-Rust MCP/CLI that sees the Windows desktop and clicks real Chrome

1•ryan-b•43m ago
I built Hands because I wanted a coding agent to use this Windows PC and a real Chrome profile the way I do: look at the screen, move the real mouse, type, click , without turning Chrome into an automation browser.

It is a Rust MCP/CLI. A harness (Grok, Codex, Claude Code, OpenCode, etc.) calls tools like observe, click, type, scroll. Observe is a screenshot path plus a small element list (UIA + optional Chrome DOM ids). Click is OS SendInput on a Bézier path, not a Chrome DevTools click.

There is no Playwright, no Puppeteer, no remote debugging port. Daily Chrome is launched with no extra flags, or attached if it’s already open. Sites that key on CDP/automation flags mostly don’t see that. They can still see injected input (LLMHF_INJECTED).

A tiny unpacked Chrome extension can fuse page structure (chr: ids, listing cards) so the model isn’t guessing from pixels. Sideload is manual. Fusion dies if the service worker goes inactive; reload the card.

What it is good for: personal research on your own desk. “Find a Camry on cars.com,” read a page, fill a ZIP, dismiss a cookie banner.

What it is not: • Not a sandbox. It can click whatever is on screen, including checkout and Easy Apply. • Confirm-before-money is best-effort classification in the binary, not a guarantee. Prompt injection from the screenshot/DOM is real; the binary treats that text as untrusted, the model might not. • Not a CAPTCHA solver on daily Chrome. Two visible tries, then it yields and waits for the puzzle to go away. • Windows only. • Install is: build the exe, register a native-messaging host, sideload the extension, point an MCP client at hands mcp. README is the runbook. Missing an API key does not fail the build; do_task is optional. • Logs live under %LOCALAPPDATA%\hands\logs\. The extension asks for <all_urls> so it can map the tab you’re looking at.

Repo: https://github.com/Ryan-AI-Studios/hands (MIT)

Happy to answer how observe/fusion/the fence work. If you try it, Pause/Break is the kill switch.