Urgent.News

the world's headlines, one feed

Editions

Tech

City That Arrested Person for Clapping at Data Center Meeting Moves to Virtual Meetings for 'Public Safety'

A small town in Kansas took its city meetings virtual and ended public comment after city leaders received a wave of death threats.

City That Arrested Person for Clapping at Data Center Meeting Moves to Virtual Meetings for 'Public Safety'

Emporia, Kansas, a small town, recently suspended its public comment period at city council meetings due to concerns about public safety. This decision comes after an individual named Lux Claridge was arrested for clapping during a meeting concerning a proposed data center called the Flint Hills Digital Campus. The city announced on social media that its upcoming meetings on August 5 and 19, 2026, would be held virtually, with no public comment period.

The police chief cited death threats received by city officials as the reason for the virtual meetings. Claridge, who attended a protest following the arrest, expressed mixed feelings about the virtual meetings, stating that while they made sense, the decision to close public comment was more concerning. The decision to send the petition to a judge for review has also been met with mixed reactions, with some citizens upset about the lack of a public comment period.

The city's mayor and commissioners have not yet published the agenda for the next virtual meeting scheduled for August 19.

Written by urgent.news from 404 Media's reporting — not their text. Machine-written — it may contain errors, so check the original before relying on it.

Read the original at 404media.co →

More in Tech

What I Learned Building a Production LMS with Node.js, MongoDB & AWS in 2026

Building an LMS looks simple at the beginning. You need users, classes, payments, attendance, recordings, homework, notifications, and reports. Then you move into production.

  • Building a production LMS with Node.js, MongoDB, and AWS proved more complex than anticipated.
  • Proper system design matters more than technology choice.
  • Avoid treating schema design in MongoDB as optional; use dedicated collections for data growth.

How ReactJS Can Improve User Experience and Boost Your Bottom Line?

Most content about ReactJS and business value follows the same template: virtual DOM makes it fast, components make it reusable, fast and reusable means good for business.

  • ReactJS improves user experience with virtual DOM updating only changed components.
  • Component reusability speeds development, reduces bugs, and enhances codebase stability.
  • React Native enables cross-platform app development, lowering maintenance costs.

Three checks in our codebase that could not fail

Last night I found three checks in our own codebase that could not fail. Not checks that were failing to catch things. Checks that were structurally incapable of ever going red, while reporting green…

  • Three code checks in the system are structurally incapable of failing
  • First check uses verifier with line-for-line copy of the rule it enforces
  • Second check asserts its own arithmetic, reporting PASS with mismatched assertions

Head-of-Line Blocking in HTTP

An asynchronous HTTP/1.1 server can handle many connections concurrently while still serializing work within each connection.

  • Head-of-line blocking delays fast HTTP requests in slow connections
  • HTTP/2 solves this at application layer with independent streams
  • HTTP/3 uses QUIC transport-level streams to avoid blocking

ATProto for Distributed Systems Engineers: How Bluesky's Protocol Reimagines Social Infrastructure

Bluesky's AT Protocol is often dismissed as "just another Twitter alternative." But if you read the new technical deep dive aimed at distributed systems engineers, you'll find something much more…

  • ATProto reimagines social platforms from the ground up, challenging conventional web architecture.
  • Uses a federated model with user-controlled data stores and cryptographically signed repositories.
  • Separates app view from personal data store, allowing multiple app types to run on the same data.