-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
990 lines (742 loc) · 40 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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<title>Avenue Code UI Bootcamp</title>
<link rel="stylesheet" href="stylesheets/styles.css">
<link rel="stylesheet" href="stylesheets/pygment_trac.css">
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
<a href="https://github.com/acbr/ui-bootcamp" target="blank"><img style="position: absolute; top: 0; left: 0; border: 0; z-index: 999;" src="https://s3.amazonaws.com/github/ribbons/forkme_left_gray_6d6d6d.png" alt="Fork me on GitHub"></a>
<div class="wrapper">
<header>
<img src="images/AClogo.PNG" />
<h1>UI Bootcamp</h1>
<p>UI Bootcamp is an initiative towards learning key UI technologies in Avenue Code.</p>
<ul>
<li><a href="http://www.youtube.com/user/AvenueCodePlay" target="blank">Watch on <strong>YouTube</strong></a></li>
<li><a href="http://www.avenuecode.com" target="blank">Visit our <strong>Website</strong></a></li>
<li><a href="https://github.com/acbr/ui-bootcamp" target="blank">View On <strong>GitHub</strong></a></li>
</ul>
<p class="template">Giving a talk? Check out our <a href="http://acbr.github.io/talk-template" target="blank">Talk Template</a> with all the instructions.</p>
</header>
<section>
<article class="markdown-body entry-content" itemprop="mainContentOfPage">
<h1>AC UI Bootcamp</h1>
<h2>Next talks</h2>
<iframe src="http://www.google.com/calendar/embed?src=avenuecode.com_e07177e39fgqd1dar03bd8j4jg%40group.calendar.google.com&ctz=America/Sao_Paulo" style="border: 0" width="800" height="400" frameborder="0" scrolling="no"></iframe>
<a name="contents"></a>
<h2>Contents</h2>
<h3>Javascript</h3>
<table>
<tbody><tr>
<td><b>Subject</b></td>
<td><b>Topic</b></td>
<td><b>Presented by</b></td>
</tr>
<tr>
<td rowspan="10"><a href="#javascript">Javascript</a></td>
<td><a href="#javascript-for-real">Javascript for Real</a></td>
<td><a href="http://github.com/tiagorg">Tiago Garcia</a></td>
</tr>
<tr>
<td><a href="#design-patterns-for-large-scale-javascript">Design Patterns for Large-Scale Javascript</a></td>
<td><a href="http://github.com/tiagorg">Tiago Garcia</a></td>
</tr>
<tr>
<td><a href="#high-performance-javascript">High Performance Javascript</a></td>
<td><a href="http://github.com/gtrindade">Guilherme Gonçalves</a></td>
</tr>
<tr>
<td><a href="#html5-js-api-part1">HTML5 JS APIs - Part 1</a></td>
<td><a href="http://github.com/eduardo305">Eduardo Silva</a></td>
</tr>
<tr>
<td><a href="#micro-libraries">Javascript micro-libraries</a></td>
<td><a href="http://github.com/cironunes">Ciro Nunes</a></td>
</tr>
<tr>
<td>Javascript code coverage</td>
<td><a href="http://github.com/rafaelmenta">Rafael Guedes</a></td>
</tr>
<tr>
<td>ThreeJS</td>
<td><a href="http://github.com/http://github.com/">Luis Alberto</a></td>
</tr>
<tr>
<td>Semantic</td>
<td><a href="http://github.com/http://github.com/">Luis Mendes</a></td>
</tr>
<tr>
<td>Design Patterns for Javascript organization</td>
<td><a href="http://github.com/tiagorg">Tiago Garcia</a></td>
</tr>
<tr>
<td><a href="#ecmascript-6">ECMAScript 6</a></td>
<td><a href="http://github.com/fegemo">Flávio Coutinho</a></td>
</tr>
<tr>
<td rowspan="2"><a href="#backbonejs">Backbone.js</a></td>
<td><a href="#boosting-the-client-side-with-backbonejs">Boosting the client-side with Backbone.js</a></td>
<td><a href="http://github.com/tiagorg">Tiago Garcia</a></td>
</tr>
<tr>
<td><a href="#backbonejs-tricks-or-treats">Backbone.js tricks or treats</a></td>
<td><a href="http://github.com/tiagorg">Tiago Garcia</a></td>
</tr>
<tr>
<td><a href="#amd-requirejs">AMD / RequireJS</a></td>
<td><a href="#a-javascript-module-loader-requirejs">A Javascript Module Loader - RequireJS</a></td>
<td><a href="http://github.com/henriquecholo">Henrique Filho</a></td>
</tr>
<tr>
<td><a href="#handlebarsjs">Handlebars.js</a></td>
<td><a href="#boosting-the-client-side-even-more-with-handlebarsjs">Boosting the client-side even more with Handlebars.js</a></td>
<td><a href="http://github.com/alysson-macys">Alysson Ferreira</a></td>
</tr>
<tr>
<td><a href="#jasmine">Jasmine</a></td>
<td><a href="#an-overview-about-testing-and-jasmine">An overview about testing and Jasmine</a></td>
<td><a href="http://github.com/igorlima">Igor Lima</a></td>
</tr>
<tr>
<td><a href="#grunt">Grunt</a></td>
<td><a href="#grunt-the-build-tool-for-javascript">Grunt: The Build Tool for Javascript</a></td>
<td><a href="http://github.com/rafaelmenta">Rafael Guedes</a></td>
</tr>
<tr>
<td><a href="#underscorejs">Underscore.js</a></td>
<td><a href="#functional-programming-using-underscore">Functional programming using Underscore</a></td>
<td><a href="http://github.com/mxtopher">Cristopher Silva</a></td>
</tr>
<tr>
<td><a href="#yeoman">Yeoman</a></td>
<td><a href="#a-scaffold-tool-for-web-applications">A scaffold tool for web applications</a></td>
<td><a href="http://github.com/igorlima">Igor Lima</a></td>
</tr>
<tr>
<td rowspan="2"><a href="#angularjs">AngularJS</a></td>
<td><a href="#angularjs-superheroic-javascript-mvw-framework">AngularJS - Superheroic Javascript MVW framework</a></td>
<td><a href="http://github.com/rafaelmenta">Rafael Guedes</a></td>
</tr>
<tr>
<td><a href="#angularjs-part-2">AngularJS - Part 2</a></td>
<td><a href="http://github.com/rafaelmenta">Rafael Guedes</a></td>
</tr>
<tr>
<td><a href="#jquery">jQuery</a></td>
<td>Good jQuery practices</td>
<td><a href="http://github.com/henriquecholo">Henrique Filho</a></td>
</tr>
<tr>
<td><a href="#nodejs">NodeJS</a></td>
<td><a href="#ac-talk-nodejs-and-express-by-victor-gomes"> NodeJS and Express</a></td>
<td><a href="http://github.com/victorlocomotiv">Victor Gomes</a></td>
</tr>
</tbody></table>
<h3>Presentation</h3>
<table>
<tbody><tr>
<td><b>Subject</b></td>
<td><b>Topic</b></td>
<td><b>Presented by</b></td>
</tr>
<tr>
<td><a href="#sass">SASS</a></td>
<td><a href="#building-awesome-ui-components-with-sass">Building awesome UI components with SASS</a></td>
<td><a href="https://github.com/arthurcamara1">Arthur Câmara</a></td>
</tr>
<tr>
<td><a href="#html5">HTML5</a></td>
<td><a href="#brace-yourselves-html5-has-come">Brace yourselves, HTML5 has come!</a></td>
<td><a href="https://github.com/raphaelddl">Raphael Oliveira</a></td>
</tr>
<tr>
<td rowspan="2"><a href="#css3">CSS3</a></td>
<td><a href="#the-magic-of-css">The Magic of CSS</a></td>
<td><a href="https://github.com/raphaelddl">Raphael Oliveira</a></td>
</tr>
<tr>
<td>Scalable and Modular CSS</td>
<td><a href="http://github.com/cironunes">Ciro Nunes</a></td>
</tr>
<tr>
<td><a href="#bootstrap-and-foundation">Bootstrap & Foundation</a></td>
<td><a href="#the-good-war-for-ui">The good war for UI</a></td>
<td><a href="http://github.com/henriquecholo">Henrique Filho</a></td>
</tr>
<tr>
<td><a href="#responsive-design">Responsive design</a></td>
<td></td>
<td><a href="https://github.com/raphaelddl">Raphael Oliveira</a></td>
</tr>
<tr>
<td><a href="#compass">Compass</a></td>
<td></td>
<td><a href="http://github.com/fegemo">Flávio Coutinho</a></td>
</tr>
</tbody></table>
<!-- Javascript -->
<a name="javascript"></a>
<h2>Javascript</h2>
<!-- Javascript for real -->
<a name="javascript-for-real"></a>
<h3>
<a name="ac-talk-javascript-for-real-by-tiago-garcia" class="anchor" href="#ac-talk-javascript-for-real-by-tiago-garcia"><span class="octicon octicon-link"></span></a>AC Talk: <em>Javascript for real</em> by <a href="http://github.com/tiagorg">Tiago Garcia</a>
</h3>
<ul>
<li><a href="http://www.youtube.com/watch?v=kV5uEoyJ-pQ">Youtube video - Part 1</a></li>
<li><a href="http://www.youtube.com/watch?v=cSYSQyHwQ5o">Youtube video - Part 2</a></li>
</ul>
<h4>Prerequisites:</h4>
<ul>
<li>HTML</li>
<li>CSS</li>
<li>Familiary with Javascript</li>
</ul>
<h4>Resources:</h4>
<ul>
<li><a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Values,_variables,_and_literals">Values, variables and literals</a></li>
<li><a href="http://tableless.com.br/javascript-entendendo-o-this/#.UhVmEGSbj_s">this x self</a></li>
<li><a href="http://www.codeproject.com/Articles/247241/Javascript-Module-Pattern">modular Javascript</a></li>
<li><a href="http://ryanmorr.com/understanding-scope-and-context-in-javascript">Closure</a></li>
<li><a href="http://www.adequatelygood.com/JavaScript-Scoping-and-Hoisting.html">Hoisting</a></li>
<li><a href="http://nodebr.com/como-evitar-o-inferno-de-callbacks/">Callbacks</a></li>
<li>
<a href="http://www.thinkful.com/learn/javascript-best-practices-1/">Good practices 1</a> and <a href="http://www.thinkful.com/learn/javascript-best-practices-2">Good practices 2</a>
</li>
</ul>
<h4>Learn Javascript:</h4>
<ul>
<li><a href="http://jsforcats.com">Javascript for Cats - basic</a></li>
<li><a href="http://eloquentjavascript.net/contents.html">Eloquent Javascript - intermediate to advanced</a></li>
<li><a href="http://shop.oreilly.com/product/9780596517748.do">Javascript: The Good Parts - intermediate to advanced</a></li>
</ul>
<p>Back to <a href="#contents">Contents</a>.</p>
<!-- Design Patterns for Large-Scale Javascript -->
<a name="design-patterns-for-large-scale-javascript"></a>
<h3>
AC Talk: <em>Design Patterns for Large-Scale Javascript</em> by <a href="http://github.com/tiagorg">Tiago Garcia</a>
</h3>
<ul>
<li><a href="https://slid.es/avenuecode/design-patterns-for-large-scale-javascript">Slide deck @ slid.es</a></li>
<li>Youtube video</li>
</ul>
<h4>Prerequisites:</h4>
<ul>
<li>Intermediate Javascript</li>
<li>Advanced OOP</li>
<li>Familiarity with Design Patterns</li>
</ul>
<h4>Resources:</h4>
<ul>
<li><a href="http://addyosmani.com/resources/essentialjsdesignpatterns">Learning JavaScript Design Patterns - Addy Osmani</a></li>
<li><a href="http://addyosmani.com/largescalejavascript">Patterns for Large-Scale JavaScript Application Architecture</a></li>
<li><a href="http://shop.oreilly.com/product/9780596806767.do">Javascript Patterns - Stoyan Stefanov</a></li>
<li><a href="http://aurajs.com">AuraJS</a></li>
</ul>
<p>Back to <a href="#contents">Contents</a>.</p>
<!-- High-Performance Javascript -->
<a name="high-performance-javascript"></a>
<h3>
AC Talk: <em>High-Performance Javascript</em> by <a href="http://github.com/gtrindade">Guilherme Gonçalves</a>
</h3>
<ul>
<li><a href="https://slid.es/avenuecode/javascript-high-performance">Slide deck @ slid.es</a></li>
<li>Youtube video</li>
</ul>
<h4>Prerequisites:</h4>
<ul>
<li>Javascript</li>
</ul>
<h4>Resources:</h4>
<ul>
<li><a href="http://www.amazon.com/Performance-JavaScript-Faster-Application-Interfaces/dp/059680279X">High Performance JavaScript Book - Nicholas Zakas</a></li>
<li><a href="http://jonraasch.com/blog/10-javascript-performance-boosting-tips-from-nicholas-zakas">10 Javascript Performance Boosting Tips</a></li>
<li><a href="https://developers.google.com/speed/articles/optimizing-javascript">Optimizing JavaScript code</a></li>
<li><a href="http://www.google.com">www.google.com</a></li>
</ul>
<p>Back to <a href="#contents">Contents</a>.</p>
<!-- High-Performance Javascript -->
<a name="html5-js-api-part1"></a>
<h3>
AC Talk: <em>HTML5 JS API - Part 1</em> by <a href="http://github.com/eduardo305">Eduardo Silva</a>
</h3>
<ul>
<li><a href="http://eduardo305.github.io/HTML5-JS-APIs/#/">Slide deck @ slid.es</a></li>
<li>Youtube video</li>
</ul>
<h4>Prerequisites:</h4>
<ul>
<li>Javascript</li>
</ul>
<h4>Resources:</h4>
<ul>
<li><a href="http://www.html5rocks.com/en/tutorials/workers/basics/">HTML5 Rocks - Webworkers</a></li>
<li><a href="http://www.w3.org/TR/workers/">Webworker Specification</a></li>
<li><a href="http://www.html5rocks.com/en/tutorials/websockets/basics/">HTML5 Rocks - Websockets</a></li>
<li><a href="http://www.developerfusion.com/article/143158/an-introduction-to-websockets/">Developer Fusion</a></li>
<li><a href="https://www.websocket.org/quantum.html">Websocket performance comparison</a></li>
<li><a href="http://www.w3.org/TR/2009/WD-websockets-20091222/">Websocket Specification</a></li>
</ul>
<p>Back to <a href="#contents">Contents</a>.</p>
<a name="micro-libraries"></a>
<h3>
AC Talk: <em>Speed and modularity w/ JS micro-libs</em> by <a href="http://github.com/cironunes">Ciro Nunes</a>
</h3>
<ul>
<li><a href="https://github.com/cironunes/js-microlibs-talk/">Slide deck @ slid.es</a></li>
<li>Youtube video</li>
</ul>
<h4>Prerequisites:</h4>
<ul>
<li>Javascript</li>
</ul>
<h4>Resources:</h4>
<ul>
<li><a href="http://addyosmani.com/blog/prosconsmicroframeworks/">Pros and Cons of JavaScript Micro-Frameworks</a></li>
<li><a href="http://www.requirejs.org">RequireJS Website</a></li>
<li><a href="https://github.com/jquery/jquery#how-to-build-your-own-jquery">How to Build your own jQuery</a></li>
</ul>
<p>Back to <a href="#contents">Contents</a>.</p>
<a name="ecmascript-6"></a>
<h3>
AC Talk: <em>ECMAScript 6: Bring some harmony to your life</em> by <a href="http://github.com/fegemo">Flávio Coutinho</a>
</h3>
<ul>
<li><a href="http://fegemo.github.io/talk-es6/">Slide deck</a></li>
<li>Youtube video</li>
</ul>
<h4>Prerequisites:</h4>
<ul>
<li>"Real-life" javascript</li>
</ul>
<h4>Resources:</h4>
<ul>
<li><a href="https://leanpub.com/understandinges6/read">Understanding ECMAScript 6</a></li>
<li><a href="http://code.tutsplus.com/articles/use-ecmascript-6-today--net-31582">Use ECMAScript 6 Today, at tutsplus.com</a></li>
<li><a href="http://kangax.github.io/es5-compat-table/es6/">ECMAScript 6 compatibility table</a></li>
<li><a href="http://www.es6fiddle.net/">ES6 Fiddle</a></li>
</ul>
<p>Back to <a href="#contents">Contents</a>.</p>
<!-- Backbone.js -->
<a name="backbonejs"></a>
<h2>Backbone.js</h2>
<!-- Boosting the client-side with Backbone.js -->
<a name="boosting-the-client-side-with-backbonejs"></a>
<h3>
AC Talk: <em>Boosting the client-side with Backbone.js</em> by <a href="http://github.com/tiagorg">Tiago Garcia</a>
</h3>
<ul>
<li><a href="http://slid.es/avenuecode/boosting-the-client-side-with-backbone-js">Slide deck @ slid.es</a></li>
<li><a href="http://www.youtube.com/watch?v=8ZzqMFAU_Kw">Youtube video</a></li>
</ul>
<h4>Prerequisites:</h4>
<ul>
<li>Javascript</li>
<li>Familiarity with web frameworks such as Struts, JSF, Rails, Spring MVC...</li>
</ul>
<h4>Resources:</h4>
<ul>
<li><a href="http://backbonejs.org">Official website</a></li>
<li><a href="http://addyosmani.github.io/backbone-fundamentals">Developing Backbone.js Applications - Addy Osmani</a></li>
<li><a href="http://backbone.codeschool.com">The Anatomy of Backbone.js - Codeschool</a></li>
<li><a href="http://backbonejs.org/docs/backbone.html">How Backbone works behind the scenes</a></li>
<li><a href="http://www.api-first.com/">API-First - Design apps from the API</a></li>
<li><a href="https://github.com/tiagorg/tasker">Tasker project</a></li>
</ul>
<h4>How to organize your app:</h4>
<ul>
<li>
<a href="https://github.com/yeoman/generator-backbone">Backbone generator - Yeoman</a>
<ul>
<li><a href="http://net.tutsplus.com/tutorials/javascript-ajax/building-apps-with-the-yeoman-workflow/">Building Apps With the Yeoman Workflow</a></li>
</ul>
</li>
<li><a href="https://github.com/addyosmani/backbone-boilerplates">Backbone boilerplates - Addy Osmani</a></li>
<li><a href="http://backboneboilerplate.com/">Another backbone boilerplate</a></li>
<li><a href="http://webapplog.com/super-simple-backbone-starter-kit-boilerplate/">Super Simple Backbone Starter Kit / Boilerplate</a></li>
</ul>
<h4>Live educative sample:</h4>
<ul>
<li><a href="http://todomvc.com/architecture-examples/backbone/">Backbone.js - TodoMVC</a></li>
</ul>
<p>Back to <a href="#contents">Contents</a>.</p>
<!-- Backbone.js tricks or treats -->
<a name="backbonejs-tricks-or-treats"></a>
<h3>
AC Talk: <em>Backbone.js tricks or treats </em> by <a href="http://github.com/tiagorg">Tiago Garcia</a>
</h3>
<ul>
<li><a href="http://tiagorg.github.io/talk-backbone-tricks-or-treats">Slide deck @ slid.es</a></li>
<li><a href="">Youtube video</a></li>
</ul>
<h4>Prerequisites:</h4>
<ul>
<li>Backbone.js</li>
<li>Design patterns for large-scale javascript</li>
<li>Curiosity</li>
</ul>
<h4>Resources:</h4>
<ul>
<li><a href="http://www.codemag.com/Article/1312061">Structuring jQuery with Backbone.js</li>
<li><a href="https://github.com/kjbekkelund/writings/blob/master/published/understanding-backbone.md">Step by step from jQuery to Backbone</li>
<li><a href="http://lostechies.com/derickbailey/2011/09/15/zombies-run-managing-page-transitions-in-backbone-apps/">Zombies! RUN! (Managing Page Transitions In Backbone Apps)</li>
<li><a href="http://addyosmani.github.io/backbone-fundamentals">Developing Backbone.js Applications</li>
<li><a href="https://github.com/marionettejs/backbone.marionette">Marionette.js</li>
<li><a href="http://lostechies.com/derickbailey/2012/01/02/reducing-backbone-routers-to-nothing-more-than-configuration/">Reducing Backbone Routers To Nothing More Than Configuration</li>
<li><a href="http://epoxyjs.org">Epoxy.js</li>
<li><a href="http://sinonjs.org">Sinon.JS</li>
</ul>
<p>Back to <a href="#contents">Contents</a>.</p>
<!-- AMD / RequireJS -->
<a name="amd-requirejs"></a>
<h2>AMD / RequireJS</h2>
<!-- A Javascript Module Loader - RequireJS -->
<a name="a-javascript-module-loader-requirejs"></a>
<h3>
AC Talk: <em>A Javascript Module Loader - RequireJS</em> by <a href="http://github.com/henriquecholo">Henrique Filho</a>
</h3>
<ul>
<li><a href="http://slid.es/avenuecode/a-javascript-module-loader-require-js">Slide deck @ slid.es</a></li>
<li>Youtube video</li>
</ul>
<h4>Prerequisites:</h4>
<ul>
<li>Javascript intermediate/advanced</li>
</ul>
<h4>Resources:</h4>
<ul>
<li><a href="http://wiki.commonjs.org/wiki/CommonJS">CommonJS wiki</a></li>
<li><a href="https://github.com/amdjs/amdjs-api/wiki/AMD">AMD wiki</a></li>
<li>
<a href="/acbr/ui-bootcamp/blob/master/requirejs.org">Require JS Official website</a>
<ul>
<li><a href="http://requirejs.org/docs/faq-advanced.html">Advanced Usage</a></li>
</ul>
</li>
<li><a href="https://egghead.io/lessons/requirejs-introduction-to-requirejs">Egghead example</a></li>
</ul>
<p>Back to <a href="#contents">Contents</a>.</p>
<!-- Handlebars -->
<a name="handlebarsjs"></a>
<h2>Handlebars.js</h2>
<!-- Boosting the client-side even more with Handlebars.js -->
<a name="boosting-the-client-side-even-more-with-handlebarsjs"></a>
<h3>
</a>AC Talk: <em>Boosting the client-side even more with Handlebars.js</em> by <a href="http://github.com/alysson-macys">Alysson Ferreira</a>
</h3>
<ul>
<li><a href="http://slid.es/avenuecode/boosting-the-client-side-even-more-with-handlebarsjs">Slide deck @ slid.es</a></li>
<li><a href="http://www.youtube.com/watch?v=qyHjV3_Up3E"></a>Youtube video</li>
</ul>
<h4>Prerequisites:</h4>
<ul>
<li>Javascript intermediate</li>
<li>HTML intermediate</li>
</ul>
<h4>Resources:</h4>
<ul>
<li><a href="http://handlebarsjs.com">Official website</a></li>
<li><a href="http://javascriptissexy.com/handlebars-js-tutorial-learn-everything-about-handlebars-js-javascript-templating">Javascript.is (Sexy) Blog - Richard of Stanley</a></li>
<li><a href="http://tryhandlebarsjs.com">Try Handlebars.js right now in your browser - James Fuller</a></li>
</ul>
<p>Back to <a href="#contents">Contents</a>.</p>
<!-- Jasmine -->
<a name="jasmine"></a>
<h2>Jasmine</h2>
<!-- An overview about testing and Jasmine -->
<a name="an-overview-about-testing-and-jasmine"></a>
<h3>
AC Talk: <em>An overview about testing and Jasmine</em> by <a href="http://github.com/igorlima">Igor Lima</a>
</h3>
<ul>
<li><a href="https://slid.es/avenuecode/an-overview-about-testing-and-jasmine">Slide deck @ slid.es</a></li>
<li>Youtube video</li>
</ul>
<h4>Prerequisites:</h4>
<ul>
<li>Basic javascript</li>
</ul>
<h4></a>Resources:</h4>
<ul>
<li><a href="http://pivotal.github.io/jasmine/">Official wesite</a></li>
<li><a href="https://github.com/mhevery/jasmine-node">Jasmine-node</a></li>
<li><a href="http://plnkr.co/">Plunker</a></li>
</ul>
<p>Back to <a href="#contents">Contents</a>.</p>
<!-- Grunt -->
<a name="grunt"></a>
<h2>Grunt</h2>
<!-- Grunt: The build tool for Javascript -->
<a name="grunt-the-build-tool-for-javascript"></a>
<h3>
AC Talk: <em>Grunt: The build tool for Javascript</em> by <a href="http://github.com/rafaelmenta">Rafael Guedes</a>
</h3>
<ul>
<li><a href="http://rafaelmenta.github.io/talk-grunt">Slide deck @ github</a></li>
<li>Youtube video</li>
</ul>
<h4>Prerequisites:</h4>
<ul>
<li>Node</li>
<li>Node Package Manager (NPM)</li>
</ul>
<h4>Resources:</h4>
<ul>
<li><a href="http://gruntjs.com">http://gruntjs.com</a></li>
</ul>
<p>Back to <a href="#contents">Contents</a>.</p>
<!-- Underscore.js -->
<a name="underscorejs"></a>
<h2>Underscore.js</h2>
<!-- Functional Programming using Underscore -->
<a name="functional-programming-using-underscore"></a>
<h3>
AC Talk: <em>Functional Programming using Underscore</em> by <a href="http://github.com/mxtopher">Cristopher Silva</a>
</h3>
<ul>
<li><a href="http://mxtopher.github.io/talk-underscore">Slide deck @ github</a></li>
<li>Youtube video</li>
</ul>
<h4>Prerequisites:</h4>
<ul>
<li>Intermediate Javascript level</li>
<li>Open Mind (:</li>
</ul>
<h4>Resources:</h4>
<ul>
<li><a href="http://underscorejs.org/">Underscore page</a></li>
<li><a href="http://underscorejs.org/docs/underscore.html">Underscore Annotated Source Code: surprisingly simple and small!</a></li>
<li><a href="http://steve-yegge.blogspot.com/2006/03/execution-in-kingdom-of-nouns.html">Execution in Kingdom of Nouns</a></li>
<li><a href="https://github.com/caolan/async">Async Library</a></li>
<li><a href="http://learnyouahaskell.com/">Learn you a Haskell for Great Good</a></li>
</ul>
<p>Back to <a href="#contents">Contents</a>.</p>
<!-- Yeoman -->
<a name="yeoman"></a>
<h2>Yeoman</h2>
<!-- A scaffold tool for web applications -->
<a name="a-scaffold-tool-for-web-applications"></a>
<h3>
AC Talk: <em>A scaffold tool for web applications</em> by <a href="http://github.com/igorlima">Igor Lima</a>
</h3>
<ul>
<li><a href="http://igorlima.github.io/a-scaffolding-tool-for-web-applications">Slide deck @ github</a></li>
<li>Youtube video</li>
</ul>
<h4>Prerequisites:</h4>
<ul>
<li>JavaScript beginner</li>
</ul>
<h4>Resources:</h4>
<ul>
<li><a href="http://yeoman.io/">Yeoman</a></li>
<li><a href="http://gruntjs.com/">Grunt</a></li>
<li><a href="http://bower.io/">Bower</a></li>
</ul>
<p>Back to <a href="#contents">Contents</a>.</p>
<!-- AngularJS -->
<a name="angularjs"></a>
<h2>AngularJS</h2>
<!-- Superheroic Javascript MVW Framework -->
<a name="angularjs-superheroic-javascript-mvw-framework"></a>
<h3>
AC Talk: <em>AngularJS - Superheroic Javascript MVW framework</em> by <a href="http://github.com/rafaelmenta">Rafael Guedes</a>
</h3>
<ul>
<li><a href="http://rafaelmenta.github.io/talk-angularjs">Slide deck @ github</a></li>
<li>Youtube video</li>
</ul>
<h4>Prerequisites:</h4>
<ul>
<li>Intermediate Javascript</li>
<li>Design Patterns</li>
</ul>
<h4>Resources:</h4>
<ul>
<li><a href="http://docs.angularjs.org/guide">AngularJS: Developer Guide</a></li>
<li><a href="http://angular-ui.github.io/">AngularUI for AngularJS</a></li>
<li><a href="http://angular-ui.github.io/bootstrap/">Angular directives for Bootstrap</a></li>
<li><a href="http://www.cheatography.com/proloser/cheat-sheets/angularjs/">AngularJS Cheat Sheet by ProLoser - Cheatography.com</a></li>
<li><a href="http://directivemaker.info/#!/">AngularJS Directives generator</a></li>
<li><a href="http://stackoverflow.com">Stack Overflow</a> & <a href="http://github.com">Github</a> :)</li>
</ul>
<p>Back to <a href="#contents">Contents</a>.</p>
<!-- AngularJS - Part 2 -->
<a name="angularjs-part-2"></a>
<h3>
AC Talk: <em>AngularJS - Part 2</em> by <a href="http://github.com/rafaelmenta">Rafael Guedes</a>
</h3>
<ul>
<li><a href="http://rafaelmenta.github.io/talk-angularjs-2">Slide deck @ github</a></li>
<li>Youtube video</li>
</ul>
<h4>Prerequisites:</h4>
<ul>
<li>Intermediate Javascript</li>
<li>Design Patterns</li>
<li>AngularJS basics</li>
</ul>
<h4>Resources:</h4>
<ul>
<li><a href="http://www.benlesh.com/2013/08/angularjs-watch-digest-and-apply-oh-my.html">AngularJS: $watch, $digest and $apply</a></li>
<li><a href="http://trochette.github.io/Angular-Design-Patterns-Best-Practices">Angular.js: Advanced Design Patterns and Best Practices</a></li>
<li><a href="http://www.yearofmoo.com/2012/10/more-angularjs-magic-to-supercharge-your-webapp.html">More AngularJS Magic to Supercharge your Webapp</a></li>
<li><a href="http://amitgharat.wordpress.com/2013/06/08/the-hitchhikers-guide-to-the-directive/">The Hitchhiker’s Guide to the Directive</a></li>
<li><a href="http://elikirk.com/2013/07/22/angularjs-communication-between-controllers/">AngularJS: Communication Between Controllers </a></li>
<li><a href="http://angular-tips.com/blog/2013/08/watch-how-the-apply-runs-a-digest/">$watch How the $apply Runs a $digest</a></li>
<li><a href="http://docs.angularjs.org/guide">AngularJS: Developer Guider</a></li>
</ul>
<p>Back to <a href="#contents">Contents</a>.</p>
<!-- HTML5 -->
<a name="html5"></a>
<h2>HTML5</h2>
<!-- Brace yourselves, HTML5 has come! -->
<a name="brace-yourselves-html5-has-come"></a>
<h3>
<a name="ac-talk-brace-yourselves-html5-has-come-by-raphael-oliveira" class="anchor" href="#ac-talk-brace-yourselves-html5-has-come-by-raphael-oliveira"><span class="octicon octicon-link"></span></a>AC Talk: <em>Brace yourselves, HTML5 has come!</em> by <a href="https://github.com/raphaelddl">Raphael Oliveira</a>
</h3>
<ul>
<li><a href="http://raphaelddl.github.io/ACTalks-HTML5">Slide deck @ github</a></li>
<li>Youtube video</li>
</ul>
<h4>Prerequisites:</h4>
<ul>
<li>Intermediary HTML knowledge</li>
</ul>
<h4>Resources:</h4>
<ul>
<li><a href="http://www.w3.org/TR/html5-diff/">W3C Differences from HTML4</a></li>
<li><a href="https://rawgithub.com/whatwg/html-differences/master/Overview.html">WHATWG HTML5 Differences</a></li>
<li><a href="http://www.whatwg.org/specs/web-apps/current-work/multipage/text-level-semantics.html">WHATWG Text Semantic</a></li>
<li><a href="http://www.html5rocks.com/en/">HTML5Rocks</a></li>
<li><a href="http://www.html5doctor.com/">HTML5Doctor</a></li>
<li><a href="http://www.html5rocks.com/en/">HTML5Rocks</a></li>
<li><a href="http://slides.html5rocks.com/">HTML5Rocks Slides/Presentation</a></li>
<li><a href="http://glazkov.com/2011/01/14/what-the-heck-is-shadow-dom/"><em>BONUS</em> Shadow DOM explained</a></li>
</ul>
<p>Back to <a href="#contents">Contents</a>.</p>
<!-- CSS3 -->
<a name="css3"></a>
<h2>CSS 3</h2>
<!-- The Magic of CSSok-->
<a name="the-magic-of-css"></a>
<h3>
AC Talk: <em>The Magic of CSS</em> by <a href="https://github.com/raphaelddl">Raphael Oliveira</a>
</h3>
<ul>
<li><a href="http://raphaelddl.github.io/ACTalks-CSS3">Slide deck @ github</a></li>
<li><a href="http://www.youtube.com/watch?v=uBY_oKxCP-c"></a>Youtube video</li>
</ul>
<h4>Prerequisites:</h4>
<ul>
<li>Intermediary CSS knowledge</li>
</ul>
<h4>Resources:</h4>
<ul>
<li><a href="http://css3generator.com/">CSS3 Generator</a></li>
<li><a href="http://coding.smashingmagazine.com/2009/08/17/taming-advanced-css-selectors/">Taming advanced CSS selectors</a></li>
<li><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/transition">CSS transitions</a></li>
<li><a href="https://developer.mozilla.org/en-US/docs/Web/Guide/CSS/Using_CSS_animations">CSS Animations</a></li>
<li><a href="http://css-tricks.com/how-nth-child-works/">How NTH-CHILD works</a></li>
<li><a href="http://css-tricks.com/snippets/css/a-guide-to-flexbox/">*BONUS* Complete Guide to Flexbox</a></li>
</ul>
<p>Back to <a href="#contents">Contents</a>.</p>
<!-- Bootstrap & Foundation -->
<a name="bootstrap-and-foundation"></a>
<h2>Bootstrap & Foundation</h2>
<!-- The Magic of CSSok-->
<a name="the-good-war-for-ui"></a>
<h3>
AC Talk: <em>The good war for UI</em> by <a href="https://github.com/henriquecholo">Henrique Filho</a>
</h3>
<ul>
<li><a href="http://henriquecholo.github.io/bootstrap-vs-foundation-talk">Slide deck @ github</a></li>
<li>Youtube video</li>
</ul>
<h4>Prerequisites:</h4>
<ul>
<li>CSS Intermediate</li>
<li>JS Basic</li>
<li>HTML Basic</li>
</ul>
<h4>Resources:</h4>
<ul>
<li><a href="http://mobile.smashingmagazine.com/2014/02/19/responsive-design-frameworks-just-because-you-can-should-you/">Responsive Design Frameworks: Just Because You Can, Should You?</a></li>
<li><a href="http://responsive.vermilion.com/">Vermilion Comparison</a></li>
<li><a href="http://www.zingdesign.com/blog">Zing Design Blog</a> (search for Bootstrap and Foundation)</li>
<li><a href="http://getbootstrap.com/">Bootstrap Official</a></li>
<li><a href="http://foundation.zurb.com/">Foundation Zurb Official</a></li>
</ul>
<p>Back to <a href="#contents">Contents</a>.</p>
<!-- SASS -->
<a name="sass"></a>
<h2>SASS</h2>
<!-- Building awesome components with SASS -->
<a name="building-awesome-ui-components-with-sass"></a>
<h3>
<a name="ac-talk-building-awesome-ui-components-with-sass-by-arthur-c%C3%A2mara" class="anchor" href="#ac-talk-building-awesome-ui-components-with-sass-by-arthur-c%C3%A2mara"><span class="octicon octicon-link"></span></a>AC Talk: <em>Building awesome UI components with SASS</em> by <a href="https://github.com/arthurcamara1">Arthur Câmara</a>
</h3>
<ul>
<li><a href="https://github.com/acbr/ui-bootcamp/blob/master/lectures/Building%20awesome%20UI%20components%20with%20SASS.pdf?raw=true">Slide deck in PDF</a></li>
<li><a href="http://www.youtube.com/watch?v=h7UussnL6Gs">Youtube video</a></li>
</ul>
<h4>Prerequisites:</h4>
<ul>
<li>HTML</li>
<li>CSS</li>
</ul>
<h4>Resources:</h4>
<ul>
<li><a href="http://sass-lang.com">Official website</a></li>
<li><a href="http://net.tutsplus.com/sessions/mastering-sass">Simple tutorial</a></li>
<li><a href="http://thesassway.com">The SASS way</a></li>
</ul>
<h4>Expand to other frameworks:</h4>
<ul>
<li><a href="http://lesscss.org">LESS</a></li>
<li><a href="http://compass-style.org">Compass</a></li>
<li><a href="http://learnboost.github.io/stylus">Stylus</a></li>
</ul>
<p>Back to <a href="#contents">Contents</a>.</p></article>
<!-- SASS -->
<a name="nodejs"></a>
<h2>NODEJS</h2>
<!-- Building awesome components with SASS -->
<a name="NodeJS and Express"></a>
<h3>
<a name="ac-talk-nodejs-and-express-by-victor-gomes" class="anchor" href="#ac-talk-nodejs-and-express-by-victor-gomes"><span class="octicon octicon-link"></span></a>AC Talk: <em>NodeJS and Express</em> by <a href="https://github.com/victorlocomotiv">Victor Gomes</a>
</h3>
<ul>
<li><a href="http://victorlocomotiv.github.io/talk-nodejs-and-express">Slide deck @ github</a></li>
<li>Youtube video</li>
</ul>
<h4>Prerequisites:</h4>
<ul class="task-list">
<li>JavaScript Knowledge</li>
<li>Have <a href="http://nodejs.org">Node.JS</a> installed</li>
</ul>
<h4>Resources:</h4>
<ul class="task-list">
<li><a href="http://expressjs.com/4x/api.html">ExpressJS API Reference</a></li>
<li><a href="https://github.com/visionmedia/express">ExpressJS at Github</a></li>
<li><a href="https://github.com/visionmedia/express/tree/master/examples/mvc">ExpressJS MVC template</a></li>
<li><a href="http://mongoosejs.com/">Mongoose</a></li>
</ul>
<h4>Expand to other frameworks:</h4>
<p>Back to <a href="#contents">Contents</a>.</p></article>
</section>
<footer>
<p>This initiative is maintained by <a href="https://github.com/acbr">Avenue Code</a></p>
<p><small>Hosted on GitHub Pages — Theme by <a href="https://github.com/orderedlist">orderedlist</a></small></p>
</footer>
</div>
<script src="javascripts/scale.fix.js"></script>
</body>
</html>