Skip to content

Instantly share code, notes, and snippets.

View noobjey's full-sized avatar

Jason Wright noobjey

  • Turing.io
  • Denver, CO
View GitHub Profile
@noobjey
noobjey / gist:12e050da7c9e1b5793dd
Created August 25, 2015 19:06
Sass - Lighting Talk Module 2
# Sass, css for Cool People
### What is Sass
* Precompiler for CSS
* Why use it?
### Sass in Rails
* Setup - just a gem
### 2 Different Flava's
- Name, current cohort, current module
Jason Wright
1505
Module 2
- Where are you from?
Columbia, MO
- What were you doing before Turing?
@noobjey
noobjey / gist:293c3a65d8a97f164d1c
Created July 22, 2015 04:38
Javascript Testing with Jasmine
# Javascript Testing with Jasmine
### What is Jasmine
* BDD testing framework
* Created by Pivotal Labs
* Goal was to make writing test similar to writing user stories
### The Pattern
* Given an inital context
jasmines version of this

Current State

  • What are you currently doing to step out of your lane?
  • What are the most rewarding interactions you've had during your time at Turing?
  • What identity do you project to your fellow students? Outside the building?

Future State

  • If a thousand people would listen to what you have to say, what would you
@noobjey
noobjey / gist:574eeb18b2719255e5ee
Created May 27, 2015 14:39
brooks posse warm up - fizz buzz
def divisable_by_five(number)
return number % 5 == 0
end
def divisable_by_three(number)
return number % 3 == 0
end
def fizzbuzz(num)