I hereby claim:
- I am worg on github.
- I am worg (https://keybase.io/worg) on keybase.
- I have a public key ASAngmskGrG51MaPioZIotlh9hadtAZ2iHUX8KPwf3vJFQo
To claim this, I am signing this object:
{| #!/bin/bash | |
| # +----------------------------------------------------------------------+ | |
| # | | | |
| # | Mount the root file system / with the option noatime | | |
| # | | | |
| # | By Philipp Klaus <http://blog.philippklaus.de> | | |
| # | Tip found on <http://blogs.nullvision.com/?p=275> | | |
| # | | | |
| # +----------------------------------------------------------------------+ |
I hereby claim:
To claim this, I am signing this object:
{| // Crear un programa que declare dos funciones anónimas. Una que cuente del 0 al 200 y otra que cuente de 200 a 0. | |
| // Mostrar cada número con un identificador único para cada goroutine. | |
| // Crear goroutines a partir de estas funciones. | |
| // No permitir que main regrese hasta que ambas goroutines hayan terminado de correr. | |
| package main | |
| // Agregar imports. | |
| import ( | |
| "fmt" |
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.
| # Compile nginx standalone without root access | |
| mkdir ~/installed | |
| mkdir ~/installed/nginx | |
| mkdir ~/src | |
| cd ~/src | |
| # PCRE dependency - we'll compile against this statically | |
| wget http://kent.dl.sourceforge.net/sourceforge/pcre/pcre-7.8.tar.gz | |
| tar -xzvf pcre-7.8.tar.gz |
| { | |
| "name": "flare", | |
| "children": [ | |
| { | |
| "name": "analytics", | |
| "children": [ | |
| { | |
| "name": "Vanes", | |
| "children": [ | |
| {"name": "Ventas", "size": 3938}, |
| package main | |
| import ( | |
| "fmt" | |
| "log" | |
| "net" | |
| "net/mail" | |
| "net/smtp" | |
| "crypto/tls" | |
| ) |
| #/usr/bin/env bash | |
| # MIT © Sindre Sorhus - sindresorhus.com | |
| # git hook to run a command after `git pull` if a specified file was changed | |
| # Run `chmod +x post-merge` to make it executable then put it into `.git/hooks/`. | |
| changed_files="$(git diff-tree -r --name-only --no-commit-id ORIG_HEAD HEAD)" | |
| check_run() { | |
| echo "$changed_files" | grep --quiet "$1" && eval "$2" |
| <IfModule mod_rewrite.c> | |
| Options +FollowSymLinks | |
| RewriteEngine On | |
| #incluye el / final | |
| RewriteBase /{ruta_de_root}/ | |
| RewriteRule ^$ index.php [L] | |
| RewriteCond %{REQUEST_FILENAME} !-d | |
| RewriteCond %{REQUEST_FILENAME} !-f | |
| RewriteCond $1 !^(index\.php|robots\.txt|favicon\.ico) |