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:6187769
Last active December 20, 2015 20:08
Week 4 Day 18

Week 4 Day 18

Distill Day 1

Depart from the Taylor Street entrance of the Hilton Union Square (between Ellis and O'Farrell) at 8:15 am, 9:00 am, and 9:45 am. Shuttles will return you to the Hilton from Winery SF at 6:15 pm and 6:30 pm.

Twitter hashtag #distill13

Realigning & Refactoring UI Jina Bolton @jina

@jendiamond
jendiamond / gist:6197534
Last active December 20, 2015 21:29
Week 4 Day 19

Week 4 Day 19

Distill Day 2

The Keynote was by Michael Lopp who wrote Being Geek and worked at Apple for 8 years. Eamon Leonard says it best, "Michael thinks deeply about the problems developers face in their everyday lives, how to help developers identify their true goals, what makes them happy and how to achieve happiness, how to lead and how to follow and much more."

We watched Konstantin's talk Death to Cookies He taught us that cookies can be poisonous. He talked about ways to use them safely.

We had lunch with Marcy, Elise, Dave and Cal. We talked about Camu's the Plague After lunch we talked to Konstantine about his Rails Girls team the Inchworms. He told us about all the great work they are doing in Sinatra and about their project groups

@jendiamond
jendiamond / gist:6225513
Last active December 21, 2015 01:08
bundler sidebar

On the main page have

What is Bundler?
What does Bundler do?
Why do I care?
How do I use it?

In the Side Bar

  • Get Started
@jendiamond
jendiamond / gist:6226230
Last active December 21, 2015 01:18
Bundler - index page

What is Bundler?

Bundler maintains a consistent environment for ruby applications. It tracks an application's code and the rubygems it needs to run, so that an application will always have the exact gems (and versions) that it needs to run.

Bundler's Purpose and Rationale

We designed bundler to make it easy to share your code across a number of development, staging and production machines. Of course, you know how to share your own application or gem: stick it on GitHub and clone it where you need it. Bundler makes it easy to make sure that your application has the dependencies it needs to start up and run without errors.

First, you declare these dependencies in a file at the root of your application, called Gemfile. It looks something like this:

@jendiamond
jendiamond / gist:6226837
Last active December 21, 2015 01:19
Bundler - Getting Started

Getting Started

Getting started with bundler is easy! Open a terminal window and run this command:

$ gem install bundler

Specify your dependencies in a Gemfile in your project's root: source 'https://rubygems.org' gem 'nokogiri' gem 'rack', '~>1.1'

@jendiamond
jendiamond / gist:6234456
Created August 14, 2013 19:09
Week 5 Day 21

Yesterday we worked in Downtown L.A. at the Hub with the whole G5 crew including Jessicard who is visiting from San Francisco. We worked on the documentation for the Bundler Jen worked on organizing the content and all the links for the new side bar. Joyce made a skeleton of the side bar and got it to work on the site. So we are ready to get rolling and start making changes.

Today Team Bundler worked in Downtown L.A. at the Hub with the whole G5 crew including Jessicard who is visiting from San Francisco. We worked on the documentation for the Bundler website.

I worked on organizing the content and all the links for the new side bar while Joyce made a skeleton of the side bar and got it to work on the site. We are ready to get rolling and start making changes. Here is what it looks like now. Soon I hope be much better. There is so much information already there it just needs some organizing.

I want each section to have it's own page and I have found some gre

@jendiamond
jendiamond / gist:6236409
Last active December 21, 2015 02:39
get_started
%h2#getting-started
Getting Started
.contents
.bullet
.description
Getting started with bundler is easy! Open a terminal window and run this command:
:highlight_plain
$ gem install bundler
@jendiamond
jendiamond / gist:6246179
Last active December 21, 2015 03:59
Bundler-features README

bundler-features

This repository is for Bundler feature requests and discussion.

  • To participate, head over to the issue tracker and create an issue with your idea for a new feature.

  • For bugs, please use the regular Bundler issues tracker.

  • Feel free to fork this repository and send feature pull requests that include code snippets or examples that illustrate your feature request or discussion point.

@jendiamond
jendiamond / gist:6246322
Last active December 21, 2015 03:59
Week 5 Day 23

Week 5 Day 23

Issues and Pull Requests

Jessica was Doing Team Building with her G5 team today so Joyce and I worked remotely today.

Jen's Thursday

I worked out of the Starbucks in Atwater Village today. I saw several kids practicing their dance moves outside while waiting for a bus.

@jendiamond
jendiamond / gist:6272588
Created August 19, 2013 18:44
Getting Started Bundler
.contents
.bullet
.description
Getting started with bundler is easy! Open a terminal window and run this command:
:highlight_plain
$ gem install bundler
.bullet
.description
Specify your dependencies in a Gemfile in your project's root: