How to use:
./wordle.sh
Or try the unlimit mode:
Прежде всего нужно создать ключ для доступа к репозиториям. Один ключ можно использовать для разных репозиториев. Для этого идём в github, в настройки разработчика, и переходим к персональным токенам и жмём сюда для генерации ключа.
При генерации ключа отмечаем поля repo, workflow, user, даём название и копируем сам ключ.
gpg --export [email protected] > my_key.pub
The file can then be shared to other people.
| Visual Studio Code frequently crashes linux. Using NVIDIA GPU | |
| 1. Open command pallete (Ctrl + Shift + P) | |
| 2. Enter "Preferences: Configure Runtime Arguments" | |
| 3. Add config: "disable-hardware-acceleration": true | |
| 4. Restart VS Code |
| #!/bin/sh | |
| if pwd | grep /mnt/c > /dev/null; then | |
| exec git.exe "$@" | |
| else | |
| exec /usr/bin/git "$@" | |
| fi |
Normal text here. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer vitae mauris arcu, eu pretium nisi. Vivamus vitae mi ligula, non hendrerit urna. Suspendisse potenti. Quisque eget massa a massa semper mollis.
Tiny text is here. Awwwww its so cuteeeeeeeeeee
Wow even tinier!
| ## General info: | |
| # Function starts with @ | |
| # Variable starts with $ | |
| # Return of the most recently run function made by $@ | |
| # Key comments marked with ## | |
| ## Version of IV must be set first | |
| ~version: "2.1" | |
| # Telegram doesn't support JW Player which is used in videoheaders |
| #!/bin/sh | |
| # ref: https://piunikaweb.com/2019/03/25/samsung-galaxy-s10-remove-bundled-bloatwares-without-root/ | |
| # install the following app to see the packages names: | |
| # use the following command to generate the unistall command, for easy copy and paste: | |
| # adb shell 'pm list packages' | sed -e 's/^/adb uninstall --user 0 /' | grep FILTER_HERE | sort | |
| #things to install if removing keyboard | |
| # F-Droid | |
| # APK Analyser |
| #!/usr/bin/env bash | |
| # To fix the " gpg: WARNING: unsafe permissions on homedir '/home/path/to/user/.gnupg' " error | |
| # Make sure that the .gnupg directory and its contents is accessibile by your user. | |
| chown -R $(whoami) ~/.gnupg/ | |
| # Also correct the permissions and access rights on the directory | |
| chmod 600 ~/.gnupg/* | |
| chmod 700 ~/.gnupg |
| # To remove only some text on a content | |
| @remove: //p[self::p/strong[contains(text(), "Articles liés")]] | |
| @remove: //iframe[contains(@src,"https://urlsomething")] | |
| # To deal with fucking error of <img> is not supported in blabla | |
| @before_el(./..): //a/img | |
| @before_el(./..): //p/img |