This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
**Tell me about yourself** | |
Let me give you a high-level summary: | |
5 years experience building, launching and scaling products | |
Worked has spanned very early stage, high growth startups - venmo at 5 ppl and large companies - also worked at Etsy | |
My work has led to successful results. | |
1. Informed a re-design of venmo back in 2011, pre-acquisition that is still the design today | |
2. As team of 3 at customer.io went from $100 / m revenue in beta to 50K/mth in 1.5yrs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
brew update | |
brew upgrade ruby-build | |
rbenv install 2.2.1 | |
gem install bundler | |
bundle |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
characters = ["astro.png", | |
"banyan.png", | |
"bear.png", | |
"bird.png", | |
"chillanna.png", | |
"cupcake.png", | |
"dino.png", | |
"frog.png", | |
"gorilla.png", | |
"monkey.png", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
query = "Level" | |
levels = Project.where("title LIKE ?", "#{query}%") | |
start_date = Time.now.beginning_of_week - 1.day | |
end_date = start_date + 7.days | |
Project.where(updated_at: range, published: true) | |
_.count | |
levels.where(updated_at: range, published: true) | |
_.count |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
query = "To " | |
chats = Project.where("title LIKE ?", "#{query}%") | |
start_date = Time.now.beginning_of_week - 8.days // Sunday at Midnight to following Sunday at midnight | |
end_date = start_date + 7.days | |
range = start_date..end_date | |
all = Project.where(updated_at: range) | |
all.count |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
snapshot { | |
date: 12/07/14 # not sure best form for this | |
all_users: [12,3,1,13,14] # who visited this day | |
new_uses: [12,3] # who downloaded this day | |
publishers: [12] # published this day | |
branchers: [3] # branched someone else’s project this day | |
branched_from: [16] # one of their projects was branched this day | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
layout: { | |
"id":60, | |
"name":"Customer.io", | |
"email_ids":[1035,1036,1281,2784,3726,6585,7021,8197,18130,18226,18352,19678], | |
"newsletter_ids":[17,60,364,2266,2293,2462,3004,3063,3161,3598,3599,3600,3694,3729,3730,5397,7984] | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
segment: { | |
"id":5, | |
"name":"Have signed up", | |
"status":null, | |
"rebuilding":false, | |
"rebuilding_status":null, | |
"customer_count":4395, | |
"updated_at": 1386703944 //Timestamp | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
customer: { | |
id: 12031923019, | |
email: "[email protected]", | |
signed_up: 1386169925 //TIMESTAMP, | |
last_visited: 1386169925 //TIMESTAMP, | |
last_emailed: 1386169925 //TIMESTAMP, | |
unsubscribed: false //boolean, | |
} | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
delivery: { | |
id: 1 | |
recipient: "[email protected]", | |
subject: "Michael, let me help you get started", | |
drafted: TIMESTAMP, // yesterday | |
sent: TIMESTAMP, // 3 hrs ago | |
pending: TIMESTAMP, // 4 hours ago | |
failed: null, | |
bounced: null, |
NewerOlder