Best stories

Motorola announces a partnership with GrapheneOS
km 1 day ago

Motorola announces a partnership with GrapheneOS

Motorola Solutions introduced three new B2B solutions at MWC 2026, including a private wireless network, a cloud-based dispatch system, and an edge computing platform for mission-critical applications.

motorolanews.com
2,143 777
Summary
Microsoft bans the word "Microslop" on its Discord, then locks the server
robtherobber about 21 hours ago

Microsoft bans the word "Microslop" on its Discord, then locks the server

Microsoft bans the use of the word 'Microslop' on its Discord server, leading to a backlash from users. The company then locks the server after the incident, highlighting the sensitivity around the use of controversial terms.

windowslatest.com
1,066 475
Summary
Meta’s AI smart glasses and data privacy concerns
sandbach about 9 hours ago

Meta’s AI smart glasses and data privacy concerns

The article explores the privacy concerns raised by Meta's (formerly Facebook) new AI-powered smart glasses, which can potentially monitor workers' activities and conversations without their explicit consent. Employees express concerns about the lack of transparency and the implications for their privacy and autonomy in the workplace.

svd.se
917 526
Summary
Ghostty – Terminal Emulator
oli5679 2 days ago

Ghostty – Terminal Emulator

Ghostty is a lightweight and open-source terminal emulator designed for developers and power users. It offers a range of customization options and features, including support for SSH, SFTP, and various plugins, to enhance productivity and workflow.

ghostty.org
840 353
Summary
British Columbia is permanently adopting daylight time
ireflect about 11 hours ago

British Columbia is permanently adopting daylight time

The Government of British Columbia has announced that the province will be adopting year-round daylight saving time, eliminating the biannual clock changes effective November 2023. This decision aims to provide consistency and reduce the disruption caused by the twice-yearly time shifts.

cbc.ca
689 339
Summary
doener about 22 hours ago

/e/OS is a complete, fully “deGoogled” mobile ecosystem

E OS is an open-source operating system designed to provide a secure and private digital experience. It focuses on user privacy, secure communications, and ethical technology, aiming to empower individuals in an increasingly digital world.

e.foundation
618 365
Summary
I built a demo of what AI chat will look like when it's “free” and ad-supported
nickk81 2 days ago

I built a demo of what AI chat will look like when it's “free” and ad-supported

99helpers.com
583 308
Switch to Claude without starting over
doener 2 days ago

Switch to Claude without starting over

The article discusses the concept of 'import memory' in artificial intelligence, which involves transferring knowledge from one model to another to improve performance. It explores the potential benefits and challenges of this approach, as well as its applications in various domains.

claude.com
583 270
Summary
How to talk to anyone and why you should
Looky1173 about 24 hours ago

How to talk to anyone and why you should

theguardian.com
580 517
Decision trees – the unreasonable power of nested decision rules
mschnell 2 days ago

Decision trees – the unreasonable power of nested decision rules

The article explains the concept of decision trees, a popular machine learning algorithm used for classification and regression tasks. It discusses the basic structure of decision trees, how they work, and their key advantages like interpretability and flexibility in handling different types of data.

mlu-explain.github.io
544 81
Summary
If AI writes code, should the session be part of the commit?
mandel_x 1 day ago

If AI writes code, should the session be part of the commit?

Memento is an open-source personal digital assistant that aims to help users manage their tasks, calendar, and notes through voice commands and a user-friendly interface. It utilizes modern technologies like natural language processing and machine learning to provide a seamless and intelligent experience for users.

github.com
471 378
Summary
aranaur 1 day ago

Everett shuts down Flock camera network after judge rules footage public record

A judge ruled that footage from Everett, Washington's Flock Safety cameras is a public record, leading the city to shut down the systems. The ruling stemmed from a lawsuit filed by the American Civil Liberties Union over the city's use of the surveillance cameras.

wltx.com
461 144
Summary
Jolla phone – a full-stack European alternative
spinningslate about 21 hours ago

Jolla phone – a full-stack European alternative

The article discusses the Jolla Phone, a smartphone released by the Finnish technology company Jolla on September 26th. The Jolla Phone runs on the Sailfish OS, an open-source mobile operating system developed by Jolla, and offers a unique user experience compared to mainstream smartphones.

commerce.jolla.com
447 192
Summary
ejholmes 1 day ago

When does MCP make sense vs CLI?

The article discusses the decline of the traditional Minecraft control panel (MCP) and the rise of the command-line interface (CLI) as the preferred method for managing Minecraft servers. It highlights the advantages of the CLI, such as increased flexibility, automation, and scalability, making it a more powerful and efficient alternative to the MCP.

ejholmes.github.io
429 283
Summary
saikatsg 1 day ago

AI Made Writing Code Easier. It Made Being an Engineer Harder

The article discusses how AI-powered tools have made the process of writing code easier, but may have made the overall task of software engineering more challenging. It explores the potential impacts of AI on the development lifecycle and the evolving role of human engineers in the field.

ivanturkovic.com
394 307
Summary
New iPad Air, powered by M4
Garbage about 17 hours ago

