frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: Didacu – The fastest way to learn something new

https://didacu.com
1•datadiego•47s ago•0 comments

UK reaches 90% Gigabit broadband coverage as full fibre rollouts continue

https://www.thinkbroadband.com/news/uk-reaches-90-gigabit-broadband-coverage-as-full-fibre-rollou...
1•ksec•4m ago•0 comments

Show HN: Get GPT-5.2, Grok-4.1-fast, KimiK2.5 and more LLMs at half the cost

https://frogapi.app
1•vnhc•6m ago•0 comments

Show HN: StatusLane – Minimal status pages and uptime for small SaaS

https://statuslane.dev
1•wharleyornelas•7m ago•0 comments

Bytewords – encoding bytes as one of 256 four-letter English words

https://developer.blockchaincommons.com/bytewords/
1•alcazar•7m ago•1 comments

Show HN: We ran a sycophancy experiment on Claude and built a music publication

1•structureonly•7m ago•0 comments

Apple 'accidentally' enabled Age Verification in the UK

https://old.reddit.com/r/ios/comments/1rgi5c0/apple_accidentally_enabled_age_verification_in/
1•_____k•8m ago•0 comments

Bypassing Noexec with Memfd_create(2)

https://gavinray97.github.io/blog/memfd-create-noexec
1•gavinray•8m ago•0 comments

Starts Club – YC-style startup idea validator

1•androbuddy•10m ago•0 comments

Elite Doctors Served Jeffrey Epstein While Treating His 'Girls'

https://www.nytimes.com/2026/02/28/us/jeffrey-epstein-doctors.html
1•Anon84•11m ago•0 comments

Siteshamer – Get brutally honest feedback on any website

https://siteshamer.com
1•pinin•12m ago•0 comments

How India Became One of the World's Biggest Economies

https://www.nytimes.com/2026/02/27/business/india-economy-gdp.html
1•bookofjoe•13m ago•1 comments

How Safe Are Our RSS Feeds from AI Data Scrapers?

https://stephvee.ca/blog/artificial%20intelligence/how-safe-are-our-rss-feeds-from-ai-scrapers/
1•speckx•13m ago•0 comments

I built an an app that ruins my beach days

https://apps.apple.com/us/app/pingy-cloud-outage-alerts/id6759363978
1•Sayuj01•13m ago•1 comments

The Self-Driving Codebase

https://background-agents.com/
1•pongogogo•14m ago•1 comments

Self Correcting Materialized Views

https://materialize.com/blog/self-correcting-materialized-views/
1•pranshum•14m ago•0 comments

Strand

http://www.call-with-current-continuation.org/strand/strand.html
1•tosh•15m ago•0 comments

The "video game preservation service" Myrient is shutting down in March

https://www.gamingonlinux.com/2026/02/the-video-game-preservation-service-myrient-is-shutting-dow...
1•yyyk•15m ago•0 comments

Show HN: Monohub – a new Git code hosting service

https://monohub.dev/
2•tbayramov•18m ago•0 comments

5 OpenClaw Agents for Homeschooling, App Building, and Physical Inventories

https://www.chatprd.ai/how-i-ai/jesse-genets-5-openclaw-agents-for-homeschooling-app-building-and...
1•mpweiher•19m ago•0 comments

Show HN: Lomography action sampler GIF creator

https://www.4fram.es/
1•Jean-Philipe•20m ago•0 comments

The Physics of Misunderstanding: When "Gaze" Almost Cost Me My Career

https://www.jsnover.com/blog/2026/02/27/the-physics-of-misunderstanding-when-gaze-almost-cost-me-...
1•donutshop•21m ago•0 comments

Show HN: AgentMailr – Real email addresses for AI agents (OTP/2FA handling)

https://www.agentmailr.com/
1•kumardeepanshu•23m ago•0 comments

We [OpenAI] fired a research scientist for insider trading on Polymarket

https://twitter.com/gothburz/status/2027768852906471495
3•labrador•25m ago•4 comments

AI Isn't Replacing SREs, It's Deskilling Them

https://newsletter.signoz.io/p/ai-isnt-replacing-sres-its-deskilling
3•pranay01•26m ago•0 comments

Jeff Dean on Origin of MapReduce

https://twitter.com/JeffDean/status/2027761336080601277
3•tosh•27m ago•0 comments

Claude Code Monitoring

https://code.claude.com/docs/en/monitoring-usage
2•pranay01•27m ago•0 comments

Block the "Upgrade to Tahoe" Alerts

https://robservatory.com/block-the-upgrade-to-tahoe-alerts-and-system-settings-indicator/
2•todsacerdoti•27m ago•0 comments

Stuxnet

https://en.wikipedia.org/wiki/Stuxnet
2•RyanShook•28m ago•0 comments

"Cancel ChatGPT" movement goes mainstream after OpenAI closes deal with U.S. Dow

https://www.windowscentral.com/artificial-intelligence/cancel-chatgpt-movement-goes-mainstream-af...
2•AndrewKemendo•28m ago•0 comments
Open in hackernews

Show HN: Using a mobile LLM app to safely operate a desktop computer

https://github.com/ruikhu007/action-printer
1•Ruikhu•2h ago
Hi HN, I’ve been experimenting with a different approach to computer-using AI agents. Most current AI agents control computers using: • cloud APIs with stored credentials • browser automation • screenshot + vision + mouse control I tried something else. Instead of embedding the AI inside the computer, I use the official mobile LLM apps (ChatGPT / Claude) as the intelligence source, and built an external execution gateway that translates model intent into deterministic OS actions. The model never gets system privileges, and the computer never exposes credentials to the model. Architecture: phone LLM app → data link → action gateway → predefined action skills → desktop OS The gateway only executes whitelisted primitives: keyboard sequences window operations command calls The key idea is separating cognition and execution. The model outputs decisions, not motor control. The gateway performs verified actions. This turns computer control from a continuous UI manipulation problem into a discrete decision problem, which makes it more predictable and auditable. Early prototype — I’d really appreciate feedback, especially from people working on agent safety or permission models.

Comments

Ruikhu•2h ago
Hi — author here. One clarification: The goal is not to let an AI freely control a computer. I built a fixed local action skill library. Each skill is a deterministic OS operation (open app, switch window, run command, structured input). The model does not generate UI steps or mouse actions. It only selects a skill. The gateway executes it. So the LLM is making decisions, not performing motor control. The computer isn’t remotely driven by the model — the model chooses from a constrained set of allowed actions. This is mainly an experiment in making computer-using agents more predictable and auditable. I’d especially value thoughts from people working on agent safety.
Ruikhu•1h ago
Another clarification since a few people messaged me privately: This is not just a conceptual architecture — we actually tested it using the official Claude mobile app controlling a real desktop computer. The phone runs the model inside the official app. The app produces instructions in natural language. Our gateway parses intent and maps it to a verified local action skill (keyboard/window/command primitives). So the model is not embedded in the OS and not calling an API. It is literally the mobile LLM app interacting with a real operating system through a constrained execution layer. We were interested in whether an official consumer LLM app (without system privileges) could still reliably operate a computer when paired with a deterministic action layer.