Skip to content

Instantly share code, notes, and snippets.

@annawinkler
annawinkler / icebreakers.md
Last active May 2, 2023 13:51
my favorite icebreaker questions
  • What's your favorite dessert?
  • If you could spend the weekend in any city which would you choose?
  • What's the most beautiful place you've ever seen?
  • Would you rather live by the beach or in the mountains?
  • What kind of vegetable are you?
  • What do you love about your hometown?
  • Where would you most like to travel?
  • If you could appear on any game show which would you choose?
  • What’s the most amazing weather you’ve seen?
  • What is your favourite ice cream?
@h3h
h3h / 0-resume-template.md
Last active July 28, 2016 13:07
Ideal Resume Format for a Software Engineer

https://github.com/[yourname]

Ambition

[Describe ambitions: type of work, attributes of team, what you want to learn & teach]

Experience

[in reverse chronological order, list at most 5 positions or 10 years back, whichever is fewer]

@steveklabnik
steveklabnik / lolmetaprogramming.rb
Created February 14, 2012 17:56
Metaprogramming rots your brain.
# Metaprogramming rots your brain.
# First I wrote this:
Data = Struct.new(:title)
data.collect{|datum| Data.new(datum["title"])}
# Then I decided I didn't want to make a huge list of attributes, so I decided to use an
# OpenStruct, and ended up doing this: