forked from asutoshb/Frontend-Masters
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1241 lines (1018 loc) · 91 KB
/
index.html
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 charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>Frontend-Masters</title>
<link rel="stylesheet" href="public/css/home.css">
</style>
</head>
<body>
<div id="layout-before"></div>
<div class="outer-flex">
<div class="inner-flex">
<header class="header">
<div class="inner">
<div class="wraps">
<div class="logos"><a class="s-tr" href="home.html">FrontendMasters</a></div><label
class="NavMobileHamburger" for="open-nav-main">Menu</label>
<nav class="Nav NavMobile NavMain"><input class="toggle-target" id="open-nav-main"
type="checkbox">
<ul>
<li class="items"><a href="#">Courses</a></li>
<li class="items"><a href="#">Learn</a></li>
<li class="items"><a href="#">Pricing</a></li>
<li class="items"><a onclick="login()" id="login">Login</a></li>
<li class="items"><a onclick="fun()" class="Button ButtonRed">Join Now</a></li>
</ul>
</nav>
</div>
</div><svg class="polygon" viewbox="0 0 100 10" preserveaspectratio="none">
<defs>
<linearGradient id="linear" x1="0%" y1="0%" x2="100%" y2="0%">
<stop offset="0%" stop-color="#c02d28"></stop>
<stop offset="100%" stop-color="#e66225"></stop>
</linearGradient>
</defs>
<polygon points="0,2 0,0 100,0 100,10" fill="url(#linear)"></polygon>
</svg>
</header>
<div id="after-header"></div>
<main id="main-content" role="main">
<div class="livestream-cta"></div>
<section class="HomeHero">
<div class="content">
<div class="wraps s-vp-xl">
<h1><strong>Advance Your Skills</strong> <span>with In-Depth, Modern</span> <span>Front-End
Engineering Courses</span></h1><a class="Button ButtonLarge ButtonRed">Browse Our
Courses</a> <a class="Button ButtonLarge Buttoncolor" href="/learn/">View Learning
Paths</a>
</div>
</div><video class="background" playsinline="" autoplay="" muted="" loop="">
<source src="https://static.frontendmasters.com/assets/fm/med/home/hero.mp4" type="video/mp4">
</video>
</section>
<section class="HomeLogos s-vp-lg"><svg style="height: 60px" class="polygon"
xmlns="http://www.w3.org/2000/svg" viewbox="0 0 100 10" preserveaspectratio="none">
<polygon points="0,8 0,10 100,10 100,3"></polygon>
</svg>
<div class="wraps"><a class="javascript s-tr">JavaScript</a> <a href="/learn/node-js/"
class="nodejs s-tr">Node.js</a> <a href="/learn/react/" class="react s-tr">React</a> <a
href="/learn/vue/" class="vuejs s-tr">Vue.js</a> <a href="/learn/angular/"
class="angular s-tr">Angular</a> <a href="/learn/css/" class="css3 s-tr">CSS3</a> <a
href="/learn/d3-js/" class="d3js s-tr">D3.js</a> <a href="/learn/webpack/"
class="webpack s-tr">Webpack</a></div>
</section>
<!--USER REVIEW FROM TWITTER HANDLES START-->
<section class="HomeTweets s-vp-lg">
<div class="wraps">
<h2>What They're Saying About Us (<a href="#" target="_blank"
rel="noopener">@FrontendMasters</a>)</h2>
<div class="slider js_slider"><span class="js_prev prev"><svg xmlns="http://www.w3.org/2000/svg"
width="50" height="50" viewbox="0 0 501.5 501.5">
<g>
<path
d="M302.67 90.877l55.77 55.508L254.575 250.75 358.44 355.116l-55.77 55.506L143.56 250.75z">
</path>
</g>
</svg> </span>
<span class="js_next next"><svg xmlns="http://www.w3.org/2000/svg" width="50" height="50"
viewbox="0 0 501.5 501.5">
<g>
<path
d="M199.33 410.622l-55.77-55.508L247.425 250.75 143.56 146.384l55.77-55.507L358.44 250.75z">
</path>
</g>
</svg></span>
<div class="frame js_frame">
<ul class="slides js_slides">
<li class="slide js_slides">
<div class="tweet"><a class="tweet-top" rel="nofollow noopener" target="_blank"
href="#"><img class="lazyload tweet-image"
src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="
data-src="https://pbs.twimg.com/profile_images/1111257701835788290/7U7PLuAK_reasonably_small.jpg"
alt="Profile image for @KevinJPowell">
<div class="tweet-top-text">
<div class="tweet-name">Kevin Powell</div>
<div class="tweet-handle">@KevinJPowell</div>
</div>
</a>
<div class="tweet-body"><a href="#" target="_blank"
rel="nofollow noopener">@AlveeAkand</a> <a href="#" target="_blank"
rel="nofollow noopener">@elyktrix</a> <a href="#" target="_blank"
rel="nofollow noopener">@FrontendMasters</a> Yes! <a href=""
target="_blank" rel="nofollow noopener">@FrontendMasters</a> is
amazing. Super talented educators
and quality content.</div>
<div class="tweet-bottom"><a class="tweet-timestamp"
rel="nofollow noreferrer" target="_blank"
href="https://twitter.com/KevinJPowell/status/1315423148343529472">10:44pm
· Oct 11, 2020</a></div>
</div>
<div class="tweet"><a class="tweet-top" rel="nofollow noopener" target="_blank"
href="https://twitter.com/hashtagdad817/status/1315320682276958209"><img
class="lazyload tweet-image"
src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="
data-src="https://pbs.twimg.com/profile_images/1236097570637844486/YNWHjUtv_reasonably_small.jpg"
alt="Profile image for @hashtagdad817">
<div class="tweet-top-text">
<div class="tweet-name">AJ Thompson</div>
<div class="tweet-handle">@hashtagdad817</div>
</div>
</a>
<div class="tweet-body"><a href="https://twitter.com/acandael"
target="_blank" rel="nofollow noopener">@acandael</a> <a
href="https://twitter.com/scotups" target="_blank"
rel="nofollow noopener">@scotups</a> <a
href="https://twitter.com/FrontendMasters" target="_blank"
rel="nofollow noopener">@FrontendMasters</a> <a
href="https://twitter.com/FrontendMasters" target="_blank"
rel="nofollow noopener">@FrontendMasters</a> always delivers great
courses. I’ve taken all of
<a href="https://twitter.com/scotups" target="_blank"
rel="nofollow noopener">@scotups</a>. He teaches in a way that feels
like a conversation amongst friends.
</div>
<div class="tweet-bottom"><a class="tweet-timestamp"
rel="nofollow noreferrer" target="_blank"
href="https://twitter.com/hashtagdad817/status/1315320682276958209">3:57pm
· Oct 11, 2020</a></div>
</div>
<div class="tweet"><a class="tweet-top" rel="nofollow noopener" target="_blank"
href="https://twitter.com/Dave_Coding/status/1313215832999292930"><img
class="lazyload tweet-image"
src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="
data-src="https://pbs.twimg.com/profile_images/1057964722585305088/jZJUDPhj_reasonably_small.jpg"
alt="Profile image for @Dave_Coding">
<div class="tweet-top-text">
<div class="tweet-name">Dave Halewood</div>
<div class="tweet-handle">@Dave_Coding</div>
</div>
</a>
<div class="tweet-body"><a href="https://twitter.com/kieranmv95"
target="_blank" rel="nofollow noopener">@kieranmv95</a> <a
href="https://twitter.com/FrontendMasters" target="_blank"
rel="nofollow noopener">@FrontendMasters</a> Yes definitely, I’ve
had
membership for a couple of years, really good content given by top
instructors.</div>
<div class="tweet-bottom"><a class="tweet-timestamp"
rel="nofollow noreferrer" target="_blank"
href="https://twitter.com/Dave_Coding/status/1313215832999292930">8:33pm
· Oct 5, 2020</a></div>
</div>
<div class="tweet"><a class="tweet-top" rel="nofollow noopener" target="_blank"
href="https://twitter.com/andrewtpoe/status/1318927619107192835"><img
class="lazyload tweet-image"
src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="
data-src="https://pbs.twimg.com/profile_images/599651293423128578/-7h5hALt_reasonably_small.png"
alt="Profile image for @andrewtpoe">
<div class="tweet-top-text">
<div class="tweet-name">Andrew Poe</div>
<div class="tweet-handle">@andrewtpoe</div>
</div>
</a>
<div class="tweet-body"><a href="https://twitter.com/FrontendMasters"
target="_blank" rel="nofollow noopener">@FrontendMasters</a> is
dollar for dollar the best money I've spent on continued education as a
developer. So much A+ content.</div>
<div class="tweet-bottom"><a class="tweet-timestamp"
rel="nofollow noreferrer" target="_blank"
href="https://twitter.com/andrewtpoe/status/1318927619107192835">2:50pm
· Oct 21, 2020</a></div>
</div>
<div class="tweet"><a class="tweet-top" rel="nofollow noopener" target="_blank"
href="https://twitter.com/purpledoll001/status/1301275791897120770"><img
class="lazyload tweet-image"
src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="
data-src="https://pbs.twimg.com/profile_images/1216765400534409216/iKnNkFof_reasonably_small.jpg"
alt="Profile image for @purpledoll001">
<div class="tweet-top-text">
<div class="tweet-name">PurpleDoll</div>
<div class="tweet-handle">@purpledoll001</div>
</div>
</a>
<div class="tweet-body">What an incredible XSTATE course you have on <a
href="https://twitter.com/FrontendMasters" target="_blank"
rel="nofollow noopener">@FrontendMasters</a> <a
href="https://twitter.com/DavidKPiano" target="_blank"
rel="nofollow noopener">@DavidKPiano</a>.
Amazing tool and amazing way to reach our brains :D</div>
<div class="tweet-bottom"><a class="tweet-timestamp"
rel="nofollow noreferrer" target="_blank"
href="https://twitter.com/purpledoll001/status/1301275791897120770">9:48pm
· Sep 2, 2020</a></div>
</div>
<div class="tweet"><a class="tweet-top" rel="nofollow noopener" target="_blank"
href="https://twitter.com/sarah_edo/status/1311729376669519872"><img
class="lazyload tweet-image"
src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="
data-src="https://pbs.twimg.com/profile_images/1281071936605323266/wc1KRZLK_reasonably_small.jpg"
alt="Profile image for @sarah_edo">
<div class="tweet-top-text">
<div class="tweet-name">Sarah Drasner</div>
<div class="tweet-handle">@sarah_edo</div>
</div>
</a>
<div class="tweet-body">I've really been enjoying <a
href="https://twitter.com/scotups" target="_blank"
rel="nofollow noopener">@scotups</a> courses, he's got everything
from Next.js to GraphQL, to API design. He's a great instructor, does an
amazing job walking through
things and speaking to community and preferences too, hard to do! <a
href="https://t.co/KaJnQw3HFo" target="_blank"
rel="nofollow noopener">https://t.co/KaJnQw3HFo</a></div>
<div class="tweet-bottom"><a class="tweet-timestamp"
rel="nofollow noreferrer" target="_blank"
href="https://twitter.com/sarah_edo/status/1311729376669519872">6:07pm
· Oct 1, 2020</a></div>
</div>
</li>
<li class="slide js_slide">
<div class="tweet"><a class="tweet-top" rel="nofollow noopener" target="_blank"
href="https://twitter.com/gusanchedev/status/1299766626951274496"><img
class="lazyload tweet-image"
src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="
data-src="https://pbs.twimg.com/profile_images/1260995399088824328/Z8L5nVjn_reasonably_small.jpg"
alt="Profile image for @gusanchedev">
<div class="tweet-top-text">
<div class="tweet-name">Gustavo Sanchez</div>
<div class="tweet-handle">@gusanchedev</div>
</div>
</a>
<div class="tweet-body">I just completed "JavaScript: The Hard Parts, v2" by
<a href="https://twitter.com/willsentance" target="_blank"
rel="nofollow noopener">@willsentance</a> on <a
href="https://twitter.com/FrontendMasters" target="_blank"
rel="nofollow noopener">@FrontendMasters</a>!
<a href="https://t.co/fB36c8Ohiv" target="_blank"
rel="nofollow noopener">https://t.co/fB36c8Ohiv</a> No better
resource for full understanding Closures, asynchronous JS and classes
and prototypes. Thanks <a href="https://twitter.com/willsentance"
target="_blank" rel="nofollow noopener">@willsentance</a>
</div>
<div class="tweet-bottom"><a class="tweet-timestamp"
rel="nofollow noreferrer" target="_blank"
href="https://twitter.com/gusanchedev/status/1299766626951274496">5:51pm
· Aug 29, 2020</a></div>
</div>
<div class="tweet"><a class="tweet-top" rel="nofollow noopener" target="_blank"
href="https://twitter.com/BergFulton/status/1299040002899406848"><img
class="lazyload tweet-image"
src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="
data-src="https://pbs.twimg.com/profile_images/1395830541409206277/DNlCTovQ_reasonably_small.jpg"
alt="Profile image for @BergFulton">
<div class="tweet-top-text">
<div class="tweet-name">Tracey “Spike Proteins” Berg-Fulton</div>
<div class="tweet-handle">@BergFulton</div>
</div>
</a>
<div class="tweet-body">OMG <a href="https://twitter.com/sarah_edo"
target="_blank" rel="nofollow noopener">@sarah_edo</a> 's Intro to
Vue course on <a href="https://twitter.com/FrontendMasters"
target="_blank" rel="nofollow noopener">@FrontendMasters</a> is *so
good*. I've made a few attempts to learn but this is the first time the
lightbulb has fully come on. <a href="https://t.co/Nwp7QzbyqW"
target="_blank" rel="nofollow noopener">https://t.co/Nwp7QzbyqW</a>
</div>
<div class="tweet-bottom"><a class="tweet-timestamp"
rel="nofollow noreferrer" target="_blank"
href="https://twitter.com/BergFulton/status/1299040002899406848">5:44pm
· Aug 27, 2020</a></div>
</div>
<div class="tweet"><a class="tweet-top" rel="nofollow noopener" target="_blank"
href="https://twitter.com/jsilvax/status/1299178179064549376"><img
class="lazyload tweet-image"
src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="
data-src="https://pbs.twimg.com/profile_images/1348388087127101440/BRmGhQMk_reasonably_small.jpg"
alt="Profile image for @jsilvax">
<div class="tweet-top-text">
<div class="tweet-name">J.</div>
<div class="tweet-handle">@jsilvax</div>
</div>
</a>
<div class="tweet-body">I’ve been using <a
href="https://twitter.com/FrontendMasters" target="_blank"
rel="nofollow noopener">@FrontendMasters</a> for years now. It’s
crazy seeing it grow over the years and how there’s just so much great
content to learn from. I
feel like every company should have a subscription for their devs on
there. The best bang for your buck.</div>
<div class="tweet-bottom"><a class="tweet-timestamp"
rel="nofollow noreferrer" target="_blank"
href="https://twitter.com/jsilvax/status/1299178179064549376">2:53am
· Aug 28, 2020</a></div>
</div>
<div class="tweet"><a class="tweet-top" rel="nofollow noopener" target="_blank"
href="https://twitter.com/meganesulli/status/1298398676524531713"><img
class="lazyload tweet-image"
src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="
data-src="https://pbs.twimg.com/profile_images/1298757926790680576/bI2v6ehX_reasonably_small.jpg"
alt="Profile image for @meganesulli">
<div class="tweet-top-text">
<div class="tweet-name">Megan Sullivan</div>
<div class="tweet-handle">@meganesulli</div>
</div>
</a>
<div class="tweet-body">Just finished "Accessibility in JavaScript
Applications" by <a href="https://twitter.com/marcysutton"
target="_blank" rel="nofollow noopener">@marcysutton</a> on <a
href="https://twitter.com/FrontendMasters" target="_blank"
rel="nofollow noopener">@FrontendMasters</a> 🎉 10/10, would
recommend! Good pace, great explanations, lots of code examples. Now I'm
excited to make some #a11y improvements to my own projects! 🧠⚙️ <a
href="https://t.co/gvliKoyehW" target="_blank"
rel="nofollow noopener">https://t.co/gvliKoyehW</a></div>
<div class="tweet-bottom"><a class="tweet-timestamp"
rel="nofollow noreferrer" target="_blank"
href="https://twitter.com/meganesulli/status/1298398676524531713">11:15pm
· Aug 25, 2020</a></div>
</div>
<div class="tweet"><a class="tweet-top" rel="nofollow noopener" target="_blank"
href="https://twitter.com/AnthonyHexium/status/1296516367601078272"><img
class="lazyload tweet-image"
src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="
data-src="https://pbs.twimg.com/profile_images/1388480669903466496/qBizVmo3_reasonably_small.jpg"
alt="Profile image for @AnthonyHexium">
<div class="tweet-top-text">
<div class="tweet-name">Anthony R. 🇫🇷🚀💻</div>
<div class="tweet-handle">@AnthonyHexium</div>
</div>
</a>
<div class="tweet-body"><a href="https://twitter.com/catalinmpit"
target="_blank" rel="nofollow noopener">@catalinmpit</a> <a
href="https://twitter.com/FrontendMasters" target="_blank"
rel="nofollow noopener">@FrontendMasters</a> This is the best
investment I
made in my career. I mean, by faaaaaaaar.</div>
<div class="tweet-bottom"><a class="tweet-timestamp"
rel="nofollow noreferrer" target="_blank"
href="https://twitter.com/AnthonyHexium/status/1296516367601078272">6:36pm
· Aug 20, 2020</a></div>
</div>
<div class="tweet"><a class="tweet-top" rel="nofollow noopener" target="_blank"
href="https://twitter.com/JeremyStuBarnes/status/1295050766747500545"><img
class="lazyload tweet-image"
src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="
data-src="https://pbs.twimg.com/profile_images/1204835226016346112/aXwPlrg4_reasonably_small.jpg"
alt="Profile image for @JeremyStuBarnes">
<div class="tweet-top-text">
<div class="tweet-name">Jeremy Stuart Barnes</div>
<div class="tweet-handle">@JeremyStuBarnes</div>
</div>
</a>
<div class="tweet-body">I'm finishing up <a
href="https://twitter.com/FrontendMasters" target="_blank"
rel="nofollow noopener">@FrontendMasters</a> course "Full Stack for
Front-End Engineers, v2" and it is one of the most enlightening courses
I've taken on how
the web works and learning about all of the intimidating ideas around
servers, packets, proxies, etc. Highly recommend!</div>
<div class="tweet-bottom"><a class="tweet-timestamp"
rel="nofollow noreferrer" target="_blank"
href="https://twitter.com/JeremyStuBarnes/status/1295050766747500545">5:32pm
· Aug 16, 2020</a></div>
</div>
</li>
<li class="slide js_slide">
<div class="tweet"><a class="tweet-top" rel="nofollow noopener" target="_blank"
href="https://twitter.com/marcomonsanto2/status/1289559118043258880"><img
class="lazyload tweet-image"
src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="
data-src="https://pbs.twimg.com/profile_images/1292197630915862529/sf_p2Z8v_reasonably_small.jpg"
alt="Profile image for @marcomonsanto2">
<div class="tweet-top-text">
<div class="tweet-name">Marco Monsanto</div>
<div class="tweet-handle">@marcomonsanto2</div>
</div>
</a>
<div class="tweet-body">Shout-out to <a href="https://twitter.com/JemYoung"
target="_blank" rel="nofollow noopener">@JemYoung</a> and <a
href="https://twitter.com/willsentance" target="_blank"
rel="nofollow noopener">@willsentance</a> for their amazing courses
in
<a href="https://twitter.com/FrontendMasters" target="_blank"
rel="nofollow noopener">@FrontendMasters</a>!! Not only the content
is amazing but they are also incredibly easy to watch and stay engaged.
</div>
<div class="tweet-bottom"><a class="tweet-timestamp"
rel="nofollow noreferrer" target="_blank"
href="https://twitter.com/marcomonsanto2/status/1289559118043258880">1:50pm
· Aug 1, 2020</a></div>
</div>
<div class="tweet"><a class="tweet-top" rel="nofollow noopener" target="_blank"
href="https://twitter.com/sandeepranjan_/status/1255281508568518667"><img
class="lazyload tweet-image"
src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="
data-src="https://pbs.twimg.com/profile_images/871324934747955202/ZkbOVm6L_reasonably_small.jpg"
alt="Profile image for @sandeepranjan_">
<div class="tweet-top-text">
<div class="tweet-name">Sandeep Ranjan</div>
<div class="tweet-handle">@sandeepranjan_</div>
</div>
</a>
<div class="tweet-body">Thank you <a
href="https://twitter.com/FrontendMasters" target="_blank"
rel="nofollow noopener">@FrontendMasters</a> &amp; <a
href="https://twitter.com/stevekinney" target="_blank"
rel="nofollow noopener">@stevekinney</a> for this awesome
course State Management with Redux. Finally got confident with Redux.
</div>
<div class="tweet-bottom"><a class="tweet-timestamp"
rel="nofollow noreferrer" target="_blank"
href="https://twitter.com/sandeepranjan_/status/1255281508568518667">11:43pm
· Apr 28, 2020</a></div>
</div>
<div class="tweet"><a class="tweet-top" rel="nofollow noopener" target="_blank"
href="https://twitter.com/kevintechgarcia/status/1286935908751613952"><img
class="lazyload tweet-image"
src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="
data-src="https://pbs.twimg.com/profile_images/1243303350042415104/yrucLbdT_reasonably_small.jpg"
alt="Profile image for @kevintechgarcia">
<div class="tweet-top-text">
<div class="tweet-name">Kevin</div>
<div class="tweet-handle">@kevintechgarcia</div>
</div>
</a>
<div class="tweet-body">Im in love with Frontend Masters and <a
href="https://twitter.com/holtbt" target="_blank"
rel="nofollow noopener">@holtbt</a>!! Just working my way through
the React lessons and I just love the way <a
href="https://twitter.com/holtbt" target="_blank"
rel="nofollow noopener">@holtbt</a> explains the concepts and
configs he runs. Awesome job!! #reactjs</div>
<div class="tweet-bottom"><a class="tweet-timestamp"
rel="nofollow noreferrer" target="_blank"
href="https://twitter.com/kevintechgarcia/status/1286935908751613952">8:06am
· Jul 25, 2020</a></div>
</div>
<div class="tweet"><a class="tweet-top" rel="nofollow noopener" target="_blank"
href="https://twitter.com/JossWritesCode/status/1285966679164493825"><img
class="lazyload tweet-image"
src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="
data-src="https://pbs.twimg.com/profile_images/3186893733/e380c06fba1c4e2ba4538d77ccb6ad8d_reasonably_small.jpeg"
alt="Profile image for @JossWritesCode">
<div class="tweet-top-text">
<div class="tweet-name">Joss Stancek</div>
<div class="tweet-handle">@JossWritesCode</div>
</div>
</a>
<div class="tweet-body">Watching JavaScript: The Hard Parts, v2 with <a
href="https://twitter.com/willsentance" target="_blank"
rel="nofollow noopener">@willsentance</a> on <a
href="https://twitter.com/FrontendMasters" target="_blank"
rel="nofollow noopener">@FrontendMasters</a>.
He is an amazing teacher. I now understand what's happening on every
line of a JS promise. Feels so good!</div>
<div class="tweet-bottom"><a class="tweet-timestamp"
rel="nofollow noreferrer" target="_blank"
href="https://twitter.com/JossWritesCode/status/1285966679164493825">3:55pm
· Jul 22, 2020</a></div>
</div>
<div class="tweet"><a class="tweet-top" rel="nofollow noopener" target="_blank"
href="https://twitter.com/papistan1/status/1284693817329737728"><img
class="lazyload tweet-image"
src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="
data-src="https://pbs.twimg.com/profile_images/1139758277699313664/7xmfaORG_reasonably_small.jpg"
alt="Profile image for @papistan1">
<div class="tweet-top-text">
<div class="tweet-name">Jay Papisan</div>
<div class="tweet-handle">@papistan1</div>
</div>
</a>
<div class="tweet-body">Building out our <a
href="https://twitter.com/storybookjs" target="_blank"
rel="nofollow noopener">@storybookjs</a> + Design System for work
with a little help from <a href="https://twitter.com/EmmaBostian"
target="_blank" rel="nofollow noopener">@EmmaBostian</a> 's <a
href="https://twitter.com/FrontendMasters" target="_blank"
rel="nofollow noopener">@FrontendMasters</a> DS &amp; React
course - super concise and helpful to get up and running fast🔥</div>
<div class="tweet-bottom"><a class="tweet-timestamp"
rel="nofollow noreferrer" target="_blank"
href="https://twitter.com/papistan1/status/1284693817329737728">3:37am
· Jul 19, 2020</a></div>
</div>
<div class="tweet"><a class="tweet-top" rel="nofollow noopener" target="_blank"
href="https://twitter.com/billyhunt/status/1282683519416840192"><img
class="lazyload tweet-image"
src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="
data-src="https://pbs.twimg.com/profile_images/1655720266/headshot-small_reasonably_small.jpg"
alt="Profile image for @billyhunt">
<div class="tweet-top-text">
<div class="tweet-name">billyhunt</div>
<div class="tweet-handle">@billyhunt</div>
</div>
</a>
<div class="tweet-body">I really enjoyed watching <a
href="https://twitter.com/scotups" target="_blank"
rel="nofollow noopener">@scotups</a>'s Client-Side GraphQL in React
class on <a href="https://twitter.com/FrontendMasters" target="_blank"
rel="nofollow noopener">@FrontendMasters</a> this weekend. He is a
good teacher.</div>
<div class="tweet-bottom"><a class="tweet-timestamp"
rel="nofollow noreferrer" target="_blank"
href="https://twitter.com/billyhunt/status/1282683519416840192">2:29pm
· Jul 13, 2020</a></div>
</div>
</li>
<li class="slide js_slide">
<div class="tweet"><a class="tweet-top" rel="nofollow noopener" target="_blank"
href="https://twitter.com/Melvin_manni/status/1279338229607682049"><img
class="lazyload tweet-image"
src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="
data-src="https://pbs.twimg.com/profile_images/1367529785224794120/lxHxRj6f_reasonably_small.jpg"
alt="Profile image for @Melvin_manni">
<div class="tweet-top-text">
<div class="tweet-name">Melvin</div>
<div class="tweet-handle">@Melvin_manni</div>
</div>
</a>
<div class="tweet-body"><a href="https://twitter.com/holtbt" target="_blank"
rel="nofollow noopener">@holtbt</a> React course on <a
href="https://twitter.com/FrontendMasters" target="_blank"
rel="nofollow noopener">@FrontendMasters</a> provided more insight
and helped
me appreciate React more. I already know some of the things being taught
but i had no problem re-learning it. So far that is the best React
course I've come across. 💯</div>
<div class="tweet-bottom"><a class="tweet-timestamp"
rel="nofollow noreferrer" target="_blank"
href="https://twitter.com/Melvin_manni/status/1279338229607682049">8:56am
· Jul 4, 2020</a></div>
</div>
<div class="tweet"><a class="tweet-top" rel="nofollow noopener" target="_blank"
href="https://twitter.com/Caleb__Lovell/status/1276573571146375168"><img
class="lazyload tweet-image"
src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="
data-src="https://pbs.twimg.com/profile_images/1119737710057385984/tDO-nNID_reasonably_small.png"
alt="Profile image for @Caleb__Lovell">
<div class="tweet-top-text">
<div class="tweet-name">Caleb Lovell</div>
<div class="tweet-handle">@Caleb__Lovell</div>
</div>
</a>
<div class="tweet-body"><a href="https://twitter.com/holtbt" target="_blank"
rel="nofollow noopener">@holtbt</a> Hey Brian, many thanks for your
course on containers and Docker on <a
href="https://twitter.com/FrontendMasters" target="_blank"
rel="nofollow noopener">@FrontendMasters</a>!
SO glad to finally grasp how they work. I've lost many hours to failing
with Docker because I didn't understand the internals. No more! Looking
forward to Intro to Linux. Thanks!!</div>
<div class="tweet-bottom"><a class="tweet-timestamp"
rel="nofollow noreferrer" target="_blank"
href="https://twitter.com/Caleb__Lovell/status/1276573571146375168">5:50pm
· Jun 26, 2020</a></div>
</div>
<div class="tweet"><a class="tweet-top" rel="nofollow noopener" target="_blank"
href="https://twitter.com/jimmyaldape/status/1270474869084262401"><img
class="lazyload tweet-image"
src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="
data-src="https://pbs.twimg.com/profile_images/1415002602761117700/_cei2Qp8_reasonably_small.jpg"
alt="Profile image for @jimmyaldape">
<div class="tweet-top-text">
<div class="tweet-name">Jimmy Aldape</div>
<div class="tweet-handle">@jimmyaldape</div>
</div>
</a>
<div class="tweet-body"><a href="https://twitter.com/FrontendMasters"
target="_blank" rel="nofollow noopener">@FrontendMasters</a> courses
are already paying off. Can’t stop. Won’t stop.</div>
<div class="tweet-bottom"><a class="tweet-timestamp"
rel="nofollow noreferrer" target="_blank"
href="https://twitter.com/jimmyaldape/status/1270474869084262401">9:56pm
· Jun 9, 2020</a></div>
</div>
<div class="tweet"><a class="tweet-top" rel="nofollow noopener" target="_blank"
href="https://twitter.com/fejes713/status/1114858158936207360"><img
class="lazyload tweet-image"
src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="
data-src="https://pbs.twimg.com/profile_images/1176389111634112512/70t8NtS3_reasonably_small.jpg"
alt="Profile image for @fejes713">
<div class="tweet-top-text">
<div class="tweet-name">Stefan Fejes</div>
<div class="tweet-handle">@fejes713</div>
</div>
</a>
<div class="tweet-body"><a href="https://twitter.com/FrontendMasters"
target="_blank" rel="nofollow noopener">@FrontendMasters</a> is like
a fully fledged University at this point. There're many courses to chose
from industry leading professionals. Having the ability
to learn what you want when you want it is phenomenal.</div>
<div class="tweet-bottom"><a class="tweet-timestamp"
rel="nofollow noreferrer" target="_blank"
href="https://twitter.com/fejes713/status/1114858158936207360">11:51am
· Apr 7, 2019</a></div>
</div>
<div class="tweet"><a class="tweet-top" rel="nofollow noopener" target="_blank"
href="https://twitter.com/sammyeast/status/1113574680529473536"><img
class="lazyload tweet-image"
src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="
data-src="https://pbs.twimg.com/profile_images/1197971799251664897/-3c53xLD_reasonably_small.jpg"
alt="Profile image for @sammyeast">
<div class="tweet-top-text">
<div class="tweet-name">Sam Ratemo</div>
<div class="tweet-handle">@sammyeast</div>
</div>
</a>
<div class="tweet-body"><a href="https://twitter.com/scotups"
target="_blank" rel="nofollow noopener">@scotups</a> following your
node.js v3 on frontend masters, loving it. its straight 🔥🔥</div>
<div class="tweet-bottom"><a class="tweet-timestamp"
rel="nofollow noreferrer" target="_blank"
href="https://twitter.com/sammyeast/status/1113574680529473536">10:51pm
· Apr 3, 2019</a></div>
</div>
<div class="tweet"><a class="tweet-top" rel="nofollow noopener" target="_blank"
href="https://twitter.com/OliviaOddo/status/1052993864938606592"><img
class="lazyload tweet-image"
src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="
data-src="https://pbs.twimg.com/profile_images/950536864787656704/Kd3wLQJx_reasonably_small.jpg"
alt="Profile image for @OliviaOddo">
<div class="tweet-top-text">
<div class="tweet-name">Olivia Oddo</div>
<div class="tweet-handle">@OliviaOddo</div>
</div>
</a>
<div class="tweet-body">Thank you <a href="https://twitter.com/TheLarkInn"
target="_blank" rel="nofollow noopener">@TheLarkInn</a> and <a
href="https://twitter.com/stevekinney" target="_blank"
rel="nofollow noopener">@stevekinney</a> for your <a
href="https://twitter.com/FrontendMasters" target="_blank"
rel="nofollow noopener">@FrontendMasters</a> courses! I don’t think
I would have landed my new job as a build infrastructure/web performance
engineer without y’all 😍</div>
<div class="tweet-bottom"><a class="tweet-timestamp"
rel="nofollow noreferrer" target="_blank"
href="https://twitter.com/OliviaOddo/status/1052993864938606592">6:44pm
· Oct 18, 2018</a></div>
</div>
</li>
<li class="slide js_slide">
<div class="tweet"><a class="tweet-top" rel="nofollow noopener" target="_blank"
href="https://twitter.com/nhuphan0404/status/1101324588661694465"><img
class="lazyload tweet-image"
src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="
data-src="https://pbs.twimg.com/profile_images/1251337586661974016/eheDTCuo_reasonably_small.jpg"
alt="Profile image for @nhuphan0404">
<div class="tweet-top-text">
<div class="tweet-name">Nhu Phan 👩🏻💻🧘🏻♀️</div>
<div class="tweet-handle">@nhuphan0404</div>
</div>
</a>
<div class="tweet-body">I have recently spent most of my time on <a
href="https://twitter.com/FrontendMasters" target="_blank"
rel="nofollow noopener">@FrontendMasters</a>, 👩🏻💻 with the
beginning path🤓 , I tend to understand things clearly rather than doing
without understanding it. Can't recommend FM enough, its content is
amazing, feel like it is tailor-made for me 🤪🤓.</div>
<div class="tweet-bottom"><a class="tweet-timestamp"
rel="nofollow noreferrer" target="_blank"
href="https://twitter.com/nhuphan0404/status/1101324588661694465">3:33am
· Mar 1, 2019</a></div>
</div>
<div class="tweet"><a class="tweet-top" rel="nofollow noopener" target="_blank"
href="https://twitter.com/RickyGarciaDev/status/1089228436877393921"><img
class="lazyload tweet-image"
src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="
data-src="https://pbs.twimg.com/profile_images/1261295422061940736/zo-7G1lq_reasonably_small.jpg"
alt="Profile image for @RickyGarciaDev">
<div class="tweet-top-text">
<div class="tweet-name">Ricky Garcia</div>
<div class="tweet-handle">@RickyGarciaDev</div>
</div>
</a>
<div class="tweet-body">I loved, LOVED, Javascript the Hardparts taught by
<a href="https://twitter.com/willsentance" target="_blank"
rel="nofollow noopener">@willsentance</a> on <a
href="https://twitter.com/FrontendMasters" target="_blank"
rel="nofollow noopener">@FrontendMasters</a>.
What an incredible deep dive. #FrontEnd #webdevelopment</div>
<div class="tweet-bottom"><a class="tweet-timestamp"
rel="nofollow noreferrer" target="_blank"
href="https://twitter.com/RickyGarciaDev/status/1089228436877393921">6:27pm
· Jan 26, 2019</a></div>
</div>
<div class="tweet"><a class="tweet-top" rel="nofollow noopener" target="_blank"
href="https://twitter.com/KellyIsWorking/status/1113491672334094341"><img
class="lazyload tweet-image"
src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="
data-src="https://pbs.twimg.com/profile_images/935215363792560128/MY76hbgO_reasonably_small.jpg"
alt="Profile image for @KellyIsWorking">
<div class="tweet-top-text">
<div class="tweet-name">Kelly Watson</div>
<div class="tweet-handle">@KellyIsWorking</div>
</div>
</a>
<div class="tweet-body"><a href="https://twitter.com/ArlanWasHere"
target="_blank" rel="nofollow noopener">@ArlanWasHere</a> <a
href="https://twitter.com/FrontendMasters" target="_blank"
rel="nofollow noopener">@FrontendMasters</a> - it’s really worth the
subscription.
The tracks are fantastic. I wish I would have started there instead of
cobbling together online places to learn on my own.</div>
<div class="tweet-bottom"><a class="tweet-timestamp"
rel="nofollow noreferrer" target="_blank"
href="https://twitter.com/KellyIsWorking/status/1113491672334094341">5:21pm
· Apr 3, 2019</a></div>
</div>
<div class="tweet"><a class="tweet-top" rel="nofollow noopener" target="_blank"
href="https://twitter.com/EmmaBostian/status/1113156968003366913"><img
class="lazyload tweet-image"
src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="
data-src="https://pbs.twimg.com/profile_images/1400161856329822208/GrSz46jH_reasonably_small.jpg"
alt="Profile image for @EmmaBostian">
<div class="tweet-top-text">
<div class="tweet-name">Emma Bostian 🐞</div>
<div class="tweet-handle">@EmmaBostian</div>
</div>
</a>
<div class="tweet-body">The last two days I've been binge consuming all of
<a href="https://twitter.com/holtbt" target="_blank"
rel="nofollow noopener">@holtbt</a> 's content on <a
href="https://twitter.com/FrontendMasters" target="_blank"
rel="nofollow noopener">@FrontendMasters</a> and <a
href="https://twitter.com/RealTalkJS" target="_blank"
rel="nofollow noopener">@RealTalkJS</a>. If you need to learn React,
he's one of the teachers I highly recommend checking out.</div>
<div class="tweet-bottom"><a class="tweet-timestamp"
rel="nofollow noreferrer" target="_blank"
href="https://twitter.com/EmmaBostian/status/1113156968003366913">7:11pm
· Apr 2, 2019</a></div>
</div>
<div class="tweet"><a class="tweet-top" rel="nofollow noopener" target="_blank"
href="https://twitter.com/nirgal_js/status/1111522093689126912"><img
class="lazyload tweet-image"
src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="
data-src="https://pbs.twimg.com/profile_images/1111520172962209792/ZZ05C1MI_reasonably_small.png"
alt="Profile image for @nirgal_js">
<div class="tweet-top-text">
<div class="tweet-name">Nir</div>
<div class="tweet-handle">@nirgal_js</div>
</div>
</a>
<div class="tweet-body"><a href="https://twitter.com/scotups"
target="_blank" rel="nofollow noopener">@scotups</a> Thank you so
much for your amazing GraphQL course on <a
href="https://twitter.com/FrontendMasters" target="_blank"
rel="nofollow noopener">@FrontendMasters</a> , I learned a ton from
it and was able to create my own GraphQL project :)</div>
<div class="tweet-bottom"><a class="tweet-timestamp"
rel="nofollow noreferrer" target="_blank"
href="https://twitter.com/nirgal_js/status/1111522093689126912">6:54am
· Mar 29, 2019</a></div>
</div>
<div class="tweet"><a class="tweet-top" rel="nofollow noopener" target="_blank"
href="https://twitter.com/abysswalkintall/status/1110618095226376192"><img
class="lazyload tweet-image"
src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="
data-src="https://pbs.twimg.com/profile_images/1266936945185341446/qWGzRY3I_reasonably_small.jpg"
alt="Profile image for @abysswalkintall">
<div class="tweet-top-text">
<div class="tweet-name">The Windhand That Feeds You</div>
<div class="tweet-handle">@abysswalkintall</div>
</div>
</a>
<div class="tweet-body">Latest <a href="https://twitter.com/FrontendMasters"
target="_blank" rel="nofollow noopener">@FrontendMasters</a> course
that I'm absolutely loving: <a href="https://twitter.com/JemYoung"
target="_blank" rel="nofollow noopener">@JemYoung</a>'s
Full Stack For Front-End Developers. This workshop is so much more
succinct, interesting, useful, and FUN than the Windows/Linux OS course
that I took as a #webdev major.</div>
<div class="tweet-bottom"><a class="tweet-timestamp"
rel="nofollow noreferrer" target="_blank"
href="https://twitter.com/abysswalkintall/status/1110618095226376192">7:02pm
· Mar 26, 2019</a></div>
</div>
</li>
<li class="slide js_slide">
<div class="tweet"><a class="tweet-top" rel="nofollow noopener" target="_blank"
href="https://twitter.com/frontstuff_io/status/1111553840170573824"><img
class="lazyload tweet-image"
src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="
data-src="https://pbs.twimg.com/profile_images/977873484759158784/mOItIR7M_reasonably_small.jpg"
alt="Profile image for @frontstuff_io">
<div class="tweet-top-text">
<div class="tweet-name">Sarah Dayan</div>
<div class="tweet-handle">@frontstuff_io</div>
</div>
</a>
<div class="tweet-body">I’m helping out the <a
href="https://twitter.com/algolia" target="_blank"
rel="nofollow noopener">@algolia</a> API clients team on their
journey to learn JavaScript and I can confirm 100% that <a
href="https://twitter.com/getify" target="_blank"
rel="nofollow noopener">@getify</a> is the best JavaScript
instructor out there, hands down. From <a
href="https://twitter.com/YDKJS" target="_blank"
rel="nofollow noopener">@YDKJS</a> to the courses on <a
href="https://twitter.com/FrontendMasters" target="_blank"
rel="nofollow noopener">@FrontendMasters</a>, nobody goes deeper
than him into how things work.</div>
<div class="tweet-bottom"><a class="tweet-timestamp"
rel="nofollow noreferrer" target="_blank"
href="https://twitter.com/frontstuff_io/status/1111553840170573824">9:01am
· Mar 29, 2019</a></div>
</div>
<div class="tweet"><a class="tweet-top" rel="nofollow noopener" target="_blank"
href="https://twitter.com/brandonleichty/status/1104420582588850176"><img
class="lazyload tweet-image"
src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="
data-src="https://pbs.twimg.com/profile_images/1216060474967711746/USR24qdb_reasonably_small.jpg"
alt="Profile image for @brandonleichty">
<div class="tweet-top-text">
<div class="tweet-name">Brandon Leichty</div>
<div class="tweet-handle">@brandonleichty</div>
</div>