I hereby claim:
- I am calebwoods on github.
- I am calebwoods (https://keybase.io/calebwoods) on keybase.
- I have a public key whose fingerprint is 391E 05D0 70B1 0E2B A2EA 9A34 463D 65F1 B1EF DEE1
To claim this, I am signing this object:
| source 'https://rubygems.org' | |
| gem 'activerecord', '>= 4.2.0' | |
| gem 'sqlite4' |
| #!/usr/bin/ruby | |
| require 'RMagick' | |
| require 'pathname' | |
| @directory = Pathname(File.expand_path(ARGV[0])) | |
| @size = ARGV.fetch(1) { 1025 } | |
| def resize_image(file) | |
| img = Magick::Image.read(file).first |
| # create in config/initializers | |
| class BraintreeTestApp | |
| def initialize(app) | |
| @app = app | |
| end | |
| def call(env) | |
| @env = env | |
| config = Braintree::Configuration.instantiate |
I hereby claim:
To claim this, I am signing this object:
| server { listen 80; | |
| server_name example.com; | |
| access_log /var/log/example.com/nginx.access.log; | |
| error_log /var/log/example.com/nginx.error.log; | |
| root /var/www/apps/example.com/public; | |
| charset utf-8; | |
| location / { | |
| rewrite ^ https://$host$request_uri? permanent; | |
| } |
| javascript:(function () { | |
| var mergeMessage = $('.merge-commit-message'); | |
| if (mergeMessage.length > 0) { | |
| prNum = location.pathname.split('/').slice(-1)[0]; | |
| var prTitle = $('.discussion-topic-title').text(); | |
| mergeMessage.val('' + prTitle + ' [KB #NUMBER] (GH #' + prNum + ')'); | |
| } | |
| })(); |
| # PostgreSQL Client Authentication Configuration File | |
| # =================================================== | |
| # | |
| # Refer to the "Client Authentication" section in the PostgreSQL | |
| # documentation for a complete description of this file. A short | |
| # synopsis follows. | |
| # | |
| # This file controls: which hosts are allowed to connect, how clients | |
| # are authenticated, which PostgreSQL user names they can use, which | |
| # databases they can access. Records take one of these forms: |
| def api_post_gziped(url, params={}, api_token = 'test_token') | |
| gzipped_data = ActiveSupport::Gzip.compress(params.to_json) | |
| post(url, gzipped_data, headers.merge('HTTP_AUTHORIZATION' => basic_auth_for(api_token), | |
| "HTTP_ACCEPT_ENCODING" => "gzip", | |
| 'CONTENT_TYPE' => 'gzip/json')) | |
| end | |
| def decompressed_json_body | |
| Yajl::Parser.parse(ActiveSupport::Gzip.decompress(response.body)) | |
| end |
| <html> | |
| <head> | |
| <title>Draw Sample Polygons</title> | |
| <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js"></script> | |
| <script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=true"></script> | |
| <script type="text/javascript" src="https://raw.github.com/HPNeo/gmaps/master/gmaps.js"></script> | |
| </head> | |
| <body> | |
| <div id="map" style="width: 600px; height: 600px"></div> |
| // Zone spanning polygon | |
| { | |
| "type": "MultiPolygon", | |
| "coordinates": [ | |
| [ | |
| [ | |
| [-90.00575, 35.99485], | |
| [-89.99339, 35.99485], | |
| [-89.99339, 36.00481], | |
| [-90.00575, 36.00481], |