start new:
tmux
start new with session name:
tmux new -s myname
Docker_Notes |
#add these to Pihole/etc whitelists for sites like Slickdeals and Nerdwallet #also options https://github.com/anudeepND/whitelist #https://help.slickdeals.net/hc/en-us/articles/360000551834-Why-Do-Certain-Links-Lead-to-a-Page-not-found-Page- jdoqocy.com redirectingat.com tkqlhce.com dpbolvw.net anrdoezrs.net apmebf.com emjcd.com
sudo apt install ddclient | |
sudo nano /etc/ddclient.conf | |
protocol=namecheap | |
use=web | |
server=dynamicdns.park-your-domain.com | |
login=DOMAIN.COM | |
password=FROM.NC.ADVDDNS.PWD | |
@,www |
#!/bin/bash | |
set -x | |
PUBIP=$(curl ipecho.net/plain)|tr -d '\n' | |
APIKEY=50e4feea87921f91f0466f7b0353063e | |
ZONEID=a10dc42a1197b480d1e43abb6abad64f | |
AUTHEMAIL=zyrmpg@gmail.com | |
AUTHKEY=eafc9b4b510ee5dbf8d780223dd54b2138fd6 |
#!/usr/bin/env bash | |
set -o errexit | |
set -o nounset | |
set -o pipefail | |
# Automatically update your CloudFlare DNS record to the IP, Dynamic DNS | |
# Can retrieve cloudflare Domain id and list zone's, because, lazy | |
# Place at: | |
# /usr/local/bin/cf-ddns.sh |
These are my notes basically. At first i created this gist just as a reminder for myself. But feel free to use this for your project as a starting point. If you have questions you can find me on twitter @thomasf https://twitter.com/thomasf This is how i used it on a Debian Wheezy testing (https://www.debian.org/releases/testing/)
Discuss, ask questions, etc. here https://news.ycombinator.com/item?id=7445545
As a freelancer, I build a lot of web sites. That's a lot of code changes to track. Thankfully, a Git-enabled workflow with proper branching makes short work of project tracking. I can easily see development features in branches as well as a snapshot of the sites' production code. A nice addition to that workflow is that ability to use Git to push updates to any of the various sites I work on while committing changes.