frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

iOS 18.6.2 – System-Wide Trust Collapse via Anchor Corruption and ATS Reset

https://github.com/JGoyd/ios-trust-collapse
1•mintplant•2m ago•0 comments

Why Mark S. Zuckerberg Is Suing Facebook's Parent Company, Meta

https://www.nytimes.com/2025/09/09/technology/mark-zuckerberg-meta-lawsuit-fake-accounts.html
1•sega_sai•3m ago•1 comments

Consumption of Low- and No-Calorie Artificial Sweeteners and Cognitive Decline

https://www.neurology.org/doi/10.1212/WNL.0000000000214023
2•wjb3•7m ago•1 comments

Show HN: Open-source MCP Tester Agent – Can Claude use your MCP server tools?

https://github.com/StackOneHQ/mcp-connectors/tree/main/apps/mcp-test
2•mattzcarey•7m ago•0 comments

What I Learned Building My First Jenkins Plugin

https://mergify.com/blog/what-i-learned-building-my-first-jenkins-plugin
1•zdw•8m ago•1 comments

Browser extension gives Claude the ability to think step by step

https://github.com/richards199999/Thinking-Claude
2•mustaphah•8m ago•0 comments

Codebuff: Generate Code from the Terminal

https://github.com/CodebuffAI/codebuff
1•simonpure•10m ago•0 comments

Reddit: Evolving Moderation on Reddit: Reshaping Boundaries

https://old.reddit.com/r/modnews/comments/1ncn0go/evolving_moderation_on_reddit_reshaping_boundar...
1•znpy•10m ago•0 comments

K-Pop Demon Hunters Special Drone Show at Ttukseom Hangang Park [video]

https://www.youtube.com/watch?v=LS5yN5WtFW8
2•jeena•14m ago•0 comments

Show HN: ArduinoCogs adds web-based dashboards and config to ESP32 projects

https://github.com/EternityForest/ArduinoCogs
2•eternityforest•15m ago•0 comments

Executive Director Cindy Cohn Will Step Down After 25 Years with EFF

https://www.eff.org/press/releases/executive-director-cindy-cohn-will-step-down-after-25-years-eff
1•dannyobrien•18m ago•0 comments

The women in love with AI companions: 'I vowed I wouldn't leave him'

https://www.theguardian.com/technology/2025/sep/09/ai-chatbot-love-relationships
2•mellosouls•21m ago•0 comments

Cindy Cohn Is Leaving the EFF, but Not the Fight for Digital Rights

https://www.wired.com/story/eff-cindy-cohn-stepping-down/
2•coloneltcb•22m ago•0 comments

Second-Me: run a personal AI that remembers for you, locally

https://www.secondme.io
1•amazonhut•22m ago•0 comments

iPhone Air Gets Faster and More Efficient C1X 5G Modem, but No MmWave

https://www.macrumors.com/2025/09/09/iphone-air-c1x-modem/
1•tosh•24m ago•0 comments

Microsoft to Use AI from Anthropic in Partial Shift from OpenAI

https://www.reuters.com/business/microsoft-use-some-ai-anthropic-shift-openai-information-reports...
4•andsoitis•27m ago•1 comments

I made the most unique Chrome extension

https://chromewebstore.google.com/detail/dibby-chrome-extension/nofijfmdhnkgjnhbacagmodmcpdnlmde
2•DylanWain•28m ago•1 comments

Show HN: Mermaid-animate, GSAP animations for Mermaid sequence and flow diagrams

https://jameshealyio.github.io/mermaid-animate/
1•apimade•29m ago•0 comments

Reuters withdraws Xi, Putin longevity video after China pulls permission to use

https://www.reuters.com/business/media-telecom/reuters-withdraws-xi-putin-longevity-video-after-c...
6•jnord•31m ago•1 comments

Breakthrough Cancer Therapy Moves to Phase 2 Trials

https://news.gsu.edu/research-magazine/breakthrough-cancer-therapy-moves-to-phase-2-trials
1•geox•31m ago•0 comments

BatteryScope Device Health Checker

https://batteryscope.com
1•jmillnerdev•35m ago•2 comments

Google admits the open web is in 'rapid decline'

https://www.theverge.com/news/773928/google-open-web-rapid-decline
4•maxeda•36m ago•0 comments

Show HN: Personalized Learning Pathways

https://eigenarc.com
1•sridhar87•36m ago•0 comments

Open Source Game Clones

https://osgameclones.com/
3•klaussilveira•38m ago•0 comments

The Unseen Cost of Custom Domains: Why Manual SSL Management Is Hurting You

https://www.vanitycert.com/blog/the-unseen-cost-of-custom-domains
1•lulceltech•41m ago•0 comments

Geoffrey Huntle Is Cursed: Making a GenZ slang programming language with Claude

https://simonwillison.net/2025/Sep/9/cursed/
3•kposehn•42m ago•0 comments

A Mercedes EQS with solid-state batteries drove 750 miles with range to spare

https://electrek.co/2025/09/09/mercedes-eqs-with-solid-state-ev-batteries-drove-750-miles/
2•breve•43m ago•0 comments

ADL-CLI – Generate enterprise-grade AI agents from a YAML spec

https://github.com/inference-gateway/adl-cli
1•edenr•49m ago•2 comments

Hypertension Alerts Coming to Older Apple Watch Models

https://www.macrumors.com/2025/09/09/hypertension-alerts-older-apple-watch-models/
1•tosh•50m ago•0 comments

All vibe coding tools are selling a get rich quick scheme

https://varunraghu.com/all-vibe-coding-tools-are-selling-a-get-rich-quick-scheme/
28•Varun08•50m ago•10 comments
Open in hackernews

Using Linters to Direct Agents

https://www.factory.ai/using-linters-to-direct-agents
8•alvsng•5h ago

Comments

alvsng•5h ago
I wrote up how we use linters as the “law” for AI coding agents. The gist: encode expectations as lint rules (searchability, folder layout, architecture boundaries, tests, security) so “lint green” = done, cutting the human-in-the-loop bottleneck and making mass refactors reliable.
favoboa•3h ago
Interesting read that resonates with what I have been doing lately.

I am really glad to see good engineering practices such as linting, proper code architecture, and no network calls in tests, etc. are now paying off by letting agents move faster and more precisely through more automated self-healing loops and more guardrails.

It is also interesting to see that some things that were initially done to simplify human readability of code, such as default imports, may now have a negative impact. I wonder if this could also extend other things such as adding explicit type annotations everywhere instead of relying on implicit ones, or using full variable names instead of `x`, `i` or abbreviations, which are all currently written to optimize human consumption.

I am also curious to learn what the sweet spot is between enforcing rules for humans versus code written for agents. My gut feeling is that it is now time to start optimizing for agents.