Skip to content

Instantly share code, notes, and snippets.

@c-lliope
c-lliope / replication.rb
Created November 2, 2015 06:07
A ruby script that outputs its source code
single_quote = "'"
script = '
first = "single_quote = \"#{single_quote}\""
assignment = "script = " + single_quote
lines = [
first,
assignment,
script.strip,
"Emergency":
"Disaster Response":
"Emergency Cash":
"Help Pay for Food":
"Help Pay for Healthcare":
"Help Pay for Housing":
"Help Pay for Gas":
"Help Pay for School":
"Help Pay for Utilities":
"Emergency Food":
@c-lliope
c-lliope / money.rb
Created March 27, 2015 05:21
Reports on the status of your goals in Simple, and catches them up if necessary
require 'capybara/poltergeist'
require 'ruby-progressbar'
session = Capybara::Session.new(:poltergeist)
session.visit("https://bank.simple.com/signin")
session.fill_in("username", with: "USERNAME")
session.fill_in("password", with: "PASSWORD")
session.click_on("Sign in")
class PlantBucketAssignment
belongs_to :plant
belongs_to :bucket
end
class Bucket
has_many :plant_bucket_assignments
has_many :plants, through: :plant_bucket_assignments
def current_plant
@c-lliope
c-lliope / admin-actions-rake_tasks.rb
Last active August 29, 2015 14:11
Administrate Syntax
Administrate.actions(:rake_tasks) do |page|
page.rake :clear_cache
end
@c-lliope
c-lliope / dnsimple_dynamic_ip_update.rb
Last active December 18, 2015 15:29
Push IP address changes to DNSimple from machines with dynamic IPs
require 'dnsimple'
def update_dns
# TODO: Put DNSimple username and API Key or password in ~/.dnsimple
# See https://github.com/aetrion/dnsimple-ruby/blob/master/README.md#credentials
DNSimple::Client.load_credentials_if_necessary
# TODO replace with domain and record name
record = find_record 'example.com', 'www'