Git diff
Fetch origin branch (with trach)
Git diff
Fetch origin branch (with trach)
Page 47
This kind of mindset is crucial to managing your career, because when you start to think of yourself as a business, you start to make good business decisions.
Page 52
Every step you take without a clear direction is a wasted step. Don’t randomly walk through life without a purpose for your career.
Your big goal should be something not too specific, but clear enough that you can know if you’re steering toward it or not. Think about what you want to ultimately do with your career.
# to generate your dhparam.pem file, run in the terminal | |
openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048 |
I use Namecheap.com as a registrar, and they resale SSL Certs from a number of other companies, including Comodo.
These are the steps I went through to set up an SSL cert.
I have solved this regex problem for : | |
https://www.codewars.com/kata/514a024011ea4fb54200004b | |
Find domain name in URLs with subdomains or without subdomains : | |
Regex : /((\w*:)?(\/\/)?(www\.)?)?([\w-]+\.)?(\w{2,}[\w-]+)\./g | |
function domainName(url){ | |
var re = /((\w*:)?(\/\/)?(www\.)?)?([\w-]+\.)?(\w{2,}[\w-]+)\./g; | |
var arr = re.exec(url); |
title | subtitle | author | date | source |
---|---|---|---|---|
Docker Compose Cheatsheet |
Quick reference for Docker Compose commands and config files |
Jon LaBelle |
April 7, 2019 |
official docker-compose reference: https://docs.docker.com/compose/compose-file/