Skip to content

Instantly share code, notes, and snippets.

E, [2019-04-17T00:16:24.583496 #5884] ERROR -- Kitchen: ------Exception-------
E, [2019-04-17T00:16:24.583990 #5884] ERROR -- Kitchen: Class: Kitchen::ClientError
E, [2019-04-17T00:16:24.584085 #5884] ERROR -- Kitchen: Message: Could not load the 'vcenter' driver from the load path.Could not open library 'libcurl': The specified module could not be found.
.
Could not open library 'libcurl.dll': The specified module could not be found.
.
Could not open library 'libcurl.so.4': The specified module could not be found.
.
Could not open library 'libcurl.so.4.dll': The specified module could not be found.

Keybase proof

I hereby claim:

  • I am cattywampus on github.
  • I am keithwalters (https://keybase.io/keithwalters) on keybase.
  • I have a public key ASDQimpzLhZrcFaGqaynPuBrH1TDYg29Eh8IBikpRsDYYgo

To claim this, I am signing this object:

Keybase proof

I hereby claim:

  • I am cattywampus on github.
  • I am keithwalters (https://keybase.io/keithwalters) on keybase.
  • I have a public key ASDQimpzLhZrcFaGqaynPuBrH1TDYg29Eh8IBikpRsDYYgo

To claim this, I am signing this object:

@cattywampus
cattywampus / flag.rb
Last active March 3, 2016 19:50
A colored and animated American flag in Ruby
#!/usr/bin/env ruby
def red(string)
"\e[37;41m#{string}\e[0m"
end
def white(string)
"\e[30;47m#{string}\e[0m"
end
@cattywampus
cattywampus / emoji_scrape.rb
Last active October 21, 2015 20:39
Build SameTime emoticon palettes from GitHub Emoji
require 'mechanize'
require 'open-uri'
EMOJI_SITE = 'http://www.emoji-cheat-sheet.com'
COLLECTIONS = %w[people nature objects places symbols]
agent = Mechanize.new
page = agent.get(EMOJI_SITE)
COLLECTIONS.each do |set|