deleted by creator
deleted by creator
Glad to finally see translation without the need for an extension. I need to translate pages semi regularly but I try not to install many extensions to avoid fingerprinting.
If I owned an EV I would be too worried about battery degradation caused by the extra charge cycles to participate in anything like this.
Here’s a script from GPT4:
#!/bin/bash
# Create a temporary file for storing file checksums
tempfile=$(mktemp)
# Generate MD5 checksums for all files in the current directory and its sub-directories
find . -type f -exec md5sum '{}' \; | sort > $tempfile
# Detect and delete duplicates
awk 'BEGIN {
lasthash = "";
lastfile = "";
}
{
if ($1 == lasthash) {
print "Deleting duplicate file: " $2;
system("rm -f \""$2"\"");
} else {
lasthash = $1;
lastfile = $2;
}
}' $tempfile
# Clean up
rm -f $tempfile
This script can be run with Termux from the root of your internal storage. Usually /sdcard or /storage/emulated/0. Do not confuse this with running from root if you are rooted.
Before using a script that interacts with your files you should backup anything that is important just in case.
Furthermore, if you comment out:
system("rm -f \""$2"\"");
By adding a # in front of it like this:
# system("rm -f \""$2"\"");
You can run the script and see what files the script would delete without actually deleting them. I would recommend doing this as I have not tested this script.
It isn’t open source, though.
I use Pop!_OS and have been happy with it for the last couple years or so.
Oneplus 8 5g UW running LineageOS For MicroG. All functions working as intended.
You’re not the only one, it has something to do with anonymous login. I read that they use just a few sets of credentials for everyone using anonymous login, which on Google’s end looks like the same user downloading the same app over and over again.
LineageOS for MicroG on a Oneplus 8 5g UW. It runs pretty smooth on this phone. Use to have a few minor bugs that got fixed eventually.
I really wish Verizon didn’t abandon this phone, I’m stuck on Android 11 while all other OP8 models were updated to Android 12 and then 13 last year. Owners of this phone were supposed to get two years of updates and three years of security patches and we barely got a full year. The hardware is still more than enough for my needs so I can’t justify an upgrade.
Smells like lobbyists in here.