Skip to content

Instantly share code, notes, and snippets.

View rwarbelow's full-sized avatar
💭
hungry

Rachel Warbelow rwarbelow

💭
hungry
  • Guild Education
  • Denver, CO
View GitHub Profile
@rwarbelow
rwarbelow / .rspec
Last active August 29, 2015 13:56
Kata
--color
@rwarbelow
rwarbelow / encryptor.rb
Created March 11, 2014 17:28
We created a class called SecretCode that takes a word or sentence and encodes it. It also has a method that decodes the secret message.
ENCODE = { "a" => "j", "b" => "3", "c" => "l", "d" => "m", "e" => ".",
"f" => "o", "g" => "p", "h" => "4", "i" => "r", "j" => "&", "k" => "t",
"l" => "u", "m" => "v", "n" => "#", "o" => "x", "p" => "y", "q" => "9",
"r" => "a", "s" => "$", "t" => "c", "u" => "[", "v" => "e", "w" => "f",
"x" => "g", "y" => "8", "z" => "i", " " => " " }
DECODE = { "j" => "a", "3" => "b", "l" => "c", "m" => "d", "." => "e",
"o" => "f", "p" => "g", "4" => "h", "r" => "i", "&" => "j", "t" => "k",
"u" => "l", "v" => "m", "#" => "n", "x" => "o", "y" => "p", "9" => "q",
"r" => "a", "s" => "$", "t" => "c", "u" => "[", "v" => "e", "w" => "f",
@rwarbelow
rwarbelow / event_attendees.csv
Last active August 29, 2015 13:57
We took zip codes from a CSV file. We checked to see if the zip code was nil or less than five digits. If so, we fixed the zip code by adding 0s or putting "no zip code."
We can make this file beautiful and searchable if this error is corrected: It looks like row 10 should actually have 10 columns, instead of 7. in line 9.
,RegDate,first_Name,last_Name,Email_Address,HomePhone,Street,City,State,Zipcode
1,11/12/08 10:47,Allison,Nguyen,arannon@jumpstartlab.com,6154385000,3155 19th St NW,Washington,DC,20010
2,11/12/08 13:23,SArah,Hankins,pinalevitsky@jumpstartlab.com,414-520-5000,2022 15th Street NW,Washington,DC,20009
3,11/12/08 13:30,Sarah,Xx,lqrm4462@jumpstartlab.com,(941)979-2000,4175 3rd Street North,Saint Petersburg,FL,33703
4,11/25/08 19:21,David,Thomas,gdlia.lepping@jumpstartlab.com,650-799-0000,9 garrison ave,Jersey City,NJ,7306
5,2/2/09 11:29,Chris,Sackett,fpmorgan07@jumpstartlab.com,613 565-4000,173 Daly Ave,Ottawa,ON,
6,11/12/08 15:00,Aya,Fuller,jtex@jumpstartlab.com,778.232.7000,2-1325 Barclay Street,Vancouver,BC,90210
7,11/12/08 16:05,Mary Kate,Curry,wmppydaymaker@jumpstartlab.com,(202) 328 1000,1509 Jackson Street,Baltimore,MD,21230
8,11/12/08 17:18,Audrey,Hasegan,ffbbieucf@jumpstartlab.com,530-919-3000,1570 Old Ranch Rd.,Placerville,CA,95667
9,11/13/08 1:32,Shiyu,Armideo,odfarg06@jumpstartlab.com,8084974000,644 Ike
@rwarbelow
rwarbelow / xfHvC.markdown
Created June 12, 2014 07:20
A Pen by Rachel Warbelow.
@rwarbelow
rwarbelow / xfHvC.markdown
Created June 12, 2014 07:22
A Pen by Rachel Warbelow.
@rwarbelow
rwarbelow / index.html
Created June 12, 2014 07:23
A Pen by Rachel Warbelow.
<html>
<head>
<meta charset="UTF-8" />
<title>Document</title>
</head>
<body>
Testing codepen.io github integration
<div class="test"></div>
</body>
</html>
@rwarbelow
rwarbelow / fvyno.markdown
Created June 14, 2014 20:51
A Pen by Rachel Warbelow.
last_name first_name phone_number
Wiegand Ephraim 526-193-0139
Hahn Zora 525.396.5836
Steuber Lewis 379.448.8598
Roberts Keven 166-617-4236
Hirthe Noemi 493-468-5927
Glover Oliver 333.955.4800
Cronin Leatha 376.606.8627
Schmidt Corrine 496.760.3432
Kerluke Durward 409.851.8071

Signing up for Github

Sign up for a free Github account at https://github.com/.

Installing Git

This webpage has instructions for installing Git on Mac, Windows, and Linux machines.

Configuring Git

@rwarbelow
rwarbelow / gist:f41878ff2c6a1649ec95
Last active August 29, 2015 14:24
Student-Led Session Ideas
  • Whiteboarding
  • Refactoring techniques
  • Small JavaScript projects
  • Front-end design
  • Advanced Command Line
  • Sonic Pi
  • iOS development
  • Building a gem
  • Data Structure and Algorithms
  • Technical Interview Prep