I hereby claim:
- I am pabluk on github.
- I am pabluk (https://keybase.io/pabluk) on keybase.
- I have a public key whose fingerprint is AAB4 4953 F06F 034E A819 E411 0DEC 94B7 C7EE E429
To claim this, I am signing this object:
| /* ~/.config/gtk-3.0/gtk.css */ | |
| @define-color bg-grey #222; | |
| @define-color active-grey #333; | |
| @define-color border-grey #555; | |
| TerminalWindow .notebook { | |
| border: 0; | |
| padding: 0; | |
| color: #eee; | |
| background-color: shade(@active-grey, 1); |
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1"> | |
| <title>Markdown Editor</title> | |
| <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous"> |
| #!/usr/bin/env python | |
| """Display desktop notifications using the n10n web service.""" | |
| import logging | |
| import os | |
| import requests | |
| import time | |
| from gi.repository import Notify | |
| __author__ = "Pablo Seminario" |
| #!/bin/bash | |
| PROJECT_DIR=$(pwd) | |
| CNAME=$1 | |
| CNAME_ROOTFS=/var/lib/lxc/$CNAME/rootfs | |
| usage() { | |
| echo "Usage: `basename $0` <container-name>" | |
| echo "" |
| # Command draft | |
| git log --pretty=format:'{"commit": "%H", "author": "%an <%ae>", "date": "%at", "message": "%f"}' | ~/dev/src/logstash-1.4.0/bin/logstash -e 'input { stdin { codec => json_lines } } filter { date { match => ["date", "UNIX"] } } output { elasticsearch { host => "logstash.lxc" index => "logstash" } }' | |
| # Remove logstash index from ES | |
| curl -XDELETE 'http://logstash.lxc:9200/logstash/' |
I hereby claim:
To claim this, I am signing this object:
| #!/usr/bin/env python | |
| """ | |
| This file provides a class to connect to the Livebox router | |
| and get his public IP address. | |
| The Livebox router is provided by Orange, a French ISP. | |
| Usage | |
| ----- | |
| $ python livebox-ip.py |
| #################################### | |
| # BASIC REQUIREMENTS | |
| # http://graphite.wikidot.com/installation | |
| # http://geek.michaelgrace.org/2011/09/how-to-install-graphite-on-ubuntu/ | |
| # Last tested & updated 10/13/2011 | |
| #################################### | |
| cd | |
| sudo apt-get update | |
| sudo apt-get upgrade |
| #!/bin/bash | |
| #============================================================================ | |
| # | |
| # FILE: bbox-reboot.sh | |
| # USAGE: ./bbox-reboot.sh | |
| # | |
| # TITLE: Bouygues Box Reboot (Bouygues is a French ISP) | |
| # AUTHOR: Pablo SEMINARIO <pabluk@gmail.com> | |
| # VERSION: 0.1 | |
| # LICENSE: GPL v3 |