I hereby claim:
- I am scarney81 on github.
- I am sethcarney (https://keybase.io/sethcarney) on keybase.
- I have a public key ASDVglVBNIaQey9k7xEWkNy72X-FqqSZrPtY8IwDOX4oFQo
To claim this, I am signing this object:
import axios from "axios"; | |
const people = { | |
Seth: "[email protected]" | |
Nick: "[email protected]", | |
Aman: "[email protected]", | |
Troy: "[email protected]", | |
}; | |
const names = Object.keys(people); |
{ | |
"name": "vanilla-typescript", | |
"version": "1.0.0", | |
"description": "JavaScript and TypeScript example starter project", | |
"main": "index.html", | |
"scripts": { | |
"start": "parcel index.html --open", | |
"build": "parcel build index.html" | |
}, | |
"dependencies": { |
I hereby claim:
To claim this, I am signing this object:
//= require ../index | |
(function () { | |
'use strict'; | |
angular | |
.module('projects/directives') | |
.directive('projects', function ($q, currentUser, Project, Workflow, viewOptions) { | |
return { | |
restrict: 'E', |
alias hammer=gruntWatch | |
function gruntWatch() { | |
# increase file watch limits | |
sudo launchctl limit maxfiles 10480 10480 | |
ulimit -n 10480 | |
# remove existing build directories | |
rm -rf ./_dist |
(function () { | |
'use strict'; | |
var _ = require('underscore'), | |
routes = require('./routes'), | |
log = function (method) { | |
return function (route) { | |
console.log(route + ' -- ' + method); | |
}; | |
}, |
var ApplicationView = StativusView.extend({ | |
template: _.template('<a href="#">Stativus</a>'), | |
events: { | |
'click a': 'showAlert' | |
}, | |
render: function() { | |
this.$el.html(this.template()); |
/*globals describe, beforeEach, it */ | |
var should = require('should'), | |
mockery = require('mockery'), | |
helpers = require('./helpers'), | |
Cache = require('../chatter-cache').ChatterCache; | |
describe('Chatter Cache', function() { | |
var proxy = null; |