Skip to content

Instantly share code, notes, and snippets.

View jendiamond's full-sized avatar
🏠
Working from home

JenDiamond jendiamond

🏠
Working from home
View GitHub Profile
@jendiamond
jendiamond / gist:6275127
Last active December 21, 2015 07:59
Week 6 Day 25

Week 6 Day 25

Monday Merge

Jen's Monday

Get Started Page

Today I consolidated the instructions in the http://bundler.io/v1.3/rationale.html, the "Get started-installing Bundler" directions and the "Simple work Flow" directions. They all repeated but with a few extra tidbits of info. Andre gave me the go ahead to do this on Friday. I also added the link to the sidebar and added a bit of css styling.

@jendiamond
jendiamond / gist:6275155
Created August 19, 2013 22:53
Week 5 Day 24
I worked on breaking apart the rationale page to create a FAQ page. I created a new get started page and I created a new bug report page.
@jendiamond
jendiamond / gist:6301926
Last active December 21, 2015 11:49
Week 6 Day 26

Still working on the finer details of the new Get Started Pages and the new FAQ page.

We switched our files from the bundler-site repo to the RGSoCBundler/bundler-site so all of our pull requests and commits don't alert the entire Bundler community. I had a hard time figuring out pushing to the new location. Finally I realized that I had to make sure to change the base fork to RGSoCBundler/bundler-site master which is reached by pressing the edit button on the right after pressing the pull request button.

I started working on my presentation of creating a gem. Andre went over my lorem ipsum generator gem to make sure everything was in order. He had a few changes so he sent me a pull request. I was cool looking a a pull request. Now I understand what Andre and Jessica have been looking at and why certain PRs are harder to read than others. Basically you want to make similar changes and send the requests more often so they are easy to read.

I went to Pivotal Labs' hack night so I could check out their projec

@jendiamond
jendiamond / gist:6324494
Last active December 21, 2015 15:09
Week 6 Day 28

Eastside/Westside Monthly Bash August

I read about Rspec and watched some of the Rspec Peepcode video but mostly I spent my day refining my code and slides for my presentation at the Monthly L.A. Eastside/Westside Ruby Meetup. Our group is a combination of General Assembly students, Rails Girls Summer of Code teams, CS students and their friends. Most of the people attended either a Railsbridge or a Rails Girls event as their launching point into Ruby. This evening's talks were about gems and gem structure.

Hands-on Presentation - Creating a Gem

Ross, from Pivitol, gave a talk about Pivotal Labs and how they work pair programming. The first gem talk by Anna Mendoza explained the structure of gems and how to find good ones to use.My hands-on workshop presentation was based on the gem Joyce and I created several weeks ago. I got all 25 people in the room to create the gem

@jendiamond
jendiamond / gist:6324621
Last active December 21, 2015 15:09
Week 6 Day 27

Week 6 Day 27

Rspec

Jen's Wednesday

Watch most of the Peepcode video about Rspec and worked on the Get Started and FAQ pages of the Bundler site. Startd to work on my slides and code for my presentation on Thursday.

Joyce's Wednesday

@jendiamond
jendiamond / squash_commits_in_git.md
Last active February 23, 2021 23:12
Week 6 Day 29
@jendiamond
jendiamond / gist:6347949
Last active December 21, 2015 18:29
Week 6 Day 29 (Friday, August 23, 2013)

Week 6 Day 29

Friday, August 23, 2013

Partially Squish Squashed

Jen' Friday

I read about Rspec and spent the rest of day wrapping up the FAQ page. I worked on doing my first commit squash and I ran into problem after problem with git which Andre walked me through.

@jendiamond
jendiamond / gist:6348331
Last active December 21, 2015 18:38
Exercise 3 - Learn Ruby the Hard Way
# the puts method prints the string that follows to the screen and returns the cursor to the next line.
puts "I will now count my chickens:"
# the puts method print the string that follows to the screen and returns the cursor to the next line.
# Using the operator presedence; first the division operator divides 30 by 6 then adds the integers and
# prints them to the screen
puts "Hens", 25 + 30 / 6
# the puts method prints the string that follows to the screen and returns the cursor to the next line.
# Using the operator presedence; first the division operator divides 25 by 4 then subtracts and prints
@jendiamond
jendiamond / gist:6348368
Last active December 21, 2015 18:38
Ruby Definitions

definitions...

puts "Addition - Adds values on either side of the operator"

puts "Subtraction - Subtracts right hand operand from the left hand operand"

puts "Multiplication - Multiplies values on either side of the operator"

puts "Division - Divides left hand operand by right hand operand"

@jendiamond
jendiamond / gist:6348385
Last active December 21, 2015 18:39
Exercise 4 - Learn Ruby the Hard Way
# defining the variable cars with the integer 100
cars = 100
# defining the variable space_in_car with the floating point 4.0
space_in_car = 4.0
# defining the variable drivers with the integer 30
drivers = 30
# defining the variable passengers with the integer 90