- nutritional yeast
- avocado
- tahini
- almond
- pumpernickel bread
This file contains hidden or 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
# Logs | |
logs | |
*.log | |
# Runtime data | |
pids | |
*.pid | |
*.seed | |
# Directory for instrumented libs generated by jscoverage/JSCover |
This file contains hidden or 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
weather = | |
$scope.getWeather = (query) -> | |
url = """ | |
http://api.openweathermap.org/data/2.5/forecast/daily | |
?mode=json | |
&units=imperial | |
&cnt=1 | |
&callback=JSON_CALLBACK | |
&q= |
I hereby claim:
- I am axelav on github.
- I am axelav (https://keybase.io/axelav) on keybase.
- I have a public key whose fingerprint is FB90 FCBD BACC C13E 737D 93D3 43BB 7E5D 51D3 326C
To claim this, I am signing this object:
This file contains hidden or 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
gpg2 --export-secret-keys > secret-backup.gpg |
- E-Z Rollers, [Rolled Into](https://www.youtube.com/watch?v=8oVGMSp3fBA One)
- Peshay, Vocal Tune
- Peshay, Piano Tune
- Dillinja, Deep Love
- Dillinja, Sovereign Melody
- LTJ Bukem, Atlantis (I Need You)
- Princess, Say I'm Your Number One (Steve Gurley Remix)
- Blame & Justice, Anthemia
This file contains hidden or 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
/** | |
* This file/module contains all configuration for the build process. | |
*/ | |
/** | |
* Load requires and directory resources | |
*/ | |
var join = require('path').join, | |
bowerrc = JSON.parse(require('fs').readFileSync('./.bowerrc', {encoding: 'utf8'})), | |
bowerJSON = bowerrc.json.replace(/^\.?\/?/, './'), |
This file contains hidden or 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
<div class="form-group"> | |
<label for="password" class="col-sm-4 control-label">New Password</label> | |
<div class="col-sm-8"> | |
<input type="password" name="userPassword" class="form-control" placeholder="password" ng-model="user.password" ng-minlength="8" ui-validate="{uppercase : 'passwordHasUppercaseLetter($value)', lowercase: 'passwordHasLowercaseLetter($value)', number: 'passwordHasNumber($value)'}" required> | |
<div ng-show="resetPasswordForm.userPassword.$dirty && resetPasswordForm.userPassword.$invalid"> | |
<span class="help-block" ng-show="resetPasswordForm.userPassword.$error.required">Please enter your password.</span> | |
<span class="help-block" ng-show="resetPasswordForm.userPassword.$error.minlength">Your password should be at least eight characters.</span> | |
<span class="help-block" ng-show="resetPasswordForm.userPassword.$error.uppercase">Your password should contain at least one uppercase letter.</span> | |
<span class="help-block" ng-show="resetPasswordForm.userPassword.$error |
This file contains hidden or 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
angular.module('directives.scrollSpy', []) | |
.directive('spy', ($location) -> | |
restrict: 'A' | |
require: '^scrollSpy' | |
link: (scope, elem, attrs, scrollSpy) -> | |
attrs.spyClass ?= 'active' | |
elem.click (e) -> | |
e.stopPropagation() |
This file contains hidden or 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
<div ng-app="myApp"> | |
<form name="myForm"> | |
Password: <input ng-model="user.password" type="password" name="password" ng-class="{'ng-invalid':myForm.confirmPassword.$error.match}" /> | |
Confirm: <input ng-model="user.passwordConfirm" type="password" match="user.password" name="confirmPassword" /> | |
<div ng-show="myForm.confirmPassword.$error.match">Passwords do not match!</div> | |
</form> | |
<hr /> | |
<p>Mis-match? {{myForm.confirmPassword.$error.match}}</p> | |
</div> |