Skip to content

Instantly share code, notes, and snippets.

View vulpine's full-sized avatar
🦊

Sophie Matthews vulpine

🦊
View GitHub Profile
@vulpine
vulpine / keybase.md
Created October 21, 2016 10:33
Proving I am who I say I am.

Keybase proof

I hereby claim:

  • I am vulpine on github.
  • I am vulpine (https://keybase.io/vulpine) on keybase.
  • I have a public key whose fingerprint is 8F19 3617 B7A0 5D36 055F 63BD DABC 30B3 B36E 354F

To claim this, I am signing this object:

@vulpine
vulpine / dandd.rb
Created April 18, 2017 22:24
The very early beginnings of a D&D Character Builder Parser in Ruby.
#!/usr/bin/ruby
require 'nokogiri'
def get_file_xml(filename)
xml = File.open(filename, 'rb') { |f| Nokogiri::XML(f) }
xml
end
def get_race_names(xml)