Category Scripting

Recover your old Grammarly Docs

I registered on Grammarly on 2016-05-11T12:49:14.000(I took the date from the API). Since then, Grammerly checked about 1.8M words I wrote which is more or less ~17 novels.

As a non-native English speaker, I generally use Grammarly to at least get rid of any typos.

Not all the checkings were made over Docs in the app since Grammarly has extensions and can check in many other places.

But in the app, I created around ~600 documents unfortunately, Grammarly does not support pagination, and it only...

View full article

Linux Folder / Folders Backup on Yandex

Ok so a little while ago I made a Linux Yandex python script for backing MySQL databases and sync them on Yandex Disk, so if I already did that I thought I should use a part of that script and make a backup script for folders.

Most of the script is self-explanatory, all you have to do is to change the variables before the starting of the class keyword for your own needs. I put some comments that will better explain what you should define in each variable. Most of them are either of type string ...

View full article

MySQL Backup on Yandex Disk with Cron

I wrote a very small python script that works in conjunction with another MySQL backup script to sync your backup on the Yandex disk service.

First, in order to do this, you should have a Yandex client installed. You can get the packages from the Yandex repo at http://repo.yandex.ru/yandex-disk/ .

More specific in Debian/ubuntu case just do a:

wget http://repo.yandex.ru/yandex-disk/yandex-disk_latest_amd64.deb

After that install the Yandex Console client as usual doing:

wget http://repo.yandex....
View full article