Skip to content

Instantly share code, notes, and snippets.

View hessnd's full-sized avatar
🤠

Nick Hess hessnd

🤠
View GitHub Profile
@hessnd
hessnd / hyper.js
Last active July 25, 2017 03:12
My Hyper Settings
My Hyper Settings
@hessnd
hessnd / keybase.md
Last active September 13, 2016 21:11

Keybase proof

I hereby claim:

  • I am hessnd on github.
  • I am hessnd (https://keybase.io/hessnd) on keybase.
  • I have a public key ASDQZd69coRPKgQoeo0dDo3YRQJC3PTKDzkpV2CpzvpETQo

To claim this, I am signing this object:

@hessnd
hessnd / customer_controller.rb
Created April 27, 2015 23:48
Customer Controller - Ruby
class CustomersController < ApplicationController
before_action :set_customer, only: [:show, :edit, :update, :destroy]
before_action :only_allow_signed_in_users, except: [:index, :show]
# GET /customers
# GET /customers.json
def index
@customers = Customer.all
end