Skip to content

Instantly share code, notes, and snippets.

View sanderdg's full-sized avatar

Sander de Goeij sanderdg

View GitHub Profile
@sanderdg
sanderdg / simple-note-backup.rb
Created September 15, 2011 16:39 — forked from ktheory/simple-note-backup.rb
Script to automatically export simplenote data from http://simplenote-backup.appspot.com/
#!/usr/bin/env ruby
require 'rubygems'
require 'mechanize'
require 'yaml'
config = YAML.load_file(File.expand_path("~/.simple-note-backup.yml"))
email = config['email']
password = config['password']