Urgent.News

What's breaking now, across thousands of outlets.

Tech

Google fined €403 million by EU over location data privacy violations

It's the fourth biggest EU privacy fine issued by the Data Protection Commission, the EU's Irish watchdog, and has three other probes into Google open

Google fined €403 million by EU over location data privacy violations

Google has been fined 403 million euros by the European Union for violating strict privacy rules related to the handling of users' location data. The Irish Data Protection Commission found that Google did not lawfully or fairly process location data in users' Web & App Activity and Location History, as well as failing to be transparent in its processing of personal data in the Android mobile operating system's Location Accuracy feature.

Ireland is the lead regulator for Google in the 27-member EU because the company's European headquarters are based in Dublin. The six-year investigation examined Google's compliance with the EU's General Data Protection Regulation from its implementation in 2018 until February 2020. Google stated that its historical policies have since been updated, and from 2019 onwards, it has significantly evolved its practices and launched robust tools for managing location data.

Deputy Commissioner Graham Doyle stated that location data can bring benefits and harms to individuals, as it can enhance online services but also reveal private information. This fine is the fourth-largest EU privacy fine issued by the Irish watchdog, which has previously handed out larger fines to TikTok and Meta. The regulator still has three other ongoing privacy investigations involving Google.

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

Also reported by 1 other outlet

Read the original at fortune.com →

More in Tech

I stopped rewriting the same Electron boilerplate — so I packaged it

Every Electron side project starts with the same three weeks. You wire up window controls, and they look wrong next to the OS chrome. You build a theme system and half your components don't follow it.

  • Author packages Electron boilerplate into reusable framework called electron-shell-framework
  • Framework provides top bar, left sidebar, right panel, and bottom terminal strip
  • Includes dark/light themes, encrypted settings, and robust security measures

Always reach for the asymptotically-optimal data structure — challenged

Everyone reaches for the hash map. O(1) lookup — can't beat that, right? Wrong. For most production lookups, a flat array with a linear scan is faster. I've seen this matter in real systems.

  • Hash maps are commonly chosen for data structures due to their O(1) lookup time.
  • Linear scan through a flat array can outperform hash maps in real-world scenarios.
  • Profiling and understanding data size is crucial for optimal data structure choice.

More from Monday 21 September →