Jul 16Friday, July 17, 2026 · all days
1.Kimi K3: Open Frontier Intelligence(kimi.com)
1690 points by vincent_s 20 hours ago | 990 comments | permalink
tl;dr: Moonshot has released Kimi K3, a 2.8T-parameter open-weight model with Kimi Delta Attention, Attention Residuals, and a 1M-token context window, activating 16 of 896 MoE experts. It claims frontier-level performance on coding, agentic, and reasoning benchmarks—outperforming GLM-5.2 and Claude Opus 4.8 in many cases, though still trailing Claude Fable 5 and GPT 5.6 Sol. Available now via API ($3/MTok input, $15/MTok output), with full weights slated for release by July 27, 2026.
HN Discussion:
  • Personal testing confirms K3's impressive capabilities on coding and debugging tasks
  • Pricing is too high for a Chinese open model, making it a mediocre product despite strong benchmarks
  • Model size and specs position Kimi K3 as the largest open model, validating frontier claims
  • Chinese labs commoditizing intelligence raises strategic questions about their business model
  • Demo outputs like website generation and chip design showcase genuinely frontier-level abilities
2.Microsoft Comic Chat is now open source(opensource.microsoft.com)
700 points by jervant 19 hours ago | 154 comments | permalink
tl;dr: Microsoft has open-sourced Comic Chat, the 1996 IRC client that rendered text conversations as comic panels with illustrated characters (art by Jim Woodring) and debuted Comic Sans. The release includes the original Visual C++/MFC source along with AI-assisted modernization attempts that get it building with current Visual Studio, connecting to modern IRC servers, and running on high-DPI Windows.
HN Discussion:
  • Original release contributor shares behind-the-scenes story of making the open source happen
  • Personal nostalgia and inspiration drawn from Comic Chat's creative influence on later projects
  • ~Historical context noting Comic Chat was disliked by IRC community due to protocol extensions
  • Appreciation for the experimental, out-of-the-box thinking that produced Comic Chat
  • Sharing related technical artifacts like the layout engine paper and code easter eggs
3.Decoy Font(mixfont.com)
574 points by ray__ 19 hours ago | 136 comments | permalink
tl;dr: Decoy Font is a downloadable TTF font that uses the hybrid image technique—thin high-frequency foreground letters overlaid on blurred low-frequency background letters—so humans read one message up close (or when zoomed out) while OCR and LLMs like ChatGPT and Gemini tend to read the decoy. It's derived from DejaVu Sans Mono, free for personal and commercial use, and pitched as an anti-scraping tool, though the author admits smarter agents or targeted prompting can defeat it.
HN Discussion:
  • Accusation of plagiarism from a 2017 academic paper on the same technique
  • ~Cool concept but not practically useful as an anti-AI tool
  • Testing shows LLMs can actually detect the hidden text with simple prompting
  • The technique is easily defeated by downsampling or resizing the image
  • ~Reverse approach (garbled text readable to humans) would be more useful
4.LM Studio Bionic: the AI agent for open models(lmstudio.ai)
265 points by minimaxir 15 hours ago | 94 comments | permalink
tl;dr: LM Studio has launched Bionic, a separate AI agent app designed for open models that handles coding, document work, and research tasks. It supports local model execution, cloud inference via LM Studio Secure Cloud (with zero data retention), and includes offline voice transcription powered by Mistral's Voxtral, along with agentic code search, sandboxed document workflows, and automatic checkpoints. Users can switch between local and frontier open-source models like GLM 5.2 and Kimi K2.7 Code to balance cost and capability.
HN Discussion:
  • Founder engagement offering credits for users to try the product
  • Positive first-hand experience testing Bionic with local models
  • Skepticism about differentiation from other existing agent harnesses
  • Distrust of the zero data retention claim and cloud privacy promises
  • Concerns about closed-source nature and shift toward cloud business model
5.$100 AI Music Video: Claude Fable 5 vs. GPT-5.6 Sol(tryai.dev)
292 points by hershyb_ 15 hours ago | 389 comments | permalink
tl;dr: Two frontier models (Claude "Fable 5" and GPT "5.6 Sol") were given an autonomous tool-calling harness, a song, and $25/$100 budgets to research, generate, and edit a full music video via ffmpeg. All four runs completed valid videos, but quality was mediocre across the board: characters drifted between shots, lyrics were interpreted too literally, tempo matching was weak, and none of the models iterated on their edits or reviewed their own footage. Claude cost significantly more in tokens (~30-40% of total), while GPT-5.6 Sol was the more inventive editor, mixing multiple video models and adding overlays.
HN Discussion:
  • AI-generated videos lack artistic value; humans could do better with no budget
  • AI is undermining the economic foundation that supports working artists
  • Output failed because it interpreted lyrics too literally instead of building narrative arc
  • ~Better results are achievable with newer video models and human direction
  • Art is inherently human and AI-generated content lacks meaning regardless of quality
