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
h2, h3, h4{ | |
font-weight:normal; | |
font-family:Georgia, serif; | |
padding-left:.5em; | |
} | |
h2{ | |
background:#c3c3c3; | |
border-bottom:solid 1px #959595; | |
color:#6a6a6a; |
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
git push origin master:refs/heads/test | |
#creates test branch | |
#or | |
git push origin local_branch:new_remote_branch |
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
splitter.py img.gif 10 10 | |
splitter.py img.gif 10 15 20 12 |
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
v\:*{ | |
behavior:url(#default#VML); | |
} |
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 Tabs=new Class({ | |
Implements: [Events, Options], | |
options: { | |
}, | |
initialize: function(options){ |
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
import os | |
def relpath(path, root=''): | |
if not root: | |
root=os.curdir | |
path=os.path.normpath(path) | |
root=os.path.normpath(root) | |
common=os.path.commonprefix((path, root)) | |
tail=root[len(common):] |
OlderNewer