Skip to content

Instantly share code, notes, and snippets.

View sharnie's full-sized avatar

Sharnie Ivery sharnie

View GitHub Profile
@sharnie
sharnie / instagram.rb
Last active August 29, 2015 14:01
config/initializers/instagram.rb
require "instagram"
Instagram.configure do |config|
config.client_id = "YOUR CLIENT ID HERE"
config.access_token = "YOUR ACCESS TOKEN HERE"
end
@sharnie
sharnie / string_encode_decode_method.rb
Last active August 29, 2015 14:00
Ruby encode and decode method
# created a method name 'encode' that accept an argument 'string'
# and then call the "pack('m')" method on the string
def encode string
[string].pack("m")
end
# assign encode value of 'I love food' to string_encode variable.
puts string_encode = encode("I love food") # the return value is 'SSBsb3ZlIGZvb2Q='
# encoding strings is pretty cool, but how do you decode them?
@sharnie
sharnie / about me
Last active August 29, 2015 14:00
Links and Information about Sharnie Ivery
Name: Sharnie Ivery
Github: http://github.com/sharnieivery
Blog: http://brooklynrails.com/
Tagline: Always Be Coding
Profile Picture: http://brooklynrails.com/wp-content/uploads/2014/04/397276_112023625584347_308435430_n.jpg
Treehouse Account: http://teamtreehouse.com/sharnie
CoderWall Account: https://coderwall.com/sharnieivery
CodeSchool Account: https://www.codeschool.com/users/469042
Favorite Websites:
@sharnie
sharnie / gist:984bbe5a3d5c8f582a3a
Last active August 29, 2015 14:00
replace characters with ASCII code
"sharnie".each_char do |char|
puts char.ord-97 # 97 specify where to start on the ascii table
end