IDF killed Gaza aid workers at point blank range in 2025 massacre: Report
Report [pdf]: https://content.forensic-architecture.org/wp-content/uploads...
I'm helping my dog vibe code games
The article explores the creation of a simple dog-walking game, detailing the development process, design choices, and the lessons learned along the way. It provides insights into the technical aspects of game development, emphasizing the importance of iterative design and user feedback.
Discord cuts ties with identity verification software, Persona
The article discusses a breach at Persona, a Discord-backed identity verification startup co-founded by Peter Thiel. The breach exposed user data and raised concerns about the security practices of the company.
I pitched a roller coaster to Disneyland at age 10 in 1978
The article explores the concept of tackling large tasks one step at a time, using the construction of the Hoover Dam as an example. It highlights the benefits of breaking down complex projects into manageable pieces and the importance of consistent, incremental progress to achieve ambitious goals.
Open Letter to Google on Mandatory Developer Registration for App Distribution
This open letter from the 'Keep Android Open' initiative urges Google to maintain the openness and freedom of the Android ecosystem, advocating for continued support for third-party app stores and user freedom to choose their own software and services on Android devices.
Goodbye InnerHTML, Hello SetHTML: Stronger XSS Protection in Firefox 148
The article discusses the introduction of the 'setHTML' method in Firefox 148, which provides stronger cross-site scripting (XSS) protection compared to the traditional 'innerHTML' approach. This change aims to improve the security of web applications by limiting the potential for XSS vulnerabilities.
Mac mini will be made at a new facility in Houston
Apple announces it will accelerate U.S. manufacturing by producing Mac mini computers in the country. This move aligns with the company's commitment to increasing its investment and innovation in the United States.
Osaka: Kansai Airport proud to have never lost single piece of luggage (2024)
The article discusses Japan's plans to promote the use of electric vehicles (EVs) and hydrogen-powered vehicles as part of its efforts to achieve carbon neutrality by 2050. The government aims to increase the number of EVs and fuel cell vehicles on the road and provide more charging and hydrogen fueling infrastructure to support this transition.
Nearby Glasses
The article describes the development of a mobile application called YJ Nearby Glasses, which helps users find nearby eyeglasses stores and compare prices. The app leverages location data and price information to provide users with a convenient way to shop for glasses in their local area.
Looks like it is happening
The article discusses the recent Breakthrough Prize in Fundamental Physics awarded to four theoretical physicists for their work on black holes and gravitational waves. It highlights the significance of their contributions to our understanding of these important phenomena in cosmology and astrophysics.
Hugging Face Skills
The article introduces the Hugging Face Skills project, which aims to facilitate the development and deployment of machine learning models for a wide range of tasks, including natural language processing, computer vision, and reinforcement learning. The project provides a unified interface and tooling to make it easier for developers to work with different AI models and deploy them in production environments.
Show HN: Emdash – Open-source agentic development environment
Hey HN! We’re Arne and Raban, the founders of Emdash (https://github.com/generalaction/emdash).
Emdash is an open-source and provider-agnostic desktop app that lets you run multiple coding agents in parallel, each isolated in its own git worktree, either locally or over SSH on a remote machine. We call it an Agentic Development Environment (ADE).
You can see a 1 minute demo here: https://youtu.be/X31nK-zlzKo
We are building Emdash for ourselves. While working on a cap-table management application (think Stripe Atlas + Pulley), we found our development workflow to be messy: lots of terminals, lots of branches, and too much time spent waiting on Codex.
Emdash puts the terminal at the center and makes it easy to run multiple agents at once. Each agent runs as a task in its own git worktree. You can start one or a few agents on the same problem, test, and review.
Emdash works over SSH so you can run agents where your code lives and keep the parallel workflow. You can assign tickets to agents, edit files manually, and review changes.
We also spent time making task startup fast. Each task can be created in a worktree, and creating worktrees on demand was taking 5s+ in some cases. We now keep a small reserve of worktrees in the background and let a new task claim one instantly. That brought task start time down to ~500–1000ms depending on the provider. We also spawn the shell directly and avoid loading the shell environments on startup.
We believe using the providers’ native CLIs is the right approach. It gives you the full capabilities of each agent, always. If a provider starts supporting plan mode, we don't have to add that first.
We support 21 coding agent CLIs today, including Claude Code, Codex, Gemini, Droid, Amp, Codebuff, and more. We auto-detect what you have installed and we’re provider-agnostic by design. If there’s a provider you want that we don’t support yet, we can add it. We believe that in the future, some agents will be better suited for task X and others for task Y. Codex, Claude Code, and Gemini all have fans. We want to be agnostic and enable individuals and teams to freely switch between them.
Beyond orchestration, we try to pull most of the development loop into Emdash. You can review diffs, commit, open PRs, see CI/CD checks, and merge directly from Emdash once checks pass. When starting a task, you can pass issues from Linear, GitHub, and Jira to an agent. We also support convenience variables and lifecycle scripts so it’s easy to allocate ports and test changes.
Emdash is fully open-source and MIT-licensed.
Download for macOS, Linux or Windows (as of yesterday !), or install via Homebrew: brew install --cask emdash.
We’d love your feedback. How does your coding agent development setup look like, especially when working with multiple agents? We would want to learn more about it. Check out our repository here: https://github.com/generalaction/emdash
We’ll be around in the comments — thanks!
Pi – a minimal terminal coding harness
Pi is a decentralized digital currency and financial platform that allows users to earn Pi by completing simple tasks on their smartphones. The project aims to create a sustainable cryptocurrency ecosystem that is accessible to everyone.
I think WebRTC is better than SSH-ing for connecting to Mac terminal from iPhone
Macky.dev is a personal website and blog run by Macky, a software engineer. The site covers a variety of topics related to software development, including programming languages, tools, and best practices.
Show HN: Moonshine Open-Weights STT models – higher accuracy than WhisperLargev3
I wanted to share our new speech to text model, and the library to use them effectively. We're a small startup (six people, sub-$100k monthly GPU budget) so I'm proud of the work the team has done to create streaming STT models with lower word-error rates than OpenAI's largest Whisper model. Admittedly Large v3 is a couple of years old, but we're near the top the HF OpenASR leaderboard, even up against Nvidia's Parakeet family. Anyway, I'd love to get feedback on the models and software, and hear about what people might build with it.
Show HN: SNKV – SQLite's B-tree as a key-value store (C/C++ and Python bindings)
SQLite has six layers: SQL parser → query planner → VDBE → B-tree → pager → OS. (https://sqlite.org/arch.html) For key-value workloads you only need the bottom three.
SNKV cuts the top three layers and talks directly to SQLite's B-tree engine. No SQL strings. No query planner. No VM. Just put/get/delete on the same storage core that powers SQLite.
Python:
pip install snkv
from snkv import KVStore
with KVStore("mydb.db") as db:
db["hello"] = "world"
print(db["hello"]) # b"world"
C/C++ (single-header, drop-in): #define SNKV_IMPLEMENTATION
#include "snkv.h"
KVStore *db;
kvstore_open("mydb.db", &db, KVSTORE_JOURNAL_WAL);
kvstore_put(db, "key", 3, "value", 5);
Benchmarks vs SQLite WITHOUT ROWID (1M records, identical settings): Sequential writes +57%
Random reads +68%
Sequential scan +90%
Random updates +72%
Random deletes +104%
Exists checks +75%
Mixed workload +84%
Bulk insert +10%
Honest tradeoffs:
- LMDB beats it on raw reads (memory-mapped)
- RocksDB beats it on write-heavy workloads (LSM-tree)
- sqlite3 CLI won't open the database (schema layer is bypassed by design)What you get: ACID, WAL concurrency, column families, crash safety — with less overhead for read-heavy KV workloads.
We Are Changing Our Developer Productivity Experiment Design
This article provides an update on the Uplift project, which aims to improve the quality of life for low-income communities. It discusses the progress made in various initiatives, including affordable housing, job training, and community engagement programs.
Show HN: Ghist – Task management that lives in your repo
The article discusses the creation of a website that allows users to explore the history of GitHub, including its founding, growth, and key milestones. The website provides a comprehensive timeline and interactive features to help users understand the evolution of this influential software development platform.
Software 3.1? – AI Functions
The article discusses the current state of AI and explores the potential of AI functions, highlighting their ability to automate various software development tasks and streamline the software development process.
Pixi GUI: modern alternative to Anaconda Navigator
Pixi.GUI is a new open-source UI library for the Pixi.js framework, providing developers with a simple and flexible way to create user interfaces for their Pixi.js-based web applications and games. The library offers a range of customizable UI components and tools to help streamline the development process.