-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprofile7.html
More file actions
7276 lines (3792 loc) · 348 KB
/
profile7.html
File metadata and controls
7276 lines (3792 loc) · 348 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="pageKey" content="public_profile_v3_desktop">
<!----><!----> <meta name="locale" content="en_US">
<meta id="config" data-app-version="2.0.1849" data-call-tree-id="AAYJOfM7nb3S6qzEGHcPGw==" data-multiproduct-name="public-profile-frontend" data-service-name="public-profile-frontend" data-browser-id="85b8e444-e6ee-40d5-8be1-543519fa6e3b" data-enable-page-view-heartbeat-tracking data-page-instance="urn:li:page:public_profile_v3;Ikfs7QfyQiOyhLVkX9Q8gA==" data-disable-jsbeacon-pagekey-suffix="false" data-member-id="0" data-msafdf-lib="https://static.licdn.com/aero-v1/sc/h/80ndnja80f2uvg4l8sj2su82m" data-logout-url="/uas/logout" data-is-li-sugr-tracking-enabled>
<link rel="canonical" href="https://www.linkedin.com/in/garrytan <view-source:https://www.linkedin.com/in/garrytan>">
<!----><!---->
<!---->
<!---->
<meta property="al:android:url" content="https://www.linkedin.com/in/garrytan">
<meta property="al:android:package" content="com.linkedin.android">
<meta property="al:android:app_name" content="LinkedIn">
<meta property="al:ios:url" content="https://www.linkedin.com/in/garrytan">
<meta property="al:ios:app_store_id" content="288429040">
<meta property="al:ios:app_name" content="LinkedIn">
<!---->
<link rel="icon" href="https://static.licdn.com/aero-v1/sc/h/al2o9zrvru7aqj8e1x2rzsrca <view-source:https://static.licdn.com/aero-v1/sc/h/al2o9zrvru7aqj8e1x2rzsrca>">
<script>
function getDfd() {let yFn,nFn;const p=new Promise(function(y, n){yFn=y;nFn=n;});p.resolve=yFn;p.reject=nFn;return p;}
window.lazyloader = getDfd();
window.tracking = getDfd();
window.impressionTracking = getDfd();
window.ingraphTracking = getDfd();
window.appDetection = getDfd();
window.pemTracking = getDfd();
</script>
<!---->
<title>Garry Tan - President, CEO, and Group Partner - Y Combinator | LinkedIn</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="litmsProfileName" content="public-profile-frontend">
<meta name="ubba" content="https://static.licdn.com/aero-v1/sc/h/9x8z9ukitgg8cz995go8t29h8">
<meta name="platform" content="https://static.licdn.com/aero-v1/sc/h/5mywk64tjaqwjfcj5mw7r2wqo">
<meta name="platform-worker" content="https://static.licdn.com/aero-v1/sc/h/7nirg34a8ey4y2l4rw7xgwxx4">
<meta name="description" content="President & CEO of Y Combinator. Y Combinator funds hundreds of companies per year via web-based application and has an acceptance rate of 1%, lower than any other selective process of its kind. YC has funded 90 companies worth a billion dollars or more, each at the earliest possible stage (usually a few people even before launch), and about 10 to 20 companies per year that go through the program will go on to product market fit and become a Unicorn. Over $600B in market value has been created so far, and counting. Before becoming CEO, I was a partner at YC 2011-2015 and built major software including Bookface and Demo Day realtime video. <br><br>I'm a designer, PM & engineer turned investor and helper to startups.<br><br>Subscribe to my YouTube channel at youtube.com/garrytan<br><br>Founder, board partner and advisor at Initialized Capital, an early stage venture capital fund that was earliest in Coinbase and Instacart. Previously managing partner where we grew it to $3.2B in assets under management and startups worth more than $200 billion in market value in 10 years. Forbes Midas List Top 100 Global VC 2019-2023, recently #6.<br><br>Before that, I cofounded Posterous and helped build it to a world-class website used by millions. (Acquired by Twitter) I also cofounded the engineering team for Palantir Technology's quant finance analysis platform, and designed the current Palantir logo and wordmark.<br><br>I love building things.<br><br>Specialties: user-centered design, project management, software engineering, interaction design, visual design, entrepreneurship, bootstrapping, branding, design, technical architecture, scaling | Learn more about Garry Tan's work experience, education, connections & more by visiting their profile on LinkedIn">
<meta name="og:description" content="President & CEO of Y Combinator. Y Combinator funds hundreds of companies per year via web-based application and has an acceptance rate of 1%, lower than any other selective process of its kind. YC has funded 90 companies worth a billion dollars or more, each at the earliest possible stage (usually a few people even before launch), and about 10 to 20 companies per year that go through the program will go on to product market fit and become a Unicorn. Over $600B in market value has been created so far, and counting. Before becoming CEO, I was a partner at YC 2011-2015 and built major software including Bookface and Demo Day realtime video. <br><br>I'm a designer, PM & engineer turned investor and helper to startups.<br><br>Subscribe to my YouTube channel at youtube.com/garrytan<br><br>Founder, board partner and advisor at Initialized Capital, an early stage venture capital fund that was earliest in Coinbase and Instacart. Previously managing partner where we grew it to $3.2B in assets under management and startups worth more than $200 billion in market value in 10 years. Forbes Midas List Top 100 Global VC 2019-2023, recently #6.<br><br>Before that, I cofounded Posterous and helped build it to a world-class website used by millions. (Acquired by Twitter) I also cofounded the engineering team for Palantir Technology's quant finance analysis platform, and designed the current Palantir logo and wordmark.<br><br>I love building things.<br><br>Specialties: user-centered design, project management, software engineering, interaction design, visual design, entrepreneurship, bootstrapping, branding, design, technical architecture, scaling | Learn more about Garry Tan's work experience, education, connections & more by visiting their profile on LinkedIn">
<meta name="twitter:description" content="President & CEO of Y Combinator. Y Combinator funds hundreds of companies per year via web-based application and has an acceptance rate of 1%, lower than any other selective process of its kind. YC has funded 90 companies worth a billion dollars or more, each at the earliest possible stage (usually a few people even before launch), and about 10 to 20 companies per year that go through the program will go on to product market fit and become a Unicorn. Over $600B in market value has been created so far, and counting. Before becoming CEO, I was a partner at YC 2011-2015 and built major software including Bookface and Demo Day realtime video. <br><br>I'm a designer, PM & engineer turned investor and helper to startups.<br><br>Subscribe to my YouTube channel at youtube.com/garrytan<br><br>Founder, board partner and advisor at Initialized Capital, an early stage venture capital fund that was earliest in Coinbase and Instacart. Previously managing partner where we grew it to $3.2B in assets under management and startups worth more than $200 billion in market value in 10 years. Forbes Midas List Top 100 Global VC 2019-2023, recently #6.<br><br>Before that, I cofounded Posterous and helped build it to a world-class website used by millions. (Acquired by Twitter) I also cofounded the engineering team for Palantir Technology's quant finance analysis platform, and designed the current Palantir logo and wordmark.<br><br>I love building things.<br><br>Specialties: user-centered design, project management, software engineering, interaction design, visual design, entrepreneurship, bootstrapping, branding, design, technical architecture, scaling | Learn more about Garry Tan's work experience, education, connections & more by visiting their profile on LinkedIn">
<meta property="og:title" content="Garry Tan - President, CEO, and Group Partner - Y Combinator | LinkedIn">
<meta property="og:image" content="https://media.licdn.com/dms/image/C5603AQGmWuPwdHUI1A/profile-displayphoto-shrink_800_800/0/1640110427593?e=2147483647&v=beta&t=X3ySkhW-HoPFbXQeITTpafk-wMGcjVACsjaHZY-Xtxg">
<meta property="og:type" content="profile">
<meta property="profile:first_name" content="Garry">
<meta property="profile:last_name" content="Tan">
<meta property="og:url" content="https://www.linkedin.com/in/garrytan">
<meta name="twitter:card" content="summary">
<meta name="twitter:site" content="@Linkedin">
<meta name="twitter:title" content="Garry Tan - President, CEO, and Group Partner - Y Combinator | LinkedIn">
<meta name="twitter:image" content="https://media.licdn.com/dms/image/C5603AQGmWuPwdHUI1A/profile-displayphoto-shrink_800_800/0/1640110427593?e=2147483647&v=beta&t=X3ySkhW-HoPFbXQeITTpafk-wMGcjVACsjaHZY-Xtxg">
<!---->
<!---->
<!---->
<meta name="robots" content="noarchive">
<meta name="clientSideIngraphs" content="1" data-gauge-metric-endpoint="/public-profile/api/ingraphs/guestGauge" data-counter-metric-endpoint="/public-profile/api/ingraphs/counter">
<!---->
<link rel="stylesheet" href="https://static.licdn.com/aero-v1/sc/h/4wbbk7ssi8o5og9g0szys8pv9 <view-source:https://static.licdn.com/aero-v1/sc/h/4wbbk7ssi8o5og9g0szys8pv9>">
<script type="application/ld+json">
{"@context":"http://schema.org","@graph":[{"@type":"Person","address":{"@type":"PostalAddress","addressLocality":"San Francisco, California, United States","addressCountry":"us"},"alumniOf":[{"@type":"Organization","name":"Y Combinator","url":"https://www.linkedin.com/company/y-combinator?trk=ppro_cprof","member":{"@type":"OrganizationRole","description":"Helped over 700 YC startups over the past 5 years (10 batches) build tomorrow's world-changing companies. Previously designer-in-residence.\u003Cbr\u003E\u003Cbr\u003EWrote key software at YC, including the internal alumni social network and forum Bookface (used by 1 in 3 YC alums every day) and the Demo Day website with realtime video updates. ","startDate":"2010-12","endDate":"2015-11"}},{"@type":"Organization","name":"Posterous.com","url":"https://www.linkedin.com/company/posterous?trk=ppro_cprof","member":{"@type":"OrganizationRole","description":"Dead simple posting of everything online using email. Attach documents, photos, music, video, and files of any kind and we'll transcode it to the most web friendly format and host it for you too. Autopost to facebook, twitter, flickr, and all your blogs.\u003Cbr\u003E\u003Cbr\u003EI ran full stack design and development: from product definition, interaction design, visual design to software engineering, scaling, database management, systems administration. I designed and shipped major parts of the app including text processing, post editor, customizable blog theme engine, embed expansion, realtime and digest email notifications and subscriptions, and bookmarklet. \u003Cbr\u003E\u003Cbr\u003EVaryingly over the years I had to wear all the other hats too -- tech architecture, scaling and optimization, customer support, spam and abuse eradication, branding, PR. It was a blast.\u003Cbr\u003E\u003Cbr\u003ELaunched in July of 2008 and at peak was a Quantcast Top 200 site. We grew 10x in 2009 and 2.5x in 2010. Acquired by Twitter.\u003Cbr\u003E\u003Cbr\u003EPosterous has been hailed in the design community for its focus on no-setup no-signup first time experience, and has been featured in Designing Social Interfaces published by O'Reilly and The Smashing Book by Smashing Magazine. \u003Cbr\u003E\u003Cbr\u003E\"What might be the simplest blogging platform to date.\" --Michael Arrington, Techcrunch\u003Cbr\u003E\u003Cbr\u003E\"In terms of making things really dead simple Posterous beats every other service or app I have ever used. We can learn from them.\" -- Werner Vogels, CTO Amazon\u003Cbr\u003E\u003Cbr\u003E\"The quickest and easiest setup I've ever seen.\" --Huffington Post","startDate":"2008-01","endDate":"2011-01"}},{"@type":"Organization","name":"Palantir Technologies","url":"https://www.linkedin.com/company/palantir-technologies?trk=ppro_cprof","member":{"@type":"OrganizationRole","description":"Cofounded v1 product/team for Palantir's financial analysis product. Joined as employee #10.\u003Cbr\u003E\u003Cbr\u003EDefined product vision and design features for 14 engineers working on a next-generation financial analysis platform, now actively deployed to top hedge funds and banks around the world in partnership with Thomson Reuters. Hacked the first few early iterations of the software from scratch. \u003Cbr\u003E\u003Cbr\u003EDesigned the current Palantir mark and logo.","startDate":"2005-09","endDate":"2007-10"}},{"@type":"Organization","name":"Microsoft","url":"https://www.linkedin.com/company/microsoft?trk=ppro_cprof","member":{"@type":"OrganizationRole","description":"Program management of ActiveSync 4.0, 4.1, 4.2 and Windows Vista releases of Windows Mobile synchronization and device management software.","startDate":"2003-07","endDate":"2005-09"}},{"@type":"Organization","name":"Sun Microsystems","url":"https://www.linkedin.com/company/sun-microsystems_1062?trk=ppro_cprof","member":{"@type":"OrganizationRole","startDate":"2002-06","endDate":"2003-01"}},{"@type":"Organization","name":"TheMan.com","member":{"@type":"OrganizationRole","startDate":"2000-06","endDate":"2000-09"}},{"@type":"Organization","name":"Sapient","url":"https://www.linkedin.com/company/sapient?trk=ppro_cprof","member":{"@type":"OrganizationRole","description":"Worked during high school and college, part time during school, full time during breaks.\u003Cbr\u003E\u003Cbr\u003EWeb application development for clients such premiere brands as Caterpillar, PowerBar, Specialized Mountain Bikes, Esprit, and Virgin Megastore.\u003Cbr\u003E\u003Cbr\u003EPerl web application development, linux administration, and build system integration.","startDate":"1998-06","endDate":"2000-01"}},{"@type":"EducationalOrganization","name":"Stanford University","url":"https://www.linkedin.com/school/stanford-university/","member":{"@type":"OrganizationRole","description":"President of the Asia-Pacific Student Entrepreneurship Society (ASES) at Stanford University\u003Cbr\u003E\u003Cbr\u003EFirst-authored published research on cross-cultural effects on input modality preferences in CHI2003 in conjunction with Stanford Mass Communications department and NHK Japan.","startDate":1999,"endDate":2003}}],"awards":["2023 San Francisco Power 100","2022 Forbes Midas List Top 100 Global Venture Capitalists","2021 Business Insider Top 100 Seed Investor","2021 Forbes Midas List Top 100 Global Venture Capitalists","2020 Forbes Midas List Top 100 Global Venture Capitalists","2019 Forbes Midas List Top 100 Global Venture Capitalists","2018 Forbes Midas Brink List","Top Angel 2014","40 Under 40 in Silicon Valley","Top 50 Angel Investors in Silicon Valley"],"image":{"@type":"ImageObject","contentUrl":"https://media.licdn.com/dms/image/C5603AQGmWuPwdHUI1A/profile-displayphoto-shrink_800_800/0/1640110427593?e=2147483647&v=beta&t=X3ySkhW-HoPFbXQeITTpafk-wMGcjVACsjaHZY-Xtxg"},"jobTitle":["President, CEO, and Group Partner","Board Partner & Advisor","Cofounder"],"name":"Garry Tan","sameAs":"https://www.linkedin.com/in/garrytan","url":"https://www.linkedin.com/in/garrytan","memberOf":[],"worksFor":[{"@type":"Organization","name":"Y Combinator","url":"https://www.linkedin.com/company/y-combinator?trk=ppro_cprof","member":{"@type":"OrganizationRole","startDate":"2023-01"}},{"@type":"Organization","name":"Initialized Capital","url":"https://www.linkedin.com/company/initialized-capital?trk=ppro_cprof","member":{"@type":"OrganizationRole","startDate":"2023-01"}},{"@type":"Organization","name":"Posthaven","url":"https://www.linkedin.com/company/posthaven?trk=ppro_cprof","location":"San Francisco, CA","member":{"@type":"OrganizationRole","description":"Easy, simple blogs for $5/mo forever. This is a replacement for Posterous.com, but now one that we intend to charge money for, and keep online for as long as possible. We needed a replacement, and other people do too.","startDate":"2013-03"}}],"knowsLanguage":[],"disambiguatingDescription":"","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/FollowAction","name":"Follows","userInteractionCount":148585},"description":"President & CEO of Y Combinator. Y Combinator funds hundreds of companies per year via web-based application and has an acceptance rate of 1%, lower than any other selective process of its kind. YC has funded 90 companies worth a billion dollars or more, each at the earliest possible stage (usually a few people even before launch), and about 10 to 20 companies per year that go through the program will go on to product market fit and become a Unicorn. Over $600B in market value has been created so far, and counting. Before becoming CEO, I was a partner at YC 2011-2015 and built major software including Bookface and Demo Day realtime video. \u003Cbr\u003E\u003Cbr\u003EI'm a designer, PM & engineer turned investor and helper to startups.\u003Cbr\u003E\u003Cbr\u003ESubscribe to my YouTube channel at youtube.com/garrytan\u003Cbr\u003E\u003Cbr\u003EFounder, board partner and advisor at Initialized Capital, an early stage venture capital fund that was earliest in Coinbase and Instacart. Previously managing partner where we grew it to $3.2B in assets under management and startups worth more than $200 billion in market value in 10 years. Forbes Midas List Top 100 Global VC 2019-2023, recently #6.\u003Cbr\u003E\u003Cbr\u003EBefore that, I cofounded Posterous and helped build it to a world-class website used by millions. (Acquired by Twitter) I also cofounded the engineering team for Palantir Technology's quant finance analysis platform, and designed the current Palantir logo and wordmark.\u003Cbr\u003E\u003Cbr\u003EI love building things.\u003Cbr\u003E\u003Cbr\u003ESpecialties: user-centered design, project management, software engineering, interaction design, visual design, entrepreneurship, bootstrapping, branding, design, technical architecture, scaling"},{"@type":"WebPage","url":"https://www.linkedin.com/in/garrytan","reviewedBy":{"@type":"Person","name":"Garry Tan"}}]}
</script>
<!----> </head>
<body dir="ltr">
<!---->
<a href="#main-content <view-source:https://www.linkedin.com/in/garrytan?trk=public_profile_browsemap#main-content>" class="skip-link btn-md btn-primary absolute z-11 -top-[100vh] focus:top-0">
Skip to main content
</a>
<!---->
<form class="google-auth" action="https://www.linkedin.com/uas/login-submit <view-source:https://www.linkedin.com/uas/login-submit>" method="post">
<input name="loginCsrfParam" value="85b8e444-e6ee-40d5-8be1-543519fa6e3b" type="hidden">
<input name="session_redirect" value="https://www.linkedin.com/in/garrytan" type="hidden">
<input name="trk" value="public_profile_google-one-tap-submit" type="hidden">
<!---->
<div class="loader loader--full-screen">
<div class="loader__container mb-2 overflow-hidden">
<icon class="loader__icon inline-block loader__icon--default text-color-progress-loading" data-delayed-url="https://static.licdn.com/aero-v1/sc/h/ddi43qwelxeqjxdd45pe3fvs1" data-svg-class-name="loader__icon-svg--large fill-currentColor h-[60px] min-h-[60px] w-[60px] min-w-[60px]"></icon>
</div>
</div>
</form>
<script data-delayed-url="https://static.licdn.com/aero-v1/sc/h/8m736dfzskmdn6bwwqz67iiki" data-module-id="google-gsi-lib"></script>
<code id="googleAuthLibraryPath" style="display: none"><!--"https://static.licdn.com/aero-v1/sc/h/8m736dfzskmdn6bwwqz67iiki"--></code>
<code id="isLinkedInAppWebView" style="display: none"><!--false--></code>
<code id="isTermsAndConditionsSkipEnabledOneTap" style="display: none"><!--false--></code>
<!---->
<a href="#main-content <view-source:https://www.linkedin.com/in/garrytan?trk=public_profile_browsemap#main-content>" class="skip-link btn-md btn-primary absolute z-11 -top-[100vh] focus:top-0">
Skip to main content
</a>
<header class="header base-detail-page__header px-mobile-container-padding bg-color-background-container global-alert-offset sticky-header">
<nav class="nav pt-1.5 pb-2 flex items-center justify-between relative flex-nowrap mamabear:flex-wrap mamabear:gap-y-1 babybear:flex-wrap babybear:py-1.5
nav--minified-mobile babybear:flex-wrap" aria-label="Primary">
<a href="/?trk=public_profile_nav-header-logo <view-source:https://www.linkedin.com/?trk=public_profile_nav-header-logo>" class="nav__logo-link link-no-visited-state z-1 mr-auto babybear:z-0 babybear:mr-0 babybear:flex-1 hover:no-underline focus:no-underline active:no-underline" data-tracking-control-name="public_profile_nav-header-logo" data-tracking-will-navigate>
<span class="sr-only">LinkedIn</span>
<icon class="nav-logo--inbug flex text-color-brand
papabear:hidden mamabear:hidden" data-svg-class-name="h-[34px] w-[34px] babybear:h-[27px] babybear:w-[27px]" data-delayed-url="https://static.licdn.com/aero-v1/sc/h/4zqr0f9jf98vi2nkijyc3bex2"></icon>
<icon class="block text-color-brand w-[84px] h-[21px] papabear:w-[135px] papabear:h-[34px]
babybear:hidden" data-test-id="nav-logo" data-delayed-url="https://static.licdn.com/aero-v1/sc/h/8fkga714vy9b2wk5auqo5reeb"></icon>
</a>
<!---->
<ul class="top-nav-menu flex items-center mr-0.5 babybear:hidden mamabear:hidden
after:up-down-divider after:!h-[37px]
nav__menu order-3">
<li class>
<a href="https://www.linkedin.com/pulse/topics/home/?trk=public_profile_guest_nav_menu_articles <view-source:https://www.linkedin.com/pulse/topics/home/?trk=public_profile_guest_nav_menu_articles>" data-tracking-control-name="public_profile_guest_nav_menu_articles" data-tracking-will-navigate class="top-nav-link flex justify-center items-center h-[52px] hover:text-color-text visited:hover:text-color-text hover:no-underline
w-[64px]
flex-col mx-1
text-color-text-secondary visited:text-color-text-secondary">
<icon class="top-nav-link__icon flex h-3 w-3 flex-shrink-0 " data-delayed-url="https://static.licdn.com/aero-v1/sc/h/6ulnj3n2ijcmhej768y6oj1hr">
</icon>
<span class="top-nav-link__label-text font-sans text-xs leading-regular text-center
font-regular">
Articles
</span>
</a>
</li>
<li class>
<a href="https://www.linkedin.com/pub/dir/+/+?trk=public_profile_guest_nav_menu_people <view-source:https://www.linkedin.com/pub/dir/+/+?trk=public_profile_guest_nav_menu_people>" data-tracking-control-name="public_profile_guest_nav_menu_people" data-tracking-will-navigate class="top-nav-link flex justify-center items-center h-[52px] hover:text-color-text visited:hover:text-color-text hover:no-underline
w-[64px]
flex-col mx-1
top-nav-link--selected text-color-text visited:text-color-text border-solid border-b-2 border-color-text" aria-current="page">
<icon class="top-nav-link__icon flex h-3 w-3 flex-shrink-0 " data-delayed-url="https://static.licdn.com/aero-v1/sc/h/7kb6sn3tm4cx918cx9a5jlb0">
</icon>
<span class="top-nav-link__label-text font-sans text-xs leading-regular text-center
font-regular">
People
</span>
</a>
</li>
<li class>
<a href="https://www.linkedin.com/learning/search?trk=public_profile_guest_nav_menu_learning <view-source:https://www.linkedin.com/learning/search?trk=public_profile_guest_nav_menu_learning>" data-tracking-control-name="public_profile_guest_nav_menu_learning" data-tracking-will-navigate class="top-nav-link flex justify-center items-center h-[52px] hover:text-color-text visited:hover:text-color-text hover:no-underline
w-[64px]
flex-col mx-1
text-color-text-secondary visited:text-color-text-secondary">
<icon class="top-nav-link__icon flex h-3 w-3 flex-shrink-0 " data-delayed-url="https://static.licdn.com/aero-v1/sc/h/8wykgzgbqy0t3fnkgborvz54u">
</icon>
<span class="top-nav-link__label-text font-sans text-xs leading-regular text-center
font-regular">
Learning
</span>
</a>
</li>
<li class>
<a href="https://www.linkedin.com/jobs?trk=public_profile_guest_nav_menu_jobs <view-source:https://www.linkedin.com/jobs?trk=public_profile_guest_nav_menu_jobs>" data-tracking-control-name="public_profile_guest_nav_menu_jobs" data-tracking-will-navigate class="top-nav-link flex justify-center items-center h-[52px] hover:text-color-text visited:hover:text-color-text hover:no-underline
w-[64px]
flex-col mx-1
text-color-text-secondary visited:text-color-text-secondary">
<icon class="top-nav-link__icon flex h-3 w-3 flex-shrink-0 " data-delayed-url="https://static.licdn.com/aero-v1/sc/h/92eb1xekc34eklevj0io6x4ki">
</icon>
<span class="top-nav-link__label-text font-sans text-xs leading-regular text-center
font-regular">
Jobs
</span>
</a>
</li>
</ul>
<div class="nav__cta-container order-3 flex gap-x-1 justify-end min-w-[100px] flex-nowrap flex-shrink-0 babybear:flex-wrap flex-2">
<a class="nav__button-tertiary btn-md btn-tertiary" href="https://www.linkedin.com/signup/public-profile-join?vieweeVanityName=garrytan&session_redirect=https%3A%2F%2Fwww.linkedin.com%2Fin%2Fgarrytan&trk=public_profile_nav-header-join <view-source:https://www.linkedin.com/signup/public-profile-join?vieweeVanityName=garrytan&session_redirect=https%3A%2F%2Fwww.linkedin.com%2Fin%2Fgarrytan&trk=public_profile_nav-header-join>" data-tracking-control-name="public_profile_nav-header-join" data-test-live-nav-primary-cta data-tracking-will-navigate>
Join now
</a>
<a class="nav__button-secondary btn-md btn-secondary-emphasis" href="https://www.linkedin.com/login?session_redirect=https%3A%2F%2Fwww%2Elinkedin%2Ecom%2Fin%2Fgarrytan&fromSignIn=true&trk=public_profile_nav-header-signin <view-source:https://www.linkedin.com/login?session_redirect=https%3A%2F%2Fwww%2Elinkedin%2Ecom%2Fin%2Fgarrytan&fromSignIn=true&trk=public_profile_nav-header-signin>" data-tracking-control-name="public_profile_nav-header-signin" data-tracking-will-navigate>
Sign in
</a>
<a aria-label="Sign in" class="nav__link-person papabear:hidden mamabear:hidden" data-tracking-control-name="public_profile_nav-header-signin" data-tracking-will-navigate href="https://www.linkedin.com/login?session_redirect=https%3A%2F%2Fwww%2Elinkedin%2Ecom%2Fin%2Fgarrytan&fromSignIn=true&trk=public_profile_nav-header-signin <view-source:https://www.linkedin.com/login?session_redirect=https%3A%2F%2Fwww%2Elinkedin%2Ecom%2Fin%2Fgarrytan&fromSignIn=true&trk=public_profile_nav-header-signin>">
<img class="inline-block relative
rounded-[50%]
w-4 h-4
bg-color-entity-ghost-background" data-delayed-url="https://static.licdn.com/aero-v1/sc/h/9c8pery4andzj6ohjkjp54ma2" data-ghost-classes="bg-color-entity-ghost-background" data-ghost-url="https://static.licdn.com/aero-v1/sc/h/9c8pery4andzj6ohjkjp54ma2" alt>
</a>
</div>
<!---->
<!----> </nav>
</header>
<!---->
<!---->
<main class="main papabear:flex papabear:w-content-max-w papabear:mx-auto papabear:pt-desktop-content-top-margin mamabear:pt-desktop-content-top-margin
" id="main-content" role="main">
<section class="core-rail mx-auto papabear:w-core-rail-width mamabear:max-w-[790px] babybear:max-w-[790px]">
<div class="details mx-details-container-padding">
<section class="profile">
<!---->
<section class="top-card-layout container-lined overflow-hidden babybear:rounded-[0px]">
<figure class="cover-img min-h-[87px] papbear:min-h-[100px] rounded-t-[2px] babybear:rounded-[0px] -z-1">
<!----> <div class="cover-img__image-frame relative w-full overflow-hidden pb-[calc((134/782)*100%)]">
<div class="cover-img__image-position absolute top-0 right-0 bottom-0 left-0
">
<img class="cover-img__image relative w-full h-full object-cover" src="https://media.licdn.com/dms/image/D5616AQEBWX1n2Xr6zw/profile-displaybackgroundimage-shrink_200_800/0/1672635311704?e=2147483647&v=beta&t=kxkubruRLiTUVcIRDD-5x5XUFZwaUBbTsbl9rhywyGM <view-source:https://media.licdn.com/dms/image/D5616AQEBWX1n2Xr6zw/profile-displaybackgroundimage-shrink_200_800/0/1672635311704?e=2147483647&v=beta&t=kxkubruRLiTUVcIRDD-5x5XUFZwaUBbTsbl9rhywyGM>" fetchpriority="auto" data-embed-id="cover-image" alt>
</div>
</div>
<!----> </figure>
<div class="top-card-layout__card relative p-2 papabear:p-details-container-padding">
<div class="top-card__profile-image-container top-card__profile-image-container--cvw-fix
top-card-layout__entity-image-container flex" data-section="picture">
<img class="artdeco-entity-image artdeco-entity-image--circle-8
top-card-layout__entity-image top-card__profile-image top-card__profile-image--real-image onload
top-card-layout__entity-image shadow-color-shadow shadow-[0_4px_12px] border-2 border-solid border-color-surface mt-[-70px] mb-[14px] papabear:border-4 papabear:mt-[-100px] papabear:mb-[18px]" data-delayed-url="https://media.licdn.com/dms/image/C5603AQGmWuPwdHUI1A/profile-displayphoto-shrink_800_800/0/1640110427593?e=2147483647&v=beta&t=X3ySkhW-HoPFbXQeITTpafk-wMGcjVACsjaHZY-Xtxg" data-ghost-classes="artdeco-entity-image--ghost" data-ghost-url="https://static.licdn.com/aero-v1/sc/h/1c5u578iilxfi4m4dvc4q810q" alt="Garry Tan">
<!----> </div>
<div class="top-card-layout__entity-info-container flex flex-wrap papabear:flex-nowrap">
<div class="top-card-layout__entity-info flex-grow flex-shrink-0 basis-0 babybear:flex-none babybear:w-full babybear:flex-none babybear:w-full">
<h1 class="top-card-layout__title font-sans text-lg papabear:text-xl font-bold leading-open text-color-text mb-0">
Garry Tan
<!----><!---->
</h1>
<h2 class="top-card-layout__headline break-words font-sans text-md leading-open text-color-text">
President & CEO, Y Combinator
</h2>
<h3 class="top-card-layout__first-subline font-sans text-md leading-open text-color-text-low-emphasis">
<div class="top-card__subline-item">San Francisco, California, United States</div>
<span class="top-card__subline-item">
149K followers
</span>
<span class="top-card__subline-item top-card__subline-item--bullet">
500+ connections
</span>
</h3>
<h4 class="top-card-layout__second-subline font-sans text-sm leading-open text-color-text-low-emphasis mt-0.5">
<!---->
<div class="mutual-connections mt-1">
<div class="face-pile flex">
<div class="face-pile__images-container self-start flex-shrink-0 mr-1 leading-[1]">
<img class="inline-block relative
rounded-[50%]
w-4 h-4
face-pile__image border-1 border-solid border-color-transparent -ml-2 first:ml-0" data-delayed-url="https://static.licdn.com/aero-v1/sc/h/bpy6equs0h2jckyn5qlrpgb0b" data-ghost-classes="bg-color-entity-ghost-background" data-ghost-url="https://static.licdn.com/aero-v1/sc/h/9c8pery4andzj6ohjkjp54ma2" alt>
<img class="inline-block relative
rounded-[50%]
w-4 h-4
face-pile__image border-1 border-solid border-color-transparent -ml-2 first:ml-0" data-delayed-url="https://static.licdn.com/aero-v1/sc/h/8u45fytkjgiwwp10k15l8fc84" data-ghost-classes="bg-color-entity-ghost-background" data-ghost-url="https://static.licdn.com/aero-v1/sc/h/9c8pery4andzj6ohjkjp54ma2" alt>
<img class="inline-block relative
rounded-[50%]
w-4 h-4
face-pile__image border-1 border-solid border-color-transparent -ml-2 first:ml-0" data-delayed-url="https://static.licdn.com/aero-v1/sc/h/tgg16g4l8khb9lwyit64p5rp" data-ghost-classes="bg-color-entity-ghost-background" data-ghost-url="https://static.licdn.com/aero-v1/sc/h/9c8pery4andzj6ohjkjp54ma2" alt>
</div>
<button data-tracking-control-name="public_profile_mutual-connections_modal-trigger" data-modal="public_profile_mutual-connections_contextual-sign-in-modal" class="font-semibold text-color-link cursor-pointer" aria-label="See your mutual connections with Garry">See your mutual connections</button>
</div>
<div class="contextual-sign-in-modal mutual-connections-modal" data-impression-id="public_profile_mutual-connections_contextual-sign-in-modal">
<!---->
<div class>
<!---->
<div id="public_profile_mutual-connections_contextual-sign-in-modal" class="modal modal--contextual-sign-in" data-outlet="public_profile_mutual-connections_contextual-sign-in-modal">
<!----> <div class="modal__overlay flex items-center bg-color-background-scrim justify-center fixed bottom-0 left-0 right-0 top-0 opacity-0 invisible pointer-events-none z-[1000] transition-[opacity] ease-[cubic-bezier(0.25,0.1,0.25,1.0)] duration-[0.17s]
py-4
">
<section aria-modal="true" role="dialog" aria-labelledby="public_profile_mutual-connections_contextual-sign-in-modal-modal-header" tabindex="-1" class="max-h-full modal__wrapper overflow-auto p-0 bg-color-surface max-w-[1128px] min-h-[160px] relative scale-[0.25] shadow-sm shadow-color-border-faint transition-[transform] ease-[cubic-bezier(0.25,0.1,0.25,1.0)] duration-[0.33s] focus:outline-0
w-[1128px] mamabear:w-[744px] babybear:w-[360px]
rounded-md">
<button class="modal__dismiss btn-tertiary h-[40px] w-[40px] p-0 rounded-full indent-0
contextual-sign-in-modal__modal-dismiss absolute right-0 m-[20px] cursor-pointer" aria-label="Dismiss" data-tracking-control-name="public_profile_mutual-connections_contextual-sign-in-modal_modal_dismiss">
<icon class="contextual-sign-in-modal__modal-dismiss-icon" data-delayed-url="https://static.licdn.com/aero-v1/sc/h/gs508lg3t2o81tq7pmcgn6m2"></icon>
</button>
<div class="modal__main w-full ">
<div class="contextual-sign-in-modal__screen contextual-sign-in-modal__context-screen flex flex-col my-4 mx-3">
<img class="inline-block relative
rounded-[50%]
w-16 h-16
contextual-sign-in-modal__img m-auto" data-delayed-url="https://media.licdn.com/dms/image/C5603AQGmWuPwdHUI1A/profile-displayphoto-shrink_800_800/0/1640110427593?e=2147483647&v=beta&t=X3ySkhW-HoPFbXQeITTpafk-wMGcjVACsjaHZY-Xtxg" data-ghost-classes="bg-color-entity-ghost-background" data-ghost-url="https://static.licdn.com/aero-v1/sc/h/9c8pery4andzj6ohjkjp54ma2" alt>
<h2 class="contextual-sign-in-modal__context-screen-title font-sans text-xl text-color-text my-2 mx-4 text-center" id="public_profile_mutual-connections_contextual-sign-in-modal-modal-header">
View mutual connections with Garry
</h2>
<!----><!----> <div class="contextual-sign-in-modal__btn-container m-auto w-[320px] babybear:w-full">
<!---->
<div class="sign-in-modal" data-impression-id="public_profile_mutual-connections_contextual-sign-in-modal_sign-in-modal">
<button class="sign-in-modal__outlet-btn cursor-pointer btn-md btn-primary" data-tracking-control-name="public_profile_mutual-connections_contextual-sign-in-modal_sign-in-modal_outlet-button" data-modal="public_profile_mutual-connections_sign-in-modal">
Sign in
</button>
<div class>
<!---->
<div id="public_profile_mutual-connections_sign-in-modal" class="modal modal--sign-in" data-outlet="public_profile_mutual-connections_sign-in-modal">
<!----> <div class="modal__overlay flex items-center bg-color-background-scrim justify-center fixed bottom-0 left-0 right-0 top-0 opacity-0 invisible pointer-events-none z-[1000] transition-[opacity] ease-[cubic-bezier(0.25,0.1,0.25,1.0)] duration-[0.17s]
py-4
">
<section aria-modal="true" role="dialog" aria-labelledby="public_profile_mutual-connections_sign-in-modal-modal-header" tabindex="-1" class="max-h-full modal__wrapper overflow-auto p-0 bg-color-surface max-w-[1128px] min-h-[160px] relative scale-[0.25] shadow-sm shadow-color-border-faint transition-[transform] ease-[cubic-bezier(0.25,0.1,0.25,1.0)] duration-[0.33s] focus:outline-0
w-[1128px] mamabear:w-[744px] babybear:w-[360px]
rounded-md">
<button class="modal__dismiss btn-tertiary h-[40px] w-[40px] p-0 rounded-full indent-0 sign-in-modal__dismiss absolute right-0 cursor-pointer m-[20px]" aria-label="Dismiss" data-tracking-control-name="public_profile_mutual-connections_contextual-sign-in-modal_sign-in-modal_dismiss">
<icon class="sign-in-modal__dismiss-icon" data-delayed-url="https://static.licdn.com/aero-v1/sc/h/gs508lg3t2o81tq7pmcgn6m2"></icon>
</button>
<div class="modal__main w-full ">
<div class="sign-in-modal__screen flex flex-col py-4 px-3 w-[513px] babybear:w-full">
<h2 class="sign-in-modal__header font-sans text-display-md text-color-text">
Welcome back
</h2>
<code id="i18n_sign_in_form_show_text" style="display: none"><!--"Show"--></code>
<code id="i18n_sign_in_form_show_label" style="display: none"><!--"Show your LinkedIn password"--></code>
<code id="i18n_sign_in_form_hide_text" style="display: none"><!--"Hide"--></code>
<code id="i18n_sign_in_form_hide_label" style="display: none"><!--"Hide your LinkedIn password"--></code>
<code id="i18n_username_error_empty" style="display: none"><!--"Please enter an email address or phone number"--></code>
<code id="i18n_username_error_too_long" style="display: none"><!--"Email or phone number must be between 3 to 128 characters"--></code>
<code id="i18n_username_error_too_short" style="display: none"><!--"Email or phone number must be between 3 to 128 characters"--></code>
<code id="i18n_password_error_empty" style="display: none"><!--"Please enter a password"--></code>
<code id="i18n_password_error_too_short" style="display: none"><!--"The password you provided must have at least 6 characters"--></code>
<code id="i18n_password_error_too_long" style="display: none"><!--"The password you provided must have at most 400 characters"--></code>
<form data-id="sign-in-form" action="https://www.linkedin.com/uas/login-submit <view-source:https://www.linkedin.com/uas/login-submit>" method="post" novalidate class="mt-1.5 mb-2">
<input name="loginCsrfParam" value="85b8e444-e6ee-40d5-8be1-543519fa6e3b" type="hidden">
<div class="flex flex-col">
<div class="mt-1.5" data-js-module-id="guest-input">
<div class="flex flex-col">
<label class="input-label mb-1" for="public_profile_mutual-connections_sign-in-modal_session_key">
Email or phone
</label>
<div class="text-input flex">
<input class="text-color-text font-sans text-md outline-0 bg-color-transparent grow" autocomplete="username" id="public_profile_mutual-connections_sign-in-modal_session_key" name="session_key" required type="text">
</div>
</div>
<p class="input-helper mt-1.5" for="public_profile_mutual-connections_sign-in-modal_session_key" role="alert" data-js-module-id="guest-input__message"></p>
</div>
<div class="mt-1.5" data-js-module-id="guest-input">
<div class="flex flex-col">
<label class="input-label mb-1" for="public_profile_mutual-connections_sign-in-modal_session_password">
Password
</label>
<div class="text-input flex">
<input class="text-color-text font-sans text-md outline-0 bg-color-transparent grow" autocomplete="current-password" id="public_profile_mutual-connections_sign-in-modal_session_password" name="session_password" required type="password">
<button aria-live="assertive" data-id="sign-in-form__password-visibility-toggle" class="font-sans text-md font-bold text-color-action z-10 ml-[12px] hover:cursor-pointer" aria-label="Show your LinkedIn password" data-tracking-control-name="public_profile_mutual-connections_contextual-sign-in-modal_sign-in-modal_sign-in-password-visibility-toggle-btn" type="button">Show</button>
</div>
</div>
<p class="input-helper mt-1.5" for="public_profile_mutual-connections_sign-in-modal_session_password" role="alert" data-js-module-id="guest-input__message"></p>
</div>
<input name="session_redirect" value="https://www.linkedin.com/in/garrytan" type="hidden">
<!----> </div>
<div data-id="sign-in-form__footer" class="flex justify-between
sign-in-form__footer--full-width">
<a data-id="sign-in-form__forgot-password" class="font-sans text-md font-bold link leading-regular
sign-in-form__forgot-password--full-width" href="https://www.linkedin.com/uas/request-password-reset?trk=public_profile_mutual-connections_contextual-sign-in-modal_sign-in-modal_forgot_password <view-source:https://www.linkedin.com/uas/request-password-reset?trk=public_profile_mutual-connections_contextual-sign-in-modal_sign-in-modal_forgot_password>" data-tracking-control-name="public_profile_mutual-connections_contextual-sign-in-modal_sign-in-modal_forgot_password" data-tracking-will-navigate>Forgot password?</a>
<!---->
<input name="trk" value="public_profile_mutual-connections_contextual-sign-in-modal_sign-in-modal_sign-in-submit" type="hidden">
<button class="btn-md btn-primary flex-shrink-0 cursor-pointer
sign-in-form__submit-btn--full-width" data-id="sign-in-form__submit-btn" data-tracking-control-name="public_profile_mutual-connections_contextual-sign-in-modal_sign-in-modal_sign-in-submit-btn" data-tracking-litms type="submit">
Sign in
</button>
</div>
<div class="sign-in-form__divider left-right-divider pt-2 pb-3">
<p class="sign-in-form__divider-text font-sans text-sm text-color-text px-2">
or
</p>
</div>
</form>
<div class="w-full max-w-[400px] mx-auto">
<div class="google-auth-button">
<!---->
<div class="google-auth-button__placeholder"></div>
</div>
</div>
<!---->
<p class="sign-in-modal__join-now m-auto font-sans text-md text-color-text
mt-2">
New to LinkedIn? <a href="https://www.linkedin.com/signup/public-profile-join?vieweeVanityName=garrytan&trk=public_profile_mutual-connections_contextual-sign-in-modal_sign-in-modal_join-link <view-source:https://www.linkedin.com/signup/public-profile-join?vieweeVanityName=garrytan&trk=public_profile_mutual-connections_contextual-sign-in-modal_sign-in-modal_join-link>" data-tracking-control-name="public_profile_mutual-connections_contextual-sign-in-modal_sign-in-modal_join-link" data-tracking-will-navigate="true" class="sign-in-modal__join-link">Join now</a>
</p>
</div>
</div>
<!----> </section>
</div>
</div>
</div>
</div>
<div class="contextual-sign-in-modal__divider left-right-divider">
<p class="contextual-sign-in-modal__divider-text font-sans text-sm text-color-text px-2">
or
</p>
</div>
<div class="w-full max-w-[400px] mx-auto">
<div class="google-auth-button">
<!---->
<div class="google-auth-button__placeholder"></div>
</div>
</div>
</div>
<p class="contextual-sign-in-modal__join-now m-auto font-sans text-md text-color-text">
New to LinkedIn? <a href="https://www.linkedin.com/signup/public-profile-join?vieweeVanityName=garrytan&trk=public_profile_mutual-connections_contextual-sign-in-modal_join-link <view-source:https://www.linkedin.com/signup/public-profile-join?vieweeVanityName=garrytan&trk=public_profile_mutual-connections_contextual-sign-in-modal_join-link>" data-tracking-control-name="public_profile_mutual-connections_contextual-sign-in-modal_join-link" data-tracking-will-navigate="true" class="contextual-sign-in-modal__join-link">Join now</a>
</p>
</div>
</div>
<!----> </section>
</div>
</div>
</div>
</div>
</div>
</h4>
<div class="top-card-layout__cta-container flex flex-wrap mt-0.5 papabear:mt-0 ml-[-12px]">
<div class="contextual-sign-in-modal top-card-layout__contextual-sign-in-modal flex babybear:flex-auto" data-impression-id="public_profile_top-card_contextual-sign-in-modal">
<button class="contextual-sign-in-modal__outlet-btn cursor-pointer btn-md btn-primary top-card-layout__cta mt-2 ml-1.5 h-auto babybear:flex-auto top-card-layout__cta--primary btn-md btn-primary !text-md" data-tracking-control-name="public_profile_top-card_contextual-sign-in-modal_outlet-button" data-modal="public_profile-top-card-layout__contextual-sign-in-modal">
Sign in to follow
</button>
<div class>
<!---->
<div id="public_profile-top-card-layout__contextual-sign-in-modal" class="modal modal--contextual-sign-in" data-outlet="public_profile-top-card-layout__contextual-sign-in-modal">
<!----> <div class="modal__overlay flex items-center bg-color-background-scrim justify-center fixed bottom-0 left-0 right-0 top-0 opacity-0 invisible pointer-events-none z-[1000] transition-[opacity] ease-[cubic-bezier(0.25,0.1,0.25,1.0)] duration-[0.17s]
py-4
">
<section aria-modal="true" role="dialog" aria-labelledby="public_profile-top-card-layout__contextual-sign-in-modal-modal-header" tabindex="-1" class="max-h-full modal__wrapper overflow-auto p-0 bg-color-surface max-w-[1128px] min-h-[160px] relative scale-[0.25] shadow-sm shadow-color-border-faint transition-[transform] ease-[cubic-bezier(0.25,0.1,0.25,1.0)] duration-[0.33s] focus:outline-0
w-[1128px] mamabear:w-[744px] babybear:w-[360px]
rounded-md">
<button class="modal__dismiss btn-tertiary h-[40px] w-[40px] p-0 rounded-full indent-0
contextual-sign-in-modal__modal-dismiss absolute right-0 m-[20px] cursor-pointer" aria-label="Dismiss" data-tracking-control-name="public_profile_top-card_contextual-sign-in-modal_modal_dismiss">
<icon class="contextual-sign-in-modal__modal-dismiss-icon" data-delayed-url="https://static.licdn.com/aero-v1/sc/h/gs508lg3t2o81tq7pmcgn6m2"></icon>
</button>
<div class="modal__main w-full ">
<div class="contextual-sign-in-modal__screen contextual-sign-in-modal__context-screen flex flex-col my-4 mx-3">
<img class="inline-block relative
rounded-[50%]
w-16 h-16
contextual-sign-in-modal__img m-auto" data-delayed-url="https://media.licdn.com/dms/image/C5603AQGmWuPwdHUI1A/profile-displayphoto-shrink_800_800/0/1640110427593?e=2147483647&v=beta&t=X3ySkhW-HoPFbXQeITTpafk-wMGcjVACsjaHZY-Xtxg" data-ghost-classes="bg-color-entity-ghost-background" data-ghost-url="https://static.licdn.com/aero-v1/sc/h/9c8pery4andzj6ohjkjp54ma2" alt>
<h2 class="contextual-sign-in-modal__context-screen-title font-sans text-xl text-color-text my-2 mx-4 text-center" id="public_profile-top-card-layout__contextual-sign-in-modal-modal-header">
Sign in to view Garry’s full profile
</h2>
<!----><!----> <div class="contextual-sign-in-modal__btn-container m-auto w-[320px] babybear:w-full">
<!---->
<div class="sign-in-modal" data-impression-id="public_profile_top-card_contextual-sign-in-modal_sign-in-modal">
<button class="sign-in-modal__outlet-btn cursor-pointer btn-md btn-primary" data-tracking-control-name="public_profile_top-card_contextual-sign-in-modal_sign-in-modal_outlet-button" data-modal="public_profile-top-card-layout__contextual-sign-in-modal_sign-in-modal">
Sign in
</button>
<div class>
<!---->
<div id="public_profile-top-card-layout__contextual-sign-in-modal_sign-in-modal" class="modal modal--sign-in" data-outlet="public_profile-top-card-layout__contextual-sign-in-modal_sign-in-modal">
<!----> <div class="modal__overlay flex items-center bg-color-background-scrim justify-center fixed bottom-0 left-0 right-0 top-0 opacity-0 invisible pointer-events-none z-[1000] transition-[opacity] ease-[cubic-bezier(0.25,0.1,0.25,1.0)] duration-[0.17s]
py-4
">
<section aria-modal="true" role="dialog" aria-labelledby="public_profile-top-card-layout__contextual-sign-in-modal_sign-in-modal-modal-header" tabindex="-1" class="max-h-full modal__wrapper overflow-auto p-0 bg-color-surface max-w-[1128px] min-h-[160px] relative scale-[0.25] shadow-sm shadow-color-border-faint transition-[transform] ease-[cubic-bezier(0.25,0.1,0.25,1.0)] duration-[0.33s] focus:outline-0
w-[1128px] mamabear:w-[744px] babybear:w-[360px]
rounded-md">
<button class="modal__dismiss btn-tertiary h-[40px] w-[40px] p-0 rounded-full indent-0 sign-in-modal__dismiss absolute right-0 cursor-pointer m-[20px]" aria-label="Dismiss" data-tracking-control-name="public_profile_top-card_contextual-sign-in-modal_sign-in-modal_dismiss">
<icon class="sign-in-modal__dismiss-icon" data-delayed-url="https://static.licdn.com/aero-v1/sc/h/gs508lg3t2o81tq7pmcgn6m2"></icon>
</button>
<div class="modal__main w-full ">
<div class="sign-in-modal__screen flex flex-col py-4 px-3 w-[513px] babybear:w-full">
<h2 class="sign-in-modal__header font-sans text-display-md text-color-text">
Welcome back
</h2>
<code id="i18n_sign_in_form_show_text" style="display: none"><!--"Show"--></code>
<code id="i18n_sign_in_form_show_label" style="display: none"><!--"Show your LinkedIn password"--></code>
<code id="i18n_sign_in_form_hide_text" style="display: none"><!--"Hide"--></code>
<code id="i18n_sign_in_form_hide_label" style="display: none"><!--"Hide your LinkedIn password"--></code>
<code id="i18n_username_error_empty" style="display: none"><!--"Please enter an email address or phone number"--></code>
<code id="i18n_username_error_too_long" style="display: none"><!--"Email or phone number must be between 3 to 128 characters"--></code>
<code id="i18n_username_error_too_short" style="display: none"><!--"Email or phone number must be between 3 to 128 characters"--></code>
<code id="i18n_password_error_empty" style="display: none"><!--"Please enter a password"--></code>
<code id="i18n_password_error_too_short" style="display: none"><!--"The password you provided must have at least 6 characters"--></code>
<code id="i18n_password_error_too_long" style="display: none"><!--"The password you provided must have at most 400 characters"--></code>
<form data-id="sign-in-form" action="https://www.linkedin.com/uas/login-submit <view-source:https://www.linkedin.com/uas/login-submit>" method="post" novalidate class="mt-1.5 mb-2">
<input name="loginCsrfParam" value="85b8e444-e6ee-40d5-8be1-543519fa6e3b" type="hidden">
<div class="flex flex-col">
<div class="mt-1.5" data-js-module-id="guest-input">
<div class="flex flex-col">
<label class="input-label mb-1" for="public_profile-top-card-layout__contextual-sign-in-modal_sign-in-modal_session_key">
Email or phone
</label>
<div class="text-input flex">
<input class="text-color-text font-sans text-md outline-0 bg-color-transparent grow" autocomplete="username" id="public_profile-top-card-layout__contextual-sign-in-modal_sign-in-modal_session_key" name="session_key" required type="text">
</div>
</div>
<p class="input-helper mt-1.5" for="public_profile-top-card-layout__contextual-sign-in-modal_sign-in-modal_session_key" role="alert" data-js-module-id="guest-input__message"></p>
</div>
<div class="mt-1.5" data-js-module-id="guest-input">
<div class="flex flex-col">
<label class="input-label mb-1" for="public_profile-top-card-layout__contextual-sign-in-modal_sign-in-modal_session_password">
Password
</label>
<div class="text-input flex">
<input class="text-color-text font-sans text-md outline-0 bg-color-transparent grow" autocomplete="current-password" id="public_profile-top-card-layout__contextual-sign-in-modal_sign-in-modal_session_password" name="session_password" required type="password">
<button aria-live="assertive" data-id="sign-in-form__password-visibility-toggle" class="font-sans text-md font-bold text-color-action z-10 ml-[12px] hover:cursor-pointer" aria-label="Show your LinkedIn password" data-tracking-control-name="public_profile_top-card_contextual-sign-in-modal_sign-in-modal_sign-in-password-visibility-toggle-btn" type="button">Show</button>
</div>
</div>
<p class="input-helper mt-1.5" for="public_profile-top-card-layout__contextual-sign-in-modal_sign-in-modal_session_password" role="alert" data-js-module-id="guest-input__message"></p>
</div>
<input name="session_redirect" value="https://www.linkedin.com/in/garrytan" type="hidden">
<!----> </div>
<div data-id="sign-in-form__footer" class="flex justify-between
sign-in-form__footer--full-width">
<a data-id="sign-in-form__forgot-password" class="font-sans text-md font-bold link leading-regular
sign-in-form__forgot-password--full-width" href="https://www.linkedin.com/uas/request-password-reset?trk=public_profile_top-card_contextual-sign-in-modal_sign-in-modal_forgot_password <view-source:https://www.linkedin.com/uas/request-password-reset?trk=public_profile_top-card_contextual-sign-in-modal_sign-in-modal_forgot_password>" data-tracking-control-name="public_profile_top-card_contextual-sign-in-modal_sign-in-modal_forgot_password" data-tracking-will-navigate>Forgot password?</a>
<!---->
<input name="trk" value="public_profile_top-card_contextual-sign-in-modal_sign-in-modal_sign-in-submit" type="hidden">
<button class="btn-md btn-primary flex-shrink-0 cursor-pointer
sign-in-form__submit-btn--full-width" data-id="sign-in-form__submit-btn" data-tracking-control-name="public_profile_top-card_contextual-sign-in-modal_sign-in-modal_sign-in-submit-btn" data-tracking-litms type="submit">
Sign in
</button>
</div>
<div class="sign-in-form__divider left-right-divider pt-2 pb-3">
<p class="sign-in-form__divider-text font-sans text-sm text-color-text px-2">
or
</p>
</div>
</form>
<div class="w-full max-w-[400px] mx-auto">
<div class="google-auth-button">
<!---->
<div class="google-auth-button__placeholder"></div>
</div>
</div>
<!---->
<p class="sign-in-modal__join-now m-auto font-sans text-md text-color-text
mt-2">
New to LinkedIn? <a href="https://www.linkedin.com/signup/public-profile-join?vieweeVanityName=garrytan&trk=public_profile_top-card_contextual-sign-in-modal_sign-in-modal_join-link <view-source:https://www.linkedin.com/signup/public-profile-join?vieweeVanityName=garrytan&trk=public_profile_top-card_contextual-sign-in-modal_sign-in-modal_join-link>" data-tracking-control-name="public_profile_top-card_contextual-sign-in-modal_sign-in-modal_join-link" data-tracking-will-navigate="true" class="sign-in-modal__join-link">Join now</a>
</p>
</div>
</div>
<!----> </section>
</div>
</div>
</div>
</div>
<div class="contextual-sign-in-modal__divider left-right-divider">
<p class="contextual-sign-in-modal__divider-text font-sans text-sm text-color-text px-2">
or
</p>
</div>
<div class="w-full max-w-[400px] mx-auto">
<div class="google-auth-button">
<!---->
<div class="google-auth-button__placeholder"></div>
</div>
</div>
</div>
<p class="contextual-sign-in-modal__join-now m-auto font-sans text-md text-color-text">
New to LinkedIn? <a href="https://www.linkedin.com/signup/public-profile-join?vieweeVanityName=garrytan&trk=public_profile_top-card_contextual-sign-in-modal_join-link <view-source:https://www.linkedin.com/signup/public-profile-join?vieweeVanityName=garrytan&trk=public_profile_top-card_contextual-sign-in-modal_join-link>" data-tracking-control-name="public_profile_top-card_contextual-sign-in-modal_join-link" data-tracking-will-navigate="true" class="contextual-sign-in-modal__join-link">Join now</a>
</p>
</div>
</div>
<!----> </section>
</div>
</div>
</div>
</div>
<!----> </div>
</div>
<div class="top-card-layout__entity-info flex-grow flex-shrink-0 basis-0 babybear:flex-none babybear:w-full
top-card-layout__entity-info--right-column ml-details-container-padding max-w-[288px] babybear:my-2 babybear:ml-0">
<div class="top-card__links-container">
<div data-section="currentPositionsDetails" class="top-card__right-column-link top-card__position-info with-transition">
<a class="top-card-link top-card-link--link" href="https://www.linkedin.com/company/y-combinator?trk=public_profile_topcard-current-company <view-source:https://www.linkedin.com/company/y-combinator?trk=public_profile_topcard-current-company>" target="_self" data-tracking-control-name="public_profile_topcard-current-company" data-tracking-will-navigate>
<img class="artdeco-entity-image artdeco-entity-image--square-1
top-card-link__logo" data-delayed-url="https://media.licdn.com/dms/image/C4D0BAQGPzdBPNxrmEg/company-logo_100_100/0/1673555092951/y_combinator_logo?e=2147483647&v=beta&t=8eQMUXhW-ZyvkR_YXcXr7ro2NDNF_zGIO2p5qorT_tQ" data-ghost-classes="artdeco-entity-image--ghost" data-ghost-url="https://static.licdn.com/aero-v1/sc/h/aajlclc14rr2scznz5qm2rj9u" alt="Y Combinator">
<span class="top-card-link__description">
Y Combinator
<!----> </span>
</a>
</div>
<!----> <div data-section="educationsDetails" class="top-card__right-column-link top-card__education-info with-transition">
<a class="top-card-link top-card-link--link" href="https://www.linkedin.com/school/stanford-university/?trk=public_profile_topcard-school <view-source:https://www.linkedin.com/school/stanford-university/?trk=public_profile_topcard-school>" target="_self" data-tracking-control-name="public_profile_topcard-school" data-tracking-will-navigate>
<img class="artdeco-entity-image artdeco-entity-image--square-1
top-card-link__logo" data-delayed-url="https://media.licdn.com/dms/image/C560BAQHr9suxyJBXMw/company-logo_100_100/0/1635534378870/stanford_university_logo?e=2147483647&v=beta&t=hYsnwoqDoJ3pKWPshXj2VfcCCOaoOpvlZEagbAmYZxM" data-ghost-classes="artdeco-entity-image--ghost" data-ghost-url="https://static.licdn.com/aero-v1/sc/h/8zzzkhxduv0r11cuxbs48pg03" alt="Stanford University">
<span class="top-card-link__description">
Stanford University
<!----> </span>
</a>
</div>
<div data-section="websites" class="top-card__right-column-link top-card__websites with-transition">
<a class="top-card-link top-card-link--link websites" href="https://www.linkedin.com/redir/redirect?url=http%3A%2F%2Fblog%2Egarrytan%2Ecom&urlhash=euv_&trk=public_profile_topcard-website <view-source:https://www.linkedin.com/redir/redirect?url=http%3A%2F%2Fblog%2Egarrytan%2Ecom&urlhash=euv_&trk=public_profile_topcard-website>" target="_blank" data-tracking-control-name="public_profile_topcard-website" data-tracking-will-navigate>
<img data-delayed-url="https://static.licdn.com/aero-v1/sc/h/9o8qqup6da04vhqijz8ft1j5g" class="top-card-link__logo top-card-link__logo--link-icon artdeco-entity-image artdeco-entity-image--square-1" alt="Blog" aria-hidden="true">
<span class="top-card-link__description">
Blog
<img data-delayed-url="https://static.licdn.com/aero-v1/sc/h/8w0vew433o9nluoruq9k5eqy" class="websites__link-external-icon" alt="External link" aria-hidden="true">
</span>
</a>
</div>
</div>
</div>
</div>
<div class="ellipsis-menu absolute right-0 top-0 top-card-layout__ellipsis-menu mr-1 papabear:mt-0.5 papabear:mr-2">
<div class="collapsible-dropdown flex items-center relative hyphens-auto">
<button class="ellipsis-menu__trigger
collapsible-dropdown__button btn-md btn-tertiary cursor-pointer
!py-[6px] !px-1 flex items-center rounded-[50%]
" aria-expanded="false" aria-label="Open menu" data-tracking-control-name="public_profile_ellipsis-menu-trigger">
<icon class="ellipsis-menu__trigger-icon m-0 p-0 centered-icon" data-delayed-url="https://static.licdn.com/aero-v1/sc/h/671xosfpvk4c0kqtyl87hashi"></icon>
</button>
<ul class="collapsible-dropdown__list hidden container-raised absolute w-auto overflow-y-auto flex-col items-stretch z-1 bottom-auto top-[100%]" role="menu" tabindex="-1">
<li class="ellipsis-menu__item border-t-1 border-solid border-color-border-low-emphasis first-of-type:border-none flex">
<a href="/uas/login?fromSignIn=true&session_redirect=https%3A%2F%2Fwww.linkedin.com%2Fin%2Fgarrytan&trk=public_profile_ellipsis-menu-semaphore-sign-in-redirect&guestReportContentType=PROFILE&_f=guest-reporting <view-source:https://www.linkedin.com/uas/login?fromSignIn=true&session_redirect=https%3A%2F%2Fwww.linkedin.com%2Fin%2Fgarrytan&trk=public_profile_ellipsis-menu-semaphore-sign-in-redirect&guestReportContentType=PROFILE&_f=guest-reporting>" data-tracking-control-name="public_profile_ellipsis-menu-semaphore-sign-in-redirect" data-tracking-will-navigate data-item-type="semaphore" data-semaphore-content-type="PROFILE" data-semaphore-content-urn="urn:li:nonIterableMember:ADoAAAAjZw4BZNfvh0HAA4K-ZNWYXZ15W4704ds" data-semaphore-tracking-prefix="public_profile_ellipsis-menu-semaphore" data-is-logged-in="false" data-modal="semaphore__toggle" class="semaphore__toggle visited:text-color-text-secondary ellipsis-menu__semaphore ellipsis-menu__item-button flex items-center w-full p-1 cursor-pointer font-sans text-sm font-bold link-styled focus:link-styled link:no-underline active:bg-color-background-container-tint focus:bg-color-background-container-tint hover:bg-color-background-container-tint outline-offset-[-2px]">
<!---->
<icon class="ellipsis-menu__item-icon text-color-text h-[24px] w-[24px] mr-1" data-delayed-url="https://static.licdn.com/aero-v1/sc/h/iq0x9q37wj214o129ai1yjut">