6.NotebookLM is now Gemini Notebook(blog.google)
319 points by xnx 19 hours ago | 160 comments | permalink
tl;dr: Google is rebranding NotebookLM to Gemini Notebook, keeping it as a standalone research tool while integrating it into the Gemini app and Google Search's AI Mode. A key upgrade adds a secure cloud computer to each notebook, allowing native code execution for data analysis on user sources—currently available to AI Ultra and Workspace business customers, with Pro users getting access in the coming weeks.
HN Discussion:
  • Google is fragmenting its AI efforts with too many overlapping tools instead of competing with rivals
  • The rename signals the typical Google path to enshittification and eventual product death
  • The rebrand makes sense as NotebookLM's name was awkward and confusing to users
  • The real value lies in interactive, conversational learning experiences rather than one-way podcasts
  • Google is wasting time renaming products while competitors ship new models
7.Immersive Linear Algebra Book with Interactive Figures (2015)(immersivemath.com)
237 points by srean 20 hours ago | 27 comments | permalink
tl;dr: A free online linear algebra textbook that uses interactive figures to teach concepts visually, covering the standard curriculum from vectors and dot products through matrices, determinants, linear mappings, and eigenvalues. Aimed at making linear algebra more intuitive through immersive, browser-based visualizations rather than static diagrams.
HN Discussion:
  • Enthusiastic praise wishing the resource existed during their own studies
  • Appreciation for clean presentation and interactive features with suggestions for enhancement
  • Excitement about broader math education trends including AI tools alongside this book
  • Hope that LLMs will enable more books to be rewritten with such visualizations
  • Criticism that visual/interactive approaches oversimplify and ignore rigorous theorems and proofs
8.Detecting LLM-Generated Texts with “Classical” Machine Learning(blog.lyc8503.net)
205 points by uneven9434 18 hours ago | 148 comments | permalink
tl;dr: A developer trained TF-IDF + LinearSVC classifiers on ~10,000 pre-ChatGPT Chinese texts paired with LLM-regenerated versions from seven models (Gemini, Qwen, GLM, Kimi, Doubao, Deepseek), achieving ~85% per-sentence accuracy using majority voting. The classical ML approach generalized well to unseen models like Claude and GPT-5, with false positive rates under 0.04% on human-written fanfics, while common evasion tactics (translation roundtrips, "de-AI" prompts) only marginally reduced detection. The full model runs client-side in JavaScript via a web demo, suggesting this is likely how commercial AIGC detectors actually work.
HN Discussion:
  • Detecting LLM text is fundamentally futile; text lacks information density for reliable provenance signals
  • Detection is a losing arms race since models will train against these classifiers
  • Alternative approaches like proof-of-work or measuring writing effort would be more meaningful than detection
  • Classical/small-model classifiers work well and could be practically deployed (e.g., browser extensions, on-device apps)
  • Translation nuance concern about the author's phrasing in the English version of the post
9.The human-in-the-loop is tired(pydantic.dev)
240 points by haritha1313 11 hours ago | 129 comments | permalink
tl;dr: Pydantic's author argues that LLM-assisted coding, while genuinely productive, has created a new "supervision fatigue": the satisfying parts of programming (problem-solving, small wins) have been automated away, leaving developers with the exhausting work of reviewing, specifying, and course-correcting mostly-plausible AI output. The result is work that feels simultaneously more productive and less rewarding, more parallelized but lonelier, and addictive in a Skinner-box way. The author compares it to the responsive design transition—craft evolving rather than dying—where taste, architectural judgment, and deep expertise become more valuable, not less, as the human becomes the quality gate for higher output volumes.
HN Discussion:
  • Reframes the article's thesis using reward-function or 'on the hook' language, reinforcing the supervision fatigue idea
  • ~Shares personal workflows that avoid the fatigue by treating LLMs as code generators rather than agents
  • Disagrees that reviewing AI output feels worse—finds it less emotionally taxing than reviewing humans
  • Confirms the Skinner-box/slot-machine addictive quality described in the article
  • ~Argues developer experience with LLMs varies by personality/work-style, so the article's fatigue isn't universal
