Skip to content

Instantly share code, notes, and snippets.

@knittingdev
knittingdev / keybase.md
Created October 22, 2014 19:11
keybase.md

Keybase proof

I hereby claim:

  • I am knittingdev on github.
  • I am knittingdev (https://keybase.io/knittingdev) on keybase.
  • I have a public key whose fingerprint is 388C C513 32C9 A811 55E6 1EA9 ADD7 66FB 3CE8 04D8

To claim this, I am signing this object:

@knittingdev
knittingdev / top50citiesweather.rb
Created November 1, 2012 19:07
Get Weather of Bloomberg's Top 50 Cities
require 'net/http'
require 'rexml/document'
class CityWeather
attr_reader :state, :city, :high, :low, :condition, :current
def initialize (state, city, high, low, condition, current)
@state = state
@city = city
@high = high