This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Using :not as @supports. | |
*/ | |
article | |
{ | |
background-color: #7e7; | |
font-family: Droid Sans, Helvetica, Arial, sans; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* HG stylesheet, based on "Basecamp" | |
*/ | |
body, input, select, textarea, h1, h2, h3, h4 { | |
font-family: "Lucida Grande", "Segoe UI", verdana, arial, helvetica, sans-serif !important; | |
} | |
body { | |
background-color: #bbb; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name PurpleMine | |
// @namespace http://redmine.holonglobe.com/ | |
// @version 0.1 | |
// @description Few tweaks for #redmine. #userscript | |
// @match https://redmine.* | |
// @copyright 2013+, Marek `saji` Augustynowicz | |
// ==/UserScript== | |
/** |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[user] | |
email = [email protected] | |
name = Marek 'saji' Augustynowicz | |
[color] | |
ui = auto | |
[alias] | |
lg = log --graph --pretty=slim --abbrev-commit --date=relative | |
lgg = !git lg --branches --date-order --date=local | |
wtf = !git-wtf.rb --relations --short | |
mmerge = merge --no-ff --log=9999 --edit --no-commit |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
cd "$( dirname "$0" )/src/public" | |
echo "\ | |
APPLICATION_ENV=development \ | |
INSTANCE_NAME=crls \ | |
exec php -d max_input_vars=1111 -S 0.0.0.0:8000 2>&1" \ | |
| script /dev/null \ | |
| grep -vP '\[200\]: \/+(image|style|script|logo|theme)' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
PS1_git() { | |
BRANCH="$( git rev-parse --abbrev-ref HEAD 2>/dev/null )" | |
BRANCH="$( git describe --abbrev=0 --tags --match="$BRANCH-*" 2>/dev/null || echo "$BRANCH" )" | |
test -n "$BRANCH" && echo "($BRANCH) " | |
} | |
PS1="\[\033[0;34m\]\$( PS1_git )\[\033[0m\]$PS1" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# | |
# source: http://tldp.org/HOWTO/Bash-Prompt-HOWTO/x329.html | |
# | |
# This file echoes a bunch of color codes to the | |
# terminal to demonstrate what's available. Each | |
# line is the color code of one forground color, | |
# out of 17 (default + 16 escapes), followed by a | |
# test use of that color on all nine background |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* omganimations. | |
*/ | |
.snowflakes | |
{ | |
height: 3em; | |
font-size: 2em; | |
width: 100%; | |
background-color: #36e; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# Show from which one of integration branches does current branch grows from | |
# (c) Marek `saji` Augustynowicz | |
# | |
# INSTALL: | |
# git config alias.grows-from '!sh .git/bin/grows-from.sh' | |
# | |
# USAGE: | |
# git grows-from [<commit>] |