I hereby claim:
- I am egardner on github.
- I am egardner (https://keybase.io/egardner) on keybase.
- I have a public key whose fingerprint is 66DB 5FF3 D927 7B36 FD31 D40F C088 E2FA 4635 3D27
To claim this, I am signing this object:
require 'nokogiri' | |
require 'open-uri' | |
require 'json' | |
class Book | |
attr_accessor :isbn | |
attr_accessor :title | |
attr_accessor :author | |
attr_accessor :keywords | |
attr_accessor :type |
--- | |
layout: null | |
library: jquery-2.1.3.min.js | |
--- | |
// If using a JS framework, include it here | |
{% include_relative _lib/{{page.library}} %} | |
// Application code goes here | |
$(document).ready(function(){ | |
$('.js-menu-trigger').on('click touchstart', function(e){ |
// Originally adapted from: http://sickdesigner.com/masonry-css-getting-awesome-with-css3/ | |
#grid { | |
-moz-column-count: 3; | |
-moz-column-gap: 10px; | |
-webkit-column-count: 3; | |
-webkit-column-gap: 10px; | |
column-count: 3; | |
column-gap: 10px; |
I hereby claim:
To claim this, I am signing this object:
# Regex code to separate sentences out of strings | |
/(\S.+?[.!?:])(?=\s+|$)/ |
require "sinatra" | |
require "httparty" | |
require "time" | |
url = "http://mashable.com/stories.json" | |
mash_stories = HTTParty.get(url) # returns a hash | |
get '/' do | |
# If url is root: ----------------------------------------------------------------------------- # |