Feed aggregator

Tell HN: Attackers using Google parental controls to prevent account recovery

Hacker News - Tue, 02/17/2026 - 9:35pm

Someone I know just had their Google account compromised, but the normal recovery methods don't work for an interesting reason: the attacker has made the account into a "child" account subordinate to an attacker-controlled "parent" account. This apparently blocks the ability to use any of the Google account recovery methods (backup phone number or email address etc) without parental consent.

Apparently this person I know isn't alone, if you search you can find other people reporting they've been victims of this. And of course, Google support is nonexistent for ordinary users, so there's no real recourse. Let this be a warning about the consequences of ill-thought-out "child safety features"?

Comments URL: https://news.ycombinator.com/item?id=47056472

Points: 1

# Comments: 0

Categories: Hacker News

Show HN: DevDay – End-of-day recap for AI coding sessions

Hacker News - Tue, 02/17/2026 - 9:33pm

I built devday because I use multiple AI coding tools (OpenCode, Claude Code, Cursor) and wanted a single command to see what I actually accomplished each day. It reads local session data, cross-references with git commits, and optionally generates standup-ready summaries via OpenAI or Anthropic.

Everything runs locally — no data leaves your machine unless you opt into LLM summaries.

Install with npm install -g devday.

Currently supports OpenCode, Claude Code, and Cursor on macOS. Would love feedback on what other tools to support.

Comments URL: https://news.ycombinator.com/item?id=47056453

Points: 1

# Comments: 0

Categories: Hacker News

Is YouTube Down Right Now? Outage Hits Over 800K People, According to Downdetector

CNET Feed - Tue, 02/17/2026 - 9:32pm
More than a million people around the world are reporting the popular video site has gone dark. Just in time for Olympics coverage!
Categories: CNET

Show HN: AIBenchy – Independent AI Leaderboard

Hacker News - Tue, 02/17/2026 - 9:31pm

Hey HN, Like many of you, I'm tired of public AI leaderboards that mostly recycle the same saturated/overfitted benchmarks (MMLU, HumanEval, etc.) and often miss fast/cheap variants or real daily pain points.

A couple days ago I launched AIBenchy — a small, opinionated leaderboard running my own custom tests focused on end-user/dev scenarios that actually trip up models today.

Current tests cover categories like:

- Anti-AI Tricks (classic gotchas like "count the Rs in strawberry", logic traps) - Instruction following & consistency - Data parsing/extraction - Domain-specific tasks - Puzzle solving / edge-case reasoning

Recent additions (just pushed today):

- Reasoning score (new!): A separate judge LLM evaluates the chain-of-thought for efficiency — does it repeat itself, loop, think forever, brute-force enumerate every possibility (looking at you, some Qwen-3.5 runs), or get to the point cleanly? This penalizes "cheaty" high-token reasoning even if the final answer is correct. Goal: reward smart, concise thinking over exhaustive trial-and-error. - Stability metric: Measures consistency across runs (some models flake on the same prompt). Right now the leaderboard has ~20 models (Qwen3.5 Plus currently topping it, followed by GLM 5, various GPT/Claude variants, etc.), but it's super early/WIP:

- Manual runs + small test set - No public submission of tests yet (open to ideas!) - Focused on transparency & practical usefulness over massive scale

I'd love feedback from HN:

- What custom tests / gotchas / use-cases should I add next? - Thoughts on the reasoning score — fair way to judge efficiency, or too subjective? - Models/variants I'm missing (especially fast/cheap ones ignored elsewhere)? - Should I let people submit their own prompts/tests eventually? Thanks for checking it out: https://aibenchy.com

Appreciate any roast/ideas — building this to scratch my own itch.

Comments URL: https://news.ycombinator.com/item?id=47056436

Points: 1

# Comments: 1

Categories: Hacker News

Taste for Makers

Hacker News - Tue, 02/17/2026 - 9:30pm

Article URL: https://paulgraham.com/taste.html

Comments URL: https://news.ycombinator.com/item?id=47056427

Points: 2

# Comments: 1

Categories: Hacker News

Thin Is In

Hacker News - Tue, 02/17/2026 - 9:29pm
Categories: Hacker News

Other money making uses for the DGX Spark?

Hacker News - Tue, 02/17/2026 - 9:27pm

I just got this today and have it setup with vsCode. I was thinking it would be nice to make use of this to generate some income when I'm not using it for dev. The first thought was crypto but I have been out of that business for a few years. Searches on the subject were no help.

I'm looking for ideas. Thanks! jj

Comments URL: https://news.ycombinator.com/item?id=47056401

Points: 1

# Comments: 0

Categories: Hacker News

Tidal Heating of Io

Hacker News - Tue, 02/17/2026 - 9:23pm
Categories: Hacker News

Show HN: Conduit: One Swift interface for every AI provider, on-device and cloud

Hacker News - Tue, 02/17/2026 - 9:21pm

I built Conduit because I was tired of writing the same streaming boilerplate five times for five different AI providers, then rewriting it every time a new one became interesting. So I stopped. The core idea: one protocol hierarchy, every provider. Switch from Claude to a local Llama model running on Apple Silicon with a one-line change. No vendor lock-in at the call site.

The interesting decision was going actor-first from day one. Every provider is a Swift actor. You get data-race freedom enforced at compile time, not by convention. Swift 6.2's strict concurrency makes this a hard guarantee, not a README promise. LangChain can't say that.

The part I'm most proud of — @Generable

@Generable struct FlightSearch { @Guide(description: "Origin airport code") let origin: String

@Guide(description: "Departure date", .format(.date)) let date: Date @Guide(.range(1...9)) let passengers: Int }

let result = try await provider.generate( "Book me a flight to Tokyo next Friday", model: .claude3_5Sonnet, returning: FlightSearch.self )

The macro expands at compile time (via swift-syntax) to generate JSON Schema, streaming partial types, and all conversion boilerplate. The API is deliberately aligned with Apple's new Foundation Models framework — so the same struct works against on-device Apple models on iOS 26 and against Claude or GPT-4 with zero changes.

On-device is a first-class citizen, not an afterthought Most Swift AI SDKs treat cloud as the primary path and shim local models in awkwardly. Conduit treats MLX, llama.cpp, Core ML, and Apple's Foundation Models as fully equal providers. A ChatSession configured with an MLX Llama model and one configured with GPT-4o are indistinguishable at the call site.

Trait-based compilation keeps binary size sane

AsyncThrowingStream all the way down. Cancellation works via standard Swift task cancellation — no special teardown protocol. Back-pressure is handled naturally by the async iterator.

12 providers, one interface Anthropic, OpenAI, Azure OpenAI, Ollama, OpenRouter, Kimi, MiniMax, HuggingFace Hub, MLX, llama.cpp, Core ML, Foundation Models. The OpenAI-compatible ones share a single OpenAIProvider actor — the named variants are thin configuration wrappers, not code forks.

https://github.com/christopherkarani/Conduit Happy to dig into the actor model approach, the macro expansion strategy, or why wrapping LangChain was never an option.

Comments URL: https://news.ycombinator.com/item?id=47056343

Points: 1

# Comments: 0

Categories: Hacker News

Show HN: How I built Timeframe, our family e-paper dashboard

Hacker News - Tue, 02/17/2026 - 9:20pm

I'm proud to share the e-paper family dashboard I've been building over the past decade. I think you might find it interesting. It's open source: https://github.com/joelhawksley/timeframe.

Comments URL: https://news.ycombinator.com/item?id=47056330

Points: 2

# Comments: 0

Categories: Hacker News

Pages