Skip to content

Instantly share code, notes, and snippets.

View neight-allen's full-sized avatar

Nate Allen neight-allen

View GitHub Profile
@neight-allen
neight-allen / 0_reuse_code.js
Created August 22, 2016 18:53
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
@neight-allen
neight-allen / encoder.js
Created September 2, 2016 18:22
Huffman decoder solutions
//Using Loops
Encoder.prototype.decode = function(bitstring) {
var bits = bitstring.split('');
var message = "";
while(bits.length) {
var currentNode = this.root;
while(currentNode.constructor.name == 'Node') {
currentNode = (bits.shift() === '0') ? currentNode.left : currentNode.right;
}

I'm trying to create a profile of a hirable graduate. Mostly looking for baseline right now. Necessities.

Give me 5ish things for each category. If you go wild and list a lot of things, star the 5 most important.

Technical Skills

Soft Skills

Mindsets and perspectives

@neight-allen
neight-allen / demoschedule.markdown
Last active September 22, 2016 22:50 — forked from rrgayhart/demoschedule.markdown
demo schedule

First Half

  • Seven Levels of Code - Parker & Ryan - Rating Form
  • GoodGrocer - Jasmin Hudacsek, Jean Joeris, Raphael Barbo
  • Accepted - Matt Campbell - Rating Form
  • FestSuggest - Ryan Flach - Rating Form
  • TagPro 0.1 - Brian Sayler and Robbie Jaeger - Rating Form

Second Half

  • The Waddams Emporium - David Davydov, Sonia Gupta, Jesse Spevack, Susi Irein
@neight-allen
neight-allen / Outline.md
Last active September 23, 2016 17:41
What is PHP?

What is LAMP?

I Love Lamp

Getting up and running

https://www.mamp.info/en/

  1. Install MAMP
  2. Run MAMP from Applications
  3. Chose MAMP instead of MAMP Pro
@neight-allen
neight-allen / the_job_profiling_assignment.md
Last active October 20, 2016 18:50
The 'Job Profiling' Assignment

The 'Job Profiling' Assignment

List 5 companies you might want to apply for:

  • GoSpotCheck
  • Viper
  • CaptainU
  • SendGrid
  • CA Technologies
@neight-allen
neight-allen / readmelove.md
Last active November 7, 2016 15:18 — forked from rrgayhart/readmelove.md
README Love

##PROTIP: README Love

READMEs are AWESOME. They are one of the best things you can add to a repo, (other than quality code), to make it look professional.

####Things that make a README great:

  • A link to the production site on heroku
  • A screenshot (or a few) of what the app does (This is especially important if you don't have the production app up and running yet)
  • Directions on how to clone or fork the repo and run it locally (explain it like you're explaining things to a totally new programmer)

9:00: Introduction

Setting the Context:

This is similar to a consulting situation where you basically run out of billable hours and need to wrap up and leave things in a good state for the client or the next consultant on the project. Since we had a pretty informal Scale Up, and since we didn't have a cohort retro on Friday - let's also take this opportunity to support one another with some technical reviews!

Prime Directive ‘Regardless of what we discover, we understand and truly believe that everyone did the best job he or she could, given what was known at the time, his or her skills and abilities, the resources available, and the situation at hand.’

9:05: Small Groups: Project Discussion