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 / sample_entry.markdown
Last active April 12, 2020 18:17 — forked from burtlo/sample_entry.markdown
This has been modified from @Burtio's. This has the TemplateWrapper needed for Jekyll installations. I also converted the css to scss. It has more properties that I needed for compatibility with our site's styling, and styling is based on OSX 10.11. I had to abandon this because gh-pages doesn't support custom plugins.

To get started with Rails we need to install the gem. From the terminal type:

{% terminal %}
$ gem install rails
Fetching: i18n-0.6.1.gem (100%)
Fetching: multi_json-1.3.6.gem (100%)
Fetching: activesupport-3.2.8.gem (100%)
...
{% endterminal %}
@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)
@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 / 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 / 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
var situation = 'pigs';
var conditionEnd = ' like it\'s hot.';
switch (situation) {
case 'pigs':
console.log('Park it' + conditionEnd);
break;
case 'pimps':
console.log('Drop it' + conditionEnd);
break;