Skip to content

Instantly share code, notes, and snippets.

View monkbroc's full-sized avatar

Julien Vanier monkbroc

View GitHub Profile
@monkbroc
monkbroc / profiler_authorization.rb
Created August 27, 2015 20:45
Profiler authorization
require 'active_support/concern'
# In application_controller.rb:
# include Concerns::ProfilerAuthorization
module Concerns::ProfilerAuthorization
extend ActiveSupport::Concern
included do
before_action :authorize_profiler
@monkbroc
monkbroc / build.log
Created August 27, 2015 23:37
Particle debugger log
monkbroc@slim:~/Programming/Photon/modules$ make clean all program-dfu PARTICLE_DEVELOP=1 PLATFORM=photon USE_SWD_JTAG=y
clean all program-dfu
make -C /home/monkbroc/Programming/Photon/modules/photon/system-part1/ clean all program-dfu USE_SWD_JTAG=y PLATFORM=photon PARTICLE_DEVELOP=1
make[1]: Entering directory '/home/monkbroc/Programming/Photon/modules/photon/system-part1'
make -C ../../../communication clean
make[2]: Entering directory '/home/monkbroc/Programming/Photon/communication'
rm -f ../build/target/communication/platform-6-m-prod-6/lib/tropicssl/library/aes.o ../build/target/communication/platform-6-m-prod-6/lib/tropicssl/library/bignum.o ../build/target/communication/platform-6-m-prod-6/lib/tropicssl/library/padlock.o ../build/target/communication/platform-6-m-prod-6/lib/tropicssl/library/rsa.o ../build/target/communication/platform-6-m-prod-6/lib/tropicssl/library/sha1.o ../build/target/communication/platform-6-m-prod-6/src/coap.o ../build/target/communication/platform-6-m-prod-6/src/handshake.
@monkbroc
monkbroc / ugly_env_vars.rb
Last active August 29, 2015 14:13
Environment Variables
if ENV['ENABLE_GC_PROFILING'] == 'yes'
GC::Profiler.enable
end
if Nenv.enable_gc_profiling?
GC::Profiler.enable
end
# Replace this
Pusher.app_id = ENV['PUSHER_APP_ID']
Pusher.key = ENV['PUSHER_KEY']
Pusher.secret = ENV['PUSHER_SECRET']
# By this
Nenv :pusher do |p|
Pusher.app_id = p.app_id
Pusher.key = p.key
Pusher.secret = p.secret
@monkbroc
monkbroc / devise_create_users.rb
Created February 18, 2015 16:23
OmniAuth migration devise_create_users.rb
class DeviseCreateUsers < ActiveRecord::Migration
def change
create_table(:users) do |t|
## Your your user fields
t.string :email, default: ""
## OmniAuth-able
t.string :provider
t.string :uid
@monkbroc
monkbroc / devise.rb
Last active August 29, 2015 14:15
OmniAuth devise initializer
Devise.setup do |config|
# Other configuration...
# ==> OmniAuth
# Add a OmniAuth providers.
User.omniauth_providers.each do |provider_name|
if provider_name == :developer
config.omniauth :developer
else
api_key = ENV["#{provider_name.upcase}_API_KEY"]
@monkbroc
monkbroc / routes.rb
Created February 18, 2015 17:23
OmniAuth routes
Rails.application.routes.draw do
devise_for :users, :controllers => {
:omniauth_callbacks => "users/omniauth_callbacks"
}
devise_scope :user do
get 'sign_in', :to => 'devise/sessions#new', :as => :new_user_session
delete 'sign_out', :to => 'devise/sessions#destroy', :as => :destroy_user_session
end
root 'home#index'
@monkbroc
monkbroc / omniauth_callbacks_controller.rb
Created February 18, 2015 17:26
OmniAuth callback controller
class Users::OmniauthCallbacksController < Devise::OmniauthCallbacksController
skip_before_action :verify_authenticity_token
def sign_in_with(provider_name)
@user = User.from_omniauth(request.env["omniauth.auth"])
sign_in_and_redirect @user, :event => :authentication
set_flash_message(:notice, :success, :kind => provider_name) if is_navigational_format?
end
def facebook
@monkbroc
monkbroc / application.html.erb
Created February 18, 2015 17:44
OmniAuth sign in buttons
<ul class="nav">
<% if user_signed_in? -%>
<li><%= link_to 'Sign out', destroy_user_session_path, :method => :delete %></li>
<% else -%>
<li><%= link_to 'Sign in', new_user_session_path %></li>
<% end -%>
</ul>