The 1-Wire protocol is a proprietary protocol (Maxim/Dallas) single-wire interface, half-duplex, bidirectional, low-speed and power, long-distance serial-data communication protocol. It operates over a single data line, without clock signal. But, at least two wires are required for 1-wire bus: Data, GND. An additional wire might be necessary (Vcc), depending on powering mode. The powering modes are: parasitic (no vcc), and conventional (with vcc), as seen on figures below.
π¨βπ»
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
| all: pdf epub kindle html examples | |
| BOOK_TITLE = A\ React\ Developerβs\ Guide\ to\ Hooks\ -\ Sebastien\ Castiel | |
| dist: | |
| @mkdir -p dist | |
| pdf: dist/${BOOK_TITLE}.pdf | |
| @echo 'β PDF' |
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
| set -g @plugin 'tmux-plugins/tmux-logging' | |
| #set prefix | |
| set -g prefix C-a | |
| bind C-a send-prefix | |
| unbind C-b | |
| set -g history-limit 100000 | |
| set -g allow-rename off |
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
| # first install pygmentize to the mac OS X or macOS system with the built-in python | |
| sudo easy_install Pygments | |
| # then add alias to your ~/.bash_profile or ~/.bashrc or ~/.zshrc etc. | |
| alias pcat='pygmentize -f terminal256 -O style=native -g' |
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
| $ tar -xvzf terraform.tar.gz | |
| x terraform-test/ | |
| x terraform-test/terraform.tfstate | |
| x terraform-test/main.tf | |
| $ ls terraform-test/ | |
| main.tf terraform.tfstate |
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
| $ ls terraform-test/ | |
| main.tf terraform.tfstate | |
| $ tar -zcvf terraform.tar.gz terraform-test | |
| a terraform-test | |
| a terraform-test/terraform.tfstate | |
| a terraform-test/main.tf | |
| $ ls | grep terraform.tar | |
| terraform.tar.gz |
- How to Build a Successful Information Security Career (Daniel Miessler)
- The First Steps to a Career in Information Security (Errata Security - Marisa Fagan)
- Hiring your first Security Professional (Peerlyst - Dawid Balut)
- How to Start a Career in Cyber security
- How to Get Into Information Security (ISC^2)
- https://www.isc2.org/how-to-get-into-information-security.aspx
FWIW: I didn't produce the content present here. I've just copy-pasted it from somewhere over the Internet, but I cannot remember exactly the original source. I was also not able to find the author's name, so I cannot give him/her the proper credit.
- By Edmond Lau
- Highly Recommended π
- http://www.theeffectiveengineer.com/
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 | |
| echo "Updating brew..." | |
| brew update | |
| echo "Upgrading packages..." | |
| brew upgrade | |
| echo "Making cleanup..." | |
| brew cleanup |
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 | |
| yum install httpd -y | |
| yum update -y | |
| service httpd start | |
| chkconfig httpd on | |
| echo "<html><h1>Hello Cloud Gurus!</h1></html>" > /var/www/html/index.html |
NewerOlder

