git log --pretty=format:"%h%x09%an%x09%ad%x09%s" --author="Jayson"
This file contains 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 branch -m old_branch new_branch # Rename branch locally | |
git push origin :old_branch # Delete the old branch | |
git push --set-upstream origin new_branch # Push the new branch, set local branch to track the new remote |
http://jilles.me/badassify-your-terminal-and-shell/
wget https://raw.githubusercontent.com/rupa/z/master/z.sh -O ~/z.sh
echo . /path/to/z.sh >> ~/.bashrc
echo . /path/to/z.sh >> ~/.zshrc
python -m SimpleHTTPServer 8000
This file contains 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
.element { | |
position: relative; | |
top: 50%; | |
transform: translateY(-50%); | |
} | |
/* Mixin */ | |
@mixin vertical-align { | |
position: relative; | |
top: 50%; |
This file contains 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
$('sup:contains("[")').each(function () { | |
var $this = $(this), | |
anchor = $this.attr('data-anchor'), | |
text ='#legal-'+ $this.text().replace('[','').replace(']',''); | |
if(anchor === text){ | |
}else{ | |
console.log('false', $this[0]); | |
} |
For OSX, open Terminal and run:
$ open -a Google\ Chrome --args --disable-web-security
For Linux run:
$ google-chrome --disable-web-security
Also if you're trying to access local files for dev purposes like AJAX or JSON, you can use this flag too.
-–allow-file-access-from-files
Apple has introduced an interesting tool with Xcode 6!
simctl
simclt allows you to control the simulators running
run xcrun simctl to get the list of available subcommands. Lots of new options to play around.
Now to do what I wanted. Here is the command to launch simulator