Cihangir Bozdogan — Daily Tech & AI News
Daily · tech & AI
Hand-picked from Hacker News, Reddit, GitHub Trending and engineering blogs.
Hacker News · 14
After 18 months of stealth, Thinking Machines Lab released Inkling, a 975B-parameter Mixture-of-Experts model with 41B active parameters, pretrained on 45 trillion tokens of text, image, audio and video. It reasons natively over text, images and audio, supports up to 1M-token context, and exposes a controllable "thinking effort" dial, with weights on Hugging Face plus a smaller Inkling-Small preview. It became the #1 US open-weight model on release. The launch is explicitly framed as a Western answer to strong Chinese open models like GLM and DeepSeek.
read source →What people are saying
HN noted it's the largest open model to support audio and a rare US entry people can root for. "America needs its own DeepSeek or Z.ai — Thinking Machines might be it." Discussion: https://news.ycombinator.com/item?id=48924912PrismML released Bonsai 27B as 1-bit (3.9GB) and ternary (5.9GB) compressions of Qwen3.6-27B, retaining about 94.6% of FP16 quality in the ternary build. It hits 134 tok/s on an RTX 5090 and 58 tok/s on an M5 Max while keeping multi-step reasoning, tool calling and multimodal understanding on-device. Everything ships under Apache 2.0 on llama.cpp and MLX. Reports say Apple is in talks with PrismML about the compression tech.
read source →What people are saying
Commenters wanted head-to-heads against Gemma 4 12B's 4-bit QAT build and pressed on how ternary quantization keeps so much capability. Discussion: https://news.ycombinator.com/item?id=48910545xAI published grok-build, the Rust CLI powering Grok 4.5's agentic coding, as an Apache-2.0, roughly one-million-line workspace including the agent loop, code tools, terminal UI and extension system. The release followed backlash over the CLI uploading entire directories to xAI cloud buckets; xAI says it deleted the data and disabled retention. External contributions are rejected and issues disabled, so it's readable rather than collaborative. Developers are already building on top and poking at oddities in the code.
read source →What people are saying
"The trailing players' strategy (Meta, xAI) is to open source the moat of the leaders — we all benefit." Others flagged the disabled-contributions stance as source-available, not open community. Discussion: https://news.ycombinator.com/item?id=48926590Mindgard disclosed a Cursor vulnerability it first reported in December 2025, going full-disclosure after more than six months and 197+ new versions shipped without a fix. The deeper issue: Cursor doesn't treat cloning a repo and executing its code as separate security boundaries, and it ships with Workspace Trust disabled by default. That means opening a malicious repository can lead to code execution. The post reignited debate about responsible disclosure timelines for AI-native dev tools.
read source →What people are saying
One maintainer-side view: the flood of LLM-generated vuln reports is overwhelming and often misjudges product scope — making real reports harder to triage. Discussion: https://news.ycombinator.com/item?id=48910676Alex Edwards lays out a pragmatic Go + HTMX setup for building interactive web apps without a heavy JavaScript framework. The approach leans on server-side rendering with small HTML-over-the-wire updates, and pairs well with type-safe templating libraries like templ. It's part of a continuing backend-dev backlash against SPA complexity for CRUD-shaped apps. The post is concrete about project structure, handlers, and where HTMX does and doesn't fit.
read source →What people are saying
Fans described a "GUS stack" (Go + templ + HTMX); skeptics noted team adoption is hard when colleagues dismiss HTMX as not a "serious" technology. Discussion: https://news.ycombinator.com/item?id=48912175This post collects long-standing SQLite pet peeves — loose typing, quirky defaults — and proposes borrowing Rust's "editions" model: opt-in sets of alternative defaults that don't break existing databases. The idea is to let new projects choose stricter, more modern behavior without fragmenting the format everyone relies on. It sparked a lively design debate about whether editions would improve ergonomics or just splinter tooling. SQLite's role as a portable data container complicates the analogy.
read source →What people are saying
Supporters liked pairing concrete gripes with a backwards-compatible fix; critics warned editions fragment ecosystems and bloat maintenance, citing similar tensions in other languages. Discussion: https://news.ycombinator.com/item?id=48928135Clawk gives coding agents a disposable Linux VM to work in, isolating file access and command execution from your host system. It targets the growing risk of handing autonomous agents real shell access, offering a lighter path than hand-rolling QEMU/KVM. The launch fits a wave of agent-sandboxing tools arriving as people wire agents into their dev environments. It joins alternatives ranging from bubblewrap wrappers to Podman-based setups.
read source →What people are saying
Commenters compared approaches — full KVM isolation for the paranoid, bubblewrap or Podman for lighter weight — reflecting an unsettled best practice for agent sandboxing. Discussion: https://news.ycombinator.com/item?id=48892859Tailscale disclosed TS-2026-009, a vulnerability in its SSH feature where insecure argument handling could permit root access. The bug is a classic argument-injection class issue, and Tailscale published a security bulletin with remediation. It's a notable reminder that convenience layers over SSH add attack surface. Many users trust Tailscale heavily for connectivity but hadn't enabled its SSH feature.
read source →What people are saying
"Such a venerable and ancient class of bugs, going back to AIX 3." Several heavy users said they stick to OpenSSH for its longer security track record. Discussion: https://news.ycombinator.com/item?id=48915004GitHub changed Dependabot so version-update PRs only open after a new release has been on its registry for at least three days, on by default and requiring no configuration. The cooldown is a supply-chain safeguard against compromised or immediately-yanked releases, a recurring npm and PyPI failure mode. It nudges the ecosystem away from instantly pulling the newest version. Reactions split on whether a delay meaningfully reduces risk or just shifts who gets burned.
read source →What people are saying
Some argued cooldowns just move the blast radius to whoever updates first; others griped that Dependabot already makes security teams dogmatically churn dependencies. Discussion: https://news.ycombinator.com/item?id=48913050OpenAI, with hardware maker Work Louder, launched Codex Micro — a physical macropad-style control deck with tactile keys for triggering and steering Codex coding agents. At $230 it reads as a niche enthusiast object, and observers noted the device even bears an old OpenAI cloud logo. It follows OpenAI folding the standalone Codex app into a broader product surface. The launch amused HN as much as it intrigued it.
read source →What people are saying
Commenters compared it unfavorably to a Stream Deck on price and questioned why an automation company is selling physical buttons at all. Discussion: https://news.ycombinator.com/item?id=48923079The Puter team compiled Firefox to WebAssembly, producing a browser engine that runs inside another browser tab. It's an experiment pushing the limits of what WASM can host, and the author says debugging and JIT research cost over $25K in model tokens. You can even run firefox-wasm inside firefox-wasm, though it gets unstable a few layers deep. It joins a lineage of ambitious "X in the browser" ports.
read source →What people are saying
Reactions mixed admiration for the feat with amusement at the recursive nesting and the token cost of the debugging effort. Discussion: https://news.ycombinator.com/item?id=48926939Telegram introduced a serverless offering for bots, providing execution and storage so developers can run bot logic without hosting their own backend. It lowers the barrier to shipping bots and, as commenters noted, pairs naturally with model APIs to build personal LLM assistants with custom rules and memory. Questions remain about quotas, execution-time limits, and storage. It extends Telegram's already-generous bot platform further toward a full app runtime.
read source →What people are saying
"Wire this up to OpenRouter and you have your own LLM chat with your rules, storage, and memory." Others asked about execution and storage quotas. Discussion: https://news.ycombinator.com/item?id=48918534This piece argues for agent harnesses flexible enough to tackle open-ended tasks, sketching a direction rather than a finished system. It landed in the middle of an active debate about how much of an agent should be deterministic scaffolding versus model-driven improvisation. Several practitioners pushed back that vague flexibility doesn't beat a tight, code-heavy scaffold. The thread is a useful snapshot of unsettled agent-architecture opinion.
read source →What people are saying
One commenter spent six months building a harness, then went back to plain Codex CLI — a recurring "the fancy harness didn't stick" sentiment. Discussion: https://news.ycombinator.com/item?id=48921077This position paper makes the case that governments, companies and nonprofits should fund free, open-source AI as a public good and strategic hedge against closed-model concentration. It frames open models as infrastructure worth sustaining rather than leaving to market incentives alone. The argument dovetails with Nathan Lambert's "6 months to live for open models" worry about open AI's viability. Critics counter that frontier model-building is more a scientific research program than a FOSS engineering effort.
read source →What people are saying
One idea gaining traction in comments: recurring inducement prizes (à la Kremer) — e.g. $200K every 6–12 months to the first team hitting an open-model target. Discussion: https://news.ycombinator.com/item?id=48927095
Reddit · 12
A community-maintained thread ranking the best locally-runnable vision-language models as of July 2026, weighing quality against VRAM and speed. It's a useful practitioner snapshot as multimodal document and image models proliferate, from Qwen3.6 VL builds to Baidu's OCR model. The discussion trades real hardware notes rather than benchmark marketing.
read source →What people are saying
Discussion: https://www.reddit.com/r/LocalLLaMA/comments/1uoalfq/best_local_vlms_july_2026/Linus Torvalds weighed in against the pile-ons directed at developers who use LLMs, a live tension in kernel and open-source circles. His comments — echoed in a separate lobste.rs thread on LLM usage in kernel development — land as maintainers wrestle with AI-generated contributions and etiquette. It's a notable signal from a figure whose opinion carries weight on contribution norms.
read source →What people are saying
Discussion: https://www.reddit.com/r/LocalLLaMA/comments/1uxbrw4/linus_torvalds_tells_people_to_stop_attacking/Google pushed updates to Gemma 4's chat templates, addressing bugs that had degraded tool-calling and structured output in agentic setups. For a model widely used on laptops and even ancient hardware, template correctness materially affects real-world reliability. The fix matters to the large community running Gemma locally for agent workflows.
read source →What people are saying
Discussion: https://www.reddit.com/r/LocalLLaMA/comments/1uxfu4k/google_is_updating_gemma_4s_chat_templates/Days after Tencent released Hy3 (Hunyuan 3), r/LocalLLaMA already had an aggressive 1-bit quantization weighing roughly 89–93GB, putting a very large open model within reach of high-end local rigs. It shows how fast the quantization community moves on fresh releases. Extreme low-bit builds are becoming the default way enthusiasts run frontier-scale open models at home.
read source →What people are saying
Discussion: https://www.reddit.com/r/LocalLLaMA/comments/1uxm2d8/hy3_1bit_8993_gb/This post captures the local-AI ethos: a smaller model you can run reliably on your own hardware often beats a bigger one you can only rent. It resonated amid a week of releases spanning phone-sized Bonsai to 975B Inkling. The thread weighs latency, privacy, cost and availability against raw benchmark scores.
read source →What people are saying
Discussion: https://www.reddit.com/r/LocalLLaMA/comments/1ux9xze/the_best_model_is_the_one_you_can_actually_run/Researchers shared and debated a paper attempting to disentangle the internal representations of a convolutional network, part of the growing mechanistic-interpretability push. The thread digs into method and whether the results generalize. Interpretability remains one of the more scientifically grounded corners of ML research.
read source →What people are saying
Discussion: https://www.reddit.com/r/MachineLearning/comments/1uwya70/mechanistic_interpretability_a_first_paper_on/An engineer reported a PyTorch model running 170x slower on a T4 than an A100 — far beyond the expected hardware gap — and the community dug into likely culprits: precision/dtype fallbacks, missing kernels, memory pressure, and op support. It's a practical reminder that GPU performance cliffs are often software, not just silicon. The thread is a useful checklist for anyone profiling inference.
read source →What people are saying
Discussion: https://www.reddit.com/r/MachineLearning/comments/1ux6a9x/pytorch_model_running_170x_slower_on_t4_vs_a100/This post aggregates the major robotics and vision-language-action (VLA) papers into a single ranked, benchmarked reference — a helpful map of a fast-moving field. VLA models are a hot research frontier as embodied AI matures. The thread debates evaluation methodology and which results actually hold up.
read source →What people are saying
Discussion: https://www.reddit.com/r/MachineLearning/comments/1uxa7ak/all_major_robotics_and_vla_papers_ranked_and/A team shared how and why they compiled their TypeScript parser to WebAssembly, covering portability across runtimes and the performance characteristics they got. It's a concrete data point in the ongoing move of dev tooling toward WASM for consistent cross-environment behavior. The thread discusses tradeoffs versus native and pure-JS parsers.
read source →What people are saying
Discussion: https://www.reddit.com/r/programming/comments/1ux5sj1/we_compiled_our_typescript_parser_to_wasm/This engineering post details rebuilding a notification platform to reliably fan out millions of messages, covering queuing, batching, and delivery guarantees. It's the kind of practical distributed-systems write-up r/programming rewards, with real tradeoffs around throughput and consistency. Useful reference material for anyone scaling a fan-out workload.
read source →What people are saying
Discussion: https://www.reddit.com/r/programming/comments/1uwj90b/how_we_rebuilt_our_notification_platform_to/This post shows how to build end-to-end encrypted secret sharing using the browser-native Web Crypto API, keeping plaintext off the server. It's a clean example of doing real cryptography client-side without extra dependencies. The discussion covers key handling, threat model, and pitfalls of browser crypto.
read source →What people are saying
Discussion: https://www.reddit.com/r/programming/comments/1uwxnox/endtoend_encrypted_secret_sharing_with_the_web/An r/artificial thread discusses Anthropic research testing frontier AI agents in simulated deployment environments and documenting problematic behaviors that emerge under autonomy. It feeds the broader safety conversation as agents gain real tool access and independence. The findings are cited alongside this week's agent-sandboxing and command-guard tools.
read source →What people are saying
Discussion: https://www.reddit.com/r/artificial/comments/1uxihfy/anthropic_tested_frontier_ai_agents_in_simulated/
GitHub Trending · 12
OpenCut is an open-source video editor pitched as a free alternative to CapCut, and it led GitHub's daily trending with 1,664 stars in a day. Its appeal is doing capable timeline editing without cloud lock-in or watermarks. It rides ongoing interest in open, local-first creative tooling.
read source →What people are saying
+1,664 stars today · TypeScript Discussion: https://github.com/OpenCut-app/OpenCutmattpocock/skills publishes the Agent Skills that educator Matt Pocock actually uses, straight from his .claude directory, and added 2,130 stars in a day. It's practical rather than illustrative, which is why engineers keep cloning it as a base. It sits alongside Anthropic's official skills repo in defining the emerging skill format.
read source →What people are saying
+2,130 stars today · Shell Discussion: https://github.com/mattpocock/skillshallmark, from Vercel's Hassan El Mghari, is an Agent Skill that encodes design taste to stop coding agents defaulting to "AI slop" aesthetics, and it gained 1,277 stars in a day. It pushes agents toward intentional typography, spacing and layout. Part of a wave making design quality a first-class agent concern.
read source →What people are saying
+1,277 stars today · CSS Discussion: https://github.com/Nutlope/hallmarkspec-kit formalizes Spec → Plan → Tasks → Implement and works with 30+ AI coding agents, staying on Python daily trending (+487 stars). At 111k+ stars it's one of 2026's fastest-growing dev tools. The pitch: a durable written spec makes agents reliable enough for serious codebases.
read source →What people are saying
+487 stars today · Python Discussion: https://github.com/github/spec-kitOpen Interpreter returned to trending after being rewritten in Rust and repositioned as "a coding agent for low-cost models," adding 299 stars in a day. The rewrite targets speed and a small footprint so it pairs with self-hosted or cheap models. It fits the week's local-model momentum.
read source →What people are saying
+299 stars today · Rust Discussion: https://github.com/openinterpreter/openinterpreterscreenpipe (YC S26) continuously records screen and audio locally to build searchable context agents can query, and it trended with 222 stars in a day. Written in Rust and privacy-preserving by default, it rides the surge of interest in "context engineering." Use cases span meeting recall to giving coding agents awareness of recent activity.
read source →What people are saying
+222 stars today · Rust Discussion: https://github.com/screenpipe/screenpipedcg sits between an agent and your shell to block destructive commands like rm -rf and force pushes, and it trended with 471 stars in a day. It's a lightweight gate rather than a full sandbox, complementing disposable-VM approaches. It reflects a maturing conversation about agent safety on real machines.
read source →What people are saying
+471 stars today · Rust Discussion: https://github.com/Dicklesworthstone/destructive_command_guardDesktop Commander is an MCP server that hands Claude and other MCP clients real terminal access — running commands and editing files on your machine — and it added 2,055 stars this week. It's part of MCP consolidating into the standard way to wire agents into systems. For many it's the bridge between an LLM and their dev environment.
read source →What people are saying
+2,055 stars this week · TypeScript Discussion: https://github.com/wonderwhy-er/DesktopCommanderMCPOrca, from YC-backed Stably, orchestrates many coding agents in parallel — each in its own git worktree — against your own subscriptions, and it gained nearly 5,800 stars this week. It adds mobile monitoring and a Design Mode that pipes UI elements into prompts. Parallel-agent workflows are clearly going mainstream.
read source →What people are saying
+5,777 stars this week · TypeScript Discussion: https://github.com/stablyai/orcaOfficeCLI bills itself as the first Office suite built for the terminal and AI-driven workflows, and it added 6,374 stars this week. It targets scripting and agent-driven document generation without a GUI. An unusual entry reflecting demand for automatable, headless productivity tooling.
read source →What people are saying
+6,374 stars this week · C# Discussion: https://github.com/iOfficeAI/OfficeCLInanobot is a deliberately lightweight AI agent that connects to tools and chats without heavy framework overhead, and it trended with 108 stars in a day. It targets builders who want a small, readable scaffold over a sprawling platform. The HKUDS group has shipped several trending AI-systems projects this year.
read source →What people are saying
+108 stars today · Python Discussion: https://github.com/HKUDS/nanobotLance is an open lakehouse format for multimodal AI — convert from Parquet in two lines for 100x faster random access, vector indexing, versioning, and hybrid search. It integrates with Pandas, DuckDB, Polars, PyArrow and PyTorch. 2026 has been a breakout year as teams standardize AI training and retrieval data on it.
read source →What people are saying
Rust · Open Lakehouse Format for Multimodal AI Discussion: https://github.com/lance-format/lance