I hereby claim:
- I am draptik on github.
- I am draptik (https://keybase.io/draptik) on keybase.
- I have a public key whose fingerprint is 10A4 B0E4 277F CD15 9F08 845D B063 1437 5124 4030
To claim this, I am signing this object:
# Idea from: | |
# | |
# https://bbs.archlinux.org/viewtopic.php?pid=1068202 | |
# Colors https://wiki.archlinux.org/index.php/Color_Bash_Prompt | |
# Note: We require escape '\[' and '\]' around the ansi escapes | |
# (i.e. '\e[0m')! Otherwise the shell does not know that the ansi | |
# escapes should be excluded from the line wrapping calculation. | |
# | |
# See |
#!/bin/bash | |
# | |
# Setup: | |
# | |
# +--------+ +-----+ | |
# | MyData | | HDD | | |
# | | (1) rdiff-backup | | | |
# | | ------------------> | | | |
# | | | | +-----+ | |
# | | (2) duplicity | | (3) rsync | USB | |
# pacman -S python-virtualenvwrapper | |
$ echo 'WORKON_HOME=$HOME/.virtualenvs' >> ~/.bashrc | |
$ . ~/.bashrc | |
$ mkdir -p $WORKON_HOME | |
$ echo 'source /usr/bin/virtualenvwrapper.sh' > ~/.bashrc | |
$ . ~/.bashrc | |
$ mkvirtualenv -p python2.7 --distribute blog_env |
I hereby claim:
To claim this, I am signing this object:
C:\>choco install GoogleChrome Firefox fiddler git TortoiseGit Emacs 7zip keepass truecrypt |
When hosting our web applications, we often have one public IP
address (i.e., an IP address visible to the outside world)
using which we want to host multiple web apps. For example, one
may wants to host three different web apps respectively for
example1.com
, example2.com
, and example1.com/images
on
the same machine using a single IP address.
How can we do that? Well, the good news is Internet browsers
crontab -e | |
*/5 * * * * /usr/bin/sudo -H /home/pi/my-scripts/checkwifi.sh >> /dev/null 2>&1 |
alias.ec=config --global -e | |
alias.up=pull --rebase | |
alias.co=checkout | |
alias.cob=checkout -b | |
alias.ls=log --pretty=format:'%C(yellow)%h%Creset%C(bold red)%d %Creset%s%Cgreen [%cn] %C(bold green)(%cr)%Creset' --decorate | |
alias.ll=log --graph --pretty=format:'%Cred%h%Creset -%C(bold yellow)%d%Creset %s %Cgreen(%cr) %C(dim green)<%an>%Creset' --abbrev-commit -- | |
date=relative | |
alias.f=!git ls-files | grep -i | |
alias.grep=grep -Ii | |
alias.m=merge |
#!/usr/bin/env python | |
import sqlite3 | |
import threading | |
from time import time, sleep, gmtime, strftime | |
import serial | |
import requests | |
# global variales |
var expect = require('chai').expect; | |
var d3 = require('d3'); | |
describe('app', function () { | |
var myData = [ | |
{ countryCode: 'DE', areaName: 'DE1', speciesName: 's1', totalScore: 1000 }, | |
{ countryCode: 'DE', areaName: 'DE1', speciesName: 's2', totalScore: 2000 }, | |
{ countryCode: 'DE', areaName: 'DE1', speciesName: 's3', totalScore: 3000 }, | |
{ countryCode: 'DE', areaName: 'DE2', speciesName: 's1', totalScore: 1000 }, |