Skip to content

Instantly share code, notes, and snippets.

@mbtomori
mbtomori / facebook_cover_letter.txt
Created October 4, 2017 02:28
Cover Letter for Facebook Role
Hello!
I have profound gratitude for Facebook’s ability to build community and bring people together. I’ve been a member since 2004, but my recent experience reinforced why I love being a part of it. I lost a sweater a friend knitted for me and after searching every conceivable place, I attempted a last-ditch effort by posting on Facebook. Amazingly, a person in one of my groups saw the sweater at a park, and I was overjoyed to find it this evening. It seems trivial, but Facebook’s help in finding the sweater was a profound relief that made me feel closer to the people in my groups, many of whom I’ve never met. Furthermore, Facebook helps bridge gaps in understanding and brings the world closer together, and I would love to be a part of it as a Diversity Integration Manager. In my opinion, this position has the potential to be the purest embodiment of the promise of Facebook.
I’ve done formal work in Diversity and Inclusion (D&I) at Dev Bootcamp since 2014, although I’ve been active in learning about new c
@mbtomori
mbtomori / jquery_example.html
Created February 20, 2014 22:52 — forked from dbc-challenges/jquery_example.html
Intro to jQuery for Phase 0
<!DOCTYPE html>
<html>
<head>
<title>DOM manipulation with jQuery</title>
<!-- Add a link to jQuery CDN here script here -->
<script type="text/javascript" src="jquery_example.js"></script>
</head>
<body>
/* Here is your chance to take over Socrates!
Spend 10 minutes on each of the following hacks to the socrates website.
Enter them in the console to make sure it works and then save
your results here.
Choose a new pair for each. Add your names to the section you complete.
*/
/* Here is your chance to take over Socrates!
Spend 10 minutes on each of the following hacks to the socrates website.
Enter them in the console to make sure it works and then save
your results here.
Choose a new pair for each. Add your names to the section you complete.
*/
@mbtomori
mbtomori / index.html
Last active December 19, 2015 20:59 — forked from dbc-challenges/index.html
DBC Phase 2 Practice Assessment Part 3
<!doctype html>
<html>
<head>
<link rel="stylesheet" href="http://cdn.jsdelivr.net/normalize/2.1.0/normalize.css">
<link rel="stylesheet" href="main.css">
<link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700,800">
<link href='http://fonts.googleapis.com/css?family=Montserrat+Subrayada' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Lato:100,900">
<link rel="stylesheet" href="http://cdnjs.cloudflare.com/ajax/libs/font-awesome/3.0.2/css/font-awesome.min.css">
@mbtomori
mbtomori / index.html
Last active December 19, 2015 19:49 — forked from dbc-challenges/index.html
DBC Phase 2 Practice Assessment Part 3
<!doctype html>
<html>
<head>
<link rel="stylesheet" href="http://cdn.jsdelivr.net/normalize/2.1.0/normalize.css">
<link rel="stylesheet" href="main.css">
<link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700,800">
<link href='http://fonts.googleapis.com/css?family=Montserrat+Subrayada' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Lato:100,900">
<link rel="stylesheet" href="http://cdnjs.cloudflare.com/ajax/libs/font-awesome/3.0.2/css/font-awesome.min.css">
class Vehicle
attr_reader :wheels, :gas_efficiency
def initialize(args)
@color = args[:color]
@wheels = args[:wheels]
@gas_efficiency = []
@speed_range = []
end