- https://gist.github.com/AnatomicJC/e773dd55ae60ab0b2d6dd2351eb977c1
- https://stackoverflow.com/questions/4032960/how-do-i-get-an-apk-file-from-an-android-device
- https://androidquest.wordpress.com/2014/09/18/backup-applications-on-android-phone-with-adb/
- https://stackoverflow.com/questions/34482042/adb-backup-does-not-work
- https://stackoverflow.com/questions/53634246/android-get-all-installed-packages-using-adb
- https://www.dadall.info/article657/nettoyer-android
- https://etienne.depar.is/a-ecrit/Desinstaller-des-applications-systemes-d-android/index.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// Change your crosshair & HUD color each time you take move. | |
// Source: https://www.reddit.com/r/CounterStrikeBinds/comments/ddbb1r/rainbow_crosshair | |
// | |
// Crosshair cycle | |
alias rainbow_color_ch rainbow_color_ch_red | |
alias rainbow_color_ch_red "cl_crosshaircolor 5; cl_crosshaircolor_r 255; cl_crosshaircolor_g 0; cl_crosshaircolor_b 0; alias rainbow_color_ch rainbow_color_ch_orange" | |
alias rainbow_color_ch_orange "cl_crosshaircolor 5; cl_crosshaircolor_r 255; cl_crosshaircolor_g 127; cl_crosshaircolor_b 0; alias rainbow_color_ch rainbow_color_ch_yellow" | |
alias rainbow_color_ch_yellow "cl_crosshaircolor 5; cl_crosshaircolor_r 255; cl_crosshaircolor_g 255; cl_crosshaircolor_b 0; alias rainbow_color_ch rainbow_color_ch_chartreuse" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// Force you to one tap | |
// Source: https://www.reddit.com/r/CounterStrikeBinds/comments/922hm2/one_tap_bind/e339uft | |
// | |
alias +shootswitch "+attack" | |
alias -shootswitch "-attack; use weapon_knife; slot1" | |
alias bindshoot "bind mouse1 +shootswitch" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
% Bibliography in the BibTex file format. | |
% | |
% Documentation available here: | |
% - https://en.wikipedia.org/wiki/BibTeX | |
% - $ man bibtex | |
% - BibLaTeX: http://mirrors.ibiblio.org/CTAN/macros/latex/exptl/biblatex/doc/biblatex.pdf | |
% | |
% Comments: | |
% - 'author' fields with multiple authors need to be separated with the 'and' word. The comma character ',' separate the | |
% first name and the last name. Example: author = {Firstname1, Lastname1 and Firstname2, Lastname2}. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import itertools | |
import requests | |
from lxml.html import fromstring | |
def main(): | |
URL = 'https://example.org' | |
BATCH_SIZE_PROXIES = 10 | |
CYCLE_TIME = 3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// EVERYTHING YOU NEED TO KNOW IS IN CONSOLE WHEN YOU EXEC THE CFG | |
// MODIFY KEY ONLY IF U KNOW WHAT URE DOING | |
// iDeaf CFG | |
// MADE BY @iDexCsgo | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* utility_training.cfg for Counter Strike : Global Offensive | |
* | |
* For it to works, you need to put this file in the following directory : | |
* $STEAM_DIRECTORY\steamapps\common\Counter-Strike Global Offensive\csgo\cfg | |
* Usually (but not always), it is : | |
* C:\Program Files (x86)\Steam\steamapps\common\Counter-Strike Global Offensive\csgo\cfg | |
* Thereafter, start a game then type the following command : | |
* exec utility_training | |
* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" Import all modules from standard Python 3.7.3 lib. """ | |
# Import warnings first to filter deprecated packages | |
try: import warnings | |
except ModuleNotFoundError: pass | |
with warnings.catch_warnings(): | |
warnings.filterwarnings("ignore",category=DeprecationWarning) | |
# Python Runtime Services |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ------------------------------ | |
// autoexec.cfg for Counter Strike : Global Offensive | |
// | |
// For it to works, you need to put this file in the following directory : | |
// $STEAM_DIRECTORY\steamapps\common\Counter-Strike Global Offensive\csgo\cfg | |
// Usually (but not always), it is : | |
// C:\Program Files (x86)\Steam\steamapps\common\Counter-Strike Global Offensive\csgo\cfg | |
// | |
// For optimal experience, do not forget to install the Nvidia GeForce | |
// Experience software and to configure the following filters (alt+f3) : |
NewerOlder