New iPad Air, powered by M4

Apple has introduced the new iPad Air powered by the M4 chip, offering improved performance and efficiency compared to previous models. The device features a sleek design, enhanced display, and expanded connectivity options.

apple.com
366 579
Summary
Anthropic Cowork feature creates 10GB VM bundle on macOS without warning
mystcb about 17 hours ago

Anthropic Cowork feature creates 10GB VM bundle on macOS without warning

github.com
359 182
WebMCP is available for early preview
andsoitis 1 day ago

WebMCP is available for early preview

The article discusses the Web Media Capture and Playback (WebMCP) Encrypted Playback Proposal (EPP), a new web standard that aims to enable secure playback of encrypted media on the web without requiring additional plugins or third-party software. The proposal aims to provide a consistent, cross-browser solution for encrypted media playback that enhances user privacy and security.

developer.chrome.com
355 201
Summary
JeanKage about 22 hours ago

U.S. science agency moves to restrict foreign scientists from its labs

The National Institute of Standards and Technology (NIST) is implementing new restrictions on foreign scientists accessing its labs, citing national security concerns. The new policy aims to limit access to sensitive information and technologies for non-US citizens, though some scientists warn it could hamper international collaboration.

science.org
350 325
Summary
Show HN: I built a sub-500ms latency voice agent from scratch
nicktikhonov about 10 hours ago

Show HN: I built a sub-500ms latency voice agent from scratch

I built a voice agent from scratch that averages ~400ms end-to-end latency (phone stop → first syllable). That’s with full STT → LLM → TTS in the loop, clean barge-ins, and no precomputed responses.

What moved the needle:

Voice is a turn-taking problem, not a transcription problem. VAD alone fails; you need semantic end-of-turn detection.

The system reduces to one loop: speaking vs listening. The two transitions - cancel instantly on barge-in, respond instantly on end-of-turn - define the experience.

STT → LLM → TTS must stream. Sequential pipelines are dead on arrival for natural conversation.

TTFT dominates everything. In voice, the first token is the critical path. Groq’s ~80ms TTFT was the single biggest win.

Geography matters more than prompts. Colocate everything or you lose before you start.

GitHub Repo: https://github.com/NickTikhonov/shuo

Follow whatever I next tinker with: https://x.com/nick_tikhonov

ntik.me
325 97
Summary
gradus_ad 1 day ago

New iron nanomaterial wipes out cancer cells without harming healthy tissue

sciencedaily.com
315 104
Inside the M4 Apple Neural Engine, Part 1: Reverse Engineering
zdw 1 day ago

Inside the M4 Apple Neural Engine, Part 1: Reverse Engineering

The article delves into the architecture and capabilities of the M4 Neural Engine, Apple's dedicated AI processing unit found in its latest mobile devices. It explores the chip's design, performance improvements, and how it enhances on-device machine learning tasks.

maderix.substack.com
313 86
Summary
Microgpt explained interactively
growingswe 2 days ago

Microgpt explained interactively

The article discusses the development of MicroGPT, a smaller and more efficient version of the GPT language model. It explores the potential of MicroGPT to enable faster and more widespread deployment of AI technology, particularly in resource-constrained environments.

growingswe.com
301 48
Summary
Udo_Schmitz about 10 hours ago

Welcome (back) to Macintosh

The article welcomes readers back to the Macintosh platform, highlighting the recent release of macOS Ventura and the continued evolution of Apple's desktop operating system. It discusses the new features and improvements introduced in the latest version of macOS, as well as the ongoing importance of the Macintosh ecosystem for Apple and its users.

take.surf
294 212
Summary
First in-utero stem cell therapy for fetal spina bifida repair is safe: study
gmays about 16 hours ago

First in-utero stem cell therapy for fetal spina bifida repair is safe: study

A study finds that the first-ever in utero stem cell therapy for fetal spina bifida repair is safe, paving the way for potential new treatments for this congenital condition.

health.ucdavis.edu
287 51
Summary
whit537 about 18 hours ago

OpenClaw surpasses React to become the most-starred software project on GitHub

The article discusses the recent surge in popularity of the OpenClaw project, which has surpassed React in terms of total GitHub stars, highlighting its growing adoption and significance in the software development community.

star-history.com
269 308
Summary
Right-sizes LLM models to your system's RAM, CPU, and GPU
bilsbie 1 day ago

Right-sizes LLM models to your system's RAM, CPU, and GPU

The article introduces 'llmfit', an open-source Python library that simplifies the process of fitting large language models (LLMs) to specific tasks. It highlights the library's ability to handle complex model configurations, data preprocessing, and evaluation, making it a valuable tool for researchers and developers working with LLMs.

github.com
269 62
Summary
vismit2000 2 days ago

10-202: Introduction to Modern AI (CMU)

modernaicourse.org
255 60
iPhone 17e
meetpateltech about 17 hours ago

iPhone 17e

https://www.apple.com/iphone-17e/

apple.com
251 345
chromy 2 days ago

Flightradar24 for Ships

atlas.flexport.com
242 51