Skip to content

Instantly share code, notes, and snippets.

@inf0rmer
inf0rmer / scaffold.sh
Created April 6, 2011 11:55
Bash script to create a new Drupal website scaffold
#!/bin/bash
CURRENT=`pwd`
echo -n "Enter directory to scaffold into... Use blank for $CURRENT "
read DIRECTORY
if [ -z $DIRECTORY ] && [ "${DIRECTORY+xxx}" = "xxx" ]
then
DIRECTORY=$CURRENT
fi
@inf0rmer
inf0rmer / grunt.js
Created July 3, 2012 22:02
Sample Grunt JS configuration file by steve8708
// My current grunt.js file, includes examples for compiling less,
// handlebars templates, file watching, etc
//
// My most used task is the "watch-serve" task for linting/testing
// my files as I work, has been amazingly helpful
//
// This is a custom modification of @tbranyen's fantastic
// boilerplate-handlebars-layoutmanager project gruntfile
//
// NOTE: for this to work you need to install the below npm tasks
Started POST "/api/users" for 127.0.0.1 at 2013-03-18 12:58:37 +0000
Processing by Api::UsersController#create as JSON
Parameters: {"avatar_url"=>"/assets/placeholder-160x160.png", "email"=>"bruno.abrantes@clubjudge.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "user"=>{"avatar_url"=>"/assets/placeholder-160x160.png", "email"=>"bruno.abrantes@clubjudge.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}}
WARNING: Can't verify CSRF token authenticity
[23509a-backend-cli] calling get, locales?
[23509a-backend-cli] call succeeded
[8575c9-backend-cli] calling post, users
[8575c9-backend-cli] error 500 Internal Server Error: RuntimeError at /users
======================
@inf0rmer
inf0rmer / gist:ac4aaf46dd55e98a5537
Created May 19, 2014 14:30
Make sound work again in OSX
do shell script "kextunload /System/Library/Extensions/AppleHDA.kext && sleep 5 && kextload /System/Library/Extensions/AppleHDA.kext;" with administrator privileges
@inf0rmer
inf0rmer / testflight.sh
Created August 22, 2014 14:04
Automatically uploads a build to Testflight using Travis
!/bin/sh
if [[ "$TRAVIS_PULL_REQUEST" != "false" ]]; then
echo "This is a pull request. No deployment will be done."
exit 0
fi
if [[ "$TRAVIS_BRANCH" != "master" ]]; then
echo "Testing on a branch other than master. No deployment will be done."
exit 0
fi
@inf0rmer
inf0rmer / blanket-usage.rb
Last active August 29, 2015 14:12
Blanket simple usage
require 'blanket'
github = Blanket.wrap("https://api.github.com")
# Get some user's info
user = github.users('inf0rmer').get
user.login
# => "inf0rmer"
# Get a user's repos
@inf0rmer
inf0rmer / blanket-wrapper-method_missing.rb
Created December 30, 2014 16:19
Blanket::Wrapper's dynamic method dispatching
def method_missing(method, *args, &block)
Wrapper.new uri_from_parts([method, args.first]), {
headers: @headers,
extension: @extension
}
end
@inf0rmer
inf0rmer / blanket-wrapper-add-action.rb
Last active August 29, 2015 14:12
Blanket::Wrapper's macro-like interface for defining REST actions
def add_action(action)
define_method(action) do |id=nil, options={}|
request(action, id, options)
end
end
@inf0rmer
inf0rmer / blanket-adding-actions.rb
Created December 30, 2014 16:41
Adding RESTful actions using a "macro"-like interface
add_action :get
add_action :post
add_action :put
add_action :patch
add_action :delete
@inf0rmer
inf0rmer / http-statuses.rb
Last active August 29, 2015 14:12
Well-known HTTP status codes and their meanings (abridged)
STATUSES = {
# ...
400 => 'Bad Request',
401 => 'Unauthorized',
402 => 'Payment Required',
403 => 'Forbidden',
404 => 'Resource Not Found',
405 => 'Method Not Allowed',
406 => 'Not Acceptable',
407 => 'Proxy Authentication Required',