See how a minor change to your commit message style can make you a better programmer.
Format: <type>(<scope>): <subject>
<scope>
is optional
Here are some alternatives to RTV that are worth checking out!
import sys | |
from http.server import SimpleHTTPRequestHandler, HTTPServer | |
class GzipRequestHandler(SimpleHTTPRequestHandler): | |
'''HTTPRequestHandler for gzip files''' | |
def end_headers(self): | |
'''Set Content-Encoding: gzip for gzipped files''' | |
if self.path.endswith('.gz'): |
function test() { | |
var results = []; | |
results.push(compareSemver("1.8.3", "1.8.3", "==")); | |
results.push(compareSemver("1.9.1", "1.11.1", "<")); | |
results.push(compareSemver("1.5.3", "1.9", "<")); | |
results.push(compareSemver("1.3.2", "1.10.2", "<=")); | |
results.push(compareSemver("1.3.2", "1.3.2", "<=")); | |
results.push(compareSemver("1.11.1", "1.9.1", ">")); | |
results.push(compareSemver("1.11.1", "1.11.0", ">")); | |
results.push(compareSemver("1.10.2", "1.5.2", ">=")); |
Exhaustive list of SPDX (Software Package Data Exchange) licenses: https://spdx.org/licenses/
Make sure there is at least one file in it (even just the README.md)
ssh-keygen -t rsa -C "[email protected]"
{ | |
"presets": [ | |
{ | |
"name": "Red Pandas", | |
"items": [ | |
{ | |
"id": "b4acc70b-7694-41a9-b8be-66096d755be2", | |
"name": "Shani", | |
"color": "#9e0142", | |
"linkedId": "712020%3Ab3a72b60-cb63-425e-a77a-f95161cf2799" |
## | |
# You should look at the following URL's in order to grasp a solid understanding | |
# of Nginx configuration files in order to fully unleash the power of Nginx. | |
# https://www.nginx.com/resources/wiki/start/ | |
# https://www.nginx.com/resources/wiki/start/topics/tutorials/config_pitfalls/ | |
# https://wiki.debian.org/Nginx/DirectoryStructure | |
# | |
# In most cases, administrators will remove this file from sites-enabled/ and | |
# leave it as reference inside of sites-available where it will continue to be | |
# updated by the nginx packaging team. |