Urgent.News

What's breaking now, across thousands of outlets.

Tech

This developer created an app to detect nearby Meta glasses. It already has thousands of users.

The Zuckoff app detects nearby smart glasses using Bluetooth signals. Its creator says Meta needs to do more to address privacy concerns.

A 30-year-old Polish software developer named Pawel Szydlowski has created an app called Zuckoff to detect nearby Meta smart glasses. The app, which has already garnered 5,000 users since its launch on Apple's App Store last month, can estimate the distance of nearby smart glasses and alerts users when they are in proximity. Szydlowski developed the app after witnessing Meta smart glasses being used to record strangers without their knowledge or consent.

The app works by scanning for Bluetooth signatures broadcast by smart glasses and comparing them to a database of known devices. If a match is found, Zuckoff alerts the user that a smart glass is nearby. Szydlowski believes that tech companies should take responsibility for ensuring their smart glasses do not record without consent, and suggested that Meta could follow Apple and Google's lead by developing an industry standard that alerts users when an unknown Bluetooth tracker, like a smart glass, is nearby.

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

Read the original at businessinsider.com →

More in Tech

count() on a prefetched relation is free. filter() costs a query per row.

Twelve queries where you expected two, in a loop that looks like somebody already optimised it. Second of two posts from the same afternoon.

  • Prefetching related objects can optimize queries by loading data in a single query.
  • Using .filter() on a prefetched relation can lead to additional queries per row.
  • Moving the condition into the prefetch can reduce queries to just two.

More from Thursday 10 September →