Meal: dinner
Reservation: required
Website: https://plus.google.com/113489145746706123868/about?hl=en
Meal: dinner
Reservation: required
Website: https://plus.google.com/113489145746706123868/about?hl=en
List of occupations and their taxable incomes for financial year 2009-10. This graph was generated as part of my quest to learn d3.js in more detail. My next aim is to fork this gist, and understand what is happening behind the scenes.
Data provided by ATO.
(function (Backbone) { | |
var _old = Backbone.Model; | |
// Take a Backbone.Model and introduce a proper set of accessors based on | |
// `defaults`. Instead of having to use accessor methods like `get` and | |
// `set`, just accesss your model properties: | |
// | |
// var user = new User(); | |
// user.name = 'David'; |
Running "jshint:all" (jshint) task | |
[D] Task source: /Users/davidhong/Github/grunt-coffeeify/node_modules/grunt-contrib-jshint/tasks/jshint.js | |
>> 3 files lint free. | |
Running "clean:tests" (clean) task | |
[D] Task source: /Users/davidhong/Github/grunt-coffeeify/node_modules/grunt-contrib-clean/tasks/clean.js | |
Cleaning "tmp"...OK | |
Running "coffeeify:default_options" (coffeeify) task | |
[D] Task source: tasks/coffeeify.js |
In my view, there are two ways to go about this problem. The first, is to provide a low-level text editing platform which users can use to implement their own functions to perform three operations outlined above. Second, is to provide a markdown specific API.
/** | |
* Buttons, buttons, buttons for scrooge! | |
*/ | |
@import url(http://fonts.googleapis.com/css?family=Oswald); | |
button, label { | |
font-family: 'Oswald', Helvetica, Arial; | |
font-size: 100%; | |
line-height: normal; |
<!DOCTYPE html> | |
<html> | |
<head> | |
<script src="http://documentcloud.github.io/underscore/underscore-min.js"></script> | |
<script src="http://documentcloud.github.io/backbone/backbone-min.js"></script> | |
<script src="http://code.jquery.com/jquery-git2.js"></script> | |
<script src="http://marionettejs.com/downloads/backbone.marionette.min.js"></script> | |
<meta charset=utf-8 /> | |
<title>JS Bin</title> | |
</head> |
html { | |
font-size: 100%; | |
} | |
img, | |
button, | |
input { | |
-webkit-appearance: none; | |
display: block; | |
Locate the section for your stash remote in the .git/config
file. It looks like this:
[remote "origin"]
fetch = +refs/heads/*:refs/remotes/origin/*
url = [email protected]:private/repository.git
Now add the line fetch = +refs/pull-requests/*:refs/remotes/origin/pull-requests/*
to this section. Obviously, change the stash url to match your project's URL. It ends up looking like this: