I hereby claim:
- I am adamweeks on github.
- I am adamweeks (https://keybase.io/adamweeks) on keybase.
- I have a public key whose fingerprint is 4711 16EE 3DDE 01D9 36FE 7E11 749D 236F BECA CB30
To claim this, I am signing this object:
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
<!DOCTYPE html> | |
<html ng-app="demo"> | |
<head> | |
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.3.2/angular.min.js"></script> | |
<meta charset="utf-8"> | |
<title>Angular Demo</title> | |
</head> | |
<body ng-controller="DemoController as demo"> | |
<p>demo.welcome: {{demo.welcome}}</p> | |
<p>Name: <input ng-model="demo.inputValue"></p> |
<!DOCTYPE html> | |
<html ng-app="demo"> | |
<head> | |
<script src="https://code.jquery.com/jquery.min.js"></script> | |
<link href="https://netdna.bootstrapcdn.com/twitter-bootstrap/2.3.2/css/bootstrap-combined.min.css" rel="stylesheet" type="text/css" /> | |
<script src="https://netdna.bootstrapcdn.com/twitter-bootstrap/2.3.2/js/bootstrap.min.js"></script> | |
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.3.2/angular.min.js"></script> | |
<meta charset="utf-8"> | |
<title>Angular Demo</title> | |
</head> |
'use strict'; | |
describe('My Great Directive', function() { | |
var $rootScope; | |
var $controller; | |
var $window; | |
var $httpBackend; | |
var $compile; | |
var scope; | |
var MyFancyService |
(function() { | |
'use strict'; | |
angular.module('${moduleName}', []) | |
.service('${serviceName}', [${serviceName}]); | |
function ${serviceName}() { | |
var service = this; | |
} | |
})(); |
// | |
// UIImage+UIColor.h | |
// | |
// Created by Adam Weeks on 7/27/13. | |
// Copyright (c) 2013 AppsVersusRobots, LLC. All rights reserved. | |
// | |
#import <UIKit/UIKit.h> | |
@interface UIImage (UIColor) |
NSInteger delayTime = 2; | |
dispatch_after(dispatch_time(DISPATCH_TIME_NOW, delayTime * NSEC_PER_SEC), dispatch_get_current_queue(), ^{ | |
[self updateViewWithData]; | |
}); |
{ | |
"ESLint Disable Line": { | |
"prefix": "eslignore", | |
"body": [ | |
"//eslint-disable-line" | |
], | |
"description": "Disable ESLint for the given line" | |
} | |
} |
"scripts": { | |
"eslint": "eslint -c .eslintrc $(git diff --staged --diff-filter=ACMTUXB --name-only -- '*.js'); exit 0" | |
} |
I hereby claim:
To claim this, I am signing this object: