- Install things
Install tmux and tmuxinator (I used brew and gem install tmuxinator)
- Create a new tmuxinator project
| sudo apt-get install openvpn | |
| # Copy over the .tar.gz with the config files | |
| sudo mv $$$$_linux.tar.gz /etc/openvpn | |
| cd /etc/openvpn | |
| sudo tar -xf $$$$_linux.tar.gz | |
| # Enable up/down | |
| sudo chmod +x /etc/openvpn/update-resolv-conf | |
| # Use this to start: |
| #!/bin/bash | |
| # -------------------------------------------------------------------------------------------- | |
| # Installs Ruby 2.4 using rbenv/ruby-build on the Raspberry Pi (Raspbian) | |
| # | |
| # Run from the web: | |
| # bash <(curl -s https://gist.githubusercontent.com/blacktm/8302741/raw/install_ruby_rpi.sh) | |
| # -------------------------------------------------------------------------------------------- | |
| # Welcome message |
| sudo service postgresql restart |
| #!/usr/bin/env bash | |
| # Remove dangling images | |
| docker rmi $(docker images -f dangling=true -q) | |
| # Remove all exited containers | |
| docker rm $(docker ps -a -f status=exited -q) | |
| # Remove dangling volumes | |
| docker volume rm $(docker volume ls -f dangling=true -q) |
| exists() | |
| { | |
| command -v "$1" >/dev/null 2>&1 | |
| } | |
| if exists figlet; then | |
| figlet "Hello" | |
| else | |
| echo '' | |
| echo '----------------' |
| #!/usr/bin/env bash | |
| # This installs Leafo's Lapis (http://leafo.net/lapis/) on Raspberry Pi 3 | |
| sudo apt-get update &&\ | |
| sudo apt-get upgrade &&\ | |
| sudo apt-get install nginx postgresql lua luajit libpq-dev &&\ | |
| sudo apt-get install libpcre3 libpcre3-dev libreadline-dev libncurses5-dev libpcre3-dev libssl-dev perl make build-essential curl &&\ | |
| sudo apt-get update &&\ | |
| # Install Openresty | |
| mkdir openresty &&\ | |
| cd openresty &&\ |
| clear | |
| echo "" | |
| echo "------------------" | |
| echo "Elastic Search Fix" | |
| echo "------------------" | |
| echo "" | |
| echo "[*] Creating Directory ..." | |
| sudo mkdir /var/run/elasticsearch | |
| echo "" | |
| echo "[*] Chowning Directory ..." |
Fecha: [fecha]
Entre nosotros [nuestra empresa] y ustedes [nombre del cliente]
Nuestro compromiso es hacer siempre lo mejor para satisfacer las necesidades y cubrir las expectativas de nuestros clientes, y es importante que ambas partes tengamos las cosas claras y por escrito de manera que todos entendamos qué es qué, quién debe hacer qué, cuándo debe hacerlo, y qué va a pasar si algo no sale como se planeó. Este convenio es muy sencillo y no encontrarán en él complicados términos legales o largos párrafos difíciles de entender. Buscamos lo mejor para ambas partes, ahora y en el futuro.
| #!/bin/sh | |
| # kills Simulator if running, then erases all simulator data | |
| killall "Simulator"; xcrun simctl erase all | |
| echo "Done cleaning simulator" |