As configured in my dotfiles.
start new:
tmux
start new with session name:
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
"""[application description here]""" | |
__appname__ = "[application name here]" | |
__author__ = "Stephan Sokolow (deitarion/SSokolow)" | |
__version__ = "0.0pre0" | |
__license__ = "GNU GPL 3.0 or later" | |
import logging |
@@ -28,7 +28,7 @@ | |
### Set diff-cmd to the absolute path of your 'diff' program. | |
### This will override the compile-time default, which is to use | |
### Subversion's internal diff implementation. | |
-# diff-cmd = diff_program (diff, gdiff, etc.) | |
+diff-cmd = colordiff | |
### Set diff3-cmd to the absolute path of your 'diff3' program. | |
### This will override the compile-time default, which is to use | |
### Subversion's internal diff3 implementation. |
As configured in my dotfiles.
start new:
tmux
start new with session name:
For excessively paranoid client authentication.
Organization & Common Name: Some human identifier for this server CA.
openssl genrsa -des3 -out ca.key 4096
openssl req -new -x509 -days 365 -key ca.key -out ca.crt
https://dl.dropboxusercontent.com/u/992380/podcast/june2013/01%20Pembukaan%20oleh%20Zaki%20Akhmad.ogg https://dl.dropboxusercontent.com/u/992380/podcast/june2013/02%20Pembicara%20Kunci%20(welcoming%20speech)%20tentang%20Indonesia%20Scenario%20Assessment%20for%20Emergencies%20(InaSAFE)%20oleh%20Dr.%20Trevor%20Dhu.ogg https://dl.dropboxusercontent.com/u/992380/podcast/june2013/03%20Implementasi%20VendisScript%20di%20Python%20oleh%20Irsyad%20Asyhari%20Lubis.ogg https://dl.dropboxusercontent.com/u/992380/podcast/june2013/04%20Haystack%20%2B%20ElasticSearch%20oleh%20Gilang%20Chandrasa.ogg https://dl.dropboxusercontent.com/u/992380/podcast/june2013/05%20Pengenalan%20SQLAlchemy%20oleh%20Tino.ogg https://dl.dropboxusercontent.com/u/992380/podcast/june2013/06%20QGIS%20and%20It's%20Python%20Bindings%20oleh%20Tim%20Sutton.ogg
# delete local tag '12345' | |
git tag -d 12345 | |
# delete remote tag '12345' (eg, GitHub version too) | |
git push origin :refs/tags/12345 | |
# alternative approach | |
git push --delete origin tagName | |
git tag -d tagName |
# migrating from https://github.com/robbyrussell/oh-my-zsh/blob/master/plugins/git/git.plugin.zsh | |
# Aliases | |
alias g='git' | |
#compdef g=git | |
alias gst='git status' | |
#compdef _git gst=git-status | |
alias gd='git diff' | |
#compdef _git gd=git-diff | |
alias gdc='git diff --cached' |