This is a bare minimum guide to try traefik with Docker.
port = ":80"
[web]
This is a bare minimum guide to try traefik with Docker.
port = ":80"
[web]
Following is the absolute minimal celerybeat setup. I will use redis as the broker. | |
Install and run redis | |
on Ubuntu | |
sudo apt-get install redis-server | |
on CentOS | |
sudo yum install redis |
`````` | |
`./syhddddddhys/.` | |
`-sdNmy+/:....:/+ymNds-` | |
:dNd+- ``.....` -+dNd: | |
`yMd: .:++ooooooo+:. :dMy` | |
.dMs` .+ooo+:----:+ooo+. `sMd. | |
dMs .////. ./ooo: sMd | |
/Mm` :ooo. `mM/ | |
oMy ooo/ yMo | |
oMy `ooo: yMo |
#!/usr/bin/env python | |
""" | |
This script implements a git subcommand for viewing git branches with | |
a summary on how far behind/ahead each branch is compared to current branch. | |
copy the file to somewhere in the path as git-branches and make it executable | |
then you can use `git branches` to see summary of unmerged branches |
#!/usr/bin/env bash | |
# Make your multimedia keybindings work with both spotify and mocp. | |
# I prefer to have them control Spotify when it's open. | |
# Place this script somewhere in $PATH and bind multimedia keys/your favorite | |
# shortcuts accordingly. The commands are self explanatory | |
# | |
# playdog -playpause | |
# playdog -pause | |
# playdog -next |
#!/usr/bin/env python | |
from sys import argv, exit | |
from os import path | |
import datetime | |
if len(argv) == 5: | |
(script, inputf, outputf, sign, msec) = argv | |
else: | |
print "fixsrt <input.srt> <output.srt> <+/-> <milli seconds>" | |
exit(1) |
I hereby claim:
To claim this, I am signing this object:
#!/usr/bin/env bash | |
# This script pauses music on Ubuntu when screen is locked (cmd+l) | |
# My other script 'playdog' is required. | |
# It gives you seamless controls to vlc, spotify and mocp | |
# You should add this script to startup scripts | |
# Get playdog here: https://gist.github.com/chanux/db01bd2c66effc7a259f | |
dbus-monitor --session "type='signal',interface='com.ubuntu.Upstart0_6'" | | |
while read x; do |
#!/usr/bin/env python | |
import argparse | |
import psycopg2 | |
""" | |
Script to help copy data to postgres databases from mysql dump files | |
mysql2postgres -f <mysql dump file> -t <postgres table name> -c <comma separated list of columns> | |
NOTE: the column name list should be in order of dump file fields | |
""" |
#!/usr/bin/env python | |
# Inspired by the article http://www.wired.com/gadgetlab/2013/09/laptop-battery | |
# | |
# Info about battery life vary depending on who you ask from. So I'm not sure | |
# what to believe anymore. Anyhow wrote this because the last time I tried at | |
# writing a battery status notifier, I failed. | |
# | |
# I couldn't live with that memory! |