Skip to content

Instantly share code, notes, and snippets.

View shereefb's full-sized avatar

Shereef Bishay shereefb

View GitHub Profile
@shereefb
shereefb / keybase.md
Created May 29, 2014 07:03
keybase.md

Keybase proof

I hereby claim:

  • I am shereefb on github.
  • I am shereef (https://keybase.io/shereef) on keybase.
  • I have a public key whose fingerprint is E218 27B3 6CDE 6735 E88E C9CC B73E 05D4 A66E D815

To claim this, I am signing this object:

Experimental Generation of Interpersonal Closeness

Instructions to Subjects Included With Task Slips Packet

This is a study of interpersonal closeness, and your task, which we think will be quite enjoyable, is simply to get close to your partner. We believe that the best way for you to get close to your partner is for you to share with them and for them to share with you. Of course, when we advise you about getting close to your partner, we are giving advice regarding your behavior in this demonstration only, we are not advising you about your behavior outside of this demonstration.

In order to help you get close we've arranged for the two of you to engage in a kind of sharing game. You're sharing time will be for about one hour, after which time we ask you to fill out a questionnaire concerning your experience of getting close to your partner.

You have been given three sets of slips. Each slip has a question or a task written on it. As soon as you both finish reading these instructions, you should

@shereefb
shereefb / somename.rb
Created November 27, 2011 13:46
test gist
def kufta(hi)
puts hi
end
@shereefb
shereefb / somenam.rb
Created December 19, 2011 07:50
testing something
blah blabh
@shereefb
shereefb / pig_latin.rb
Created June 14, 2012 20:11
Implementations of pig latin in ruby
# def translate(word)
# vowels = ["a","e","i","o","u"]
# if !vowels.include?(word[0])
# if word[0..1] == "qu"
# word[2..-1]+"quay"
# else
# counter = 0
# while !vowels.include?(word[counter])
# counter += 1
# end
@shereefb
shereefb / gist:3862388
Created October 10, 2012 00:25
Scopes breakout
class Cookie
MAX_CHIPS = 100
end
class PeanutButterCookie < Cookie
MAX_CHIPS = 100000
end
my_pbc = PeanutButterCookie.new