diff --git a/README.md b/README.md index e5016f6..868dc70 100755 --- a/README.md +++ b/README.md @@ -9,13 +9,15 @@ As you can see, the vast majority of my scripts are used to handle my [Friendica * copy.sh: The "build script" specific to my usage case. It requires `shfmt` and `shellcheck` installed to clean up the scripts. Also, since my repository is on `Document/Repositories/public-scripts` and my actual scripts are on `Document/Scripts`, it copies the files there as well, with the placeholder URLs changed for my server's. Finally, it copies the relevant scripts to my cron folder if they exist, with output off (uncommenting the `#&> /dev/null`). * friendica-clean-database.sh: Basically, it does the same things that the included ExpirePosts, but with the option to be more aggressive than the defaults (deleting items that are 7 days old instead of 60, for example). * friendica-compress-storage.sh: It searches for any image files in the storage folder, and compresses them accordingly. Requires `gifsicle`, `oxipng`, `jpegoptim`, and `cwebp` installed. -* friendica-delete-old-users.sh: Complimentary to the included RemoveUnusedContacts, it deletes any users that have not posted anything in the last year, and aren't in any user's contact list. +* friendica-delete-old-users.sh: Complimentary to the included RemoveUnusedContacts, it deletes any users that have not posted anything in the last month, and aren't in any user's contact list. * friendica-find-missing-servers.sh: Complimentary to the included RemoveUnusedContacts, it finds any offline servers and deletes any users from them, that aren't in any user's contact list. * friendica-fix-avatar-permissions.sh: Used to properly transfer avatars from `storage` to `avatar` with the correct permissions, and also compresses the files accordingly. Requires `gifsicle`, `oxipng`, `jpegoptim`, and `cwebp` installed. * friendica-non-followed-featured-posts.sh: If you accidentally configured Friendica to fetch featured posts from all interactors instead of known followers only, this script removes the related workers from the queue while leaving the known followers in place. * friendica-remove-invalid-photos.sh: Used to fix issues with blank images due to a botched transfer from `storage` to `avatar`, for example. It finds any broken items in the database and removes them for regeneration later. Requires `curl`. * friendica-remove-old-photos-parallel.sh: Finds any files in `avatar` that are no longer associated to any contact and deletes them. * friendica-workerqueue.sh: Just a SQL query that shows the worker queue sorted by type of job. +* friendica-find-largest-accounts.sh: Finds which are the contacts that have the most posts assigned to them. +* friendica-delete-specific-contact.sh: Uses the same code as the previous scripts to delete all data from a specific user, particularly useful for unfollowed contacts with too many posts. * media-optimize-local.sh: For a given folder, it finds any image files within and compresses them. Requires `gifsicle`, `oxipng`, `jpegoptim`, and `cwebp` installed. # License