-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
2534 lines (2439 loc) · 104 KB
/
index.html
File metadata and controls
2534 lines (2439 loc) · 104 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>
<!-- Google tag (gtag.js) -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=G-L8W0S4E5SK"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "G-L8W0S4E5SK");
</script>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<!--Bootstrap CSS-->
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0-beta1/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-0evHe/X+R7YkIZDRvuzKMRqM+OrBnVFBL6DOitfPri4tjfHxaWutUpFmBp4vmVor"
crossorigin="anonymous"
/>
<!--Google Font CSS-->
<link
href="https://fonts.googleapis.com/css?family=Raleway+Dots|Roboto&display=swap"
rel="stylesheet"
/>
<!--Our own CSS-->
<link rel="stylesheet" href="styles.css" />
<title>Nelly Sugu</title>
</head>
<body>
<!--Navigation-->
<nav class="navbar navbar-expand-lg navbar-dark bg-dark" id="nav-bar">
<div class="navbar-brand" id="brand-container">
<a style="color: white; text-decoration: none" href="#">
<p>Nelly Sugu</p>
<p id="brand-work">
Mentor & coach of absolute beginners in web development
</p>
</a>
</div>
<button
class="navbar-toggler"
type="button"
data-bs-toggle="collapse"
data-bs-target="#navbarSupportedContent"
aria-controls="navbarSupportedContent"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span class="navbar-toggler-icon"></span>
</button>
<div
class="collapse navbar-collapse justify-content-end menu_items"
id="navbarSupportedContent"
>
<ul class="navbar-nav ml-auto">
<!-- <li class="nav-item">
<a class="nav-link" href="#">About </a>
</li> -->
<li class="nav-item">
<a
target="_blank"
rel="noopener noreferrer"
class="nav-link"
href="#testimonials"
>Testimonials</a
>
</li>
<li>
<a
class="nav-link"
href="https://blog.nellysugu.com/"
target="_blank"
rel="noopener noreferrer"
>Blog</a
>
</li>
<li class="nav-item">
<a
target="_blank"
rel="noopener noreferrer"
class="nav-link"
href="https://www.linkedin.com/in/nellysugu/"
>LinkedIn</a
>
</li>
</ul>
</div>
</nav>
<!--About-->
<section id="about">
<!-- <p class="about-name">Hi,</p>
<p class="about-name">I am Nelly</p> -->
<p id="about-tagline">
I <span id="about-heart">♥</span> building cool stuff & teaching
others how to do it
</p>
<iframe
width="560"
height="315"
src="https://www.youtube.com/embed/giRJQ-f4wlA"
title="Web Developer Beginner Series by Nelly Sugu"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen
></iframe>
<div id="about-social-media">
<!-- <a
target="_blank"
rel="noopener noreferrer"
href="https://www.instagram.com/nellysugu/"
>
<img
class="social-media-icon"
src="./resources/instagram-logo.png"
alt="instagram logo"
/>
</a> -->
<!-- <a
target="_blank"
rel="noopener noreferrer"
href="https://www.linkedin.com/in/nellysugu/"
>
<img
class="social-media-icon"
src="./resources/linkedin-logo.png"
alt="linkedin logo"
srcset=""
/>
</a> -->
</div>
<!-- <div class="numbers">
<div id="total_students">
<p class="number">250+</p>
<p class="number_desc">Beginners turned web developers</p>
</div>
<div id="amazon_engineers">
<p class="number">130+</p>
<p class="number_desc">are now Software Engineers at Amazon</p>
</div>
</div> -->
<div class="cta">
<div class="alert alert-success" role="alert">
<a
href="https://blog.nellysugu.com/"
target="_blank"
rel="noopener noreferrer"
>Learn with Nelly 🎓</a
>
</div>
</div>
<!-- <div class="learn_call_to_action">
<a
href="#contact"
class="btn"
style="
color: white;
text-decoration: none;
margin: 5px;
border-color: #b1365b;
background-color: #b1365b;
"
>
Learn how to build websites and apps from scratch with me
</a>
</div>
-->
</section>
<!--Reviews-->
<section id="testimonials">
<h2 class="section-header">Testimonials</h2>
<!-- <div class="section-carousel"> -->
<div id="testimonials-container">
<!-- Joe Plukarski -->
<div class="card span_2_row">
<div class="card-body card_content">
<div class="reviewer">
<img
class="reviewer-img-thumbnail"
src="./resources/joeplukarski.jpeg"
alt="Joe profile picture"
/>
<h5 class="card-title">
<a
target="_blank"
rel="noopener noreferrer"
class="text-primary"
href="https://www.linkedin.com/in/josephplukarski/"
>Joseph Plukarski</a
>
</h5>
<p class="card-subtitle mb-2 fw-bold">
Now: Software Engineer @PayPal
</p>
<p class="card-subtitle mb-2 text-muted font-monospace">
Before: Freelance Blogger & Lyric Transcriber
</p>
</div>
<p class="card-text review-quote">
I was Nelly's student from July 2018-October 2018 at the
Northwestern Full-Stack Coding Bootcamp. At the time, I was a
freelance blog writer and lyric transcriber and delivered for
Postmates.
<br />
<br />
I was desperately looking for a career change. I had managed
websites via WordPress before, but had no experience with coding
outside of very basic HTML and CSS. When first making this
transition into the world of web developing it can be very
overwhelming. There are so many acronyms, libraries, frameworks,
languages out there that imposter syndrome is nearly impossible to
avoid. Nelly not only taught us how to code, but he taught us
patience and perseverance. I saw firsthand Nelly get excited over
error messages or scripts not working as expected. This helped me
change my mindset from being intimidated and frustrated when
things don't work as expected to being excited at opportunities to
solve problems through debugging code.
<br />
<br />
I originally went to college to become a High School English
Teacher. I quickly decided that I did not have a passion for
teaching, but this same passion that I lacked I can clearly see in
Nelly. He takes his time to get to know his students individually
and what motivates them, and how they best learn. He also
approaches the classroom more like getting together with a friend
who is showing you something. I really appreciated everything
Nelly did for us and would take another class with him 10/10 times
if given the opportunity!
</p>
</div>
</div>
<!-- Parcell Gaskins -->
<div class="card">
<div class="card-body card_content">
<div class="reviewer">
<img
class="reviewer-img-thumbnail"
src="./resources/percell-gaskins.jpeg"
alt="Parcell Gaskins profile picture"
/>
<h5 class="card-title">
<a
target="_blank"
rel="noopener noreferrer"
class="text-primary"
href="https://www.linkedin.com/in/percell-gaskins-8a644014b/"
>Parcell Gaskins</a
>
</h5>
<p class="card-subtitle mb-2 fw-bold">
Now: Software Development Engineering Apprentice @Amazon
</p>
<p class="card-subtitle mb-2 text-muted font-monospace">
Before: NFL Linebacker @St. Louis Rams
</p>
</div>
<p class="card-text review-quote">
The best developer of aspiring software development engineers on
the planet 🌎 His teaching style is an experience not a lecture .
If I could give one word to explain Nelly it would be GENIUS……
</p>
</div>
</div>
<!-- Ifra -->
<div class="card span_2_col">
<div class="card-body card_content">
<div class="reviewer">
<img
class="reviewer-img-thumbnail"
src="./resources/ifra.jpeg"
alt="Ifra profile picture"
/>
<h5 class="card-title">
<a
target="_blank"
rel="noopener noreferrer"
class="text-primary"
href="https://www.linkedin.com/in/ifraaijaz/"
>Ifra Aijaz</a
>
</h5>
<p class="card-subtitle mb-2 fw-bold">
Now: Application Development Associate Manager @Accenture
</p>
<p class="card-subtitle mb-2 text-muted font-monospace">
Before: Graphic Designer
</p>
</div>
<p class="card-text review-quote">
"You cannot teach a man anything, you can only help him find it
within himself" - Galileo
<br />
<br />
Those are the words I have seen Nelly live by everyday as a
teacher. He did not just do the job of teaching us coding but
helped us find it within ourselves on days when most of us almost
gave up. Not only a great teacher but a gem of a human being who
lives for others. His passion to help others makes him one of the
best teachers I have come across in my life. He has the skill to
teach complex subjects in a way that not only makes it easy to
understand but also gives you the confidence of tackling it on
your own. I can not recommend Nelly enough and believe that
whoever gets him as a teacher should consider themselves as the
lucky ones. Way to go Nelly!
</p>
</div>
</div>
<!-- Izzy -->
<div class="card">
<div class="card-body card_content">
<div class="reviewer">
<img
class="reviewer-img-thumbnail"
src="./resources/izzy.jpeg"
alt="Isabel Servin profile picture"
/>
<h5 class="card-title">
<a
target="_blank"
rel="noopener noreferrer"
class="text-primary"
href="https://www.linkedin.com/in/isabel-servin/"
>Isabel Servin</a
>
</h5>
<p class="card-subtitle mb-2 fw-bold">
Now: Software Developer @Amazon
</p>
<p class="card-subtitle mb-2 text-muted font-monospace">
Before: Network Admin - US Marine Corps
</p>
</div>
<p class="card-text review-quote">
I had the absolute PRIVILEGE of learning Web Development from
Nelly, his teaching style is not only progressive and
forward-thinking, it encourages ingenuity from his students;
fosters true interpersonal growth that best serves each individual
he mentors by adapting his teaching style to meet the needs of
those around him. Nelly's breathe of knowledge is impressive to
say the very least, but it's his passion for this industry and for
this students that sets him apart from anyone I have ever been
blessed enough to meet! Nelly has hands down changed my hunger for
growth, learning, and deep desire to pay it forward and pass off
knowledge. He is the epitome of a true leader and teacher! Nelly
has my highest praises and recommendations!
</p>
</div>
</div>
<!-- Walter -->
<div class="card">
<div class="card-body card_content">
<div class="reviewer">
<img
class="reviewer-img-thumbnail"
src="./resources/walter-thomas.jpeg"
alt="Walter Thomas profile picture"
/>
<h5 class="card-title">
<a
target="_blank"
rel="noopener noreferrer"
class="text-primary"
href="https://www.linkedin.com/in/walterlthomas/"
>Walter Thomas</a
>
</h5>
<p class="card-subtitle mb-2 fw-bold">
Now: Software Development Engineering Apprentice @Amazon
</p>
<p class="card-subtitle mb-2 text-muted font-monospace">
Before: US Marine Corps
</p>
</div>
<p class="card-text review-quote">
Nelly is by far the most thorough instructor on the market. He is
tremendously versatile and probably has the most patience out of
anyone I’ve ever dealt with so far. He has the ability to take the
most complex of topics and break it down to where a toddler could
understand. I can’t recommend this guy enough. 5 stars!!
</p>
</div>
</div>
<!-- Morgan -->
<div class="card">
<div class="card-body card_content">
<div class="reviewer">
<img
class="reviewer-img-thumbnail"
src="./resources/morgan.jpeg"
alt="Morgan profile picture"
/>
<h5 class="card-title">
<a
target="_blank"
rel="noopener noreferrer"
class="text-primary"
href="https://www.linkedin.com/in/morganelimills/"
>Morgan Mills</a
>
</h5>
<p class="card-subtitle mb-2 fw-bold">
Now: UI/UX Developer @NICE CXone
</p>
<p class="card-subtitle mb-2 text-muted font-monospace">
Before: Cashier at a grocery store
</p>
</div>
<p class="card-text review-quote">
Nelly was my instructor for a full stack development boot camp. I
entered his class with minimal coding knowledge, and on the many
occasions that I felt overwhelmed, discouraged and ready to quit,
Nelly was by my side giving me encouragement and making sure I
understood the material. Nelly is the most all-in, dedicated
teacher I've ever had- he consistently went above and beyond for
me. He was my tutor, my mentor and is now a lifelong friend. His
passion for coding and life itself is so sincere, he truly is a
bright light in this world. Thank you for everything Nelly!
</p>
</div>
</div>
<!-- Kevin Woulfe -->
<div class="card">
<div class="card-body card_content">
<div class="reviewer">
<img
class="reviewer-img-thumbnail"
src="./resources/kevin.jpeg"
alt="Kevin profile picture"
/>
<h5 class="card-title">
<a
target="_blank"
rel="noopener noreferrer"
class="text-primary"
href="https://www.linkedin.com/in/kevin-woulfe/"
>Kevin Woulfe</a
>
</h5>
<p class="card-subtitle mb-2 fw-bold">
Now: eCommerce Manager @California Chamber of Commerce
</p>
<p class="card-subtitle mb-2 text-muted font-monospace">
Before: Worked at a bike store
</p>
</div>
<p class="card-text review-quote">
Nelly is a fantastic teacher. He has the ability and patience to
teach anyone. His enthusiasm is contagious and his drive is
inspiring. At the time I met Nelly, I knew nothing about Web
Development. After a very short time, he was able to give me the
tools to create a foundation on which I was able to grow and build
as a developer. Nelly once told me it was his calling to teach
those around him. I believe he has found his path. Thank you Nelly
for the energy you bring to this world.
</p>
</div>
</div>
<!-- Justin Bruce -->
<div class="card">
<div class="card-body card_content">
<div class="reviewer">
<img
class="reviewer-img-thumbnail"
src="./resources/justin-bruce.jpeg"
alt="Justin Bruce profile picture"
/>
<h5 class="card-title">
<a
target="_blank"
rel="noopener noreferrer"
class="text-primary"
href="https://www.linkedin.com/in/justin-n-bruce/"
>Justin Bruce</a
>
</h5>
<p class="card-subtitle mb-2 fw-bold">
Now: Software Developer @Amazon
</p>
<p class="card-subtitle mb-2 text-muted font-monospace">
Before: Nuclear Electronic Technician - US Navy
</p>
</div>
<p class="card-text review-quote">
With no experience in JS, HTML, or CSS, Nelly taught me what I
needed to know to be a full-stack developer in 3 weeks. I could
not recommend him enough, he taught more than just curriculum but
really made us run through the process of coding and debugging
while he was guiding us and having us think through the process. I
only wish I had more than 3 weeks with him because there is no
telling how much more I could have learned.
</p>
</div>
</div>
<!-- Maria Neeves -->
<div class="card">
<div class="card-body card_content">
<div class="reviewer">
<img
class="reviewer-img-thumbnail"
src="./resources/maria-nieves.jpeg"
alt="Maria Nieves profile picture"
/>
<h5 class="card-title">
<a
target="_blank"
rel="noopener noreferrer"
class="text-primary"
href="https://www.linkedin.com/in/maria-nieves-40b932192/"
>Maria Nieves Mills</a
>
</h5>
<p class="card-subtitle mb-2 fw-bold">
Now: Software Development Engineer @Amazon
</p>
<p class="card-subtitle mb-2 text-muted font-monospace">
Before: IT Support Technician
</p>
</div>
<p class="card-text review-quote">
Nelly by far is the MVP of instructors. He’s willing to go the
extra mile to figure out your learning style so that he could help
you. He makes everything fun to learn and his content is clutch!
Thank you for everything, Nelly! 10/10.
</p>
</div>
</div>
<!-- Charlie Grogan -->
<div class="card">
<div class="card-body card_content">
<div class="reviewer">
<img
class="reviewer-img-thumbnail"
src="./resources/charlie.jpeg"
alt="Charlie profile picture"
/>
<h5 class="card-title">
<a
target="_blank"
rel="noopener noreferrer"
class="text-primary"
href="https://www.linkedin.com/in/charles-grogan/"
>Charlie Grogan</a
>
</h5>
<p class="card-subtitle mb-2 fw-bold">
Now: Data Strategist & Technical Consultant @Baxter
International
</p>
<p class="card-subtitle mb-2 text-muted font-monospace">
Before: Sales Consultant & Restaurant Manager
</p>
</div>
<p class="card-text review-quote">
I had the pleasure of being one of Nelly’s students and the
Northwestern University coding boot camp. Right from the go he
always brought his smile, his patience, and knowledge to
everything he did. Nelly has a dynamic personality and engaging
teaching style that truly helped me develop as a developer. When I
started with Nelly, I quite literally knew only what I had taught
myself, which was near to nothing. Over the course of the class,
post graduation, the job search grind, and ultimately through
accepting a job offer, Nelly was there to support, motivate, and
inspire! Thankful to call him a friend and mentor. Cheers, Nelly!
</p>
</div>
</div>
<!-- Brit Nell -->
<div class="card">
<div class="card-body card_content">
<div class="reviewer">
<img
class="reviewer-img-thumbnail"
src="./resources/brit-nell.jpeg"
alt="Brit Nell profile picture"
/>
<h5 class="card-title">
<a
target="_blank"
rel="noopener noreferrer"
class="text-primary"
href="https://www.linkedin.com/in/britnell/"
>Brit Nell</a
>
</h5>
<p class="card-subtitle mb-2 fw-bold">
Now: Certified Scrum Master & Software Analyst
</p>
<p class="card-subtitle mb-2 text-muted font-monospace">
Before: Physical Therapist
</p>
</div>
<p class="card-text review-quote">
Nelly was fantastic at breaking down Javascript in a way that made
sense. Instead of just lecturing the how-to, he gave us practical
assignments that put all the elements into perspective and helped
it all click. I know for a fact I was not the only one in my
cohort that considered him the best teacher we had in our
bootcamp!
</p>
</div>
</div>
<!-- Roman Penn -->
<div class="card">
<div class="card-body card_content">
<div class="reviewer">
<img
class="reviewer-img-thumbnail"
src="./resources/roman-penn.jpeg"
alt="Roman Penn profile picture"
/>
<h5 class="card-title">
<a
target="_blank"
rel="noopener noreferrer"
class="text-primary"
href="https://www.linkedin.com/in/romanpennwebmc/"
>Roman Penn</a
>
</h5>
<p class="card-subtitle mb-2 fw-bold">
Now: Software Engineer @Amazon
</p>
<p class="card-subtitle mb-2 text-muted font-monospace">
Before: US Marine Corps
</p>
</div>
<p class="card-text review-quote">
Nelly, was probably the most engaging instructor I’ve ever had
during my time in the software development industry. The way he
taught and explained all the aspects of full stack web development
showed he was both knowledgeable and passionate about what he was
teaching and gave me a fire for this field in software development
that I didn’t think I would ever have. I could not recommend him
enough!!
</p>
</div>
</div>
<!-- Luxi Meng -->
<div class="card">
<div class="card-body card_content">
<div class="reviewer">
<img
class="reviewer-img-thumbnail"
src="./resources/luxi-meng.jpeg"
alt="Luxi Meng profile picture"
/>
<h5 class="card-title">
<a
target="_blank"
rel="noopener noreferrer"
class="text-primary"
href="https://www.linkedin.com/in/luximeng"
>Luxi Meng</a
>
</h5>
<p class="card-subtitle mb-2 fw-bold">
Now: Software Engineer @Amazon
</p>
<p class="card-subtitle mb-2 text-muted font-monospace">
Before: Chemical, Biological, Radiological & Nuclear Specialist
- US Army
</p>
</div>
<p class="card-text review-quote">
Nelly is apparently not only great at but also passionate about
teaching. He is meticulous in the way he breaks down knowledges
and deliver at a pace that is suitable for even the newest of
coders. He also cares a lot of about each one of us and not
leaving anyone behind. His layback demeanor also make learning
much more fun. I wish all teachers are like him!
</p>
</div>
</div>
<!-- Henwin Cuffy -->
<div class="card">
<div class="card-body card_content">
<div class="reviewer">
<img
class="reviewer-img-thumbnail"
src="./resources/henwin.jpeg"
alt="Henwin Cuffy profile picture"
/>
<h5 class="card-title">
<a
target="_blank"
rel="noopener noreferrer"
class="text-primary"
href="https://www.linkedin.com/in/henwin-cuffy/"
>Henwin Cuffy</a
>
</h5>
<p class="card-subtitle mb-2 fw-bold">
Now: Software Engineer Apprentice @Amazon
</p>
<p class="card-subtitle mb-2 text-muted font-monospace">
Before: US Marine Corps
</p>
</div>
<p class="card-text review-quote">
Nelly is a phenomenal instructor! He was our HTML/CSS/JavaScript
instructor. He made it a point to show how to solve problems
rather than just giving us the answers. He was also very patient
and so willing to walk you through any concept you didn’t
understand using a real world analogy, painting a very clear
picture of what is happening. He elevates anyone he teaches.
</p>
</div>
</div>
<!-- Shannon Edgar -->
<div class="card">
<div class="card-body card_content">
<div class="reviewer">
<img
class="reviewer-img-thumbnail"
src="./resources/shannon.jpeg"
alt="Shannon profile picture"
/>
<h5 class="card-title">
<a
target="_blank"
rel="noopener noreferrer"
class="text-primary"
href="https://www.linkedin.com/in/shannonleeedgar/"
>Shannon Edgar</a
>
</h5>
<p class="card-subtitle mb-2 fw-bold">
Now: Freelance Art Director and Graphic Designer at Shannon
Edgar Design
</p>
<p class="card-subtitle mb-2 text-muted font-monospace">
Before: Senior Graphic Designer @Page Design Group
</p>
</div>
<p class="card-text review-quote">
Nelly taught my Full Stack Bootcamp at UC Davis. The instruction I
received was superb, Nelly has a way of breaking down complex
material into much simpler steps. His commitment to making sure
each and every student understood the difficult material was
remarkable, often meeting students in off time for private
tutoring. Nelly approaches everything in life with passion and
drive. I can't recommend him highly enough. Easily the most
committed teacher I have ever had as well as a simply phenomenal
human.
</p>
</div>
</div>
<!-- Jackson Harris III -->
<div class="card">
<div class="card-body card_content">
<div class="reviewer">
<img
class="reviewer-img-thumbnail"
src="./resources/jackson.jpeg"
alt="Jackson profile picture"
/>
<h5 class="card-title">
<a
target="_blank"
rel="noopener noreferrer"
class="text-primary"
href="https://www.linkedin.com/in/jackson-harris-iii-a2546845/"
>Jackson Harris III</a
>
</h5>
<p class="card-subtitle mb-2 fw-bold">
Now: Software Engineer @Niantic
</p>
<p class="card-subtitle mb-2 text-muted font-monospace">
Before: Worked in Marketing & Sales
</p>
</div>
<p class="card-text review-quote">
Nelly is an accomplished mentor, developer, and teacher. He has
been instrumental in my progression as a developer and the same
can be said for many others. He's the kind of person you want as
an instructor or a team mate. This is because Nelly has overcame
more adversity than a large portion of students he will encounter.
He has cultivated a well of patience that extends to students as
well as colleagues. Although patient he is one of the hardest
working people that I have encountered in any field. This is seen
in his work, his teaching, and how he approaches life in general.
I really can not say enough great things about Nelly. If you have
the opportunity to work with Nelly in any capacity I would highly
recommend it.
</p>
</div>
</div>
<!-- Michelle Jung -->
<div class="card span_2_row">
<div class="card-body card_content">
<div class="reviewer">
<img
class="reviewer-img-thumbnail"
src="./resources/michelle.jpeg"
alt="Michelle Jung profile picture"
/>
<h5 class="card-title">
<a
target="_blank"
rel="noopener noreferrer"
class="text-primary"
href="https://www.linkedin.com/in/hi-michelle/"
>Michelle Jung</a
>
</h5>
<p class="card-subtitle mb-2 fw-bold">
Now: Web Developer @Paratransit Inc
</p>
<p class="card-subtitle mb-2 text-muted font-monospace">
Before: Research Assistant @Ohio State University School of
Communication
</p>
</div>
<p class="card-text review-quote">
If you walk into a classroom and Nelly is your instructor, be
aware that you're luckier than any person who has won the lottery!
<br />
<br />
Nelly has passion, heart, and a way of teaching that "doesn't make
you feel [dumb]" (quoting from another student of his). He puts in
every effort to ensure his students learn and understand both the
front-end and back-end portions of full-stack development.
<br />
<br />
On several occasions, he met with me and my group (for many hours)
for our projects to teach us how to use MySQL, Handlebars.js,
React, rendering the proper code onto the page, and a refresh of
how Git branches worked. He worked with me in my own project on
using MongoDB, Mongoose, discussed plans and diagrams on how to
approach React and Mongo on said project, and met with me several
times on Zoom to code with me, remaining patient the entire time.
<br />
<br />
Not only can he teach, he develops his own apps, as well - along
with coding an app featuring a card game from his home country, he
also coded and promoted (ie, drove to multiple cities to test it)
an app for pick-up basketball (which made me slightly more
interested in the sport)!
<br />
<br />
It was an honor to be Nelly's student - I'm glad he took the leap
and flew to California to teach the inaugural class of UC Davis
Extension's Coding Boot Camp!
<br />
<br />
Thanks, Nelly! :D
</p>
</div>
</div>
<!-- Samekh Resh -->
<div class="card span_2_col">
<div class="card-body card_content">
<div class="reviewer">
<img
class="reviewer-img-thumbnail"
src="./resources/samekh-resh.jpeg"
alt="Samekh Resh profile picture"
/>
<h5 class="card-title">
<a
target="_blank"
rel="noopener noreferrer"
class="text-primary"
href="https://www.linkedin.com/in/nicolas-nico-cueva-19b4a15a/"
>Samekh Resh</a
>
</h5>
<p class="card-subtitle mb-2 fw-bold">
Now: Software Development Engineer - Apperentice @Audible
</p>
<p class="card-subtitle mb-2 text-muted font-monospace">
Before: Worked in Media Production
</p>
</div>
<p class="card-text review-quote">
It had been a while (like a couple of months) since I had picked
up anything HTML/CSS/JS oriented to create a CRUD app and to be
fair, I was a bit rusty. Nelly was able to not only draw that
information out of me, but was able to even teach me something new
(thank you breakpoints!).
<br />
<br />
The thing about Nelly, and his teaching styles, is that he truly
wants you to get it. He doesn't want you to just be able to do
what needs to be done, but to have finesse with it. To have a
truly full and fleshed out understanding of the mechanics that are
being used.
<br />
<br />
I've only had a few mentors (thank you Resilient Coders) who were
able to uphold that level of instruction; a careful, well rounded
and in-depth instruction that increases my foundation of learning
and gives me new skills to jump from.
<br />
<br />
If you need a teacher for full-stack building apps, and maybe even
some no-code; Nelly is the one for you.
</p>
</div>
</div>
<!-- Michael Mirkovic -->
<div class="card">
<div class="card-body card_content">
<div class="reviewer">
<img
class="reviewer-img-thumbnail"
src="./resources/michael-mirk.jpeg"
alt="Michael Mirkovic profile picture"
/>
<h5 class="card-title">
<a
target="_blank"
rel="noopener noreferrer"
class="text-primary"
href="https://www.linkedin.com/in/michael-mirkovic/"
>Michael Mirkovic</a
>
</h5>
<p class="card-subtitle mb-2 fw-bold">
Now: Software Engineer @Amazon
</p>
<p class="card-subtitle mb-2 text-muted font-monospace">
Before: Technology Consulting Associate @PwC
</p>
</div>
<p class="card-text review-quote">
Having some knowledge in JS, html, and css didnt hurt me in
Nelly's class. Even if I knew the cirriculm I always walked away
learning one new thing. From breakpoints to just to little tricks
of the trade. Nelly was sure to engage everyone and teach
effectivly in a remote environment which is no small task. I would
highly recommend nelly as an instructor or just someone to work
with!
</p>
</div>
</div>
<!-- Kathy Le -->
<div class="card">
<div class="card-body card_content">
<div class="reviewer">
<img
class="reviewer-img-thumbnail"
src="./resources/kathy-le.jpeg"
alt="Kathy Le profile picture"
/>
<h5 class="card-title">
<a
target="_blank"
rel="noopener noreferrer"
class="text-primary"
href="https://www.linkedin.com/in/kathyle-dev/"
>Kathy Le</a
>