I hereby claim:
- I am hatched on github.
- I am hatch (https://keybase.io/hatch) on keybase.
- I have a public key whose fingerprint is 7BE1 5E29 6AD9 1AC2 D120 BC84 442D B272 F77D E75E
To claim this, I am signing this object:
.header_3fP58 nav section>nav { | |
transform: translateX(-50%) skew(0deg, 0deg); | |
} |
function foo({bar=0} = {}) { | |
console.log(bar) | |
} | |
foo({bar: 7}) // 7 | |
foo() // 0 | |
foo(true) // 0 |
cd ~ | |
mkdir -p charms/trusty | |
cd charms/trusty | |
bzr branch lp:~juju-gui/charms/trusty/juju-gui/trunk juju-gui | |
cd ../ | |
juju bootstrap | |
juju deploy --repository=. local:trusty/juju-gui | |
juju set juju-gui juju-gui-source=develop |
serviceAttrs = Y.mix({ | |
id: 'mediawiki', | |
charm: charmId, | |
exposed: false, | |
upgrade_available: true, | |
upgrade_to: 'cs:precise/mediawiki-15' | |
}, serviceAttrs, true, null, 0, true); |
commit 01a5436b73538edbb9537a6db318ac176dec2caa | |
Author: Jeff Pihach <[email protected]> | |
Date: Wed Jul 9 09:43:53 2014 -0600 | |
Adding manually placed units calls env add_unit method | |
diff --git a/app/templates/scale-up.handlebars b/app/templates/scale-up.handlebars | |
index 6ad5de0..740caa7 100644 | |
--- a/app/templates/scale-up.handlebars | |
+++ b/app/templates/scale-up.handlebars |
it('opens the options with the correct constraints details', function(done) { | |
// It shouldn't show constraints details if the manual placement radio | |
// is selected. | |
var toggleScaleUp = utils.makeStubMethod(View.prototype, '_toggleScaleUp'); | |
this._cleanups.push(toggleScaleUp.reset); | |
var toggleConstraints = utils.makeStubMethod( | |
View.prototype, '_toggleConstraints'); | |
this._cleanups.push(toggleConstraints.reset); | |
instantiateView(this).render(); |
diff --git a/app/widgets/create-machine-view.js b/app/widgets/create-machine-view.js | |
index ff6d965..9a9961b 100644 | |
--- a/app/widgets/create-machine-view.js | |
+++ b/app/widgets/create-machine-view.js | |
@@ -93,8 +93,13 @@ YUI.add('create-machine-view', function(Y) { | |
*/ | |
_handleContainerTypeChange: function(e) { | |
e.preventDefault(); | |
- var constraints = this.get('container').one('.constraints'), | |
- newVal = e.target.one('option:checked').get('value'); |
I hereby claim:
To claim this, I am signing this object:
var people = [ | |
'Zoe Washburne', | |
'Hoban Washburne', | |
'Malcolm Reynolds', | |
'Simon Tam', | |
'River Tam', | |
'Buffy Summers', | |
'Dawn Summers' | |
]; |
export PS1='\u@\h:\w `git branch 2> /dev/null | grep -e ^* | sed -E s/^\\\\\*\ \(.+\)$/\(\\\\\1\)\ /`\[\033[37m\]:' |