I hereby claim:
- I am highercomve on github.
- I am highercomve (https://keybase.io/highercomve) on keybase.
- I have a public key ASAnsujY4rQYdPWd3BTwwIJe741absr1BKULUdO6mqEBBwo
To claim this, I am signing this object:
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>Botones con CSS | EscuelaWeb</title> | |
| <link rel="stylesheet" href="css/base.css"> | |
| <link rel="stylesheet" href="font/style.css"> | |
| <link rel="stylesheet" href="css/botones.css"> | |
| </head> | |
| <body> |
| .container { | |
| align-content: flex-start | flex-end | center | space-between | space-around | stretch; | |
| } |
| # https://www.varnish-cache.org/docs/2.1/tutorial/vcl.html | |
| # https://www.varnish-cache.org/trac/wiki/VCLExamples | |
| # Summary | |
| # 1. Varnish will poll the backend at /health_check to make sure it is | |
| # healthy. If the backend goes down, varnish will server stale content | |
| # from the cache for up to 1 hour. | |
| # 2. Varnish will pass X-Forwarded-For headers through to the backend | |
| # 3. Varnish will remove cookies from urls that match static content file | |
| # extensions (jpg, gif, ...) |
| #!/usr/bin/env ruby | |
| # Libraries::::::::::::::::::::::::::::::::::::::::::::::::::::::: | |
| require 'rubygems' | |
| require 'sinatra/base' | |
| require 'slim' | |
| require 'sass' | |
| require 'coffee-script' | |
| # Application::::::::::::::::::::::::::::::::::::::::::::::::::: |
| ruby -run -e httpd . -p 8080 |
| set -g mode-mouse on | |
| set -g mouse-resize-pane on | |
| set -g mouse-select-pane on | |
| set -g mouse-select-window on | |
| # Toggle mouse on with ^B m | |
| bind m \ | |
| set -g mode-mouse on \;\ | |
| set -g mouse-resize-pane on \;\ | |
| set -g mouse-select-pane on \;\ |
I hereby claim:
To claim this, I am signing this object:
| sudo docker ps -a | awk '{print $1}' | grep -v CONTAINER | xargs sudo docker rm | |
| sudo docker images | grep "<none>" | awk '{print $3}' | xargs sudo docker rmi |
| git log --numstat --pretty="%H" --author=$1 | grep -v "public/" | awk 'NF==3 {plus+=$1; minus+=$2} END {printf("+%d, -%d\n", plus, minus)}' |
| export default function Creatable (url, type, $http, $q) { | |
| return function(Obj) { | |
| var deferred = $q.defer() | |
| $http({ | |
| method: 'POST', | |
| url: `${url}`, | |
| data: { | |
| data: { | |
| type: type, | |
| attributes: Obj |