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
.arrowRight:after { | |
content: "\27A1"; /* Unicode block arrow */ | |
font-size: 2em; /* Make it big */ | |
display: inline-block; /* Give it block properties (margin/padding) without putting in a new line */ | |
vertical-align: middle; /* Align it in relation to its neighbors */ | |
text-decoration: none; /* Inside a link, don't underline this part */ | |
color: #1a96c6; | |
margin-right: 5px; /* Breathing room */ | |
position: relative; /* Needed to make top/left work */ | |
top: -0.08em; /* Fudge it up a bit */ |
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
.bubble { | |
width: 18px; | |
height: 18px; | |
line-height: 19px; | |
border: 1px solid white; | |
-webkit-box-shadow: 0px 1px 2px 0px #333; | |
/*-webkit-box-shadow: 0px 1px 1px 0px #333 */ | |
-webkit-border-radius: 10px; | |
background-image: -webkit-gradient(linear, left top, left bottom, from(#f3888b), to(#c90e17)); | |
color: white; |
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
#!/usr/bin/python | |
import json, sys | |
from subprocess import Popen, PIPE | |
change = sys.argv[2] | |
for x in range(len(sys.argv)): | |
if sys.argv[x] == "--change": | |
change = sys.argv[x+1] | |
break |
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
SetEnv GIT_PROJECT_ROOT /var/www/git | |
SetEnv GIT_HTTP_EXPORT_ALL | |
# This next is needed to enable authenticated push | |
SetEnv REMOTE_USER=$REDIRECT_REMOTE_USER | |
ScriptAlias /git/ /usr/libexec/git-core/git-http-backend/ | |
# Above, trailing slash needed to enable pull | |
<LocationMatch "^/git/.*/git-receive-pack$"> | |
Options +ExecCGI # Needed to enable push | |
AuthName "Protected" |
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
var scimoz = ko.views.manager.currentView.scimoz, | |
savedPos = scimoz.currentPos, | |
savedLinePos = scimoz.firstVisibleLine; | |
try { | |
scimoz.text = scimoz.text.replace(/\t/gm, " "); | |
scimoz.gotoPos(savedPos); | |
scimoz.lineScroll(0, savedLinePos-scimoz.firstVisibleLine); | |
} catch(e) { | |
return true; |
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
var input = "/*global put:true,globals:true,here:true*/" + lines.join("\n"); |
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
predef="require,define" |
NewerOlder