(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:
| var gulp = require('gulp'), | |
| git = require('gulp-git'), | |
| filter = require('gulp-filter'), | |
| bump = require('gulp-bump'), | |
| semver = require('semver'), | |
| fs = require('fs'), | |
| tagVersion = require('gulp-tag-version'); | |
| // Loads the package for parsing | |
| function getPackageJson() { |
| 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; |