Skip to content

Instantly share code, notes, and snippets.

View jonallured's full-sized avatar
🥃
very nice code

Jon Allured jonallured

🥃
very nice code
View GitHub Profile
@jonallured
jonallured / hsync.sh
Created August 19, 2014 19:10
sync heroku dbs
#!/usr/bin/env bash
remote="${1:-staging}"
capture() {
heroku pgbackups:capture --expire --remote $1
}
url() {
heroku pgbackups:url --remote $1
}
@jonallured
jonallured / heroku.html
Created January 7, 2015 15:27
Painzones
<!DOCTYPE html>
<html>
<head>
<title>PainZones</title>
<link rel="stylesheet" media="all" href="/assets/application-7eadaa6a15e069d84c07540345524b0e.css" data-turbolinks-track="true" />
<script src="/assets/application-9e487c229e80a9801080a510f15708b7.js" data-turbolinks-track="true"></script>
<meta name="csrf-param" content="authenticity_token" />
<meta name="csrf-token" content="Y07y3+TVyGsxAF0zE8Cu6Uaz2zdpb1OWZdeEnJVGTV+m0skCNPNMuTUTutwiPBghO01l+r6AjD9n72RIGHtFHg==" />
</head>
<body>
@jonallured
jonallured / feedjira.rb
Created February 5, 2015 21:42
Add common feed element
Feedjira::Feed.add_common_feed_element("image")
feed = Feedjira::Feed.fetch_and_parse("http://cltampa.com/tampa/Rss.xml?section=2065818")
feed.image
# => http://cltampa.com/binary/9697/adminIcon_clTampa.jpg
urls = ["http://feedjira.com/blog/feed.xml", "http://jonallured.com/atom.xml"]
feeds = urls.map { |url| Feedjira::Feed.fetch_and_parse url }
feeds.map { |feed| feed.title }
# => ["Feedjira Blog", "Jon Allured"]
@jonallured
jonallured / gist:2154306
Created March 22, 2012 00:01
Modeling that app
class Player < ActiveRecord::Base
has_many :initiated_challenges, foreign_key: 'player_one_id', class_name: 'Challenge'
has_many :accepted_challenges, foreign_key: 'player_two_id', class_name: 'Challenge'
end
class Challenge < ActiveRecord::Base
belongs_to :player_one, class_name: 'Player'
belongs_to :player_two, class_name: 'Player'
has_many :games
@jonallured
jonallured / no-turbo.rb
Created May 5, 2013 13:14
Template code to remove turbolinks from a new Rails 4 app.
# This is just a few sed commands to pull out turbolinks if you don't want them.
# To use it, just pass this as the template to your rails new command, like this:
# $ rails new myapp -m /path/to/no-turbo.rb
run "sed '/turbo/d' < Gemfile > Gemfile.tmp && mv Gemfile.tmp Gemfile"
run "sed '/turbo/d' < app/assets/javascripts/application.js > app/assets/javascripts/application.tmp && mv app/assets/javascripts/application.tmp app/assets/javascripts/application.js"
run "sed 's/, \"data-turbolinks-track\" => true//' < app/views/layouts/application.html.erb > app/views/layouts/application.html.tmp && mv app/views/layouts/application.html.tmp app/views/layouts/application.html.erb"
@jonallured
jonallured / converter_spec.rb
Created October 11, 2013 14:38
Calc converter
class Converter
def initialize(input)
@input = input
end
def convert
"3 + 2"
end
end
@jonallured
jonallured / since13.txt
Created November 13, 2013 03:07
Feedzirra commits between 1.3 and 2.1
aac5657 Bump version for rubygems release
7184331 Merge pull request #183 from AutoUncle/nokogiri-update
0bcaa91 sax-machine 0.2.1 dependency
9b0bd4d Updated Nokogiri to 1.6.0 - temporary hack of sax-machine dependency necessary
87b1bb1 removed git reference
d8a5823 bumping nokogiri version
80cd357 Merge pull request #117 from compressed/upstream
1e37df0 Merge pull request #122 from muffinista/master
c166e0f Merge feed order from #126 [close #126]
d30c412 Merge branch 'ezkl-itunes-parser'
@jonallured
jonallured / economist_enclosures.rb
Created November 25, 2013 00:06
Ensure that the `enclosure_url` is curl-able and not escaping the ampersand.
require 'feedzirra'
feed = Feedzirra::Feed.fetch_and_parse('http://www.economist.com/media/rss/economist.xml')
entries = feed.entries
curls = entries.map do |entry|
curl = `curl --head #{entry.enclosure_url}`
curl.split(/\r/).first
end
@jonallured
jonallured / detention.rb
Created March 26, 2016 13:57
The Breakfast Club written and directed by John Hughes
require 'net/http'
class BratBot
def initialize(name, bot_id, delay)
@name, @bot_id, @delay = name, bot_id, delay
end
def speak
loop { sleep delay; puts post }
end