I hereby claim:
- I am iax7 on github.
- I am iax (https://keybase.io/iax) on keybase.
- I have a public key whose fingerprint is 502F 5154 D385 30B9 9EFE EB79 7452 12D9 0C38 D1E9
To claim this, I am signing this object:
| # @example basic usage | |
| # Color.blue => "\e[1;34m" | |
| # @example chain bold | |
| # Color.red.bold => "\e[1;31m" | |
| class Color | |
| NORMAL = 30 | |
| BRIGHT = 90 | |
| BG_DIFF = 10 | |
| CODES = { | |
| black: 0, |
| require 'wisper' | |
| SLEEP = 0.5 | |
| class Sync | |
| include Wisper::Publisher | |
| def start(user_id) | |
| broadcast :start, user_id | |
| sleep SLEEP |
| server: | |
| # If no logfile is specified, syslog is used | |
| # logfile: "/var/log/unbound/unbound.log" | |
| verbosity: 0 | |
| interface: 127.0.0.1 | |
| port: 5335 | |
| do-ip4: yes | |
| do-udp: yes | |
| do-tcp: yes |
| #!/bin/env bash | |
| # https://www.lastdragon.net/?p=2260 | |
| cat > programa.c << EOF | |
| #include <stdio.h> | |
| double powern(double d, unsigned n) | |
| { | |
| double x = 1.0; | |
| unsigned j; |
I hereby claim:
To claim this, I am signing this object:
| #!/bin/bash | |
| ##################################################### | |
| # Name: Bash CheatSheet for Mac OSX | |
| # | |
| # A little overlook of the Bash basics | |
| # | |
| # Usage: | |
| # | |
| # Author: J. Le Coupanec | |
| # Date: 2014/11/04 |
| docker search postgres | |
| docker pull postgres | |
| docker images | |
| docker ps -a | |
| docker run -e POSTGRES_PASSWORD=changeme -d postgres | |
| docker logs -f {name} | |
| docker inspect {name} | less |