Skip to content

Instantly share code, notes, and snippets.

View jaredhensley's full-sized avatar

Jared Hensley jaredhensley

View GitHub Profile
@jaredhensley
jaredhensley / introrx.md
Created October 26, 2015 20:33 — forked from staltz/introrx.md
The introduction to Reactive Programming you've been missing
@jaredhensley
jaredhensley / LICENSE
Last active August 29, 2015 14:27 — forked from ourmaninamsterdam/LICENSE
Arrayzing - The JavaScript array cheatsheet
The MIT License (MIT)
Copyright (c) 2015 Justin Perry
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
the Software, and to permit persons to whom the Software is furnished to do so,
subject to the following conditions:

#Finding a 3-12 Month Programming / Hacker Bootcamp

Disclaimer: if you are serious about a programming / hacker bootcamp know that theses schools are for people who have been playing with code & programming for a while now. They are at the point of learning where they need help closing the gap on the last 1/4 mile of the race. Many of these programs are not for beginners. The promises, guarantees and job potential may entice you but they are often disengenous. The majority of these programs admit less than 20% of applicants. To get started I suggest: codeschool.com + teamtreehouse.com + codeacademy.com.

After working towards a minor in visualization + graphic design, dabbling in freelane work and trying to teach myself code on the web using google, stackoverflow, teamtreehouse.com & other resources, I was ready to find another way. And before I knew it I found myself stumbling down a path programming bootcamps. First, I asked myself what / where are there short-term (3-12mo) development bootcamps/academies

App.Utils.Array = (function () {
'use strict';
var utils = {
// TESTED
// check to see if a value is one of any of the supplied values
anyValue: function (value, values) {
return this.any(values, function (item) {
return item === value;
});