10.The LLM Critics Are Right. I Use LLMs Anyway(theocharis.dev)
239 points by JeremyTheo 23 hours ago | 246 comments | permalink
tl;dr: The author acknowledges that most criticisms of LLMs (slop, environmental cost, ethics, killing OSS trust, undermining junior engineers) are valid, yet still uses them heavily because they amplify existing thinking rather than replace it. Key patterns that work: forcing the LLM to grill you with questions before acting, using adversarial subagents to tear apart your work, and only using LLMs in domains where you can distinguish good output from slop. The dividing line between "AI slop" and useful output is whether a human put real thought behind it—which is invisible from the outside, making trust everything.
HN Discussion:
  • ~Concern that heavy LLM use will atrophy engineering skills and thinking over time
  • LLMs are dangerously anthropomorphized and not comparable to past tools like calculators
  • LLMs genuinely make work faster and higher quality, confirming the author's experience
  • LLMs should be embraced as accelerators of learning and human progress
  • The article's specific claims (geopolitics, junior engineers, uniform critic views) are inaccurate or oversimplified
11.Ente – Opening Our Books(ente.com)
261 points by Sherex 1 day ago | 100 comments | permalink
tl;dr: Ente, the end-to-end encrypted photo storage service, has publicly opened its business metrics dashboard, showing real-time revenue, paying customer count, and registered account totals. The move aligns with the company's transparency-focused ethos, letting users and observers track the company's growth and financial health directly.
HN Discussion:
  • Revenue and account numbers alone don't reflect true business health without profit and expense data
  • Praise for Ente as a privacy-friendly, well-designed service worth supporting
  • ~Other companies like Buffer already do transparency more comprehensively including expenses and salaries
  • ~The transparency principle is admirable but execution flaws like truncated graphs undermine it
  • Questioning the motivation behind publishing these metrics
12.Sony deletes more movies from the accounts of people who ‘bought’ them(techdirt.com)
653 points by nekusar 23 hours ago | 402 comments | permalink
tl;dr: Sony is again deleting purchased content from PlayStation Store users' libraries, this time removing 551 StudioCanal movies and TV shows on September 1 with no refunds—following similar mass deletions in 2022 (Germany/Austria) and 2023 (Discovery content). The article argues that Sony deliberately obscures the fact that "purchases" are actually revocable licenses, and that without regulatory action or consumer backlash, these deletions will keep happening.
HN Discussion:
  • Revoked licenses should be accompanied by full refunds at purchase price
  • True digital ownership means users should receive actual files, not perpetual service
  • Laws should ban deceptive 'Buy' buttons that actually grant revocable licenses
  • Consumers should abandon digital purchases for physical media and piracy
  • Sony's push to digital-only while revoking purchases reveals an anti-ownership future
13.The lost joy of music piracy(pigeonsandplanes.com)
795 points by mcgin 1 day ago | 557 comments | permalink
tl;dr: Summary not available.
HN Discussion:
  • Nostalgia for the cultural buy-in, friend networks, and shared discovery of the piracy era
  • ~Music piracy is still alive and necessary since streaming lacks full archives
  • Private trackers remain vital for preserving obscure music and culture
  • The iPod era's synergy with piracy was uniquely magical
  • Skepticism that the past was actually better versus just nostalgia for youth
14.OnePlus halts operations in USA and Europe(community.oneplus.com)
571 points by pilililo2 1 day ago | 351 comments | permalink
tl;dr: Summary not available
HN Discussion:
  • Nostalgia for early OnePlus as a hacker-friendly brand that lost its way
  • Headline is misleading editorializing; it's only new product launches halting, not operations
  • ~OnePlus was already effectively just rebranded Oppo, so this change isn't significant
  • Insider accounts blame Oppo reintegration and toxic 996 culture for OnePlus's decline
  • Questioning or seeking explanation for why this is happening
