Hi I read on r/privacy that people recommend not deleting one's Google account and to instead make the data unusable so big tech cannot separate what is true and what is not.
How would I go about doing that?
Do I just need to sign up for random websites and give the same false information across all of them?
Also, how long does it take to make my data unusable?
As much information about how to make my data unusable as possible would be great.
Thank you in advance.
I've had a fairly simple PERL script on my router that, when the load is low, does searches from Google and Bing for various things in English, Spanish, and Tamil-- pet foods, health care items, different hobbies, DIY home repair, cooking, jewlery... I've added stuff over the 10+ years I've had it. It is not terribly robust. That's why it's not shared.
[deleted]
use LWP::UserAgent;
my $ua = LWP::UserAgent->new();
my $url = 'https://www.google.com/search?q=example';
my $response = $ua->get($url);
my $content = $response->decoded_content();
[deleted]
Obviously, mine is a bit more complicated. It started off as a tiny thing several years ago, and I've added to it and modified it. It's not very robust and I didn't put comments in it because I never thought privacy would become so important; it was just an excuse to see if I could write it.
[deleted]
It's very easy to mimic a browser, you just need to know how it works & what info is needed. It's like with DDoS, people mimic a browser to bypass anti-DDoS measures, proving that it is very possible to mimic such stuff. Another example can be sneaker bots that buy shoes the second they get dropped for sale, bypassing anti-robot / fake browser measures aswell.
I think I misinterpreted the previous commenter’s meaning/intention. You’re totally correct. I deleted my previous comment to avoid future confusion.