I hereby claim:
- I am egel on github.
- I am egel (https://keybase.io/egel) on keybase.
- I have a public key ASB3Kr8PUznjDEU8aZvR9gsFDFtaxahivFn5vgs8ttHgTQo
To claim this, I am signing this object:
| #!/usr/bin/python | |
| # -*- coding: utf-8 -*- | |
| import sublime_plugin | |
| import subprocess | |
| from time import sleep | |
| import sys | |
| cl = lambda line: subprocess.Popen(line, shell=True, stdout=subprocess.PIPE).communicate()[0].strip() | |
| log = lambda message: sys.stderr.write("Log: %s\n" % message) |
| " ------------- | |
| " General | |
| " ------------- | |
| set number " Show line numbers | |
| set linebreak " Break lines at word (requires Wrap lines) | |
| set showbreak=+++ " Wrap-broken line prefix | |
| set textwidth=120 " Line wrap (number of cols) | |
| set showmatch " Highlight matching brace | |
| set visualbell " Use visual bell (no beeping) |
| .caf Core Audio File 4.5 stars | |
| .abm Music Album 4.5 stars | |
| .oga Ogg Vorbis Audio File | |
| .omf Open Media Framework File | |
| .pla Sansa Playlist File | |
| .asd Ableton Live Sample Analysis File | |
| .bnk Adlib Instrument Bank | |
| .bun Cakewalk Bundle File | |
| .csh Cubase Waveform File | |
| .hsb HALion Sound Bank File |
| { | |
| "folders": | |
| [ | |
| { | |
| "follow_symlinks": true, | |
| "path": ".", | |
| "folder_exclude_patterns": | |
| [ | |
| "bin", | |
| "include", |
| #!/bin/bash | |
| set -o errexit | |
| echo "Removing exited docker containers..." | |
| docker ps -a -f status=exited | grep ^data | awk '{print $1}' | xargs -r docker rm -v | |
| #docker ps -a -f status=exited -q | xargs -r docker rm -v | |
| echo "Removing dangling images..." | |
| docker images --no-trunc -q -f dangling=true | xargs -r docker rmi |
| # To work, link this file to your .bashrc file | |
| # Add colors to man pages | |
| export LESS_TERMCAP_mb=$'\E[01;31m' # enter blinking mode | |
| export LESS_TERMCAP_md=$'\E[01;31m' # enter double-bright mode | |
| export LESS_TERMCAP_me=$'\E[0m' # turn off all appearance modes (mb, md, so, us) | |
| export LESS_TERMCAP_se=$'\E[0m' # leave standout mode | |
| export LESS_TERMCAP_so=$'\E[01;44;33m' # enter standout mode – yellow | |
| export LESS_TERMCAP_ue=$'\E[0m' # leave underline mode | |
| export LESS_TERMCAP_us=$'\E[01;32m' # enter underline mode |
| SIZE=500 | |
| EMAIL="maciejsypien@gmail.com" | |
| curl "http://www.gravatar.com/avatar/$(echo -n ${EMAIL} | md5sum | awk '{print $1}')?s=${SIZE}" > gravatar.png |
| #!/bin/bash | |
| _command=$1 | |
| AUTHOR="Maciej Sypień <maciejsypien@gmail.com>" | |
| if [ -z "$_command" ]; then | |
| printf "clear|install|uninstall\n" | |
| exit 1 | |
| fi |
I hereby claim:
To claim this, I am signing this object:
| # bash/zsh git prompt support | |
| # | |
| # Copyright (C) 2006,2007 Shawn O. Pearce <spearce@spearce.org> | |
| # Distributed under the GNU General Public License, version 2.0. | |
| # | |
| # This script allows you to see repository status in your prompt. | |
| # | |
| # To enable: | |
| # | |
| # 1) Copy this file to somewhere (e.g. ~/.git-prompt.sh). |