forked from Syknapse/Contribute-To-This-Project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1727 lines (1472 loc) · 98.3 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 name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="assets/style.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:400,700">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.5.2/animate.min.css">
<title>Contribute To This Project</title>
</head>
<body>
<header>
<!-- Night Mode Creation -->
<div class=nightmode>
<div class="toggle-box">
<input type="checkbox" name="checkbox1" id="toggle-box-checkbox" />
<label for="toggle-box-checkbox" class="toggle-box-label-left"></label>
<label for="toggle-box-checkbox" class="toggle-box-label"></label>
</div>
<script src='https://cdnjs.cloudflare.com/ajax/libs/jquery/2.2.2/jquery.min.js'></script>
<script src="js/script.js"></script>
</div>
<!-- Theme Change HTML Code -->
<button id="change-theme-btn">Theme Change</button>
<!-- Theme Change Code End-->
<h1>Contribute To This Project</h1>
<h2>A project for first-time contributions</h2>
<div class="description">
<p>This is a tutorial to help first-time contributors participate in a simple and easy project. Get more comfortable using GitHub and make your first open source contribution. It's quick and easy.</p>
<div class="twitter-button"><a href="https://twitter.com/share?ref_src=twsrc%5Etfw" class="twitter-share-button" data-size="large" data-text="Contribute To This Project. An easy project for first-time contributors, with a full tutorial." data-url="https://github.com/Syknapse/Contribute-To-This-Project" data-via="Syknapse" data-hashtags="100DaysOfCode" data-show-count="false" title="Tweet this project">Tweet</a>
<script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
</div>
<p>Number of contributions so far</p>
<div class="animated" id="contributions-number">0</div>
<p><strong>Add your own card to this site</strong></p>
<a class="button" href="https://github.com/Syknapse/Contribute-To-This-Project/blob/master/README.md" title="Go to project README - A step by step tutorial">How to contribute</a>
</div>
</header>
<!-- ============== The Contributor Card TEMPLATE you need to COPY is towards the end of this document ============== -->
<!-- ALL Contributors Cards -->
<div class="grid">
<!-- This is an EXAMPle card. Yours should be similar, but with your information -->
<!-- ________ Syk's card START ________ -->
<div class="card">
<p class="name">Syk Houdeib</p>
<p class="contact"><i class="fa fa-twitter"></i> <a href="https://twitter.com/Syknapse" target="_blank">@Syknapse</a></p>
<p class="about">I love staring at maps, dosing off to David Attenborough's documentaries, listening to 4'33'', and learning more web development everyday. I hate cows and straight lines.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li><a href="https://medium.freecodecamp.org/" target="_blank" title="Excellent articles every day">FreeCodeCamp Medium Publication</a></li>
<li><a href="https://www.smashingmagazine.com/2017/09/the-css-grid-challenge-join-in/#getting-started-with-css-grid" target="_blank" title="Smashing Magazine's awesome collection of CSS grid resources to get you started">Getting Started With CSS Grid</a></li>
<li><a href="http://100daysofcode.com/" target="_blank" title="A great challenge and community to keep you coding and motivated every day">#100DaysOfCode</a></li>
</ul>
</div>
</div>
<!-- ________ Syk's card END ________ -->
<!-- ________ Ferhan's card START ________ -->
<div class="card">
<p class="name">Ferhan</p>
<p class="contact"><i class="fa fa-twitter"></i> <a href="https://twitter.com/ibelieveinforce" target="_blank">@ibelieveinforce</a></p>
<p class="about">Programming makes things easier, teaches you persistence and helps you develop structured and creative thinking</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li><a href="https://www.codecademy.com/tracks/web" target="_blank" title="This is a link to an awesome resource"> CODEACADEMY HTML & CSS</a></li>
<li><a href="https://www.w3schools.com/js/" target="_blank" title="This is another link to web development tool I use a lot"> W 3 SCHOOLS JS </a></li>
<li><a href="https://www.w3schools.com/sql/default.asp" target="_blank" title="The third link to something useful for developers"> W 3 SCHOOLS SQL </a></li>
</ul>
</div>
</div>
<!-- ________ Ferhan's card END ________ -->
<!-- ________ Lucia's card START ________ -->
<div class="card">
<p class="name">Lucia</p>
<p class="contact"><i class="fa fa-twitter"></i> <a href="https://twitter.com/lucia_ojeda" target="_blank">@lucia_ojeda</a></p>
<p class="about">Lucia lives now in Valencia, finishing her Product Design studies. She is trying hard to learn new things everyday! Yaaay.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li><a href="http://jsforcats.com/" target="_blank" title="JavaScript for cats is an easy way to learn JS">JavaScript for cats</a></li>
<li><a href="https://books.producthunt.com/careers" target="_blank" title="Useful book by Product Hunt">Book: How to build a career in tech</a></li>
<li><a href="https://placeimg.com/" target="_blank" title="Random picture generator where you can choose the them">Placeimg</a></li>
</ul>
</div>
</div>
<!-- ________ Lucia's card END ________ -->
<!-- ________ Veniamin's card START ________ -->
<div class="card">
<p class="name">Veniamin Tsigourof</p>
<p class="contact"><i class="fa fa-free-code-camp"></i> <a href="https://www.freecodecamp.org/userrrfriendly" target="_blank">@UserrrFriendly</a></p>
<p class="about">I love making maps and I love coding, hopefully one day I will become a real developer and combine both of my passions by publishing interactive maps on the web.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li><a href="https://css-tricks.com/" target="_blank" title="Tons of cool stuff about CSS and front end development">css-tricks</a></li>
<li><a href="https://teamtreehouse.com/" target="_blank" title="One of the best places where you can learn pretty mutch everything web related...if you can afford 25$ per month, if not there is a 7day free trial, you'll be surprized how many things you can learn in a weak">treehouse</a></li>
<li><a href="http://getbootstrap.com/" target="_blank" title="If you like responsive design then bootrap is your friend">Bootstrap</a></li>
</ul>
</div>
</div>
<!-- ________ Veniamin's card END ________ -->
<!-- ________ Rakesh's card START ________ -->
<div class="card">
<p class="name">Rakesh Jadhav</p>
<p class="contact"><i class="fa fa-twitter"></i> <a href="https://twitter.com/Thisisfish1" target="_blank">@Thisisfish1</a></p>
<p class="about">I am a self-motivated programmer. Currently learning all the front-end web developing skills. Also I am enthusiast in ethical hacking. </p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li><a href="https://www.codeschool.com/" target="_blank" title="This is a link to an coderschool for learning online coding with some challenges">CODERSCHOOL is best way to learn new language</a></li>
<li><a href="https://www.freecodecamp.org/" target="_blank" title="This is another link to web development tool I use a lot">a website that is perfect for learning and practicing web development. </a></li>
<li><a href="https://codepen.io/#" target="_blank" title="The third link to a tool that is best for practicing front-end and back-end skills">I spend most of my time here for practicing what i learned. > codepen.io</a></li>
</ul>
</div>
</div>
<!-- ________ Rakesh's card END ________ -->
<!-- ________ Andrew's card START ________ -->
<div class="card">
<p class="name">Andrew Soback</p>
<p class="contact"><i class="fa fa-twitter"></i> <a href="https://twitter.com/andrew_soback" target="_blank">@andrew_soback</a></p>
<p class="about">I'm just getting started in the open source community, and so thankful that there are so many helpful people out there.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li><a href="https://automatetheboringstuff.com/" target="_blank" title="Automate the Boring stuff wesite">Automate the Boring stuff made me feel like I could create something, rather than just practice theory.</a></li>
<li><a href="http://matt.might.net/articles/what-cs-majors-should-know/" target="_blank" title="Discovered in the learnprogramming subreddit FAQs">Here's an post I'm using to help fill in the gaps of knowledge in my CS degree.</a></li>
<li><a href="https://trevtutor.com/discretemath/discretemath1/" target="_blank" title="Math Tutor">Tutor Trev on Youtube helped me understand math concepts I was struggling with.</a></li>
</ul>
</div>
</div>
<!-- ________ Andrew's card END ________ -->
<!-- ________ Elena's card START ________ -->
<div class="card">
<p class="name">Elena Moral</p>
<p class="contact"><i class="fa fa-twitter"></i> <a href="https://twitter.com/Elena_in_code" target="_blank">@Elena_in_code</a></p>
<p class="about">I am a cheese fan, pasionate about clouds, colors, shapes and movement. Currently studying front-end web development.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li><a href="https://javascript30.com/" target="_blank" title="Learn javascript building 30 things by Wes Bos">javascript30 by Wes Bos</a></li>
<li><a href="https://tympanus.net/codrops/" target="_blank" title="Useful resources and inspiration for creative minds">Codrops is a web design and development blog</a></li>
<li><a href="https://developer.mozilla.org" target="_blank" title="Resources for developers, by developers">MDN moz://a </a></li>
</ul>
</div>
</div>
<!-- ________ Elena's card END ________ -->
<!-- ________ Scruffy's card START ________ -->
<div class="card">
<p class="name">Scruffy Scruffington</p>
<p class="contact"><i class="fa fa-youtube"></i> <a href="https://www.youtube.com/channel/UCvqshXeG5ptCxXZ9pQdH2IA?view_as=public" target="_blank">Scruffy</a></p>
<p class="about">Hoping to start contributing to open source and make a career in web and software development.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li><a href="http://pythontutor.com/" target="_blank" title="Very useful tool for complicated code that lets you visualize how your variables change">pythontutor.com - code visualization</a></li>
<li><a href="https://www.edx.org/" target="_blank" title="Platform with lots of high quality computer science courses">edx.org - free online courses</a></li>
<li><a href="https://www.codewars.com" target="_blank" title="Site where you can solve lots of programming problems and compare your solutions with others">codewars.com - lots of coding problems</a></li>
</ul>
</div>
</div>
<!-- ________ Scruffy's card END ________ -->
<!-- ________ gipsi's card START ________ -->
<div class="card">
<p class="name">gipsi</p>
<p class="contact"><i class="fa fa-twitter"></i> <a href="https://twitter.com/gipsitana" target="_blank">@gipsitana</a></p>
<p class="about">
I'm a digital nomad. When I learnt to <b>View Source</b> it opened up a whole new world.
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li><a href="https://www.mozilla.org/en-US/firefox/channel/desktop/" target="_blank" title="This is a link to my favourite browser - Firefox Nightly">Firefox Nightly </a></li>
<li><a href="https://notepad-plus-plus.org/" target="_blank" title="This is another link to web development tool I use a lot - Notepad++">Notepad++</a></li>
<li><a href="https://www.getpaint.net/features.html" target="_blank" title="The third link to something useful for developers - paint.net">paint.net</a></li>
</ul>
</div>
</div>
<!-- ________ gipsi's card END ________ -->
<!-- ________ Jose's card START ________ -->
<div class="card">
<p class="name">José Torreblanca</p>
<p class="contact"><i class="fa fa-twitter"></i> <a href="https://twitter.com/josewhitetower" target="_blank">@josewhitetower</a></p>
<p class="about">Front-End Developer with a CS Degree and 5 years later wasn't able to add an event listener in JavaScript, 6 years later I nailed it :D. Don't talk bad about Beyoncé </p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li><a href="https://www.youtube.com/channel/UCW5YeuERMmlnqo4oq8vwUpg" target="_blank" title="Learn everything you need to become a Front End Developer for FREE">The Net Ninja Youtube Channel</a></li>
<li><a href="https://css-tricks.com/" target="_blank" title="Get tricks and code snippets of JavaScript and CSS">CSS-Tricks</a></li>
<li><a href="https://dev.to/" target="_blank" title="Get trending topics and discussions about development">The DEV Community</a></li>
</ul>
</div>
</div>
<!-- ________ Jose's card END ________ -->
<!-- ________ Cheryl's card START ________ -->
<div class="card">
<p class="name">Cheryl Velez</p>
<p class="contact"><i class="fa fa-twitter"></i> <a href="https://twitter.com/onegrumpybunny" target="_blank">@onegrumpybunny</a></p>
<p class="about">As a lifelong learner, I am self-taught through online courses, self-paced study and old-fashioned elbow grease. Nearly all of my programming knowledge comes from self-paced study. </p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li><a href="https://robots.thoughtbot.com/css-animation-for-beginners" target="_blank" title="CSS Animations for Beginners">CSS Animations for Beginners</a></li>
<li><a href="https://unsplash.com/" target="_blank" title="High-quality royalty-free images">Unsplash - High-Quality Royalty Free Photos</a></li>
<li><a href="https://tutorialzine.com/2013/04/50-amazing-jquery-plugins" target="_blank" title="50 Amazing jQuery plugins that you should start using right now">50 Amazing jQuery Plugins That You Should Start Using Right Now</a></li>
</ul>
</div>
</div>
<!-- ________ Cheryl's card END ________ -->
<!-- ________ NoHaxz2Win's card START ________ -->
<div class="card">
<p class="name">NoHaxz2Win</p>
<p class="contact"><i class="fa fa-twitter"></i> <a href="https://twitter.com/NoHaxz2Win" target="_blank">@NoHaxz2Win</a></p>
<p class="about">Coding is my life.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li><a href="https://atom.io/" target="_blank" title="Atom">Atom</a></li>
<li><a href="https://www.mozilla.org/en-US/firefox/developer/" target="_blank" title="Firefox Quantum: Developer Edition">Firefox Quantum: Developer Edition</a></li>
<li><a href="https://v3rmillion.net/" target="_blank" title="v3rmillion">v3rmillion</a></li>
</ul>
</div>
</div>
<!-- ________ NoHaxz2Win's card END ________ -->
<!-- ________ Paula's card START ________ -->
<div class="card">
<p class="name">Paula Cardoso</p>
<p class="contact"><i class="fa fa-github"></i> <a href="https://github.com/PaulaCardoso">@PaulaCardoso</a></p>
<p class="about">I'm Paula, a portuguese journalist and soon, I hope, a web developer...</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li><a href="https://developers.google.com/web/" target="_blank" title="Build next generation web experiences. ">Google Developers</a></li>
<li><a href="https://www.keycdn.com/blog/web-development-tools/" target="_blank" title="100+ Awesome Web Development Tools and Resources">Web dev Tools</a></li>
<li><a href="https://www.codewars.com/" target="_blank" title="Learn javascript trought everyday challenges">Codewars</a></li>
</ul>
</div>
</div>
<!-- ________ Paula's card END ________ -->
<!-- ________ Zien's card START ________ -->
<div class="card">
<p class="name">Zien Alhaoushe</p>
<p class="contact"><i class="fa fa-twitter"></i> <a href="https://twitter.com/alhaoushe_zien?lang=en" target="_blank">@alhaoushe_zien</a></p>
<p class="about">i love drawing, my favourite type of music Jazz & Blues,i think programming make us better and i have bad memmory...</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li><a href="https://www.freecodecamp.org" target="_blank" title="Free Code Camp">Free Code Camp</a></li>
<li><a href="https://www.youtube.com/user/OsamaElzero/playlists?pbjreload=10" target="_blank" title="Al-Zero web school">Al-Zero web school</a></li>
<li><a href="https://www.w3schools.com/" target="_blank" title="w3Schools">w3Schools</a></li>
</ul>
</div>
</div>
<!-- ________ Zien's card END ________ -->
<!-- ________ Enas's card START ________ -->
<div class="card">
<p class="name">Enas Samir</p>
<p class="contact"><i class="fa fa-envelope-o"></i> <a href="YOUR twitter account link" target="_blank">inass.helmy@gmail.com</a></p>
<p class="about">"I'm a self-learner who loves reading and coding, my dream is to success as a web developer"...</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li><a href="https://www.freecodecamp.org/" target="_blank" title="This is a link to an awesome resource">Free Code Camp</a></li>
<li><a href="https://www.codecademy.com/" target="_blank" title="This is another link to web development tool I use a lot">Code Academy</a></li>
<li><a href="https://www.udemy.com/the-web-developer-bootcamp/learn/v4/overview" target="_blank" title="The third link to something useful for developers">The web developer bootcamp by Udemy</a></li>
</ul>
</div>
</div>
<!-- ________ Enas's card END ________ -->
<!-- ________ Panagiotis' card START ________ -->
<div class="card">
<p class="name">Panagiotis Skarlas</p>
<p class="contact"><i class="fa fa-twitter"></i> <a href="https://twitter.com/qktweets" target="_blank">@qktweets</a></p>
<p class="about">I love books, cakes, food and I put my cereal before the milk in the bowl. Oh and I also love programming and want to be a professional web developer.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li><a href="http://100daysofcode.com/" target="_blank" title="100 Days Of Code">#100DaysOfCode</a></li>
<li><a href="https://github.com/getify/You-Dont-Know-JS" target="_blank" title="You don't know JavaScript on github">You Don't Know JavaScript on Github.</a></li>
<li><a href="https://javascript30.com" target="_blank" title="javascript30">Build 30 things in 30 days with JavaScript30</a></li>
</ul>
</div>
</div>
<!-- ________ Panagiotis' card END ________ -->
<!-- ________ Josep's card START ________ -->
<div class="card">
<p class="name">Josep</p>
<p class="contact"><i class="fa fa-twitter"></i> <a href="https://twitter.com/JosepLpez92" target="_blank">@JosepLpez92</a></p>
<p class="about">Self-taught front-end developer from Puerto Rico. Super passionate about Javascript and programming in general, father of two beautifull <i class="fa fa-heart" aria-hidden="true"></i> girls, currently learning about the MERN STACK.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li><a href="https://www.youtube.com/user/TechGuyWeb" target="_blank" title="Traversy Media">Brad Traversy <i class="fa fa-youtube-play" aria-hidden="true"></i> Channel</a></li>
<li><a href="https://www.freecodecamp.org/" target="_blank" title="Freecodecamp"><i class="fa fa-free-code-camp" aria-hidden="true"></i>FreeCodeCamp</a></li>
<li><a href="http://wesbos.com/courses/" target="_blank" title="Wes Bos">Wes Bos Courses</a></li>
</ul>
</div>
</div>
<!-- ________ Josep's card END ________ -->
<!-- ________ Valeria's card START ________ -->
<div class="card">
<p class="name">Valeria Nicoleta</p>
<p class="contact"><i class="fa fa-twitter"></i> <a href="https://twitter.com/valnicky?lang=es" target="_blank">@valnicky</a></p>
<p class="about">I am a front end developer and hope to improve my skills. I like skating, swimming, travelling and photography.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li><a href="https://codepen.io/valnicky/" target="_blank" title="This is a link to an awesome resource">Code Pen</a></li>
<li><a href="https://www.valeriacreativedesign.com/" target="_blank" title="This is another link to web development tool I use a lot">My website</a></li>
<li><a href="http://webphotography.weebly.com/" target="_blank" title="The third link to something useful for developers">Another website</a></li>
</ul>
</div>
</div>
<!-- ________ Valeria's card END ________ -->
<!-- ________ Iris's card START ________ -->
<div class="card">
<p class="name">Iris Riddell</p>
<p class="contact"><i class="fa fa-twitter"></i> <a href="https://twitter.com/Rissadelli" target="_blank">@rissadelli</a></p>
<p class="about">I'm an English teacher in Japan, living in Minamisoma, Fukushima. I trained as a journalist but recently discovered a voracious fascination for coding... so here I am! I like games, knitting, flat whites and naps.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li><a href="https://sabe.io/classes/javascript" target="_blank" title="Sabe">Sabe</a></li>
<li><a href="https://medium.com/frontendshortcut/make-hogwarts-admission-form-in-html-and-css-1cdc21165997" target="_blank" title="Fun Hogwarts exercise">Make an online Hogwarts signup form!</a></li>
<li><a href="https://www.youtube.com/channel/UC5CMtpogD_P3mOoeiDHD5eQ" target="_blank" title="Codecademy">Codecademy on YouTube</a></li>
</ul>
</div>
</div>
<!-- ________ Iris's card END ________ -->
<!-- ________ Eugenio's card START ________ -->
<div class="card">
<p class="name">Eugenio Pilastro Luca</p>
<p class="contact"><i class="fa fa-twitter"></i> <a href="https://twitter.com/Eu_P_L" target="_blank">@Eu_P_L</a></p>
<p class="about">I am a Marketing tecnician, self-taught computer technician and Web development enthusiast, I love coding and I'm learning front-end development. In my free time i like to read books and go hiking.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li><a href="https://www.udacity.com/" target="_blank" title="The place to learn coding">Udacity ❤</a></li>
<li><a href="https://developers.google.com/speed/pagespeed/insights/" target="_blank" title="Optimize your website">PageSpeed Insights</a></li>
<li><a href="http://yeoman.io/" target="_blank" title="Automate your workflow">Yeoman</a></li>
</ul>
</div>
</div>
<!-- ________ Eugenio's card END ________ -->
<!-- ________ Judit's card START ________ -->
<div class="card">
<p class="name">Judit Csizmadiáné Pacsai</p>
<p class="contact"><i class="fa fa-github" aria-hidden="true"></i> <a href="https://github.com/jpacsai" target="_blank">@jpacsai</a></p>
<p class="about">I'm an office administrator from Hungary living in the UK for 11 years now. Fallen head over heels in love with coding, determined to get a job in the Web Development field next year. I love cats, Pentatonix and movies with Robert Downey Jr. ☺ </p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li><a href="https://github.com/P1xt/p1xt-guides/blob/master/job-ready-javascript-edition-2.0.md#tier-0---prep" target="_blank" title="JavaScript course">Get Job Ready - JavaScript Edition v2.0</a></li>
<li><a href="https://www.youtube.com/watch?v=jgw82b5Y2MU&list=PL4cUxeGkcC9iGYgmEd2dm3zAKzyCGDtM5" target="_blank" title="CSS Animation video course">The Net Ninja - CSS Animations</a></li>
<li><a href="http://www.allitebooks.com/" target="_blank" title="IT book collection">All IT book collection</a></li>
</ul>
</div>
</div>
<!-- ________ Judit's card END ________ -->
<!-- ________ Aleksandra's card START ________ -->
<div class="card">
<p class="name">Aleksandra</p>
<p class="contact"><i class="fa fa-github"></i> <a href="https://github.com/aleksandrachmurka" target="_blank">@aleksandrachmurka</a></p>
<p class="about">Hello World :) I started to code few months ago, enjoy it a lot and hope to do it professionaly one day. My biggest dream is to change my energy and passion into things useful, helpful and last but not least, beautiful. </p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li><a href="https://www.codecademy.com/" target="_blank" title="This is a link to an awesome resource">Best place to start and fell in love with coding</a></li>
<li><a href="https://www.freecodecamp.org" target="_blank" title="This is another link to web development tool I use a lot">Consistent path to learn web development</a></li>
<li><a href="https://www.gitbook.com/book/djangogirls/djangogirls-tutorial/details" target="_blank" title="The third link to something useful for developers">Create and deploy your blog!</a></li>
</ul>
</div>
</div>
<!-- ________ Aleksandra's card END ________ -->
<!-- ________ Aashis's card START ________ -->
<div class="card">
<p class="name">Aashis</p>
<p class="contact"><i class="fa fa-twitter"></i> <a href="https://twitter.com/jeevan_nep" target="_blank">@jeevan_nep</a></p>
<p class="about">I am a student in Finland and starting my first job as a web developer from January. I want to be a Full-Stack Web Developer. I am interested in aviation, technology and programming.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li><a href="https://medium.com/@samerbuna/which-javascript-frameworks-should-you-learn-in-2018-ecea9a27617d" target="_blank" title="javascript frameworks">Which JavaScript frameworks should you learn in 2018?</a></li>
<li><a href="https://medium.freecodecamp.org/beginners-guide-to-react-router-4-8959ceb3ad58" target="_blank" title="react">Beginner’s Guide to React Router 4</a></li>
<li><a href="https://www.coursera.org/" target="_blank" title="coursera">Learn from Coursera</a></li>
</ul>
</div>
</div>
<!-- ________ Aashis's card END ________ -->
<!-- ________ Anwana's card START ________ -->
<div class="card">
<p class="name">Anwana Ntofon</p>
<p class="contact"><i class="fa fa-twitter"></i> <a href="https://twitter.com/antofonjr" target="_blank">@antofonjr</a></p>
<p class="about">I love coding because I enjoy bringing my ideas to life and sharing my experiences with other people.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li><a href="https://material.io/" target="_blank" title="This is a link to a resource about the Material Design system">Material Design</a></li>
<li><a href="https://www.youtube.com/channel/UCW5YeuERMmlnqo4oq8vwUpg/featured" target="_blank" title="This is another link to a YouTube channel about comprehensive web development videos">The Net Ninja YouTube Channel</a></li>
<li><a href="https://forum.freecodecamp.org/t/thanks-fcc-i-got-my-first-job-as-a-front-end-developer/151032" target="_blank" title="The third link to a success story for any developer who could use some inspiration">Success story on freeCodeCamp Forum page</a></li>
</ul>
</div>
</div>
<!-- ________ Anwana's card END ________ -->
<!-- ________ Jarrod's card START ________ -->
<div class="card">
<p class="name">Jarrod</p>
<p class="contact"><i class="fa fa-twitter"></i> <a href="https://twitter.com/jarrodyellets" target="_blank">@jarrodyellets</a></p>
<p class="about">I am a front-end developer living in Brussels, Belgium. I love everything about code...the way it makes you think, what you can create with it, and how it can improve our lives. Besides coding, I enjoy running, boxing, and chasing my dog, Padme.
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li><a href="https://freecodecamp.org" target="_blank" title="This is a link to an awesome resource">freeCodeCamp...amazing resource for all of your coding needs.</a></li>
<li><a href="https://geddski.teachable.com/p/flexbox-zombies" target="_blank" title="This is another link to web development tool I use a lot">Master CSS Flexbox with Flexbox Zombies</a></li>
<li><a href="https://blog.kentcdodds.com/learn-react-fundamentals-and-advanced-patterns-eac90341c9db" target="_blank" title="The third link to something useful for developers">Learn React for free!</a></li>
</ul>
</div>
</div>
<!-- ________ Jarrod's card END ________ -->
<!-- ________ Chris's card START ________ -->
<div class="card">
<p class="name">Chris Zintzovas</p>
<p class="contact"><i class="fa fa-twitter"></i> <a href="https://twitter.com/ChristosZin" target="_blank">@ChristosZin</a></p>
<p class="about"> Hi! I'm Chris. I 've studied mathematics and now I'm having my first steps in web developing </p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li><a href="https://www.w3schools.com/html/" target="_blank" title="Usefull tutorial for HTML">w3schools</a></li>
<li><a href="https://api.jquery.com/" target="_blank" title="Documentation for jQuery">jquery Documentation</a></li>
<li><a href="https://hackernoon.com/learn-to-code-in-2018-get-hired-and-have-fun-along-the-way-b338247eed6a" target="_blank" title="Nice article">learn-to-code-in-2018</a></li>
</ul>
</div>
</div>
<!-- ________ Chris's card END ________ -->
<!-- ________ Melinda's card START ________ -->
<div class="card">
<p class="name">Melinda</p>
<p class="contact"><i class="fa fa-twitter"></i> <a href="https://twitter.com/MelsMel2" target="_blank">@MelsMel2</a></p>
<p class="about">My goal is to become a succesful front-end developer,to learn a lot of new things about coding.Dive in to Javascript .... .</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li><a href="https://medium.com/level-up-web/the-mega-html5-cheatsheet-e8c479b1c521" target="_blank" title="Mega HTML 5 cheat sheet">Mega HTML 5 cheat sheet</a></li>
<li><a href="https://github.com/bmorelli25/Become-A-Full-Stack-Web-Developer/" target="_blank" title="All what you need to become a full stack web developer">All what you need to become a full stack web developer</a></li>
<li><a href="https://medium.freecodecamp.org/my-journey-to-becoming-a-web-developer-from-scratch-without-a-cs-degree-2-years-later-and-what-i-4a7fd2ff5503" target="_blank" title="Inspiring story,how to become a developer without a fancy degree">Inspiring story,how to become a developer without a fancy degree</a></li>
</ul>
</div>
</div>
<!-- ________ Melinda's card END ________ -->
<!-- ________ Dimitra's card START ________ -->
<div class="card">
<p class="name">Dimitra Karamperi</p>
<p class="contact"><i class="fa fa-twitter"></i> <a href="https://twitter.com/dimitra_k" target="_blank">@dimitra_k</a></p>
<p class="about">I have studied Physics and Economics, and I work as a freelance translator; I am learning programming while trying to implement some side projects.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li><a href="https://freecodecamp.org" target="_blank" title="This is an awesome resource">freeCodeCamp</a></li>
<li><a href="http://py3.codeskulptor.org/" target="_blank" title="CodeSkulptor runs Python 3 programs step-by-step in your browser. Very useful!">CodeSkulptor</a></li>
<li><a href="https://dash.generalassemb.ly/" target="_blank" title="Learn to code awesome websites in HTML, CSS, and JavaScript">Dash</a></li>
</ul>
</div>
</div>
<!-- ________ Dimitra's card END ________ -->
<!-- ________ Maria's card START ________ -->
<div class="card">
<p class="name">Maria Mich</p>
<p class="contact"><i class="fa fa-twitter"></i> <a href="https://twitter.com/MariaMich98?lang=en" target="_blank">@MariaMich98</a></p>
<p class="about">I am an automation undergraduate with a passion for programming!!!</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li><a href="https://unity3d.com/learn" target="_blank" title="For Game Development with C++">For Game Development with C++</a></li>
<li><a href="https://www.sololearn.com/" target="_blank" title="A good app/website to learn for begginers">A good app/website to learn for begginers</a></li>
<li><a href="https://learncodethehardway.org/" target="_blank" title="For learning code the hard way!">For learning code the hard way!</a></li>
</ul>
</div>
</div>
<!-- ________ Maria's card END ________ -->
<!-- ________ Contributor's card START ________ -->
<div class="card">
<p class="name">Andreas Vasilatos</p>
<p class="contact"><i class="fa fa-twitter"></i> <a href="https://twitter.com/an_drew84?lang=en" target="_blank">@an_drew84</a></p>
<p class="about">I am a problem solver by nature. I love coding because it allows me to incorporate tools and methods to tackle difficult challenges and make my workflow better.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li><a href="https://developer.mozilla.org/en-US/" target="_blank" title="This is a link to an awesome resource">MDN web docs</a></li>
<li><a href="https://codepen.io/" target="_blank" title="This is another link to web development tool I use a lot">Codepen</a></li>
<li><a href="https://stackoverflow.com/" target="_blank" title="The third link to something useful for developers">Stack Overflow</a></li>
</ul>
</div>
</div>
<!-- ________ Contributor's card END ________ -->
<!-- ________ Daniella's card START ________ -->
<div class="card">
<p class="name">Daniella Mato</p>
<p class="contact"><i class="fa fa-twitter"></i> <a href="https://twitter.com/daniella_mato" target="_blank">@daniella_mato</a></p>
<p class="about">Minimalist. Lover of nature, coding, hiking, adventures and books! My aspiration for 2018 is to become a JavaScript witch :) . </p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li><a href="https://developer.mozilla.org/en-US/" target="_blank" title="Nothing beats Documentation">MDN Web Docs</a></li>
<li><a href="https://www.tutorialspoint.com/index.htm" target="_blank" title="Thorough tutorials on almost every dev topic">Resource for thorough tutorials on any dev topic out there</a></li>
<li><a href="https://scotch.io/tutorials" target="_blank" title="A tutorial haven">A tutorial haven, and who knows? Someday you might write for them.</a></li>
</ul>
</div>
</div>
<!-- ________ Daniella's card END ________ -->
<!-- ________ McDaniels' card START ________ -->
<div class="card">
<p class="name">McDaniels Okoro</p>
<p class="contact">
<i class="fa fa-twitter"></i>
<a href="http://www.twitter.com/acodeaholic" target="_blank">@acodeaholic</a>
</p>
<p class="about">I am a codeaholic, which means I love to code. Few years ago, I was allergic to coding, but now I aim to become a Fullstack Developer. I love to code, because I intend to save the world one code at a time ;) My pet name is Jukels. Don't ask what it means, because even I don't know :P</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://learn.fullstackacademy.com" target="_blank" title="Become a Fullstack developer">Become a Millionaire with Fullstack Academy</a>
</li>
<li>
<a href="https://classroom.udacity.com" target="_blank" title="Learn to become a better developer">Be Yourself in Udacity Classroom</a>
</li>
<li>
<a href="https://github.com" target="_blank" title="Contribute to any open source project">Open Source with GitHub</a>
</li>
</ul>
</div>
</div>
<!-- ________ McDaniels' card END ________ -->
<!-- ________ Nate's card START ________ -->
<div class="card">
<p class="name">Nate Jonah</p>
<p class="contact"><i class="fa fa-twitter"></i> <a href="https://twitter.com/natejonah" target="_blank">@natejonah</a></p>
<p class="about">I've been learning to code for a while now and I've loved it! I can't wait to get my first developer job so I can do what I love every single day and make a living from it!</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li><a href="http://eloquentjavascript.net/" target="_blank" title="Become a JavaScript ninja with this excellent book!">Eloquent JavaScript</a></li>
<li><a href="http://html5doctor.com/" target="_blank" title="Everything you need to know about HTML5!">HTML5 Doctor</a></li>
<li><a href="https://www.codenewbie.org/" target="_blank" title="A podcast for code newbies!">CodeNewbie</a></li>
</ul>
</div>
</div>
<!-- ________ Contributor's card END ________ -->
<!-- ________ Brener's card START ________ -->
<div class="card">
<p class="name">Dave Brener</p>
<p class="contact"><i class="fa fa-twitter"></i> <a href="http://www.twitter.com/davebrener" target="_blank">@davebrener</a></p>
<p class="about">Front-End Dev with <a href="http://www.ephyragroup.com" target="_blank">Ephyra Group</a>. Comic Book fanboy. Lover of Heavy Metal.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li><a href="https://gridbyexample.com/examples/" target="_blank" title="Learn CSS Grid">Awesome resource for CSS Grid Layout</a></li>
<li><a href="https://pinegrow.com/" target="_blank" title="Introduction to Pinegrow Web Editor">Pinegrow Web Editor</a></li>
<li><a href="http://wesbos.com/" target="_blank" title="Wes Bos in the house">Wes Bos shows you how to do Web things!</a></li>
</ul>
</div>
</div>
<!-- ________ Brener's card END ________ -->
<!-- ________ Contributor's card START ________ -->
<div class="card">
<p class="name">Ania Mierzwinska</p>
<p class="contact"><i class="fa fa-github"></i> <a href="https://github.com/vilanelle/" target="_blank">@vilanelle</a></p>
<p class="about">Aspiring web developer and JavaScript enthusiast, professionally a translator/editor who has discovered that programming languages are even more fun than natural ones.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li><a href="https://www.freecodecamp.org/" target="_blank" title="FreeCodeCamp">The one and only bootcamp FreeCodeCamp</a></li>
<li><a href="https://www.edx.org/course/introduction-computer-science-harvardx-cs50x" target="_blank" title="CS50">The amazing David Malan's CS50</a></li>
<li><a href="https://www.codewars.com/" target="_blank" title="CodeWars">The fantastic CodeWars</a></li>
</ul>
</div>
</div>
<!-- ________ Contributor's card END ________ -->
<!-- ________ Asha's card START ________ -->
<div class="card">
<p class="name">Asha</p>
<p class="contact"><i class="fa fa-twitter"></i> <a href="https://twitter.com/ashaaweb" target="_blank">@ashaaweb</a></p>
<p class="about">I feel happy whenever I am coding, the small victories boost up my spirits, the frustrations make me strive hard. </p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li><a href="https://medium.freecodecamp.org/join-the-100daysofcode-556ddb4579e4" target="_blank" title="100DaysOfCode">Join #100daysofcode</a></li>
<li><a href="https://medium.freecodecamp.org/how-to-think-like-a-programmer-3ae955d414cd" target="_blank" title="Thinklikeprogrammer">How to think like a Programmer</a></li>
<li><a href="https://javascript30.com/" target="_blank" title="JS30">JS30</a></li>
</ul>
</div>
</div>
<!-- ________ Asha's card END ________ -->
<!-- ________ Veronika T's card START ________ -->
<div class="card">
<p class="name">Veronika T</p>
<p class="contact"><i class="fa fa-twitter"></i> <a href="https://twitter.com/ver_kat" target="_blank">@ver_kat</a></p>
<p class="about">I want to write a sit-com, but programming is easier. Plus, hanging out with programmers is often hilarious.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li><a href="https://codecraft.tv/courses/" target="_blank" title="Courses by Asim Hussain">Angular and JavaScript Courses</a></li>
<li><a href="http://www.lynda.com/resources/hexpalette/hue.html" target="_blank" title="Non-Dithering Colors by Hue at Lynda.com">Non-Dithering Colors by Hue</a></li>
<li><a href="https://channel9.msdn.com/Events/DEVintersection/DEVintersection-2017-Las-Vegas/GB008" target="_blank" title="Video of Jeremy Foster talking about VSCode">Using VS Code Like a Boss!</a></li>
</ul>
</div>
</div>
<!-- ________ Veronika T's card END ________ -->
<!-- ________ Bhavik Joshi's card START ________ -->
<div class="card">
<p class="name">Bhavik Joshi</p>
<p class="contact"><i class="fa fa-twitter"></i> <a href="https://twitter.com/theBhavikJoshi" target="_blank">@theBhavikJoshi</a></p>
<p class="contact"><i class="fa fa-codepen"></i> <a href="https://codepen.io/theBhavikJoshi/" target="_blank">Bhavik Joshi on Codepen</a></p>
<p class="contact"><i class="fa fa-github"></i> <a href="https://github.com/theBhavikJoshi/" target="_blank">Bhavik Joshi on Github</a></p>
<p class="about">I'm Bhavik Joshi, A Full Stack Web Developer from India. I love everything that has to do with Web Development, be it developing responsive front end websites or writing efficient code for the back end logic of a website/web app.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li><a href="http://wesbos.com/" target="_blank" title="Wes Bos, the guy who makes awesome Web Dev Tutorials.">Wes Bos</a></li>
<li><a href="https://uigradients.com/" target="_blank" title="Good Website to select a Gradient">UI Gradients</a></li>
<li><a href="http://heroku.com" target="_blank" title="Heroku! A great way to deploy your apps!">Heroku</a></li>
</ul>
</div>
</div>
<!-- ________ Bhavik Joshi's card END ________ -->
<!-- ________ Eduardo Ramirez's card START ________ -->
<div class="card">
<p class="name">Eduardo Ramirez</p>
<p class="contact"><i class="fa fa-twitter"></i> <a href="https://twitter.com/edramir18" target="_blank">@edramir18</a></p>
<p class="contact"><i class="fa fa-github"></i> <a href="https://github.com/edramir18" target="_blank">edramir18 on Github</a></p>
<p class="about">Self-teaching person, i enjoy to code and learning something new every day. I love watch movies and anime, sometimes i watch korean dramas with my wife. Right now on the journey of the challenge #100DaysofCode for first time.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li><a href="https://www.learnenough.com/git-tutorial" target="_blank" title="Learn Enough Git to Be Dangerous">Git Tutorial</a></li>
<li><a href="https://explainshell.com/" target="_blank" title="Awesome resource to learn linux command line">Explain Shell</a></li>
<li><a href="https://css-tricks.com" target="_blank" title="Excellent source to learn CSS">CSS-Tricks</a></li>
</ul>
</div>
</div>
<!-- ________ Edramir's card END ________ -->
<!-- ________ Ada's card START ________ -->
<div class="card">
<p class="name">Ada Nduka Oyom</p>
<p class="contact"><i class="fa fa-twitter"></i> <a href="www.twitter.com/kolokodess" target="_blank">@kolokodess</a></p>
<p class="about">A microbiologist turned Web developer and Community relations manager. I enjoy doing some critical thinking through code and also love to getting involved in matters bordered around women in tech. Asides this all, i enjoy listening to music!</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li><a href="www.freecodecap.org" target="_blank" title="Freecodecamp">Freecodecamp.com</a></li>
<li><a href="www.codecademy.com" target="_blank" title="Codecademy">Codecademy</a></li>
<li><a href="www.udacity.com" target="_blank" title="Udacity">Udacity</a></li>
</ul>
</div>
</div>
<!-- ________ Ada's card END ________ -->
<!-- ________ Mauro's card START ________ -->
<div class="card">
<p class="name">Mauro Bono</p>
<p class="contact">
<i class="fa fa-twitter"></i>
<a href="https://twitter.com/UpTheIrons1978" target="_blank">@UpTheIrons1978</a>
</p>
<p class="about">I'm learning to code because I really like it and want to change my work. I got my Front End Certification from FreeCodeCamp on September 2017. Now I'm working on Node, Express and Git</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.freecodecamp.org/" target="_blank" title="FreeCodeCamp">FreeCodeCamp</a>
</li>
<li>
<a href="http://wesbos.com/" target="_blank" title="Wes Bos, the guy who makes awesome Web Dev Tutorials.">Wes Bos</a>
</li>
<li>
<a href="https://developer.mozilla.org" target="_blank" title="Resources for developers, by developers">Mozilla Developers Network</a>
</li>
</ul>
</div>
</div>
<!-- ________ Mauro's card END ________ -->
<!-- ________ Haitham AbeElRady's card START ________ -->
<div class="card">
<p class="name">Haitham AbdElRady</p>
<p class="contact">
<i class="fa fa-twitter"></i>
<a href="YOUR twitter account link" target="_blank">@haitham_best</a>
</p>
<p class="about">I'm a software developer search for inspiring things, search for front end developer job with an awesome team, search for myself!.
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.freecodecamp.org/" target="_blank" title="Free Code camp">Free Code Camp</a>
</li>
<li>
<a href="https://github.com/FrontendMasters/front-end-handbook-2017" target="_blank" title="This book is important for all front end developers on the planet">Front-end developer handbook</a>
</li>
<li>
<a href="https://developer.mozilla.org" target="_blank" title="MDN">Mozilla Developer network</a>
</li>
</ul>
</div>
</div>
<!-- ________ Contributor's card END ________ -->
<!-- ________ James's card START ________ -->
<div class="card">
<p class="name">James Gower</p>
<p class="contact"><i class="fa fa-twitter"></i> <a href="http://www.twitter.com/__gower" target="_blank">@__gower</a></p>
<p class="about">Studied Java and object-oriented programming during my HNC in Computing course, loved it so continued learning JavaScript libraries such as React and Angular through Udemy - Long may the learning continue!</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li><a href="https://www.udemy.com/" target="_blank" title="Udemy has indepth courses for all programming languages!">Udemy</a></li>
<li><a href="https://stackoverflow.com/" target="_blank" title="Where would any developer be without Stack Overflow?">Stack Overflow</a></li>
<li><a href="https://www.hackerrank.com/dashboard" target="_blank" title="Coding challenges for all abilities">HackerRank</a></li>
</ul>
</div>
</div>
<!-- ________ James's card END ________ -->
<!-- ________ Kiur's card START ________ -->
<div class="card">
<p class="name">Kiur</p>
<p class="contact">
<i class="fa fa-github"></i>
<a href="https://github.com/77ccreed" target="_blank">77ccreed on Github</a>
</p>
<p class="about">I learn to code maybe 10 months now. This seems all very interesting and I learn a lot. First steps are always hard.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.youtube.com/watch?v=ZUHyZHwZtUY&index=7&list=PLFjq8z-aGyQ49hmlhMZgYAoXb3NBiee4R" target="_blank" title=" Discovering JavaScript by Dr. Venkat Subramaniam">Discovering JavaScript</a>
</li>
<li>
<a href="https://www.youtube.com/watch?v=ilRnq7BBWGY&index=2&list=PLFjq8z-aGyQ49hmlhMZgYAoXb3NBiee4R" target="_blank" title="Jafar Husain is Netflix's Cross-Team Technical Lead">The Future Of ES6</a>
</li>
<li>
<a href="https://www.youtube.com/watch?v=BDqZLfBFeGk&index=11&list=PLFjq8z-aGyQ49hmlhMZgYAoXb3NBiee4R" target="_blank" title="Wes Bos: How To Write Syncronous Looking Code, Without The Wait">ASYNC + AWAIT</a>
</li>
</ul>
</div>
</div>
<!-- ________ Kuir's card END ________ -->
<!-- ________ Cam's card START ________ -->
<div class="card">
<p class="name">Cam Utz</p>
<p class="contact"><i class="fa fa-twitter"></i> <a href="https://twitter.com/Dragon8029" target="_blank">@Dragon8029</a></p>
<p class="about">Learning to code for fun and to make a possible carreer change in the future.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li><a href="https://www.freecodecamp.org" target="_blank" title="Free Code Camp website">Free Code Camp</a></li>
<li><a href="https://codecollege.ca" target="_blank" title="Code College website">Code College</a></li>
<li><a href="http://www.100daysofcode.com/" target="_blank" title="#100DaysOfCode website">#100DaysOfCode</a></li>
</ul>
</div>
</div>
<!-- ________ Cam's card END ________ -->
<!-- ________ Contributor's card START ________ -->
<div class="card">
<p class="name">Benjamin Koppe</p>
<p class="contact"><i class="fa fa-twitter"></i> <a href="https://twitter.com/tonkllr" target="_blank">@tonkllr</a></p>
<p class="about">Sooner or later programming will be a cultural technique like reading and writing. Till then, it's a fun thing to do. What else lets you create so much with so low costs?</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li><a href="http://www.firsttimersonly.com/" target="_blank" title="Contributing to Open Source Software for the first time">First Timers Only</a></li>
<li><a href="https://www.eclipse.org/home/index.php" target="_blank" title="Eclipse IDE for Java and more">Eclipse</a></li>
<li><a href="https://www.docker.com/" target="_blank" title="Docker to deploy your projects in containers">Docker</a></li>
</ul>
</div>
</div>
<!-- ________ Contributor's card END ________ -->
<!-- ________ Brent's card START ________ -->
<div class="card">
<p class="name">Brent Leavitt</p>
<p class="contact"><i class="fa fa-twitter"></i> <a href="https://twitter.com/SunSwingMedia" target="_blank">@SunSwingMedia</a></p>
<p class="about">An uncurable dreamer / entrepreneuer who hopes for the best in the world, and tries as hard as he can to do good to those around him. I've spent the last five years helping my wife build a business for training doulas online.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li><a href="https://www.freecodecamp.org" target="_blank" title="Free Coding Classes Online">Free Code Camp</a></li>
<li><a href="https://wordpress.org/" target="_blank" title="WordPress - Open Source CMS/Blogging Software">WordPress.org</a></li>
<li><a href="https://wordpress.stackexchange.com/" target="_blank" title="WordPress StackExchange">WordPress Support on StackExchange</a></li>
</ul>
</div>
</div>
<!-- ________ Brent's card END ________ -->
<!-- ________ Jay's card START ________ -->
<div class="card">
<p class="name">Jay</p>
<p class="contact"><i class="fa fa-twitter"></i> <a href="https://twitter.com/mrjaypeasmith" target="_blank">@mrjaypeasmith</a></p>
<p class="about">Enthusiastic beginner / Aspiring Junior Dev (for life). I am learning to code to solve problems I encounter and to stay relevant in an increasingly digital world. Coding is the 4th literacy. I'd m going to build something really special!</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li><a href="https://www.freecodecamp.org" target="_blank" title="freeCodeCamp">freeCodeCamp</a></li>
<li><a href="https://www.youtube.com/user/TechGuyWeb" target="_blank" title="Traversy Media">Traversy Media</a></li>
<li><a href="http://frontendhappyhour.com" target="_blank" title="Front End Happy Hour">Front End Happy Hour</a></li>
</ul>
</div>
</div>
<!-- ________ Jay's card END ________ never give up -->
<!-- ________ Thomas's card START ________ -->
<div class="card">
<p class="name">Thomas Zegos</p>
<p class="contact"><i class="fa fa-facebook"></i> <a href="https://www.facebook.com/thomas.zegos" target="_blank">Facebook</a></p>
<p class="contact"><i class="fa fa-github"></i> <a href="https://github.com/thomaSzegoS" target="_blank">GitHub</a></p>
<p class="about">I 'm a student with passion for learning. Programming is something inside of me that needs to be expressed. Like a mucisian thinks of music. Lastly, my dream is to become master in Web Development. </p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li><a href="https://www.youtube.com/user/Unboxholics" target="_blank" title="Youtube_Unboxolics">Unboxolics</a></li>
<li><a href="https://atom.io/" target="_blank" title="Atom_Text_Editor">Atom Editor</a></li>
<li><a href="https://www.canva.com/learn/design-rules/" target="_blank" title="Rules_You_Should_Never_Break">Design Rules</a></li>
</ul>
</div>
</div>
<!-- ________ Thomas's card END ________ -->
<!-- ________ Maira's card START ________ -->
<div class="card">
<p class="name">Maíra Martins K</p>
<p class="contact"><i class="fa fa-twitter"></i> <a href="https://twitter.com/mairamartinsk" target="_blank">@mairamartinsk</a></p>
<p class="contact"><i class="fa fa-github"></i> <a href="https://github.com/mairamartinsk" target="_blank">GitHub</a></p>
<p class="about">Brazilian/Swedish living in Barcelona. Programmer in the making. Photographer. Likes dogs, cats, pizza, comics, computers and everything in between.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li><a href="https://www.reddit.com/r/learnprogramming/" target="_blank" title="Learn Programming on Reddit">/r/learnprogramming</a></li>
<li><a href="https://atom.io" target="_blank" title="Atom Text Editor">Atom Text Editor</a></li>
<li><a href="http://freecodecamp.org" target="_blank" title="freeCodeCamp">freeCodeCamp</a></li>
</ul>
</div>
</div>
<!-- ________ Maira's card END ________ -->
<!-- ________ Austin's card START ________ -->
<div class="card">
<p class="name">Austin Jess</p>