Skip to content

Instantly share code, notes, and snippets.

View novohispano's full-sized avatar

Jorge Téllez novohispano

View GitHub Profile

The Turing School of Software & Design is a 501(c)3 non-profit school located in Denver, Colorado. Our primary program focuses on Ruby, Rails, and JavaScript across four six-week semesters for a total engagement of 27 weeks.

In March of 2015 we joined with a collective of other training providers to form the New Economy Skills Training Association (NESTA). That organization put together a list of outcomes data points that member organizations would publish in the future.

This is the 2015 Outcomes Report for Turing. The following data represents the 1406, 1407, 1409, 1410, 1412, 1502, 1503, and 1505 cohorts of the Turing School, who graduated between December 2014 and December 2015.

Completion Rates

  • Total students who could have graduated: 136
  • Number of students who are still enrolled: 4 (due to repeated modules / breaks)
describe Taija do
context "when Taija sleeps" do
before(:all) do
@taija = Taija.new
@taija.sleeps = true
@taija.save
end
it "forgets to wake up" do
expect(@taija.wake_up).to eql false
class Phone
attr_reader :number
def initialize(input)
@number = validate_phone(input)
end
def area_code
number[0..2]
end
@import url("//hello.myfonts.net/count/34377d")
@font-face
font-family: 'NeueHaasGrotesk-lighter'
font-weight: normal
font-style: italic
src: url('343785_0_0.eot')
src: url('343785_0_0.eot?#iefix') format("embedded-opentype"), url('343785_0_0.woff2') format("woff2"), url('343785_0_0.woff') format("woff"), url('343785_0_0.ttf') format("truetype")
@font-face
const assert = require('chai').assert
const app = require('../server')
const request = require('request')
const environment = process.env.NODE_ENV || 'test'
const configuration = require('../knexfile')[environment]
const database = require('knex')(configuration)
describe('Server', () => {
before(done => {
web: node server.js

Scenario 1

Two developers (a man and a woman) walk into a tech meetup and introduce themselves to someone. The new person asks what they do - they both say "software developer". The person responds to the woman with "Wow! You don't look like a developer!".

Scenario 2

A group of three men and one women are working on a group project. While discussing who's going to do the CSS, everyone says they'd rather not be responsible for this part of the project.

One male student turns to the woman and says "You'll do the styling, right? You have to be good at that stuff."

gem 'minitest', '>= 5.0.0'
require 'minitest/autorun'
require_relative 'beer_song'
class BeerSongTest < Minitest::Test
def test_the_first_verse
expected = "99 bottles of beer on the wall, 99 bottles of beer.\n" \
"Take one down and pass it around, 98 bottles of beer on the wall.\n"
assert_equal expected, BeerSong.new.verse(99)
end

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

  1. Object Oriented Programming
  2. Ruby
  3. Rails
  4. JavaScript
@novohispano
novohispano / foodsy.rb
Created July 20, 2016 13:44
foodsy.rb
if preferences.vegetarian?
if preferences.vegan?
'tofu'
else
if preferences.gluten_free?
'milk'
else
'pasta'
end
else