arp-scan --localnet
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
| SHELL:=/usr/bin/env bash | |
| DEFAULT_INTERFACE=$(shell /sbin/route | grep default | grep -Eo "[a-z0-9]+$$") | |
| VPC_CIDR=10.0.0.0/16 | |
| forward-traffic: | |
| /sbin/iptables -t nat -A POSTROUTING -o $(DEFAULT_INTERFACE) -s $(VPC_CIDR) -j MASQUERADE |
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
| SHELL=/usr/bin/env bash | |
| SDCC=sdcc | |
| SDCCLIB=sdcclib | |
| SRCDIR=./src | |
| BINDIR=./bin | |
| INCLUDES=\ | |
| ./vendor/stm8s/inc\ | |
| ./vendor/button_debounce/inc | |
| CFLAGS=--std-c11 --nolospre $(addprefix -I,$(INCLUDES)) | |
| LDFLAGS=--out-fmt-ihx |
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
| 0x6D1AA09da52F0DbA45d4eA3Ab5AD96b1C40577C9 |
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
| # Usage: | |
| # ======== | |
| # FirebaseAuth::Auth.verify_id_token(your_id_token) | |
| # | |
| # The method call follows the same API of the Node.js, JAVA and Python SDKs. | |
| # See https://firebase.google.com/docs/auth/admin/verify-id-tokens#verify_id_tokens_using_the_firebase_admin_sdk | |
| # Dependencies: | |
| # --------------- | |
| # gem 'activesupport' |
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
| # for applications | |
| for bcdir in $(find $HOME/.local/applications -mindepth 2 -maxdepth 2 -type d -name bash-completion.d -print) ; do | |
| for bcfile in $(find "$bcdir" -mindepth 1 -maxdepth 1 -type f -print) ; do | |
| . $bcfile | |
| done | |
| done |
Configuration https://unix.stackexchange.com/questions/220657
stty -F /dev/ttyUSB0 115200 raw -echo -echoe -echok -echoctl -echokeOn a terminal
cat -v < /dev/ttyUSB0NewerOlder