This was written for debian 9. Download debian amd64 here
Using graphical install:
- install lang: english,
- location: other->europe->croatia,
- locale: en_US,
- keymap: /
This was written for debian 9. Download debian amd64 here
Using graphical install:
- install lang: english,
- location: other->europe->croatia,
- locale: en_US,
- keymap: /
This was tested only on Debian 9. You need python3 and curl in your path.
Process is relativly straightforward. Change the user, chan, and limit in the script bellow.
Open discord in Firefox, open network tools, refresh page and find following request

get_msg without first part slightly changed that is alredy there.
Now delete one of your messages and do same for delete request in return os.system...
If you have python and curl you can extract tag and its contents out of html file
curl -s http://www.google.com/ | python3 -c 'import sys; s=sys.stdin.read(); e=""; print(s[s.find(e)+len(e):s.find("")])'
| #!/usr/bin/python3 | |
| __author__ = "frainfreeze" | |
| __email__ = "[removed]" | |
| __status__ = "Prototype" | |
| """Excel sheet to database table extractor | |
| This script allows the user to extract data from excel sheet, | |
| transform it and load it into a database table. |
| # before running the script prepare archhive folder in the same location | |
| export REPONAME={HelloWorldRepo} | |
| export GHUSER={UsersUsername} | |
| git clone [email protected]:$GHUSER/$REPONAME.git | |
| cd $REPONAME | |
| git filter-repo --to-subdirectory-filter $REPONAME | |
| cd ../archive | |
| git remote add $REPONAME ../$REPONAME | |
| git fetch $REPONAME --tags |
| import shelve | |
| from pathlib import Path | |
| from flask import Flask, has_app_context | |
| class ShelveDB: | |
| """ | |
| Use shelve as simple DB. Supports flask. |