15.How Our Rust-to-Zig Rewrite Is Going(rtfeldman.com)
502 points by jorangreef 23 hours ago | 267 comments | permalink
tl;dr: The Roc team rewrote their 300K-line compiler from Rust to Zig over 18 months, hitting feature parity and gaining benefits like hot code loading, zero-parse deserialization, and eventually ~35ms incremental builds (vs Rust's 3.4s). Memory safety concerns proved overblown: only 2 use-after-free bugs occurred in the Zig compiler itself, both minor. Key reasons for choosing Zig included better memory allocator control, faster builds, and access to Zig's LLVM bitcode serializer, though they miss Rust's borrow checker, private fields, and backwards-compatibility guarantees.
HN Discussion:
  • Challenges the article's claim that compilers inherently require memory-unsafe operations for emitting machine code
  • Disputes the article's assertion that Zig's ReleaseSafe catches use-after-free errors
  • Questions the rigor of the language selection process and the assumption that a low-level systems language was necessary
  • ~Agrees that Zig's fast incremental builds are compelling, though expects Rust to catch up eventually
  • Prefers Rust due to its post-1.0 stability and library ecosystem over Zig's build speed advantages
16.Teardown: A Generic 7-Port USB 3.0 Hub That Wasn't(goughlui.com)
216 points by speckx 4 days ago | 100 comments | permalink
tl;dr: A cheap AliExpress "7-port USB 3.0 hub" turned out to be a fake: only one port has actual USB 3.0 pins (wired straight through as a pass-through), while the other six are USB 2.0 sharing bandwidth via two cascaded HS8836A single-TT hub chips. The teardown also revealed skipped shell soldering, missing bypass capacitors, no per-port power protection, and a barrel jack wired to backfeed the host — making it both flimsy and potentially dangerous to connected devices.
HN Discussion:
  • ~Paying more doesn't guarantee better quality since brands and middlemen also push subpar products
  • Cascaded STT hub design is widespread even in name-brand products, confirming the article's findings
  • Bad reference designs proliferate across identical-looking devices, making avoidance difficult
  • Personal confirmation of owning this exact hub and experiencing the described issues
  • USB 3.0 hubs generally underperform and fake 3.0 port listings are common on marketplaces
17.If you want to create a button from scratch, you must first create the universe(madcampos.dev)
237 points by treve 1 day ago | 124 comments | permalink
tl;dr: Summary not available
HN Discussion:
  • Reinventing native OS/HTML widgets wastes effort and produces worse accessibility outcomes
  • Native elements are insufficient for complex UI needs, forcing reimplementation
  • ~The article's example code has event-handling bugs, which ironically reinforces its point
  • Accessibility standards and lawsuits can drive worse outcomes than using standard HTML
  • Browser vendors (Apple/WebKit) blocking custom element extension exacerbates the problem
18.Inkling: Our Open-Weights Model(thinkingmachines.ai)
1194 points by vimarsh6739 1 day ago | 283 comments | permalink
tl;dr: Inkling is a new open-weights Mixture-of-Experts model (975B total, 41B active) with a 1M-token context, native multimodality (text, image, audio), and controllable thinking effort, pretrained on 45T tokens. It's positioned not as a frontier leader but as a strong, balanced base for fine-tuning, benchmarking competitively against open-weights peers like Kimi K2.6 and GLM 5.2, and is available today on Tinker and Hugging Face. A smaller 276B/12B-active variant, Inkling-Small, is previewed with comparable performance on many benchmarks.
HN Discussion:
  • Excitement about the multimodal and audio capabilities in an open-weights model
  • Appreciation for an American open-weights alternative to Chinese models like DeepSeek
  • The open base model plus Tinker fine-tuning is a strong business strategy
  • Real-world testing suggests the model outperforms what benchmarks indicate
  • ~Model has uneven strengths, notably weaker at coding but good at instruction following
19.I also filed the corners off my MacBook(brt.fyi)
297 points by maxbrt 2 days ago | 220 comments | permalink
tl;dr: The author filed down the sharp edges of their M4 MacBook Air because the corners dug uncomfortably into their wrists when using it on their lap. They used a metal file and progressive sandpaper (up to 1200 grit) with tape as guides, applying soapy water to contain dust, and treated the trackpad/keyboard areas with tape to prevent debris intrusion. They frame it as a reminder that laptops are tools and worth modifying for better ergonomics.
HN Discussion:
  • Shares frustration with sharp MacBook edges and validates the ergonomic complaint
  • Took alternative approach by 3D-printing edge covers instead of filing
  • Was inspired to try it themselves and confirmed it improved their experience
  • Doesn't experience the issue and suggests sharp edges enforce better typing posture
  • ~Bemused that others are bothered by something they never noticed
20.Collection of Digital Clock Designs(clocks.dev)
287 points by levmiseri 1 day ago | 50 comments | permalink
tl;dr: Summary not available
HN Discussion:
  • Enthusiastic appreciation with sharing of own related clock/watchface projects
  • Highlighting favorite designs from the collection that work particularly well
  • Pointing out bugs or inaccuracies in specific clock implementations
  • Reporting technical issues with the site itself (scrolling broken)
  • Adding historical/artistic context by referencing related prior works