- Set up the branches
git checkout master
git branch MAXT-F
git checkout -b MAXT-B
[ | |
"affenpinscher", | |
"afghan hound", | |
"afghan shepherd", | |
"aidi", | |
"airedale terrier", | |
"akbash", | |
"akita inu", | |
"alano español", | |
"alaskan klee kai", |
{ | |
"undef": true, | |
"bitwise": true, | |
"eqeqeq": true, | |
"forin": true, | |
"freeze": true, | |
"immed": true, | |
"latedef": true, | |
"newcap": true, | |
"noarg": true, |
(function () { | |
'use strict'; | |
/* Very simple integration, you can add more of the options to | |
* the component from the list in the 'Options' section of | |
* http://getbootstrap.com/javascript/#tooltips-usage | |
* | |
* Usage: | |
* <button type="button">{{#bs-tooltip title="tooltip text"}}Words{{/bs-tooltip}}</button> | |
*/ |
/* | |
* This was the quickest way I could figure out how to load | |
* the authenticated user into the app. It would make more sense | |
* if I only made one query to the server for the authenticated user | |
* (I could put the user id into a hidden input and load it from there) | |
*/ | |
App.initializer({ | |
name: 'loadCurrentUser', | |
after: 'store', |
// Using the underscore library to loop | |
comments = _.map(ids, function (id) { | |
return self.store.createRecord('comment', { | |
date: new Date(), | |
owner: id, | |
type: 'Mailed Notice' | |
}); | |
}); | |
comments.invoke('save'); |
def add_string_nums(s1, s2): | |
if s1 is None or s2 is None: | |
raise AttributeError() | |
val = 0 | |
rev_s1 = s1[::-1] | |
rev_s2 = s2[::-1] | |
for i in range(len(s1)): | |
curr = ord(rev_s1[i]) | |
if curr >= 48 and curr <= 57: | |
val += (curr - 48) * 10 ** i |
[user] | |
email = [email protected] | |
name = Arthur Burkart | |
[core] | |
editor = vim | |
[color] | |
ui = true | |
[color "branch"] | |
current = yellow reverse | |
local = yellow |
var gulp = require('gulp'); | |
gulp.task('default', function() { | |
console.log(process.env.HELLO); | |
}); |