#Create bitbucket branch
##Create local branch
$ git checkout -b sync
Switched to a new branch 'sync'
$ git branch
master
* sync
#Create bitbucket branch
##Create local branch
$ git checkout -b sync
Switched to a new branch 'sync'
$ git branch
master
* sync
#Create bitbucket branch
##Create local branch
$ git checkout -b sync
Switched to a new branch 'sync'
$ git branch
master
* sync
| # This is a template .gitignore file for git-managed WordPress projects. | |
| # | |
| # Fact: you don't want WordPress core files, or your server-specific | |
| # configuration files etc., in your project's repository. You just don't. | |
| # | |
| # Solution: stick this file up your repository root (which it assumes is | |
| # also the WordPress root directory) and add exceptions for any plugins, | |
| # themes, and other directories that should be under version control. | |
| # | |
| # See the comments below for more info on how to add exceptions for your |
| <?php | |
| /* | |
| Plugin Name: Image P tag remover | |
| Description: Plugin to remove p tags from around images and iframes in content outputting, after WP autop filter has added them. (oh the irony) | |
| Version: 1.1 | |
| Author: Fublo Ltd | |
| Author URI: http://blog.fublo.net/2011/05/wordpress-p-tag-removal/ | |
| */ | |
| function filter_ptags_on_images($content) |
| <?php | |
| /* | |
| Plugin Name: Disable plugins when doing local dev | |
| Description: If the WP_LOCAL_DEV constant is true, disables plugins that you specify | |
| Version: 0.1 | |
| License: GPL version 2 or any later version | |
| Author: Mark Jaquith | |
| Author URI: http://coveredwebservices.com/ | |
| */ |
| #!/usr/bin/env python | |
| """ | |
| Last.fm scrobbling for Pianobar, the command-line Pandora client. Requires Pianobar, Python, pyLast and Last.fm API credentials. | |
| https://github.com/PromyLOPh/pianobar/ | |
| http://code.google.com/p/pylast/ | |
| http://www.last.fm/api/account | |
| Installation: | |
| 1) Copy this script and pylast.py to the Pianobar config directory, ~/.config/pianobar/, and make sure this script is executable |
| # ***************************************** | |
| # .irbrc | |
| # | |
| # Tim Harvey - Literacy5 | |
| # http://literacy5.com/ | |
| # | |
| # Includes tons of visual sugar, based on the | |
| # work of: | |
| # | |
| # UnixMonkey - http://gist.github.com/254551 |
| <!-- ============================================================== --> | |
| <!-- = Code Snippets from Mobile Webkit Development Talk on 11/16 = --> | |
| <!-- ============================================================== --> | |
| <!-- =========================== --> | |
| <!-- = Conditional Stylesheets = --> | |
| <!-- =========================== --> | |
| <link media="only screen and (max-device-width: 480px)" href="small-device.css" type= "text/css" rel="stylesheet"> |