Skip to content

Instantly share code, notes, and snippets.

View imjoshholloway's full-sized avatar

Josh Holloway imjoshholloway

View GitHub Profile

Keybase proof

I hereby claim:

  • I am imjoshholloway on github.
  • I am imjoshholloway (https://keybase.io/imjoshholloway) on keybase.
  • I have a public key ASD_0BulOg574SEiZsFrjuzlxHDIwsbDa_jx-nJ2FmAE2Ao

To claim this, I am signing this object:

@imjoshholloway
imjoshholloway / countries-without-postcodes.js
Created March 10, 2015 09:57
Countries without Postcodes
'use strict';
module.exports = [
{name: 'Angola', code: 'AO'},
{name: 'Antigua and Barbuda', code: 'AG'},
{name: 'Aruba', code: 'AW'},
{name: 'Bahamas', code: 'BS'},
{name: 'Belize', code: 'BZ'},
{name: 'Benin', code: 'BJ'},
{name: 'Botswana', code: 'BW'},
@imjoshholloway
imjoshholloway / app.js
Last active July 8, 2016 15:36
ngPluralize but with support for HTML
angular.module('myApp', ['ngPluralizeHtml'])
function AppController() {
var vm = this;
vm.count = 10;
}
.controller('AppController', AppController);
(function(angular, undefined) {
'use strict';
angular.module('app', ['title', 'ui.router'])
.config(appConfig);
function appConfig($stateProvider) {
$stateProvider.state('app.dashboard', {