(C-x means ctrl+x, M-x means alt+x)
The default prefix is C-b. If you (or your muscle memory) prefer C-a, you need to add this to ~/.tmux.conf
:
0-mail.com | |
0815.ru | |
0clickemail.com | |
0wnd.net | |
0wnd.org | |
10minutemail.com | |
20minutemail.com | |
2prong.com | |
30minutemail.com | |
3d-painting.com |
# Install the aws cli client | |
pip install awscli | |
# List instances for a particular stack | |
OPSWORKS_STACK_ID="XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX" | |
OPSWORKS_APP_ID="XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX" | |
OPSWORKS_INSTANCE_LAYER_ID="XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX" | |
# Deploy the stack and app to instances found above | |
# This endpoint is only available in `us-east-1` even though |
#!/bin/sh | |
# Variables (user specific) | |
userlogin="[email protected]" | |
userpassword="password" | |
# Environment | |
apiurl="https://api.unblock-us.com/login?$userlogin:$userpassword" | |
wgetcmd=$(which wget) | |
# Setting up Ubuntu | |
sudo apt-get update | |
sudo apt-get -y install xfce4 xfce4-goodies openjdk-7-jdk vnc4server | |
# Setup the login and configs | |
vncserver | |
vncserver -kill: 1 | |
# Uncommenting settings required for normal vnc startup | |
sudo sed -i.bak s/"# exec"/"exec sh"/g ~/.vnc/xstartup |
#!/bin/bash | |
PATH="$PATH:/usr/bin/" | |
export USER="vnc" | |
DISPLAY="1" | |
DEPTH="16" | |
GEOMETRY="1024x768" | |
OPTIONS="-depth ${DEPTH} -geometry ${GEOMETRY} :${DISPLAY}" | |
. /lib/lsb/init-functions | |
case "$1" in |
<amp-pixel src="https://ssl.google-analytics.com/collect?v=1&tid=UA-12345678-1&t=pageview&cid=$RANDOM&dt=$TITLE&dl=$CANONICAL_URL&z=$RANDOM"></amp-pixel> | |
/* | |
* Required parameters: | |
* v = API version number (currently 1) | |
* tid = Google Analytics property identifier (UA-12345678-1) | |
* t = hit type | |
* cid = client id (you should implement this via cookie etc.) | |
* z = random string to bypass caching (amphtml generates this to $RANDOM variable) |
require 'rubygems' | |
require 'active_resource' | |
require "uri" | |
require "net/http" | |
slack = 'https://hooks.slack.com/services/XXX/XXX/XXX' | |
# Issue model on the client side | |
class Issue < ActiveResource::Base | |
self.site = 'https://redmine.stepfeed.com/' |
# Change YOUR_TOKEN to your prerender token and uncomment that line if you want to cache urls and view crawl stats | |
# Change example.com (server_name) to your website url | |
# Change /path/to/your/root to the correct value | |
server { | |
listen 80; | |
server_name example.com; | |
root /path/to/your/root; | |
index index.html; |
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.