Urgent.News

the world's headlines, one feed

Editions

Tech

Robot Dogs Suddenly Taking Jobs From Human Security Guards

Human guards are a "big burden" on big business. The post Robot Dogs Suddenly Taking Jobs From Human Security Guards appeared first on Futurism .

Robot Dogs Suddenly Taking Jobs From Human Security Guards

The security industry is increasingly turning to robot dogs equipped with AI-integrated cameras, causing concern among human security guards. These high-tech devices are being utilized in the US for tasks such as patrolling data centers, safeguarding cash crops, and policing sports stadiums. Although initially pricey, robot dogs are proving to be a more cost-effective solution compared to human security officers, with annual cost savings of $80,000 to $130,000 per shift.

This development poses a significant threat to the nation's 1.3 million security guards, a role that serves as an essential source of income for many, particularly people of color and older workers. The median annual wage for security guards remains low at $38,390 as of 2024. Despite the challenges, the industry's reliance on human labor is expected to shift towards more demanding tasks rather than complete replacement.

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

Read the original at futurism.com →

More in Tech

Safeguarding Your Systems: An Introduction to the Circuit Breaker Pattern

The circuit breaker pattern is a modern software design strategy used to detect failures and prevent an application from repeatedly executing an operation that is highly likely to fail.

  • Circuit breaker pattern prevents continuous execution of likely-failing operations
  • Acts as protective shield around external calls, halting traffic to broken services
  • Operates in Closed, Open, and Half-Open states to manage service recovery

Thinking and Decision Making: Cognitive Processes Explained

Introduction Every day you make thousands of decisions: what to eat, which route to take, whether a news headline is true. You probably think you're reasoning logically through each choice.

  • Decision-making relies on algorithms and heuristics
  • Heuristics are mental shortcuts, not always reliable
  • Common heuristics: availability and representativeness

Linux Memory Region Data Structures

The memory descriptor ( mm_struct ) maintains information about a process's address space (current memory it owns). One of its members is a linked list of Virtual Memory Areas (VMAs) , represented by…