-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
1598 lines (700 loc) · 94.3 KB
/
index.html
File metadata and controls
1598 lines (700 loc) · 94.3 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>
<head>
<title>Front End Developer Guide</title>
<meta charset="UTF-8">
<meta name="description" content="A detailed list of resources to learn more about Front End Development." />
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" href="css/style.css" type="text/css" media="screen">
<!--[if IE]>
<script src="http://coderesponsible.com/wp-content/themes/cr-2013/js/html5.js"></script>
<![endif]-->
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-35062160-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</head>
<body>
<header>
<div class="row">
<h1>Front End Developer Guide</h1>
<p>A detailed list of resources to learn more about Front End Development.</p>
<a href="https://github.com/ryanburgess/front-end-developer-guide"><img style="position: absolute; top: 0; right: 0; border: 0;" src="https://camo.githubusercontent.com/38ef81f8aca64bb9a64448d0d70f1308ef5341ab/68747470733a2f2f73332e616d617a6f6e6177732e636f6d2f6769746875622f726962626f6e732f666f726b6d655f72696768745f6461726b626c75655f3132313632312e706e67" alt="Fork me on GitHub" data-canonical-src="https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png"></a>
</div>
</header><section id="content">
<ul class="items">
<li>
<div class="row">
<h2>General Web Theory</h2>
<p></p>
<div class="block">
<h3>Articles</h3>
<ul class="articles">
<li><a href="http://alistapart.com/article/responsive-web-design">Responsive Web Design</a></li>
<li><a href="http://alistapart.com/article/responsive-web-design">Web Field Manual</a></li>
<li><a href="http://24ways.org/2011/front-end-style-guides/">Front-end Style Guides</a></li>
<li><a href="http://frontendbabel.info/articles/webpage-rendering-101/">What Every Frontend Developer Should Know About Webpage Rendering</a></li>
</ul>
</div>
</div>
</li>
<li>
<div class="row">
<h2>HTML</h2>
<p>HTML or HyperText Markup Language is the standard markup language used to create web pages.</p>
<div class="block">
<h3>Articles</h3>
<ul class="articles">
<li><a href="http://diveintohtml5.info/">Dive into HTML5</a></li>
</ul>
</div>
</div>
</li>
<li>
<div class="row">
<h2>JavaScript</h2>
<p>JavaScript (JS) is a dynamic computer programming language. It is most commonly used as part of web browsers, whose implementations allow client-side scripts to interact with the user, control the browser, communicate asynchronously, and alter the document content that is displayed. It is also being used in server-side network programming (with Node.js), game development and the creation of desktop and mobile applications.</p>
<div class="block">
<h3>Articles</h3>
<ul class="articles">
<li><a href="http://jstherightway.org/">JavaScript the right way</a></li>
<li><a href="http://blog.ponyfoo.com/2013/07/09/getting-over-jquery">Getting Over jQuery</a></li>
<li><a href="http://youmightnotneedjquery.com/">You Might Not Need jQuery</a></li>
<li><a href="http://blog.adtile.me/2014/01/16/a-dive-into-plain-javascript/">A Dive Into Plain JavaScript</a></li>
<li><a href="http://robotlolita.github.io/2011/10/09/understanding-javascript-oop.html">Understanding JavaScript OOP</a></li>
<li><a href="http://www.kirupa.com/html5/a_deeper_look_at_objects_in_javascript.htm">A Deeper Look at Objects in JavaScript</a></li>
<li><a href="https://alexsexton.com/blog/2013/03/deploying-javascript-applications/">Deploying JavaScript Applications</a></li>
<li><a href="http://www.laktek.com/2012/12/29/revisiting-javascript-objects/">Revisiting JavaScript Objects</a></li>
<li><a href="http://addyosmani.com/resources/essentialjsdesignpatterns/book/#factorypatternjavascript">Learning JavaScript Design Patterns</a></li>
<li><a href="http://coding.smashingmagazine.com/2012/07/27/journey-through-the-javascript-mvc-jungle/">Journey Through The JavaScript MVC Jungle</a></li>
<li><a href="http://code.tutsplus.com/tutorials/best-practices-when-working-with-javascript-templates--net-28364">Best Practices When Working With JavaScript Templates</a></li>
<li><a href="http://www.2ality.com/2012/10/javascript-properties.html">Object properties in JavaScript</a></li>
<li><a href="http://bonsaiden.github.io/JavaScript-Garden/">JavaScript Garden</a></li>
<li><a href="https://leanpub.com/javascript-allonge">JavaScript Allonge</a></li>
<li><a href="http://www.codecademy.com/tracks/javascript">Codecademy Self-Paced JavaScript Course</a></li>
<li><a href="http://speakingjs.com/es5/index.html">Speaking JavaScript</a></li>
<li><a href="http://www.html5rocks.com/en/tutorials/developertools/async-call-stack/">Debugging Asynchronous JavaScript with Chrome DevTools</a></li>
<li><a href="http://todomvc.com/">Choosing a JS Framework</a></li>
<li><a href="https://www.igvita.com/2014/05/20/script-injected-async-scripts-considered-harmful/">Script-injected 'async scripts' considered harmful</a></li>
<li><a href="https://developer.chrome.com/devtools/docs/javascript-memory-profiling">JavaScript Memory Leak Profiling</a></li>
<li><a href="https://www.igvita.com/2014/05/20/script-injected-async-scripts-considered-harmful/">Script-injected 'async scripts' considered harmful</a></li>
<li><a href="https://leanpub.com/javascript-allonge/read">JavaScript Allongé</a></li>
</ul>
</div>
<div class="block">
<h3>Videos</h3>
<ul class="articles">
<li><a href="https://www.youtube.com/watch?v=f7AU2Ozu8eo" class="modal">Paul Irish – Javascript Development Workflow for 2013</a></li>
<li><a href="https://www.youtube.com/watch?v=90NsjKvz9Ns" class="modal">Mark DiMarco: User Interface Algorithms</a></li>
<li><a href="https://www.youtube.com/watch?v=lm4jEcnWeKI" class="modal">Neil Green: Writing Custom DSLs</a></li>
</ul>
</div>
</div>
</li>
<li>
<div class="row">
<h2>Frameworks</h2>
<p>A JavaScript framework is a library of pre-written JavaScript which allows for easier development of JavaScript-based applications, especially for AJAX and other web-centric technologies.</p>
</div>
<div class="row">
<ul class="item-list">
<li>
<h4><a href="http://jquery.com/">JQuery</a></h4>
<p>jQuery is a fast, small, and feature-rich JavaScript library. It makes things like HTML document traversal and manipulation, event handling, animation, and Ajax much simpler with an easy-to-use API that works across a multitude of browsers. With a combination of versatility and extensibility, jQuery has changed the way that millions of people write JavaScript.</p>
<h5>Articles</h5>
<ul class="item-articles">
<li><a href="http://jqfundamentals.com/">JQuery Fundimentals</a></li>
<li><a href="http://www.websanova.com/blog/jquery/the-ultimate-guide-to-writing-jquery-plugins">The Ultimate Guide to Writing jQuery Plugins</a></li>
</ul>
</li>
<li>
<h4><a href="https://angularjs.org/">AngularJS</a></h4>
<p>HTML is great for declaring static documents, but it falters when we try to use it for declaring dynamic views in web-applications. AngularJS lets you extend HTML vocabulary for your application. The resulting environment is extraordinarily expressive, readable, and quick to develop.</p>
<h5>Articles</h5>
<ul class="item-articles">
<li><a href="http://www.ng-newsletter.com/posts/how-to-learn-angular.html">How to Learn AngularJS - Your AngularJS Sherpa</a></li>
<li><a href="http://code.tutsplus.com/tutorials/building-a-web-app-from-scratch-in-angularjs--net-32944">Building a Web App From Scratch in AngularJS</a></li>
<li><a href="http://www.thinkster.io/angularjs/GUIDJbpIie/angularjs-tutorial-learn-to-build-modern-web-apps">AngularJS Tutorial: Learn to Build Modern Web Apps</a></li>
<li><a href="https://github.com/jmcunningham/AngularJS-Learning">AngularJS-Learning</a></li>
</ul>
</li>
<li>
<h4><a href="http://emberjs.com/">EmberJS</a></h4>
<p>Ember.js incorporates common idioms so you can focus on what makes your app special, not reinventing the wheel. Ember.js is built for productivity.</p>
<h5>Articles</h5>
<ul class="item-articles">
<li><a href="http://coding.smashingmagazine.com/2013/11/07/an-in-depth-introduction-to-ember-js/">An In-Depth Introduction To Ember.js</a></li>
<li><a href="http://www.adobe.com/devnet/html5/articles/flame-on-a-beginners-guide-to-emberjs.html">Flame on! A beginner's guide to Ember.js</a></li>
</ul>
</li>
<li>
<h4><a href="http://backbonejs.org/">BackboneJS</a></h4>
<p>Backbone.js gives structure to web applications by providing models with key-value binding and custom events, collections with a rich API of enumerable functions, views with declarative event handling, and connects it all to your existing API over a RESTful JSON interface.</p>
<h5>Articles</h5>
<ul class="item-articles">
<li><a href="http://code.tutsplus.com/tutorials/getting-started-with-backbone-js--net-19751">Getting Started with Backbone.js</a></li>
<li><a href="http://coding.smashingmagazine.com/2013/08/09/backbone-js-tips-patterns/">Backbone.js Tips And Patterns</a></li>
</ul>
</li>
<li>
<h4><a href="http://knockoutjs.com/">KnockoutJS</a></h4>
<p>Simplify dynamic JavaScript UIs with the Model-View-View Model (MVVM) pattern.</p>
<h5>Articles</h5>
<ul class="item-articles">
<li><a href="http://blog.stevensanderson.com/2010/07/05/introducing-knockout-a-ui-library-for-javascript/">Introducing Knockout, a UI library for JavaScript</a></li>
</ul>
</li>
<li>
<h4><a href="http://knockoutjs.com/">Polymer</a></h4>
<p>Polymer is a library that uses the latest web technologies to let you create custom HTML elements. Build anything from a button to a complete application as an encapsulated, reusable element that works across desktop and mobile.</p>
<h5>Videos</h5>
<ul class="item-articles">
<li><a href="https://www.youtube.com/watch?v=2toYLLcoY14" class="modal">Componentize the Web</a></li>
</ul>
</li>
<li>
<h4><a href="https://www.meteor.com/">Meteor</a></h4>
<p>Meteor is an open-source platform for building top-quality web apps in a fraction of the time, whether you're an expert developer or just getting started.</p>
<h5>Articles</h5>
<ul class="item-articles">
<li><a href="http://meteorhacks.com/meteor-js-web-framework-for-everyone.html">Meteor.js - A web framework for everyone</a></li>
<li><a href="http://www.manuel-schoebel.com/blog/meteorjs-the-perfect-match-for-lean-startups">Meteor.js - The Perfect Match For Lean Startups</a></li>
</ul>
</li>
<li>
<h4><a href="http://dojotoolkit.org/">Dojo</a></h4>
<p>Dojo saves you time and scales with your development process, using web standards as its platform. It’s the toolkit experienced developers turn to for building high quality desktop and mobile web applications.</p>
</li>
<li>
<h4><a href="http://facebook.github.io/react/">React</a></h4>
<p>A JavaScript library for building user interfaces.</p>
<h5>Articles</h5>
<ul class="item-articles">
<li><a href="http://www.funnyant.com/reactjs-what-is-it/">React.js and How Does It Fit In With Everything Else?</a></li>
</ul>
</li>
<li>
<h4><a href="http://www.telerik.com/kendo-ui">Kendo UI</a></h4>
<p>Everything you need to build sites and apps with pure JavaScript and HTML5</p>
</li>
<li>
<h4><a href="http://phantomjs.org/">PhantomJS</a></h4>
<p>PhantomJS is a headless WebKit scriptable with a JavaScript API. It has fast and native support for various web standards: DOM handling, CSS selector, JSON, Canvas, and SVG.</p>
</li>
<li>
<h4><a href="http://underscorejs.org/">Underscore.js</a></h4>
<p>Underscore is a JavaScript library that provides a whole mess of useful functional programming helpers without extending any built-in objects. It’s the answer to the question: “If I sit down in front of a blank HTML page, and want to start being productive immediately, what do I need?” … and the tie to go along with jQuery's tux and Backbone's suspenders.</p>
</li>
</ul>
</div>
</li>
<li>
<div class="row">
<h2>Template Engines</h2>
<p>Handlebars provides the power necessary to let you build semantic templates effectively with no frustration. Mustache templates are compatible with Handlebars, so you can take a Mustache template, import it into Handlebars, and start taking advantage of the extra Handlebars features.</p>
</div>
<div class="row">
<ul class="item-list">
<li>
<h4><a href="http://handlebarsjs.com/">Handlebars</a></h4>
<p>Handlebars provides the power necessary to let you build semantic templates effectively with no frustration.</p>
<p>Mustache templates are compatible with Handlebars, so you can take a Mustache template, import it into Handlebars, and start taking advantage of the extra Handlebars features.</p>
<h5>Articles</h5>
<ul class="item-articles">
<li><a href="http://blog.teamtreehouse.com/getting-started-with-handlebars-js">Getting Started with Handlebars.js</a></li>
<li><a href="http://blog.teamtreehouse.com/handlebars-js-part-2-partials-and-helpers">Handlebars.js Part 2: Partials and Helpers</a></li>
<li><a href="http://blog.teamtreehouse.com/handlebars-js-part-3-tips-and-tricks">Handlebars.js Part 3: Tips and Tricks</a></li>
</ul>
</li>
<li>
<h4><a href="http://twitter.github.io/hogan.js/">Hogan.js</a></h4>
<p>Hogan.js is a 3.4k JS templating engine developed at Twitter. Use it as a part of your asset packager to compile templates ahead of time or include it in your browser to handle dynamic templates.</p>
</li>
<li>
<h4><a href="http://mustache.github.io/">Mustache</a></h4>
<p>Logic-less templates. Available in Ruby, JavaScript, Python, Erlang, node.js, PHP, Perl, Objective-C, Java</p>
<h5>Articles</h5>
<ul class="item-articles">
<li><a href="http://www.lynda.com/articles/introduction-to-javascript-templating-using-mustache-js">Introduction to JavaScript templating using mustache.js</a></li>
</ul>
</li>
<li>
<h4><a href="http://icanhazjs.com/">ICanHaz.js</a></h4>
<p>Simple & powerful client-side templating.</p>
</li>
<li>
<h4><a href="http://documentup.com/jeremyruppel/walrus/">Walrus</a></h4>
<p>Walrus is a templating library inspired by mustache, handlebars, ejs and friends, but with a couple of important differences in philosophy and style.</p>
</li>
<li>
<h4><a href="http://jade-lang.com/">jade</a></h4>
<p>Jade is templating engine built primarily for server-side templating in node.js.</p>
<h5>Articles</h5>
<ul class="item-articles">
<li><a href="http://www.codeproject.com/Articles/717798/Feeling-Jaded-with-Jade">Feeling Jaded with Jade? Don't Be!</a></li>
</ul>
</li>
</ul>
</div>
</li>
<li>
<div class="row">
<h2>CSS</h2>
<p>Cascading Style Sheets (CSS) is a style sheet language used for describing the look and formatting of a document written in a markup language. While most often used to style web pages and interfaces written in HTML and XHTML, the language can be applied to any kind of XML document, including plain XML, SVG and XUL. CSS is a cornerstone specification of the web and almost all web pages use CSS style sheets to describe their presentation.</p>
<div class="block">
<h3>Articles</h3>
<ul class="articles">
<li><a href="http://timkadlec.com/2012/04/media-query-asset-downloading-results/">Media Query & Asset Downloading Results</a></li>
<li><a href="http://css-tricks.com/preventing-the-performance-hit-from-custom-fonts/">Preventing the Performance Hit from Custom Fonts</a></li>
<li><a href="https://www.readability.com/articles/paaucghp">Why Responsive Images Is So Hard</a></li>
<li><a href="http://techtime.getharvest.com/blog/in-defense-of-rem-units">In Defense Of Rem Units</a></li>
<li><a href="http://mobile.smashingmagazine.com/2013/01/09/bandwidth-media-queries-we-dont-need-em/">Bandwidth Media Queries? We Don’t Need ’Em!</a></li>
<li><a href="http://tympanus.net/codrops/2012/06/12/css-only-responsive-layout-with-smooth-transitions/">CSS-Only Responsive Layout with Smooth Transitions</a></li>
<li><a href="http://www.adobe.com/devnet/html5/articles/twitter-bootstrap.html">Styling your apps with Twitter Bootstrap</a></li>
<li><a href="http://css-tricks.com/animating-svg-css/">Animating SVG CSS</a></li>
<li><a href="http://dev.opera.com/articles/getting-to-know-css-blend-modes/">Getting to know CSS Blend Modes</a></li>
<li><a href="http://blog.circleci.com/adaptive-placeholders/">Adaptive Placeholders</a></li>
<li><a href="http://css-tricks.com/authoring-critical-fold-css/">Authoring Critical Above-the-Fold CSS</a></li>
</ul>
</div>
<div class="block">
<h3>Videos</h3>
<ul class="articles">
<li><a href="http://vimeo.com/99877232" class="modal">Preprocessors Don't Solve Architecture Problems</a></li>
</ul>
</div>
</div>
</li>
<li>
<div class="row">
<h2>CSS Pre-Processors</h2>
<p>CSS pre-processor extends the CSS language, adding features that allow variables, mixins, functions and many other techniques that allow you to make CSS that is more maintainable, themable and extendable.</p>
<div class="block">
<h3>Articles</h3>
<ul class="articles">
<li><a href="https://developer.chrome.com/devtools/docs/css-preprocessors">Working with CSS Preprocessors</a></li>
<li><a href="https://www.urbaninsight.com/2012/04/12/ten-reasons-you-should-be-using-css-preprocessor">Ten Reasons You Should Be Using a CSS Preprocessor</a></li>
<li><a href="http://blog.millermedeiros.com/the-problem-with-css-pre-processors/">The problem with CSS pre-processors</a></li>
</ul>
</div>
</div>
<div class="row">
<ul class="item-list">
<li>
<h4><a href="http://sass-lang.com/">SASS</a></h4>
<p>Sass is the most mature, stable, and powerful professional grade CSS extension language in the world.</p>
<h5>Articles</h5>
<ul class="item-articles">
<li><a href="http://css-tricks.com/sass-style-guide/">Sass Style Guide</a></li>
<li><a href="http://css-tricks.com/metafizzy-effect-with-sass/">MetaFizzy Effect with Sass</a></li>
<li><a href="http://css-tricks.com/conditional-media-query-mixins/">Conditional Media Query Mixins</a></li>
<li><a href="http://css-tricks.com/making-sass-talk-to-javascript-with-json/">Making Sass talk to JavaScript with JSON</a></li>
</ul>
</li>
<li>
<h4><a href="http://lesscss.org/">LESS</a></h4>
<p>Less is a CSS pre-processor, meaning that it extends the CSS language, adding features that allow variables, mixins, functions and many other techniques that allow you to make CSS that is more maintainable, themable and extendable.</p>
<p>Less runs inside Node, in the browser and inside Rhino. There are also many 3rd party tools that allow you to compile your files and watch for changes.</p>
<h5>Articles</h5>
<ul class="item-articles">
<li><a href="http://www.smashingmagazine.com/2010/12/06/using-the-less-css-preprocessor-for-smarter-style-sheets/">Using the LESS CSS Preprocessor for Smarter Style Sheets</a></li>
</ul>
</li>
<li>
<h4><a href="http://learnboost.github.io/stylus/">Stylus</a></h4>
<p>Expressive, dynamic, robust CSS. Installing Stylus is very easy once you have Node.js. So get the binaries for your platform and make sure that they also include npm, Node’s package manager.</p>
<h5>Articles</h5>
<ul class="item-articles">
<li><a href="http://clock.co.uk/blog/compiling-css-using-stylus-getting-started">Compiling CSS using Stylus – Getting Started</a></li>
</ul>
</li>
<li>
<h4><a href="http://www.myth.io/">Myth</a></h4>
<p>Myth is a preprocessor that lets you write pure CSS without having to worry about slow browser support, or even slow spec approval. It's like a CSS polyfill.</p>
<h5>Articles</h5>
<ul class="item-articles">
<li><a href="http://blog.rodneyrehm.de/archives/30-CSS-Polyfill-Preprocessor-Its-A-Myth.html">CSS-Polyfill-Preprocessor — It's A Myth</a></li>
</ul>
</li>
</ul>
</div>
</li>
<li>
<div class="row">
<h2>Node.js</h2>
<p>Node.js is a software platform for scalable server-side and networking applications. Node.js applications are written in JavaScript. All of the popular server operating systems are supported, including Windows and Linux.</p>
<div class="block">
<h3>Articles</h3>
<ul class="articles">
<li><a href="http://nodeschool.io/">Node School</a></li>
<li><a href="http://speckyboy.com/2013/11/13/node-js-for-front-end-developers/">An Introduction to Node.js for Front-End Developers</a></li>
<li><a href="http://www.smashingmagazine.com/2014/02/12/build-cli-tool-nodejs-phantomjs/">How To Build A CLI Tool With Node.js And PhantomJS</a></li>
<li><a href="http://shapeshed.com/creating-a-basic-site-with-node-and-express/">Creating a basic site with Node.js and Express</a></li>
<li><a href="http://howtonode.org/getting-started-with-express">Getting Started with Express</a></li>
<li><a href="http://www.joyent.com/developers/node/design/errors">Error Handling in Node.js</a></li>
<li><a href="https://www.joyent.com/developers/node">Node.js Resources</a></li>
</ul>
</div>
<div class="block">
<h3>Videos</h3>
<ul class="articles">
<li><a href="https://www.youtube.com/watch?v=lvZeY-xua70" class="modal">npm, inc.</a></li>
<li><a href="https://www.youtube.com/watch?v=KXxUNk2XFr8" class="modal">State of Node</a></li>
<li><a href="https://www.youtube.com/watch?v=bqLXjNbMZpY" class="modal">The business case for Node</a></li>
<li><a href="https://www.youtube.com/watch?v=wk4sWG-jx08" class="modal">Moving a large developer workforce to NodeJS</a></li>
<li><a href="https://www.youtube.com/watch?v=ceQxrF6kso4" class="modal">Node App Lifecycle</a></li>
<li><a href="https://www.youtube.com/watch?v=l2aI4ZWBJng" class="modal">Performance Sins of our Abstractions</a></li>
</ul>
</div>
</div>
</li>
<li>
<div class="row">
<h2>Accessibility</h2>
<p>Web accessibility means that people with disabilities can use the Web. More specifically, Web accessibility means that people with disabilities can perceive, understand, navigate, and interact with the Web, and that they can contribute to the Web. Web accessibility also benefits others, including older people with changing abilities due to aging.</p>
<div class="block">
<h3>Articles</h3>
<ul class="articles">
<li><a href="http://blog.paciellogroup.com/2013/02/using-wai-aria-landmarks-2013/">Using WAI-ARIA Landmarks</a></li>
<li><a href="http://24ways.org/2013/coding-towards-accessibility/">Coding Towards Accessibility</a></li>
<li><a href="http://www.sitepoint.com/easy-checks-website-accessibility/">Easy Checks for Website Accessibility</a></li>
<li><a href="http://blog.paciellogroup.com/2012/06/html5-accessibility-chops-using-aria-notes/">HTML5 Accessibility Chops: notes on using ARIA</a></li>
<li><a href="http://www.nczonline.net/blog/2013/01/15/fixing-skip-to-content-links/">Fixing “Skip to content” links</a></li>
<li><a href="http://blog.paciellogroup.com/2010/11/using-the-html-title-attribute/">Using the HTML title attribute</a></li>
<li><a href="http://negativitysandwiches.com/accessibility-and-building-a-web-for-everyone-because-sometimes-its-not-all-about-us/">Accessibility and Building a web for everyone because sometimes it's not all about us</a></li>
<li><a href="http://www.sitepoint.com/ethical-dilemmas-web-accessibility/">Ethical Dilemmas in Web Accessibility</a></li>
<li><a href="http://www.nczonline.net/blog/2013/01/29/you-cant-create-a-button/">You can’t create a button</a></li>
<li><a href="http://www.karlgroves.com/2014/03/13/everything-you-know-about-accessibility-testing-is-wrong-part-4/">Everything you know about accessibility testing is wrong</a></li>
</ul>
</div>
</div>
</li>
<li>
<div class="row">
<h2>Git</h2>
<p>Git is a distributed revision control and source code management (SCM) system with an emphasis on speed, data integrity, and support for distributed, non-linear workflows.</p>
<div class="block">
<h3>Articles</h3>
<ul class="articles">
<li><a href="https://ochronus.com/git-tips-from-the-trenches/">Git tips from the trenches</a></li>
<li><a href="http://24ways.org/2013/git-for-grownups/">Git for Grown-ups</a></li>
<li><a href="http://24ways.org/2013/get-started-with-github-pages/">Get Started With GitHub Pages</a></li>
<li><a href="http://tom.preston-werner.com/2009/05/19/the-git-parable.html">The Git Parable</a></li>
<li><a href="http://nvie.com/posts/a-successful-git-branching-model/">A Successful Git Branching Model</a></li>
<li><a href="http://nicolasgallagher.com/simple-git-deployment-strategy-for-static-sites/">A simple Git deployment strategy for static sites</a></li>
<li><a href="http://css-tricks.com/deal-merge-conflicts-git/">How to Deal with Merge Conflicts in Git</a></li>
<li><a href="http://wildlyinaccurate.com/a-hackers-guide-to-git">A Hacker’s Guide to Git</a></li>
</ul>
</div>
</div>
</li>
<li>
<div class="row">
<h2>Task Runner</h2>
<p></p>
</div>
<div class="row">
<ul class="item-list">
<li>
<h4><a href="http://gruntjs.com/">Grunt</a></h4>
<p>In one word: automation. The less work you have to do when performing repetitive tasks like minification, compilation, unit testing, linting, etc, the easier your job becomes. After you've configured it, a task runner can do most of that mundane work for you—and your team—with basically zero effort.</p>
<h5>Articles</h5>
<ul class="item-articles">
<li><a href="http://24ways.org/2013/grunt-is-not-weird-and-hard/">Grunt for People Who Think Things Like Grunt are Weird and Hard</a></li>
<li><a href="http://culttt.com/2013/11/18/setting-sass-grunt/">Setting up Sass with Grunt</a></li>
<li><a href="http://merrickchristensen.com/articles/gruntjs-workflow.html">Grunt.js Workflow</a></li>
<li><a href="http://yeoman.io/blog/performance-optimization.html">Grunt And Gulp Tasks For Performance Optimization</a></li>
<li><a href="http://blog.iconfinder.com/get-started-with-grunticon/">Getting started with Grunticon</a></li>
</ul>
</li>
<li>
<h4><a href="http://gulpjs.com/">Gulp</a></h4>
<p>Build system automating tasks: minification and copying of all JavaScript files, static images, capable of watching files to automatically rerun the task when a file is updated.</p>
<h5>Articles</h5>
<ul class="item-articles">
<li><a href="http://www.sitepoint.com/introduction-gulp-js/">An Introduction to Gulp.js</a></li>
<li><a href="http://code.tutsplus.com/tutorials/managing-your-build-tasks-with-gulpjs--net-36910">Managing Your Build Tasks With Gulp.js</a></li>
<li><a href="http://www.codefellows.org/blogs/quick-intro-to-gulp-js">Quick intro to Gulp.js</a></li>
<li><a href="http://hmphry.com/gulp/">Learning Gulp - Getting Started with the Frontend Factory</a></li>
<li><a href="http://www.smashingmagazine.com/2014/06/11/building-with-gulp/">Building With Gulp</a></li>
</ul>
</li>
<li>
<h4><a href="https://incident57.com/codekit/">CodeKit</a></h4>
<p>CodeKit compiles Less, Sass, Stylus, Jade, Haml, Slim, CoffeeScript, Javascript, TypeScript, Markdown and Compass files automatically each time you save.</p>
<h5>Articles</h5>
<ul class="item-articles">
<li><a href="http://css-tricks.com/codekit-2-0/">On CodeKit 2.0</a></li>
</ul>
</li>
</ul>
</div>
</li>
<li>
<div class="row">
<h2>Animation</h2>
<p></p>
</div>
<div class="row">
<ul class="item-list">
<li>
<h4><a href="">Tween.js</a></h4>
<p>Super simple, fast and easy to use tweening engine which incorporates optimised Robert Penner's equations.</p>