Skip to content

Instantly share code, notes, and snippets.

View jacksmith117's full-sized avatar

Jack Smith jacksmith117

View GitHub Profile
@mattheath
mattheath / publicize-coderwall-membership.rb
Created April 12, 2013 02:36
Publicize membership of Coderwall organisations
require "github_api"
user = ''
token = ''
github = Github.new oauth_token: token
coderwall_orgs = []
github.orgs.list.each do |org|
coderwall_orgs << org.login if org.login =~ /^coderwall/
@stefanobernardi
stefanobernardi / application_controller.rb
Created September 23, 2012 07:07
Multiple omniauth providers and omniauth-identity on the main user model
class ApplicationController < ActionController::Base
protect_from_forgery
protected
def current_user
@current_user ||= User.find_by_id(session[:user_id])
end
def signed_in?