- Distributed Systems Concepts and Design (5th Edition) (http://skec.ac.in/ebooks/George-Coulouris-Distributed-Systems-Concepts-and-Design-5th-Edition.pdf)
- Distributed Algorithms: An Intuitive Approach (http://www.amazon.com/Distributed-Algorithms-An-Intuitive-Approach/dp/0262026775/)
- Programming Distributed Computing Systems: A Foundational Approach (http://www.amazon.com/Programming-Distributed-Computing-Systems-Foundational/dp/0262018985/)
All rules and guidelines in this document apply to PHP files unless otherwise noted. References to PHP/HTML files can be interpreted as files that primarily contain HTML, but use PHP for templating purposes.
The keywords "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", "SHOULD", "SHOULD NOT", "RECOMMENDED", "MAY", and "OPTIONAL" in this document are to be interpreted as described in RFC 2119.
Most sections are broken up into two parts:
- Overview of all rules with a quick example
- Each rule called out with examples of do's and don'ts
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
adb help // List all comands | |
== Adb Server | |
adb kill-server | |
adb start-server | |
== Adb Reboot | |
adb reboot | |
adb reboot recovery | |
adb reboot-bootloader |
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
sudo yum install ncurses-devel geoip-devel libmaxminddb-devel tokyocabinet-devel openssl-devel | |
wget https://tar.goaccess.io/goaccess-1.3.tar.gz | |
tar -xzvf goaccess-1.3.tar.gz | |
cd goaccess-1.3/ | |
./configure --enable-utf8 --enable-geoip=legacy | |
make | |
sudo make install | |
# Run | |
# goaccess /var/log/nginx/access.log -c |