-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfacebook.json
4214 lines (4214 loc) · 106 KB
/
facebook.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"_id" : "52cdef7c4bab8bd675297d8e",
"name" : "Facebook",
"permalink" : "facebook",
"crunchbase_url" : "http://www.crunchbase.com/company/facebook",
"homepage_url" : "http://facebook.com",
"blog_url" : "http://blog.facebook.com",
"blog_feed_url" : "http://blog.facebook.com/atom.php",
"twitter_username" : "facebook",
"category_code" : "social",
"number_of_employees" : 5299,
"founded_year" : 2004,
"founded_month" : 2,
"founded_day" : 1,
"deadpooled_year" : null,
"deadpooled_month" : null,
"deadpooled_day" : null,
"deadpooled_url" : "",
"tag_list" : "facebook, college, students, profiles, network, online-communities, social-networking",
"alias_list" : "",
"email_address" : "",
"phone_number" : "",
"description" : "Social network",
"created_at" : "Fri May 25 21:22:15 UTC 2007",
"updated_at" : "Thu Nov 21 19:40:55 UTC 2013",
"overview" : "<p>Facebook is the world’s largest social network, with over <a href=\"http://techcrunch.com/2013/07/24/facebook-growth-2/\" title=\"1.15 billion monthly active users\">1.15 billion monthly active users</a>.</p>\n\n<p>Facebook was founded by <a href=\"http://www.crunchbase.com/person/mark-zuckerberg\" title=\"Mark Zuckerberg\">Mark Zuckerberg</a> in February 2004, initially as an exclusive network for Harvard students. It was a huge hit: in 2 weeks, half of the schools in the Boston area began demanding a Facebook network. Zuckerberg immediately recruited his friends <a href=\"http://www.crunchbase.com/person/dustin-moskovitz\" title=\"Dustin Moskovitz\">Dustin Moskovitz</a>, <a href=\"/person/chris-hughes\" title=\"Chris Hughes\" rel=\"nofollow\">Chris Hughes</a>, and <a href=\"/person/eduardo-saverin\" title=\"Eduardo Saverin\" rel=\"nofollow\">Eduardo Saverin</a> to help build Facebook, and within four months, Facebook added 30 more college networks. </p>\n\n<p>The original idea for the term Facebook came from Zuckerberg’s high school (Phillips Exeter Academy). The Exeter Face Book was passed around to every student as a way for students to get to know their classmates for the following year. It was a physical paper book until Zuckerberg brought it to the internet.</p>\n\n<p>With this success, Zuckerberg, Moskowitz and Hughes moved out to <a href=\"/maps/city/Palo%2520Alto\" title=\"Palo Alto\" rel=\"nofollow\">Palo Alto</a> for the summer and rented a sublet. A few weeks later, Zuckerberg ran into the former cofounder of <a href=\"/company/napster\" title=\"Napster\" rel=\"nofollow\">Napster</a>, <a href=\"/person/sean-parker\" title=\"Sean Parker\" rel=\"nofollow\">Sean Parker</a>. Parker soon moved in to Zuckerberg’s apartment and they began working together. Parker provided the introduction to their first investor, <a href=\"/person/peter-thiel\" title=\"Peter Thiel\" rel=\"nofollow\">Peter Thiel</a>, cofounder of <a href=\"/company/paypal\" title=\"PayPal\" rel=\"nofollow\">PayPal</a> and managing partner of <a href=\"http://www.crunchbase.com/financial-organization/founders-fund\" title=\"The Founders Fund\">The Founders Fund</a>. Thiel invested $500,000 into Facebook. </p>\n\n<p>With millions more users, <a href=\"/company/friendster\" title=\"Friendster\" rel=\"nofollow\">Friendster</a> <a href=\"http://www.techcrunch.com/2006/12/12/yahoos-project-fraternity-docs-leaked/\" title=\"attempted\">attempted</a> to acquire the company for $10 million in mid 2004. Facebook turned down the offer and subsequently received $12.7 million in funding from <a href=\"http://www.crunchbase.com/financial-organization/accel-partners\" title=\"Accel Partners\">Accel Partners</a>, at a valuation of <a href=\"http://www.techcrunch.com/2005/09/07/85-of-college-students-use-facebook/\" title=\"around $100 million\">around $100 million</a>. Facebook continued to grow, opening up to high school students in September 2005 and adding an immensely popular photo sharing feature the next month. The next spring, Facebook received $25 million in funding from <a href=\"http://www.crunchbase.com/financial-organization/greylock\" title=\"Greylock Partners\">Greylock Partners</a> and <a href=\"http://www.crunchbase.com/financial-organization/meritech-capital-partners\" title=\"Meritech Capital\">Meritech Capital</a>, as well as previous investors Accel Partners and Peter Thiel. The pre-money valuation for this deal was about $525 million. Facebook subsequently <a href=\"http://www.techcrunch.com/2006/04/26/facebook-goes-beyond-college-high-school-markets/\" title=\"opened\">opened</a> up to work networks, eventually amassing over 20,000 work networks. Finally in September 2006, Facebook <a href=\"http://www.techcrunch.com/2006/09/26/facebook-just-launched-open-registrations/\" title=\"opened\">opened</a> to anyone with an email address. </p>\n\n<p>In the summer of 2006, <a href=\"/company/yahoo\" title=\"Yahoo\" rel=\"nofollow\">Yahoo</a> <a href=\"http://www.techcrunch.com/2006/09/21/facebook-and-yahoo-in-acquisition-talks-for-1-billion/\" title=\"attempted to acquire\">attempted to acquire</a> the company for $1 billion dollars. <a href=\"http://www.wired.com/techbiz/startups/news/2007/09/ff_facebook\" title=\"Reports\" rel=\"nofollow\">Reports</a> actually indicated that Zuckerberg made a verbal agreement to sell Facebook to Yahoo. A few days later when Yahoo’s stock price took a dive, the offer was lowered to $800 million and Zuckerberg walked away from the deal. Yahoo later <a href=\"http://www.techcrunch.com/2006/12/12/yahoos-project-fraternity-docs-leaked/\" title=\"offered\">offered</a> $1 billion again, this time Zuckerberg turned Yahoo down and earned instant notoriety as the “kid” who turned down a billion. This was not the first time Zuckerberg turned down an acquisition offer; <a href=\"/company/viacom\" title=\"Viacom\" rel=\"nofollow\">Viacom</a> had previously <a href=\"http://www.techcrunch.com/2006/03/28/facebook-is-doing-the-skype-dance/\" title=\"unsuccessfully\">unsuccessfully</a> attempted to acquire the company for $750 million in March 2006. </p>\n\n<p>Not long after, in October 2007, <a href=\"http://www.techcrunch.com/2007/10/24/facebook-takes-the-microsoft-money-and-runs/\" title=\"Microsoft invested\">Microsoft invested</a> $240 million into Facebook for 1.6 percent of the company in. This meant a valuation of over $15 billion, making Facebook the <a href=\"http://www.techcrunch.com/2007/10/25/perspective-facebook-is-now-5th-most-valuable-us-internet-company/\" title=\"5th most valuable US Internet company\">5th most valuable US Internet company</a>, yet with only $150 million in annual revenue. Many explained Microsoft’s decision as being solely driven by the desire to outbid Google.</p>\n\n<p>Facebook continued to receive funding, most notably in January 2011 receiving a <a href=\"http://techcrunch.com/2011/01/21/facebook-raises-1-5-billion-at-50-billion-valuation/\" title=\"$1.5 billion round\">$1.5 billion round</a>, valuing the company at $50 billion. A year later, in February 2012, Facebook <a href=\"http://techcrunch.com/2012/02/01/facebook-files-for-5-billion-ipo/\" title=\"announced\">announced</a> that it was filing for its long-anticipated initial public offering. The company went public on May 18, 2012, opening on the NASDAQ with shares trading at <a href=\"http://techcrunch.com/2012/05/18/facebook-share-open-10-5-higher-at-42/\" title=\"$42.05\">$42.05</a>.</p>\n\n<p>One sour note for Facebook has been the <a href=\"http://www.techcrunch.com/2007/07/16/the-ghost-of-zuckerbergs-past-may-haunt-facebook-ipo/\" title=\"controversy\">controversy</a> with social network ConnectU. The founders of ConnectU, former classmates of Mark Zuckerberg at Harvard, allege that Zuckerberg stole their original source code for Facebook. The ordeal has <a href=\"http://www.techcrunch.com/2007/10/10/facebook-vs-connectu-facebook-makes-untrue-assertions-claims-connectu/\" title=\"gone to court\">gone to court</a>, and has now been <a href=\"http://techcrunch.com/2011/06/22/after-seven-years-the-winklevosses-give-up-on-battle-with-facebook/\" title=\"resolved\">resolved</a>. </p>\n\n<p>Notwithstanding this lingering controversy, Facebook’s growth has been staggering. Facebook announced <a href=\"http://techcrunch.com/2012/02/01/facebooks-s-1-845-million-users-every-month-more-than-half-daily-and-nearly-half-mobile/\" title=\"astonishing numbers\">astonishing numbers</a> in February 2012 upon filing for its IPO. As of July 2013, over <a href=\"http://techcrunch.com/2013/07/24/facebook-growth-2/\" title=\"1.15 billion\">1.15 billion</a> users log into Facebook every month, and 669 million users log in daily. Mobile users now make up half of Facebook’s user base, with 819 million monthly actives. Facebook has also announced that by the end of 2011 there had been 100 billion friend connections, and in recent months users had been registering 2.7 billion Likes and Comments per day. Facebook is one of the <a href=\"http://techcrunch.com/2010/12/29/hitwise-facebook-overtakes-google-to-become-most-visited-website-in-2010/\" title=\"most trafficked sites\">most trafficked sites</a> in the US, and its international growth has been impressive. Additionally, Facebook is the top photo sharing site with 250 million photos uploaded per day.</p>\n\n<p>Facebook users’ <a href=\"http://www.techcrunch.com/2007/11/13/i-just-cant-be-a-college-student-without-facebook/\" title=\"passion\">passion</a>—or <a href=\"http://www.techcrunch.com/2007/03/09/career-advice-dont-choose-facebook-over-your-job/\" title=\"addiction\">addiction</a>—to the site is unparalleled: more than half use the product every single day and users spend an average of 19 minutes a day on Facebook. The site’s popularity has garnered it pop culture fame, so much so that in 2010 a feature film entitled <em>The Social Network</em> was released which chronicled Facebook’s inception.</p>\n\n<p>In its 2012 <a href=\"http://techcrunch.com/2012/02/01/facebook-files-for-5-billion-ipo/\" title=\"IPO filing\">IPO filing</a>, Facebook announced that it intends to grow in the near future by expanding its global user base, increasing engagement by developing new social tools, improving the mobile experience, and creating more value for advertisers and users.</p>",
"image" : {
"available_sizes" : [
[
[
150,
61
],
"assets/images/resized/0000/4561/4561v1-max-150x150.png"
],
[
[
245,
100
],
"assets/images/resized/0000/4561/4561v1-max-250x250.png"
],
[
[
245,
100
],
"assets/images/resized/0000/4561/4561v1-max-450x450.png"
]
],
"attribution" : null
},
"products" : [
{
"name" : "Facebook Platform",
"permalink" : "facebook-platform"
},
{
"name" : "Facebook News Feed",
"permalink" : "facebook-news-feed"
},
{
"name" : "Facebook Chat",
"permalink" : "facebook-chat"
},
{
"name" : "Facebook Connect",
"permalink" : "facebook-connect"
},
{
"name" : "Facebook Mobile",
"permalink" : "facebook-iphone-app"
},
{
"name" : "Facebook",
"permalink" : "facebook-zero"
},
{
"name" : "Facebook Lite",
"permalink" : "facebook-lite"
},
{
"name" : "Facebook Places",
"permalink" : "facebook-places"
}
],
"relationships" : [
{
"is_past" : false,
"title" : "Founder and CEO, Board Of Directors",
"person" : {
"first_name" : "Mark",
"last_name" : "Zuckerberg",
"permalink" : "mark-zuckerberg"
}
},
{
"is_past" : false,
"title" : "CFO",
"person" : {
"first_name" : "David",
"last_name" : "Ebersman",
"permalink" : "david-ebersman"
}
},
{
"is_past" : false,
"title" : "COO",
"person" : {
"first_name" : "Sheryl",
"last_name" : "Sandberg",
"permalink" : "sheryl-sandberg"
}
},
{
"is_past" : false,
"title" : "Vice- President and General Counsel",
"person" : {
"first_name" : "Colin",
"last_name" : "Stretch",
"permalink" : "colin-stretch"
}
},
{
"is_past" : false,
"title" : "VP of Engineering & Product",
"person" : {
"first_name" : "Peter",
"last_name" : "Deng",
"permalink" : "peter-deng"
}
},
{
"is_past" : false,
"title" : "VP, Global Advertising Sales",
"person" : {
"first_name" : "Carolyn",
"last_name" : "Everson",
"permalink" : "carolyn-everson"
}
},
{
"is_past" : false,
"title" : "Vice President Advertising and Global Operations",
"person" : {
"first_name" : "David",
"last_name" : "Fischer",
"permalink" : "david-fischer-2"
}
},
{
"is_past" : false,
"title" : "VP, EMEA",
"person" : {
"first_name" : "Joanna",
"last_name" : "Shields",
"permalink" : "joanna-shields"
}
},
{
"is_past" : false,
"title" : "VP, Advertising",
"person" : {
"first_name" : "Andrew",
"last_name" : "Bosworth",
"permalink" : "andrew-bosworth"
}
},
{
"is_past" : false,
"title" : "VP Human Resources, Recruiting",
"person" : {
"first_name" : "Lori",
"last_name" : "Goler",
"permalink" : "lori-goler"
}
},
{
"is_past" : false,
"title" : "VP of Engineering",
"person" : {
"first_name" : "Jay",
"last_name" : "Parikh",
"permalink" : "jay-parikh"
}
},
{
"is_past" : false,
"title" : "VP Product",
"person" : {
"first_name" : "Chris",
"last_name" : "Cox",
"permalink" : "chris-cox"
}
},
{
"is_past" : false,
"title" : "VP Engineering & Products",
"person" : {
"first_name" : "Greg",
"last_name" : "Badros",
"permalink" : "greg-badros"
}
},
{
"is_past" : false,
"title" : "VP of Partnerships and Platform Marketing",
"person" : {
"first_name" : "Dan",
"last_name" : "Rose",
"permalink" : "dan-rose"
}
},
{
"is_past" : false,
"title" : "Vice President, Engineering",
"person" : {
"first_name" : "Mike",
"last_name" : "Schroepfer",
"permalink" : "mike-shroepfer"
}
},
{
"is_past" : false,
"title" : "VP of Global Communications, Marketing and Public Policy",
"person" : {
"first_name" : "Elliot",
"last_name" : "Schrage",
"permalink" : "elliot-schrage"
}
},
{
"is_past" : false,
"title" : "Board of Directors/Investor",
"person" : {
"first_name" : "Jim",
"last_name" : "Breyer",
"permalink" : "jim-breyer"
}
},
{
"is_past" : false,
"title" : "Board Director",
"person" : {
"first_name" : "Marc",
"last_name" : "Andreessen",
"permalink" : "marc-andreessen"
}
},
{
"is_past" : false,
"title" : "Director of Monetization",
"person" : {
"first_name" : "Tim",
"last_name" : "Kendall",
"permalink" : "tim-kendall"
}
},
{
"is_past" : false,
"title" : "Head of Security",
"person" : {
"first_name" : "Max",
"last_name" : "Kelly",
"permalink" : "max-kelly"
}
},
{
"is_past" : false,
"title" : "Marketing Director",
"person" : {
"first_name" : "Randi",
"last_name" : "Zuckerberg",
"permalink" : "randi-zuckerberg"
}
},
{
"is_past" : false,
"title" : "Director of Public Policy",
"person" : {
"first_name" : "Timothy",
"last_name" : "Sparapani",
"permalink" : "timothy-sparapani"
}
},
{
"is_past" : false,
"title" : "Product Manager",
"person" : {
"first_name" : "Gareth",
"last_name" : "Davis",
"permalink" : "gareth-davis"
}
},
{
"is_past" : false,
"title" : "Business Development Manager",
"person" : {
"first_name" : "Justin",
"last_name" : "Osofsky",
"permalink" : "justin-osofsky"
}
},
{
"is_past" : false,
"title" : "Platform Product Marketing",
"person" : {
"first_name" : "Kelly",
"last_name" : "Hansen",
"permalink" : "kelly-hansen"
}
},
{
"is_past" : false,
"title" : "Manager, Site Reliability Engineering",
"person" : {
"first_name" : "Pedro",
"last_name" : "Canahuati",
"permalink" : "pedro-canahuati"
}
},
{
"is_past" : false,
"title" : "Software Engineer",
"person" : {
"first_name" : "Michael",
"last_name" : "Novati",
"permalink" : "michael-novati"
}
},
{
"is_past" : false,
"title" : "Engineering Director",
"person" : {
"first_name" : "Pedram",
"last_name" : "Keyani",
"permalink" : "pedram-keyani"
}
},
{
"is_past" : false,
"title" : "Software Engineer",
"person" : {
"first_name" : "bill",
"last_name" : "fumerola",
"permalink" : "bill-fumerola"
}
},
{
"is_past" : false,
"title" : "Engineer",
"person" : {
"first_name" : "Lars",
"last_name" : "Rasmussen",
"permalink" : "lars-rasmussen"
}
},
{
"is_past" : false,
"title" : "Manager of Product Marketing, Facebook Credits",
"person" : {
"first_name" : "Deborah",
"last_name" : "Liu",
"permalink" : "deborah-liu"
}
},
{
"is_past" : false,
"title" : "Head of platform partnerships",
"person" : {
"first_name" : "Julien",
"last_name" : "Codorniou",
"permalink" : "julien-codorniou"
}
},
{
"is_past" : false,
"title" : "Corporate Development",
"person" : {
"first_name" : "Amin",
"last_name" : "Zoufonoun",
"permalink" : "amin-zoufonoun"
}
},
{
"is_past" : false,
"title" : "Director, Product Management",
"person" : {
"first_name" : "Tom",
"last_name" : "Stocky",
"permalink" : "tom-stocky"
}
},
{
"is_past" : false,
"title" : "Monetization Analytics",
"person" : {
"first_name" : "Jimmy",
"last_name" : "Zhu",
"permalink" : "jimmy-zhu"
}
},
{
"is_past" : false,
"title" : "Product Manager",
"person" : {
"first_name" : "Justin",
"last_name" : "Shaffer",
"permalink" : "justin-shaffer"
}
},
{
"is_past" : false,
"title" : "Strategic Partner Manager, Games",
"person" : {
"first_name" : "Niranjan",
"last_name" : "Nagar",
"permalink" : "niranjan-nagar"
}
},
{
"is_past" : false,
"title" : "Software Engineer",
"person" : {
"first_name" : "Lincoln",
"last_name" : "Hochberg",
"permalink" : "lincoln-hochberg"
}
},
{
"is_past" : false,
"title" : "",
"person" : {
"first_name" : "Adam",
"last_name" : "Cheyer",
"permalink" : "adam-cheyer"
}
},
{
"is_past" : false,
"title" : "Software Engineer",
"person" : {
"first_name" : "Zac",
"last_name" : "Morris",
"permalink" : "zac-morris"
}
},
{
"is_past" : false,
"title" : "Photos Product Manger",
"person" : {
"first_name" : "Emily",
"last_name" : "Grewal",
"permalink" : "emily-grewal"
}
},
{
"is_past" : false,
"title" : "Director of Engineering",
"person" : {
"first_name" : "John",
"last_name" : "Ciancutti",
"permalink" : "john-ciancutti"
}
},
{
"is_past" : false,
"title" : "Product Manager",
"person" : {
"first_name" : "Eitan",
"last_name" : "Shay",
"permalink" : "eitan-shay"
}
},
{
"is_past" : false,
"title" : "Communication Designer",
"person" : {
"first_name" : "Skyler",
"last_name" : "Vander Molen",
"permalink" : "skyler-vander-molen"
}
},
{
"is_past" : false,
"title" : "Product Designer",
"person" : {
"first_name" : "Tuhin",
"last_name" : "Kumar",
"permalink" : "tuhin-kumar"
}
},
{
"is_past" : false,
"title" : "",
"person" : {
"first_name" : "Sriram",
"last_name" : "Krishnan",
"permalink" : "sriram-krishnan"
}
},
{
"is_past" : false,
"title" : "Manager of Strategic Partnerships",
"person" : {
"first_name" : "Ime",
"last_name" : "Archibong",
"permalink" : "ime-archibong"
}
},
{
"is_past" : false,
"title" : "Strategic Partner Development - Commerce",
"person" : {
"first_name" : "Chris",
"last_name" : "Maliwat",
"permalink" : "chris-maliwat"
}
},
{
"is_past" : false,
"title" : "Software Engineer",
"person" : {
"first_name" : "Barak",
"last_name" : "Naveh",
"permalink" : "barak-naveh"
}
},
{
"is_past" : false,
"title" : "International Growth",
"person" : {
"first_name" : "Edward",
"last_name" : "Baker",
"permalink" : "edward-baker"
}
},
{
"is_past" : false,
"title" : "Troublemaker",
"person" : {
"first_name" : "Seng Keat",
"last_name" : "Teh",
"permalink" : "seng-keat-teh"
}
},
{
"is_past" : false,
"title" : "Software Engineer",
"person" : {
"first_name" : "Lucy",
"last_name" : "Zhang",
"permalink" : "lucy-zhang"
}
},
{
"is_past" : false,
"title" : "Software Engineer",
"person" : {
"first_name" : "Jonathan",
"last_name" : "Perlow",
"permalink" : "jonathan-perlow"
}
},
{
"is_past" : false,
"title" : "Head of Analytics",
"person" : {
"first_name" : "Ken",
"last_name" : "Rudin",
"permalink" : "ken-rudin"
}
},
{
"is_past" : false,
"title" : "Software Engineer",
"person" : {
"first_name" : "Michael",
"last_name" : "Landau",
"permalink" : "michael-landau"
}
},
{
"is_past" : false,
"title" : "Product Manager",
"person" : {
"first_name" : "Gil",
"last_name" : "Hirsch",
"permalink" : "gil-hirsch"
}
},
{
"is_past" : false,
"title" : "Software Engineer",
"person" : {
"first_name" : "Florian",
"last_name" : "Laplantif",
"permalink" : "florian-laplantif"
}
},
{
"is_past" : false,
"title" : "Software Engineer",
"person" : {
"first_name" : "Benjamin",
"last_name" : "Golub",
"permalink" : "benjamin-golub"
}
},
{
"is_past" : false,
"title" : "Facebook",
"person" : {
"first_name" : "Thomas",
"last_name" : "Shin",
"permalink" : "thomas-shin"
}
},
{
"is_past" : false,
"title" : "Head of Vertical Measurement",
"person" : {
"first_name" : "Graham",
"last_name" : "Mudd",
"permalink" : "graham-mudd"
}
},
{
"is_past" : false,
"title" : "Software Engineer",
"person" : {
"first_name" : "Tudor",
"last_name" : "Bosman",
"permalink" : "tudor-bosman"
}
},
{
"is_past" : false,
"title" : "Software Engineer",
"person" : {
"first_name" : "Ashwin",
"last_name" : "Bharambe",
"permalink" : "ashwin-bharambe"
}
},
{
"is_past" : false,
"title" : "Growth",
"person" : {
"first_name" : "Rob",
"last_name" : "Goldman",
"permalink" : "rob-goldman"
}
},
{
"is_past" : false,
"title" : "Director of Platform Operations",
"person" : {
"first_name" : "John",
"last_name" : "Anderson",
"permalink" : "john-anderson-2"
}
},
{
"is_past" : false,
"title" : "Product Manager",
"person" : {
"first_name" : "Teck",
"last_name" : "Chia",
"permalink" : "teck-chia"
}
},
{
"is_past" : false,
"title" : "Engineering Director / Site Director",
"person" : {
"first_name" : "rohit",
"last_name" : "wad",
"permalink" : "rohit-wad"
}
},
{
"is_past" : false,
"title" : "Sustainability Guru",
"person" : {
"first_name" : "Bill",
"last_name" : "Weihl",
"permalink" : "bill-weihl"
}
},
{
"is_past" : false,
"title" : "Investor",
"person" : {
"first_name" : "Rich",
"last_name" : "Wheeless",
"permalink" : "rich-wheeless-mba"
}
},
{
"is_past" : false,
"title" : "Product Designer",
"person" : {
"first_name" : "Justin",
"last_name" : "Stahl",
"permalink" : "justin-stahl"
}
},
{
"is_past" : false,
"title" : "Director, Artificial Intelligence Lab",
"person" : {
"first_name" : "Yann",
"last_name" : "LeCun",
"permalink" : "yann-lecun"
}
},
{
"is_past" : false,
"title" : "Head of Intl BD & Strategy",
"person" : {
"first_name" : "Richard",
"last_name" : "Cooperstein",
"permalink" : "richard-cooperstein"
}
},
{
"is_past" : false,
"title" : "Board Of Directors",
"person" : {
"first_name" : "Peter",
"last_name" : "Thiel",
"permalink" : "peter-thiel"
}
},
{
"is_past" : false,
"title" : "Platform Program Manager",
"person" : {
"first_name" : "Sandra Liu",
"last_name" : "Huang",
"permalink" : "sandra-liu-huang"
}
},
{
"is_past" : false,
"title" : "Product Marketing Manager",
"person" : {
"first_name" : "Kent",
"last_name" : "Schoen",
"permalink" : "kent-schoen"
}
},
{
"is_past" : false,
"title" : "Product Designer",
"person" : {
"first_name" : "Bobby",
"last_name" : "Goodlatte",
"permalink" : "rob-goodlatte"
}
},
{
"is_past" : false,
"title" : "Board Observer/Investor",
"person" : {
"first_name" : "Paul",
"last_name" : "Madera",
"permalink" : "paul-madera"
}
},
{
"is_past" : false,
"title" : "Board member",
"person" : {
"first_name" : "Donald E.",
"last_name" : "Graham",
"permalink" : "donald-e-graham"
}
},
{
"is_past" : false,
"title" : "Engineering Manager",
"person" : {
"first_name" : "David",
"last_name" : "Recordon",
"permalink" : "david-recordon"
}
},
{
"is_past" : false,
"title" : "Director, Mobile",
"person" : {
"first_name" : "Jed",
"last_name" : "Stremel",
"permalink" : "jed-stremel"
}
},
{
"is_past" : false,
"title" : "Software Engineer",
"person" : {
"first_name" : "Eric",
"last_name" : "Faller",
"permalink" : "eric-faller"
}
},
{
"is_past" : false,
"title" : "Software Engineer",
"person" : {
"first_name" : "Beau",
"last_name" : "Hartshorne",
"permalink" : "beau-hartshorne"
}
},
{
"is_past" : false,
"title" : "Hacker",
"person" : {
"first_name" : "Paul",
"last_name" : "Tarjan",
"permalink" : "paul-tarjan"
}
},
{
"is_past" : false,
"title" : "Head of Mobile Products",
"person" : {
"first_name" : "Erick",
"last_name" : "Tseng",
"permalink" : "erick-tseng"
}
},
{
"is_past" : false,
"title" : "Software Engineer",
"person" : {
"first_name" : "Eugene",
"last_name" : "Letuchy",
"permalink" : "eugene-letuchy"
}
},
{
"is_past" : false,
"title" : "Engineer",
"person" : {
"first_name" : "Ömer Özgün",
"last_name" : "IŞIKMAN",
"permalink" : "mer-zgn-ikman"
}
},
{
"is_past" : false,
"title" : "Product Manager",
"person" : {
"first_name" : "Keith",
"last_name" : "Schacht",
"permalink" : "keith-schacht"
}
},
{
"is_past" : false,
"title" : "Corporate Development",
"person" : {
"first_name" : "Vaughan",
"last_name" : "Smith",
"permalink" : "vaughan-smith"
}
},
{
"is_past" : false,
"title" : "Product Manager",
"person" : {
"first_name" : "Antonio",
"last_name" : "Garcia-Martinez",
"permalink" : "antonio-garcia-martinez"
}
},
{
"is_past" : false,
"title" : "Board of Directors",
"person" : {
"first_name" : "Erskine",
"last_name" : "Bowles",
"permalink" : "erskine-bowles"
}
},
{
"is_past" : false,
"title" : "Director, Identity Product Group",
"person" : {
"first_name" : "Sam",
"last_name" : "Lessin",
"permalink" : "sam-lessin"
}
},
{
"is_past" : false,
"title" : "Product Designer",
"person" : {
"first_name" : "Koen",
"last_name" : "Bok",
"permalink" : "koen-bok"
}
},
{
"is_past" : false,
"title" : "Developer Relations",
"person" : {
"first_name" : "Charles",
"last_name" : "Dowd",
"permalink" : "charles-dowd"
}
},
{
"is_past" : false,
"title" : "Sales and Advertising",
"person" : {
"first_name" : "Brandon",
"last_name" : "Sayles",
"permalink" : "brandon-sayles"
}
},
{
"is_past" : false,
"title" : "Mobile Software Engineer",
"person" : {
"first_name" : "Brian",
"last_name" : "Amerige",
"permalink" : "brian-amerige"
}
},
{
"is_past" : false,
"title" : "Data scientist",
"person" : {
"first_name" : "Justin",
"last_name" : "Moore",
"permalink" : "justin-moore-2"
}
},
{
"is_past" : false,
"title" : "Product Manager, Mobile",
"person" : {
"first_name" : "Mick",
"last_name" : "Johnson",
"permalink" : "mick-johnson"
}
},
{
"is_past" : false,
"title" : "Product and Mobile Operations",
"person" : {
"first_name" : "Amber",
"last_name" : "Saloner Tennant",
"permalink" : "amber-saloner"
}
},
{
"is_past" : false,
"title" : "Media Solutions",
"person" : {
"first_name" : "Pablo",
"last_name" : "Gil",
"permalink" : "pablo-gil"
}
},
{
"is_past" : false,
"title" : "Product Designer",
"person" : {
"first_name" : "Keegan",
"last_name" : "Jones",
"permalink" : "keegan-jones"
}
},
{
"is_past" : false,
"title" : "Mobile Eng Manager",
"person" : {
"first_name" : "Phil",
"last_name" : "Fung",
"permalink" : "phil-fung"
}
},
{
"is_past" : false,
"title" : "Engineering Intern",
"person" : {
"first_name" : "Neeraj",
"last_name" : "Agrawal",
"permalink" : "neeraj-agrawal"
}
},
{
"is_past" : false,
"title" : "Member of Board of Directors",
"person" : {