Skip to content

Instantly share code, notes, and snippets.

View dirkkelly's full-sized avatar

Dirk Kelly dirkkelly

View GitHub Profile
class RavensController < SiteController
no_login_required
skip_before_filter :verify_authenticity_token
def update
response = CreateSend::Subscriber.add params[:list], params[:email], params[:name], nil, true
respond_to do |format|
[core]
repositoryformatversion = 0
filemode = true
bare = false
logallrefupdates = true
ignorecase = true
[remote "origin"]
url = [email protected]:mostlydisco/swoonme.com.git
fetch = +refs/heads/*:refs/remotes/origin/*
[gitflow "branch"]
@dirkkelly
dirkkelly / console
Created October 7, 2011 02:56
Spine.js Mobile Routing (http://spinejs.com/docs/routing)
Uncaught Unknown record
Model.find
ProfilesShow.active
__bind
Profiles.routes./profiles/:id
Module.proxy
__bind
Spine.Route.Route.match
Spine.Route.Route.matchRoute
Spine.Route.Route.navigate
Feature: Authentication (No Web Steps, Declarative)
As A User
In order to gain access to skynet
I want to be able to login and logout
Background:
Given I have a valid account
Then I should be able to login
@dirkkelly
dirkkelly / soloistrc
Created August 25, 2012 17:17
soloistrc
cookbook_paths:
- ./workspace/
recipes:
- pivotal_workstation::ack
- pivotal_workstation::bash_path_order
- pivotal_workstation::bash_profile-aliases
- pivotal_workstation::bash_profile-arch_flags
- pivotal_workstation::bash_profile-better_history
- pivotal_workstation::bash_profile-ctrl-o
- pivotal_workstation::bash_profile-ctrl-s
@dirkkelly
dirkkelly / README.md
Last active December 17, 2015 23:39
Dashing - Pivotal Tracker

Preview

Description

Simple Dashing job to display your Pivotal Tracker stories status.

  • Green: You don't own any rejected stories
  • Red: You own a rejected story
@dirkkelly
dirkkelly / interexchange-software-engineer-job-description.md
Last active August 29, 2015 14:01
InterExchange - Engineering - Software Engineer

InterExchange is a non-profit organization passionate about connecting young people from all over the world with life-changing international exchange opportunities.

Participants on our programs work as international staff at American summer camps, volunteer on community projects in rural India, sell ice cream on the boardwalks of California, do post graduate internships at green technology companies in New York and provide childcare as au pairs in the U.S. and abroad – to name a few!

At InterExchange, we believe that living and working alongside people in another country increases global understanding. We are dedicated to providing the best exchange experiences possible – and to creating positive global impact in the process.

To that end we are looking for experienced Software Engineers to join us in building our online offerings across the five departments we work with. Our Ruby on Rails and PHP applications serve thousands of users a day who are working with us to simplify and enhance these cultural exch

@dirkkelly
dirkkelly / Year Calculator.md
Last active August 29, 2015 14:02
A CodeNow refresher project.

Grade Calculator

Introduction

A refresher program aimed at understanding.

  • Iteratives
  • Conditionals
  • String Interpolation
@dirkkelly
dirkkelly / hello.md
Last active August 29, 2015 14:02
CodeNow NYC Alumni - Meetup #2

Let's Build a Website on Github

There are thousands of ways to build and publish websites, today we're going to look at the way I prefer to create simple concepts and information sites, using Github Pages.

My personal website (which is incredibly out of date) is built on Github Pages, it's a simple, free and rewarding way to publish your work online.

@dirkkelly
dirkkelly / config-initializers-simple_form-after.rb
Created July 7, 2014 15:56
Simple Form Bootstrap 3 input group WIP
module SimpleForm
module Components
module After
def after
@after ||= begin
options[:after].to_s.html_safe if options[:after].present?
end
end
def has_after?