frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Surpassing vLLM with a Generated Inference Stack

https://infinity.inc/case-studies/qwen3-optimization
1•lukebechtel•16s ago•0 comments

MorphMind – steerable AI specialist teams you can guide

https://agentlab.morphmind.ai
1•jay_morphmind•28s ago•1 comments

White supremacist content grips teens plotting attacks in Southeast Asia

https://www.reuters.com/business/media-telecom/white-supremacist-content-grips-teens-plotting-att...
1•alephnerd•59s ago•0 comments

The first multi-behaviour brain upload

https://theinnermostloop.substack.com/p/the-first-multi-behavior-brain-upload
1•dtj1123•1m ago•0 comments

Emacs and Vim in the Age of AI

https://batsov.com/articles/2026/03/09/emacs-and-vim-in-the-age-of-ai/
1•eduction•2m ago•0 comments

Launch HN: Didit (YC W26) – Stripe for Identity Verification

3•rosasalberto•5m ago•0 comments

Parameter Variation for Powder-Bed Arc Additive Manufacturing

https://www.mdpi.com/2075-4701/16/3/259
1•PaulHoule•5m ago•0 comments

Tools I found that make using Claude Code easier on your phone

https://zilliz.com/blog/3-easiest-ways-to-use-claude-code-on-your-mobile-phone
1•Fendy•6m ago•0 comments

Show HN: Svglib a SVG parser and renderer for Windows

https://github.com/bibhas2/svglib
1•leopoldj•8m ago•0 comments

The ugly history of regime change

https://www.profgmedia.com/p/this-time-is-different
2•shimm723•9m ago•0 comments

What software knowledge will stay relevant?

https://www.natemeyvis.com/what-software-knowledge-will-stay-relevant/
1•speckx•10m ago•0 comments

Show HN: Base Layer – Open-source behavioral compression from any text

https://www.base-layer.ai/
1•agulaya24•11m ago•0 comments

Para-biathlete wins silver using ChatGPT as his coach

https://www.theguardian.com/sport/2026/mar/09/ukraine-winter-paralympics-chat-gpt-artificial-inte...
1•defly•11m ago•0 comments

Amazon is holding a mandatory meeting about AI breaking its systems

https://twitter.com/lukolejnik/status/2031257644724342957
3•lwhsiao•11m ago•0 comments

Show HN: Claude Tuner – Monitor your Claude usage and find the right plan

https://claudetuner.com
1•xlos21•13m ago•1 comments

CragCLI – a new calculator for the command line

https://cragcli.info
3•librasteve•13m ago•1 comments

Show HN: Jottit – Reviving the Original from 2007

https://jottit.org
1•simonbc•13m ago•0 comments

Stripe: Billing for LLM Tokens

https://docs.stripe.com/billing/token-billing
1•tosh•14m ago•0 comments

Unlocked SaaS, file source as truth?

1•abmmgb•14m ago•1 comments

Understanding OBD2 codes (past, present, future)

https://crewchief.cc/blog/understanding-obd2-codes
1•meandave•14m ago•0 comments

Ask HN: What Happened to Llama Models?

1•elpakal•15m ago•0 comments

Meta to Acquire Moltbook

https://www.bloomberg.com/news/articles/2026-03-10/meta-to-acquire-moltbook-viral-social-network-...
2•marc__1•15m ago•0 comments

Disorder Drives One of Nature's Most Complex Machines

https://www.quantamagazine.org/disorder-drives-one-of-natures-most-complex-machines-20260309/
2•Brajeshwar•19m ago•0 comments

Spacecraft's impact changed asteroid's orbit in a save-the-Earth test

https://apnews.com/article/asteroid-nasa-draft-dimorphos-9abccd32d4cb532a66249dd6145685cb
2•Brajeshwar•19m ago•0 comments

Volkswagen to cut 50k jobs as profits drop

https://www.bbc.com/news/articles/c4gqyyly9v8o
1•gehwartzen•19m ago•0 comments

Microsoft 365 confirms new premium tier, stuffed with AI and few discounts

https://www.theregister.com/2026/03/09/microsoft_adds_a_premium_tier/
2•Brajeshwar•19m ago•0 comments

Smol AI WorldCup: What Small LLMs Can Do

https://huggingface.co/blog/FINAL-Bench/smol-worldcup
3•seawolf2357•19m ago•0 comments

Debian decides not to decide on AI-generated contributions

https://lwn.net/SubscriberLink/1061544/125f911834966dd0/
15•jwilk•19m ago•4 comments

License Laundering and the Death of Clean Room (The Chardet Saga)

https://shiftmag.dev/license-laundering-and-the-death-of-clean-room-8528/
1•allixsenos•20m ago•0 comments

We are building data breach machines and nobody cares

https://idealloc.me/posts/we-are-building-data-breach-machines-and-nobody-cares/
2•idealloc_haris•22m ago•0 comments
Open in hackernews

PIDKill – Auto-kill rogue macOS processes on a loop

https://www.pidkill.com
2•thomasmillerGo•2h ago

Comments

thomasmillerGo•2h ago
Hey HN,

You know that moment when your Mac fan starts screaming and you open Activity Monitor to find six Chrome Helper processes eating 4 GB of RAM? And you kill them, and thirty seconds later they're back?

That's what PIDKill automates.

You tell it which processes to watch. It scans at intervals you set (3–60s), and kills matches automatically. Daemon restarts itself? PIDKill kills it again. That's the whole idea.

Matching is fuzzy by default — "chrome" catches "Google Chrome Helper (Renderer)" because it checks executable names, localized display names, and paths. You don't need to know the exact process name.

Common targets people use it for:

- Chrome Helper processes hogging RAM - Adobe Creative Cloud daemons that run even when you're not using Adobe - Docker orphan processes after container stops - Spotlight indexing (mds_stores) hammering your SSD - photoanalysisd pegging CPU for hours after importing photos - Xcode/Simulator zombie processes after crashes - Microsoft Office background updaters - Slack Helper eating memory while "idle"

v1.0.3 added Inspect — real-time disk and network I/O ranked by process, with record and replay. Useful for figuring out why your fan just spun up.

Native Swift + AppKit. macOS 12+. $3.99 one-time, not subscription. 3-day free trial with full functionality. One license covers 2 Macs.

Distributed via DMG with Apple Notarization (not App Store — wanted to keep the price under $5 without the 30% cut eating it).

Happy to answer questions about the implementation or take feature requests.

thomasmillerGo•2h ago
Maker here. Some technical context:

Process discovery uses sysctl + NSRunningApplication. Kill signals go through POSIX kill() with SIGKILL — no graceful shutdown, just immediate termination. For the I/O monitor, I'm polling per-process disk and network stats via IOKit.

The fuzzy matching was the trickiest part. macOS processes often have different executable names vs. what Activity Monitor shows (localized display names). PIDKill checks against the executable name, the display name, and the full path — so partial input like "chrome" or "adobe" usually catches what you want.

I went with DMG + Gumroad license keys instead of the App Store. At $3.99 the 30% cut would have made it hard to justify the time spent maintaining it.

One thing I'm still iterating on: the Inspect tab (I/O monitor) can record activity and replay it frame-by-frame. It's useful for debugging intermittent disk/network spikes, but I'm not sure how many people will discover it. Feedback welcome on that.

Question for HN — what processes drive you crazy on macOS? I seeded the initial use cases from my own pain (Xcode, Simulator, Adobe, Chrome), but I'm sure there are offenders I'm not thinking of.