Skip to content

Instantly share code, notes, and snippets.

@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'
@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
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 / 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")
"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 / 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,
@c-lliope
c-lliope / bench.rb
Last active December 8, 2015 08:32
benchmarking selectively fetching keys from a ruby hash
require 'benchmark'
ATTRIBUTE_TYPES = {}.tap do |hash|
struct = Struct.new(:searchable?)
50.times do |i|
searchable_val = [true, false].sample
hash[i] = struct.new(searchable_val)
end
end
@c-lliope
c-lliope / keybase.md
Created August 28, 2016 18:20
Proof of my GitHub account

Keybase proof

I hereby claim:

  • I am graysonwright on github.
  • I am graysonwright (https://keybase.io/graysonwright) on keybase.
  • I have a public key ASBudAIYSTApmR3OrJC2d6xQWtHYLEoXl94YY9lBgYL18Ao

To claim this, I am signing this object:

package main
import (
"encoding/json"
"fmt"
"os"
)
type Person struct {
Name string
@c-lliope
c-lliope / shpotify help
Created June 30, 2017 16:43
Shpotify command-line usage
Usage:
spotify <command>
Commands:
play # Resumes playback where Spotify last left off.
play <song name> # Finds a song by name and plays it.
play album <album name> # Finds an album by name and plays it.
play artist <artist name> # Finds an artist by name and plays it.