I hereby claim:
- I am dtrce on github.
- I am djavia (https://keybase.io/djavia) on keybase.
- I have a public key ASBUgdM3Mr5ACCGsbXx5uE2Ux5J8YwjiSRmqhFeqP6T_UAo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
#!/usr/bin/env ruby | |
require 'fileutils' | |
if Dir.exists?(ENV['CODECLIMATE_PATH']) == false | |
abort "CODECLIMATE_PATH variable not set or invalid path" | |
end | |
@cc_path = ENV['CODECLIMATE_PATH'] | |
@repo_name = Dir.pwd.split('/').last |
#!/bin/bash | |
echo "body {-webkit-transform: rotate(1deg); -webkit-filter: blur(1px);}" >> ~/Library/Application\ Support/Google/Chrome/Default/User\ StyleSheets/Custom.css |
c() { cd ~/Dropbox/dev/$1; } | |
_c() { _files -W ~/Dropbox/dev -/; } | |
compdef _c c |
#!/usr/bin/env ruby | |
require 'rubygems' | |
require 'aws/s3' | |
module S3Util | |
def self.upload_file(local_file) |
{ | |
"id"=>"1112", | |
"vin"=>"5LMFU27535LJ02838", | |
"year"=>{ | |
"name"=>"2005", | |
"id"=>"2005" | |
}, | |
"make"=>{ | |
"name"=>"Lincoln", | |
"id"=>"28" |
<div class="clearfix"> | |
<%= label_tag 'customer_email', 'Customer Email' %> | |
<div class="input"> | |
<%= text_field_tag 'customer_email', nil, :class => 'xlarge' %> | |
</div> | |
</div><!-- /customer_email --> |
/** | |
* Module dependencies. | |
*/ | |
var express = require('express'); | |
var mustache = require("mustache"); | |
var app = module.exports = express.createServer(); |