Skip to content

Instantly share code, notes, and snippets.

View gdoteof's full-sized avatar

geoff golder gdoteof

  • vision.ai
  • Burlington, VT
View GitHub Profile
#!/bin/sh
#
# A simple command line utility to send an image to VMX For this
# example to work, make sure the VMX variable points to the location
# of your server.
#
# Tom Malisiewicz tom@vision.ai
# vision.ai 2015
#The location of the VMX server
@gdoteof
gdoteof / namecheap.rb
Created October 22, 2012 12:17 — forked from rboyd/namecheap.rb
namecheap api via httparty
require 'yaml'
require 'httparty'
settings = YAML::load_file(File.dirname(File.expand_path(__FILE__)) + '/namecheap.yml')
username = settings['namecheap']['user']
api_key = settings['namecheap']['api_key']
request_string = "https://api.namecheap.com/xml.response"