See how a minor change to your commit message style can make you a better programmer.
Format: <type>(<scope>): <subject>
<scope> is optional
| $ curl --help | |
| Usage: curl [options...] <url> | |
| --abstract-unix-socket <path> Connect via abstract Unix domain socket | |
| --alt-svc <file name> Enable alt-svc with this cache file | |
| --anyauth Pick any authentication method | |
| -a, --append Append to target file when uploading | |
| --basic Use HTTP Basic Authentication | |
| --cacert <file> CA certificate to verify peer against | |
| --capath <dir> CA directory to verify peer against | |
| -E, --cert <certificate[:password]> Client certificate file and password |
| <fieldset> | |
| <div class='legend'><span>power switchs</span></div> | |
| <div class='checkboxGroup'> | |
| <label class='checkboxControl'> | |
| <input type='checkbox' /> | |
| <div>ΟΙ</div><b></b> | |
| <span class='indicator'></span> | |
| </label> | |
| <label class='checkboxControl'> | |
| <input type='checkbox' /> |
A Pen by Michael Novotny on CodePen.
| # Node Js | |
| curl -sL https://rpm.nodesource.com/setup_14.x | sudo bash - | |
| sudo yum install nodejs | |
| node --version | |
| npm --version | |
| # Redis |
| ---------------------------------------------------------------------------------------------------- | |
| tcpdump -s 0 #capture entire etherner header and IP packet | |
| tcpdump -ni tap55ec3c7f-91 ip6 #locate the ICMPv6 packets | |
| tcpdump -s0 -n -i any -w /tmp/$(hostname)-smbtrace.pcap #if the SMB client or SMB server is a Unix host,Troubleshooting Server Message Block (SMB) | |
| tcpdump -D #Print the list of the network interfaces available on the system and on which tcpdump can capture packet | |
| tcpdump -X -vvv -n -i eth0 |
| # Directory Listing | |
| Options -Indexes | |
| <IfModule mod_security.c> | |
| # Server Information Disclosure | |
| ServerTokens Prod | |
| ServerSignature Off | |
| SecServerSignature " " | |
| </IfModule> |
| ; === GLOBAL OPTIONS === | |
| [global] | |
| type=global | |
| keep_alive_interval=30 | |
| ; === GENERIC TEMPLATES === | |
| [generic-endpoint](!) | |
| type=endpoint | |
| disallow=all | |
| allow=g729,alaw |
| <!doctype html> | |
| <html> | |
| <head> | |
| <!-- Priority tags. These must come first. --> | |
| <meta charset="utf-8"> | |
| <meta http-equiv="x-ua-compatible" content="ie=edge; chrome=1"> <!-- Render Chrome if available or using latest version of Internet Explorer (Recommended). --> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no"> | |
| <!-- Document Title --> | |
| <title>Page Title</title> | |
| <!-- Allows control over where resources are loaded from. Place as early in the document as possible, only applies to content below this tag. --> |