-
Notifications
You must be signed in to change notification settings - Fork 12
/
index.html
executable file
·1809 lines (1739 loc) · 95.4 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 http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<title>CampJS: Bringing together the most awesome JavaScript talent from Australia & worldwide.</title>
<meta name="description" content="" />
<meta name="author" content="" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="shortcut icon" href="/favicon.ico" />
<link href="/bootstrap.min.css" rel="stylesheet" type="text/css" />
<link href="/screen.css?v=14" rel="stylesheet" type="text/css" />
<script>window["_GOOG_TRANS_EXT_VER"] = "1";</script>
<script>
// Check if a new cache is available on page load.
window.addEventListener('load', function(e) {
window.applicationCache.addEventListener('updateready', function(e) {
if (window.applicationCache.status == window.applicationCache.UPDATEREADY) {
// Browser downloaded a new app cache.
// Swap it in and reload the page to get the new hotness.
window.applicationCache.swapCache();
window.location.reload();
} else {
// Manifest didn't change. Nothing new to server.
}
}, false);
}, false);
</script>
</head>
<body class="home">
<div class="wrap">
<header class="container">
<div class="row">
<h1 class="logo">CAMPJS<br />III</h1>
<h5 class="blurb">A weekend-long hack-retreat with JavaScript developers.</h5>
<h2>May 23 — 26 2014</h2>
<h2>Melbourne, Australia.</h2>
</div>
</header>
<div class="container menu">
<div class="row">
<div class="col-sm-12 col-md-12 col-md-offset-0">
<nav class="navbar navbar-default" role="navigation">
<ul class="nav nav-justified">
<li class="active"><a href="/index.html">Home</a></li>
<li><a href="https://github.com/campJS/campjs/issues">Discussions</a></li>
<li><a href="/sponsor.html">Sponsor</a></li>
<li><a href="/#sessions">Sessions</a></li>
<li><a href="/stories.html">Stories</a></li>
</ul>
</nav>
</div>
</div>
</div>
<main class="container">
<div class="row">
<div class="col-sm-12 col-md-8 col-md-offset-2">
<p></p>
<iframe id="promo-video" src="//player.vimeo.com/video/92020119" width="100%" height="414px" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>
<p>This community-created video was built by <a href="http://twitter.com/theorm">Roman Kalyakin</a>, <a href="http://twitter.com/antulik">Anton Katunin</a> & <a href="https://twitter.com/JaapRood">Jaap van Hardeveld</a></p>
</div>
</div>
<div class="row">
<div class="col-sm-12 col-md-8 col-md-offset-2">
<section id="tickets">
<a id="buy-tickets" class="btn btn-lg btn-warning btn-block buy-tickets" href="http://tickets.campjs.com/">Get Tickets</a>
<span style="text-align: center; font-size: smaller;">
Early bird tickets sold out! Tickets on sale now.
</span>
</section>
<section id="mentors">
<h2>Speakers and Mentors</h2>
<div class="mentor col-md-4 col-sm-3 col-xs-6">
<a href="https://github.com/domenic">
<img src="https://0.gravatar.com/avatar/c6d819207a3010b39d13e1f59f2c0029?r=x&s=150"/>
</a>
<h3><a href="https://github.com/domenic">Domenic Denicola</a></h3>
<div class="links">
<a href="https://github.com/domenic" title="GitHub"><img src="images/glyphicons_social_21_github.png"/></a>
<a href="https://twitter.com/domenic" title="Twitter"><img src="images/glyphicons_social_31_twitter.png"/></a>
</div>
</div>
<div class="mentor col-md-4 col-sm-3 col-xs-6">
<a href="https://github.com/juliangruber">
<img src="https://0.gravatar.com/avatar/a010d5218f2c3d194dbbac9c5d14d0ad?r=x&s=150"/>
</a>
<h3><a href="https://github.com/juliangruber">Julian Gruber</a></h3>
<div class="links">
<a href="https://github.com/juliangruber" title="GitHub"><img src="images/glyphicons_social_21_github.png"/></a>
<a href="https://twitter.com/juliangruber" title="Twitter"><img src="images/glyphicons_social_31_twitter.png"/></a>
</div>
</div>
<div class="mentor col-md-4 col-sm-3 col-xs-6">
<a href="https://github.com/groundwater">
<img src="https://1.gravatar.com/avatar/60f1d97dcc47c78778af94e6cf2f0099?r=x&s=150"/>
</a>
<h3><a href="https://github.com/groundwater">Jacob Groundwater</a></h3>
<div class="links">
<a href="https://github.com/groundwater" title="GitHub"><img src="images/glyphicons_social_21_github.png"/></a>
<a href="https://twitter.com/0x604" title="Twitter"><img src="images/glyphicons_social_31_twitter.png"/></a>
</div>
</div>
<div class="mentor col-md-4 col-sm-3 col-xs-6">
<a href="https://github.com/hij1nx">
<img src="https://avatars0.githubusercontent.com/u/136109?s=150"/>
</a>
<h3><a href="https://github.com/hij1nx">Paolo Fragomeni</a></h3>
<div class="links">
<a href="https://github.com/hij1nx" title="GitHub"><img src="images/glyphicons_social_21_github.png"/></a>
<a href="https://twitter.com/hij1nx" title="Twitter"><img src="images/glyphicons_social_31_twitter.png"/></a>
</div>
</div>
<div class="mentor col-md-4 col-sm-3 col-xs-6">
<a href="https://github.com/rvagg">
<img src="https://avatars1.githubusercontent.com/u/495647?s=150"/>
</a>
<h3><a href="https://github.com/rvagg">Rod Vagg</a></h3>
<div class="links">
<a href="https://github.com/rvagg" title="GitHub"><img src="images/glyphicons_social_21_github.png"/></a>
<a href="https://twitter.com/rvagg" title="Twitter"><img src="images/glyphicons_social_31_twitter.png"/></a>
</div>
</div>
<div class="mentor col-md-4 col-sm-3 col-xs-6">
<a href="https://github.com/anthonyshort">
<img src="https://1.gravatar.com/avatar/66a084a22668f2489f0536455d9b16da?r=x&s=150"/>
</a>
<h3><a href="https://github.com/anthonyshort">Anthony Short</a></h3>
<div class="links">
<a href="https://github.com/anthonyshort" title="GitHub"><img src="images/glyphicons_social_21_github.png"/></a>
<a href="https://twitter.com/anthonyshort" title="Twitter"><img src="images/glyphicons_social_31_twitter.png"/></a>
</div>
</div>
<div class="mentor col-md-4 col-sm-3 col-xs-6">
<a href="https://github.com/ianstormtaylor">
<img src="https://2.gravatar.com/avatar/e7f4e4b1d3b381e70f864bc7f8b4493e?r=x&s=150"/>
</a>
<h3><a href="https://github.com/ianstormtaylor">Ian Storm Taylor</a></h3>
<div class="links">
<a href="https://github.com/ianstormtaylor" title="GitHub"><img src="images/glyphicons_social_21_github.png"/></a>
<a href="https://twitter.com/ianstormtaylor" title="Twitter"><img src="images/glyphicons_social_31_twitter.png"/></a>
</div>
</div>
<div class="mentor col-md-4 col-sm-3 col-xs-6">
<a href="https://github.com/DamonOehlman">
<img src="https://2.gravatar.com/avatar/2f3f59b09b160bc49f1e226e5b996ca3?r=x&s=150"/>
</a>
<h3><a href="https://github.com/DamonOehlman">Damon Oehlman</a></h3>
<div class="links">
<a href="https://github.com/DamonOehlman" title="GitHub"><img src="images/glyphicons_social_21_github.png"/></a>
<a href="https://twitter.com/DamonOehlman" title="Twitter"><img src="images/glyphicons_social_31_twitter.png"/></a>
</div>
</div>
<div class="mentor col-md-4 col-sm-3 col-xs-6">
<a href="https://github.com/balupton">
<img src="https://1.gravatar.com/avatar/9400cb5aeb155ccec614652542fd274d?r=x&s=150"/>
</a>
<h3><a href="https://github.com/balupton">Benjamin Lupton</a></h3>
<div class="links">
<a href="https://github.com/balupton" title="GitHub"><img src="images/glyphicons_social_21_github.png"/></a>
<a href="https://twitter.com/balupton" title="Twitter"><img src="images/glyphicons_social_31_twitter.png"/></a>
</div>
</div>
<div class="mentor col-md-4 col-sm-3 col-xs-6">
<a href="https://github.com/AnnaGerber">
<img src="https://2.gravatar.com/avatar/6c5be200a84951c74c05932ae73fa4a9?r=x&s=150"/>
</a>
<h3><a href="https://github.com/AnnaGerber">Anna Gerber</a></h3>
<div class="links">
<a href="https://github.com/AnnaGerber" title="GitHub"><img src="images/glyphicons_social_21_github.png"/></a>
<a href="https://twitter.com/AnnaGerber" title="Twitter"><img src="images/glyphicons_social_31_twitter.png"/></a>
</div>
</div>
<div class="mentor col-md-4 col-sm-3 col-xs-6">
<a href="https://github.com/ajfisher">
<img src="https://0.gravatar.com/avatar/a0006ca00e14d33a4ca6fdf5a75b6d9a?r=x&s=150"/>
</a>
<h3><a href="https://github.com/ajfisher">Andrew Fisher</a></h3>
<div class="links">
<a href="https://github.com/ajfisher" title="GitHub"><img src="images/glyphicons_social_21_github.png"/></a>
<a href="https://twitter.com/ajfisher" title="Twitter"><img src="images/glyphicons_social_31_twitter.png"/></a>
</div>
</div>
<div class="mentor col-md-4 col-sm-3 col-xs-6">
<a href="https://github.com/wolfeidau">
<img src="https://1.gravatar.com/avatar/ebf974e0dbcfe88c508df6f395661a4b?r=x&s=150"/>
</a>
<h3><a href="https://github.com/wolfeidau">Mark Wolfe</a></h3>
<div class="links">
<a href="https://github.com/wolfeidau" title="GitHub"><img src="images/glyphicons_social_21_github.png"/></a>
<a href="https://twitter.com/wolfeidau" title="Twitter"><img src="images/glyphicons_social_31_twitter.png"/></a>
</div>
</div>
<div class="mentor col-md-4 col-sm-3 col-xs-6">
<a href="https://github.com/garrows">
<img src="https://1.gravatar.com/avatar/626884fa79c4b3aaa75d56d278cf0b44?r=x&s=150"/>
</a>
<h3><a href="https://github.com/garrows">Glen Arrowsmith</a></h3>
<div class="links">
<a href="https://github.com/garrows" title="GitHub"><img src="images/glyphicons_social_21_github.png"/></a>
<a href="https://twitter.com/garrows" title="Twitter"><img src="images/glyphicons_social_31_twitter.png"/></a>
</div>
</div>
<div class="mentor col-md-4 col-sm-3 col-xs-6">
<a href="https://github.com/nog3">
<img src="/people/brendan_halliday.jpg"/>
</a>
<h3><a href="https://github.com/nog3">Brendan Halliday</a></h3>
<div class="links">
<a href="https://github.com/nog3" title="GitHub"><img src="images/glyphicons_social_21_github.png"/></a>
</div>
</div>
<div class="mentor col-md-4 col-sm-3 col-xs-6">
<a href="https://github.com/geelen">
<img src="/people/glen_maddern.jpg"/>
</a>
<h3><a href="https://github.com/geelen">Glen Maddern</a></h3>
<div class="links">
<a href="https://github.com/geelen" title="GitHub"><img src="images/glyphicons_social_21_github.png"/></a>
<a href="https://twitter.com/glenmaddern" title="Twitter"><img src="images/glyphicons_social_31_twitter.png"/></a>
</div>
</div>
<div class="mentor col-md-4 col-sm-3 col-xs-6">
<a href="https://github.com/benschwarz">
<img src="/people/ben_schwarz.jpg"/>
</a>
<h3><a href="https://github.com/benschwarz">Ben Schwarz</a></h3>
<div class="links">
<a href="https://github.com/benschwarz" title="GitHub"><img src="images/glyphicons_social_21_github.png"/></a>
<a href="https://twitter.com/benschwarz" title="Twitter"><img src="images/glyphicons_social_31_twitter.png"/></a>
</div>
</div>
<div class="mentor col-md-4 col-sm-3 col-xs-6">
<a href="https://github.com/codemiller">
<img src="/people/katie_miller.jpg"/>
</a>
<h3><a href="https://github.com/codemiller">Katie Miller</a></h3>
<div class="links">
<a href="https://github.com/codemiller" title="GitHub"><img src="images/glyphicons_social_21_github.png"/></a>
<a href="https://twitter.com/codemiller" title="Twitter"><img src="images/glyphicons_social_31_twitter.png"/></a>
</div>
</div>
<div class="mentor col-md-4 col-sm-3 col-xs-6">
<a href="https://github.com/pomke">
<img src="https://avatars2.githubusercontent.com/u/551374?s=150"/>
</a>
<h3><a href="https://github.com/pomke">Pomke Nohkan</a></h3>
<div class="links">
<a href="https://github.com/pomke" title="GitHub"><img src="images/glyphicons_social_21_github.png"/></a>
<a href="https://twitter.com/pomke" title="Twitter"><img src="images/glyphicons_social_31_twitter.png"/></a>
</div>
</div>
<div class="mentor col-md-4 col-sm-3 col-xs-6">
<a href="https://github.com/SomeoneWeird">
<img src="https://avatars0.githubusercontent.com/u/665754?s=150"/>
</a>
<h3><a href="https://github.com/SomeoneWeird">Adam Brady</a></h3>
<div class="links">
<a href="https://github.com/SomeoneWeird" title="GitHub"><img src="images/glyphicons_social_21_github.png"/></a>
<a href="https://twitter.com/Adam__Brady" title="Twitter"><img src="images/glyphicons_social_31_twitter.png"/></a>
</div>
</div>
<div class="mentor col-md-4 col-sm-3 col-xs-6">
<a href="https://github.com/deoxxa">
<img src="https://1.gravatar.com/avatar/d27bae51ba163785869161126434ea56?d=https%3A%2F%2Fidenticons.github.com%2F83f849c6fe01025f8f08a6ad12d02eb2.png&r=x&s=150"/>
</a>
<h3><a href="https://github.com/deoxxa">Conrad Pankoff</a></h3>
<div class="links">
<a href="https://github.com/deoxxa" title="GitHub"><img src="images/glyphicons_social_21_github.png"/></a>
<a href="https://twitter.com/deoxxa" title="Twitter"><img src="images/glyphicons_social_31_twitter.png"/></a>
</div>
</div>
<div class="mentor col-md-4 col-sm-3 col-xs-6">
<img src="/people/michael_schloh.png"/>
<h3>Michael Schloh von Bennewitz</h3>
<div class="links">
</div>
</div>
<div class="mentor col-md-4 col-sm-3 col-xs-6">
<a href="https://github.com/tmpvar">
<img src="https://avatars1.githubusercontent.com/u/46673?s=150"/>
</a>
<h3><a href="https://github.com/tmpvar">Elijah Insua</a></h3>
<div class="links">
<a href="https://github.com/tmpvar" title="GitHub"><img src="images/glyphicons_social_21_github.png"/></a>
<a href="https://twitter.com/tmpvar" title="Twitter"><img src="images/glyphicons_social_31_twitter.png"/></a>
</div>
</div>
<div class="mentor col-md-4 col-sm-3 col-xs-6">
<a href="https://github.com/pauljt">
<img src="https://avatars2.githubusercontent.com/u/1396160?s=150"/>
</a>
<h3><a href="https://github.com/pauljt">Paul Theriault</a></h3>
<div class="links">
<a href="https://github.com/pauljt" title="GitHub"><img src="images/glyphicons_social_21_github.png"/></a>
<a href="https://twitter.com/creativemisuse" title="Twitter"><img src="images/glyphicons_social_31_twitter.png"/></a>
</div>
</div>
<div class="mentor col-md-4 col-sm-3 col-xs-6">
<a href="https://github.com/sidorares">
<img src="https://avatars0.githubusercontent.com/u/173025?s=150"/>
</a>
<h3><a href="https://github.com/sidorares">Andrey Sidorov</a></h3>
<div class="links">
<a href="https://github.com/sidorares" title="GitHub"><img src="images/glyphicons_social_21_github.png"/></a>
<a href="https://twitter.com/sidorares" title="Twitter"><img src="images/glyphicons_social_31_twitter.png"/></a>
</div>
</div>
<div class="mentor col-md-4 col-sm-3 col-xs-6">
<a href="https://github.com/tadatuta">
<img src="https://avatars0.githubusercontent.com/u/475746?s=150"/>
</a>
<h3><a href="https://github.com/tadatuta">Vladimir Grinenko</a></h3>
<div class="links">
<a href="https://github.com/tadatuta" title="GitHub"><img src="images/glyphicons_social_21_github.png"/></a>
<a href="https://twitter.com/tadatuta" title="Twitter"><img src="images/glyphicons_social_31_twitter.png"/></a>
</div>
</div>
<div class="mentor col-md-4 col-sm-3 col-xs-6">
<a href="https://github.com/soareschen">
<img src="https://avatars0.githubusercontent.com/u/97665?s=150"/>
</a>
<h3><a href="https://github.com/soareschen">Soares Chen</a></h3>
<div class="links">
<a href="https://github.com/soareschen" title="GitHub"><img src="images/glyphicons_social_21_github.png"/></a>
<a href="https://twitter.com/soareschen" title="Twitter"><img src="images/glyphicons_social_31_twitter.png"/></a>
</div>
</div>
<div class="mentor col-md-4 col-sm-3 col-xs-6">
<a href="https://github.com/alexmackey">
<img src="https://avatars0.githubusercontent.com/u/144549?s=150"/>
</a>
<h3><a href="https://github.com/alexmackey">Alex Mackey</a></h3>
<div class="links">
<a href="https://github.com/alexmackey" title="GitHub"><img src="images/glyphicons_social_21_github.png"/></a>
<a href="https://twitter.com/alexjmackey" title="Twitter"><img src="images/glyphicons_social_31_twitter.png"/></a>
</div>
</div>
<div class="mentor col-md-4 col-sm-3 col-xs-6">
<a href="https://github.com/weilu">
<img src="/people/luwei.png"/>
</a>
<h3><a href="https://github.com/weilu">Lu Wei</a></h3>
<div class="links">
<a href="https://github.com/weilu" title="GitHub"><img src="images/glyphicons_social_21_github.png"/></a>
<a href="https://twitter.com/luweidewei" title="Twitter"><img src="images/glyphicons_social_31_twitter.png"/></a>
</div>
</div>
<div class="mentor col-md-4 col-sm-3 col-xs-6">
<a href="https://github.com/markdalgleish">
<img src="https://avatars3.githubusercontent.com/u/696693?s=150"/>
</a>
<h3><a href="https://github.com/markdalgleish">Mark Dalgleish</a></h3>
<div class="links">
<a href="https://github.com/markdalgleish" title="GitHub"><img src="images/glyphicons_social_21_github.png"/></a>
<a href="https://twitter.com/markdalgleish" title="Twitter"><img src="images/glyphicons_social_31_twitter.png"/></a>
</div>
</div>
<div class="mentor col-md-4 col-sm-3 col-xs-6">
<a href="https://github.com/mjt01">
<img src="https://avatars2.githubusercontent.com/u/912060?s=150"/>
</a>
<h3><a href="https://github.com/mjt01">Michael Taranto</a></h3>
<div class="links">
<a href="https://github.com/mjt01" title="GitHub"><img src="images/glyphicons_social_21_github.png"/></a>
<a href="https://twitter.com/michaeltaranto" title="Twitter"><img src="images/glyphicons_social_31_twitter.png"/></a>
</div>
</div>
<div class="mentor col-md-4 col-sm-3 col-xs-6">
<a href="https://github.com/davidmason">
<img src="https://avatars1.githubusercontent.com/u/482026?s=150"/>
</a>
<h3><a href="https://github.com/davidmason">David Mason</a></h3>
<div class="links">
<a href="https://github.com/davidmason" title="GitHub"><img src="images/glyphicons_social_21_github.png"/></a>
<a href="https://twitter.com/drdmason" title="Twitter"><img src="images/glyphicons_social_31_twitter.png"/></a>
</div>
</div>
<div class="mentor col-md-4 col-sm-3 col-xs-6">
<a href="https://github.com/stennie">
<img src="https://avatars0.githubusercontent.com/u/15554?s=150"/>
</a>
<h3><a href="https://github.com/stennie">Stephen Steneker</a></h3>
<div class="links">
<a href="https://github.com/stennie" title="GitHub"><img src="images/glyphicons_social_21_github.png"/></a>
<a href="https://twitter.com/stennie" title="Twitter"><img src="images/glyphicons_social_31_twitter.png"/></a>
</div>
</div>
<div class="mentor col-md-4 col-sm-3 col-xs-6">
<a href="https://github.com/JedWatson">
<img src="https://avatars0.githubusercontent.com/u/872310?s=150"/>
</a>
<h3><a href="https://github.com/JedWatson">Jed Watson</a></h3>
<div class="links">
<a href="https://github.com/JedWatson" title="GitHub"><img src="images/glyphicons_social_21_github.png"/></a>
<a href="https://twitter.com/JedWatson" title="Twitter"><img src="images/glyphicons_social_31_twitter.png"/></a>
</div>
</div>
<div class="mentor col-md-4 col-sm-3 col-xs-6">
<a href="https://github.com/sporto">
<img src="https://avatars0.githubusercontent.com/u/1005498?s=150"/>
</a>
<h3><a href="https://github.com/sporto">Sebastian Porto</a></h3>
<div class="links">
<a href="https://github.com/sporto" title="GitHub"><img src="images/glyphicons_social_21_github.png"/></a>
<a href="https://twitter.com/sebasporto" title="Twitter"><img src="images/glyphicons_social_31_twitter.png"/></a>
</div>
</div>
</section>
<h4>…more to be announced!</h4>
</div>
</div>
<div class="row" id="sponsors">
<div class="col-sm-12 col-md-8 col-md-offset-2" id="content-wrap">
<h3>CampJS Sponsors</h3>
<section>
<div class="gold row">
<a href="http://bomboratech.com.au/" class="col-md-12 bombora-logo"><img style="width: 260px;"src="/sponsors/bombora.jpg"></a>
</div>
<div class="gold row">
<a href="https://segment.io/" class="col-md-12"><img class="segmentio-logo" src="/sponsors/segmentio-logo.jpg"></a>
</div>
<div class="silver row col-md-12">
<a href="http://www.telerik.com/" class="col-md-6"><img src="/sponsors/telerik.png"></a>
<a href="http://www.smallworldsocial.com/" class="col-md-6 smallworldsocial-logo"><img src="/sponsors/smallworldsocial.png"></a>
</div>
<div class="silver row col-md-12">
<a href="http://www.impos.com.au/" class="impos-logo" ><img src="/sponsors/impos.jpg"></a>
</div>
<div class="bronze row">
<div class="col-md-4">
<a href="http://www.digital-logic.com.au/" class="digital-logic-logo" ><img src="/sponsors/digital-logic.png"></a>
</div>
<div class="col-md-4">
<a href="http://www.lookahead.com.au/" class="lookahead-logo"><img src="/sponsors/lookahead.jpg"></a>
</div>
<div class="col-md-4">
<a href="http://www.jetbrains.com/"><img src="/sponsors/jetbrains.png"></a>
</div>
<div class="col-md-4">
<a href="http://www.pearson.com/"><img src="/sponsors/pearson.jpg"></a>
</div>
</div>
</section>
</div>
</div>
<div class="row">
<div class="col-sm-12 col-md-8 col-md-offset-2" id="content-wrap">
<section>
<h1>About CampJS</h1>
<p>
CampJS creates a unique blend of expert-led, structured content
and self-directed, unstructured learning.
</p>
<p>
CampJS III will commence at 3pm Friday on the 23rd of May, and
run through to 9am Monday the 26th. The Camp will be held at <a
href="http://maps.google.com/maps?f=q&hl=en&geocode=&q=Lord+Somers+Camp+Parklands+Avenue+Somers&sll=-37.787844,145.025454&sspn=0.019637,0.046778&ie=UTF8&cid=-38391441,145152110,7610982389541332772&ll=-38.382642,145.160122&spn=0.023548,0.036478&z=14&iwloc=A&source=embed">Lord
Somers Camp, Victoria, Australia</a>. Expect a CampJS IV later
in 2014.
</p>
<p>
<strong>A bus from the airport will be provided for interstate travellers.</strong>Fly into Tullamarine airport around midday, busses will leave between 1 and 2pm. The return bus will get people back to the airport before midday.
</p>
<p>
The venue does provide comfortable accommodation, but you can
camp there if that is your wish.
</p>
<div class="logo">
<a href="https://twitter.com/angelinamagnum/status/429331153611280384"><img src="/images/fabbro-campjs-testimonial.png" /></a>
</div>
</section>
</div>
</div>
<div class="row">
<div class="col-sm-12 col-md-8 col-md-offset-2" id="content-wrap">
<h1><a name="sessions" href="#sessions">CampJS Sessions</a></h1>
<ul>
<li><a href="#thinking-in-components">Thinking in Components</a></li>
<li><a href="#es6-workshop">ES6</a></li>
<li><a href="#es6-generators">ES6 Generators</a></li>
<li><a href="#leveldb">LevelDB</a></li>
<li><a href="#nodeos">Nodeos</a></li>
<li><a href="#cad-cam-for-browser">A CAD→CAM solution for the Browser</a></li>
<li><a href="#nodebots">NodeBots</a></li>
<li><a href="#mobile-iot-nodejs">Interfacing with mobile IOT Nodes</a></li>
<li><a href="#node-docker">Dropping Anchor</a></li>
<li><a href="#webrtc-components">WebRTC & Web Components; match made in heaven</a></li>
<li><a href="#bem">BEM for JS</a></li>
<li><a href="#quiver">Quiver.js - A New Server Side Component Architecture</a></li>
<li><a href="#intro-to-webgl">Intro to WebGL with three.js</a></li>
<li><a href="#webpack">Packaging CommonJS for the browser: Webpack and Browserify</a></li>
<li><a href="#makehaste">Make Haste: Fast Track to Functional Thinking</a></li>
<li><a href="#gulp">Front-end Builds with Gulp</a></li>
<li><a href="#offline-first">Offline-First from First Principals</a></li>
<li><a href="#nodeschool-learnyounode">Learnyounode</a></li>
<li><a href="#nodeschool-streamadventure">Stream Adventure</a></li>
<li><a href="#nodeschool-bytewiser">Bytewiser</a></li>
<li><a href="#nodeschool-functional-javascript">Functional JavaScript</a></li>
<li><a href="#firefoxos-homescreen">Firefox OS Homescreen hacking</a></li>
<li><a href="#atom-editor">Extending Atom editor</a></li>
<li><a name="#keystonejs-mongodb">Developing apps with KeystoneJS & MongoDB</a></li>
</ul>
<div class="session">
<h2><a name="thinking-in-components" href="#thinking-in-components">Thinking in Components</a> – Workshop</h2>
<div class="mentors">
<div class="mentor">
<a href="https://github.com/anthonyshort">
<img src="https://1.gravatar.com/avatar/66a084a22668f2489f0536455d9b16da?r=x&s=150"/>
</a>
<h3><a href="https://github.com/anthonyshort">Anthony Short</a></h3>
<div class="links">
<a href="https://github.com/anthonyshort" title="GitHub"><img src="images/glyphicons_social_21_github.png"/></a>
<a href="https://twitter.com/anthonyshort" title="Twitter"><img src="images/glyphicons_social_31_twitter.png"/></a>
</div>
</div>
<div class="mentor">
<a href="https://github.com/ianstormtaylor">
<img src="https://2.gravatar.com/avatar/e7f4e4b1d3b381e70f864bc7f8b4493e?r=x&s=150"/>
</a>
<h3><a href="https://github.com/ianstormtaylor">Ian Storm Taylor</a></h3>
<div class="links">
<a href="https://github.com/ianstormtaylor" title="GitHub"><img src="images/glyphicons_social_21_github.png"/></a>
<a href="https://twitter.com/ianstormtaylor" title="Twitter"><img src="images/glyphicons_social_31_twitter.png"/></a>
</div>
</div>
</div>
<p>
Over the past couple of years, front-end development has begun to grow up and
become a serious discipline thanks to browsers and tooling but we haven’t yet
had a good way to share tiny pieces of front-end code. Component is that
solution.
</p>
<p>
Component gives us a package manager that tackles not only versioning, but the
entire front-end workflow. It has similar goals to Web Components and allows
you to create packages of HTML, CSS and Javascript and re-use them across all
your different projects.
</p>
<p>
Using Component we will show you how you can structure an application and
create and share your own packages. Most importantly, we will show you how to
think in “components” instead of large libraries so you can make your HTML, CSS
and JS more modular than ever before.
</p>
<div class="about-mentor">
<h4>Anthony Short</h4>
<p>
Anthony is an Australian designer and front-end engineer at Segment.io in San
Francisco. He is a contributor to Component and many other
open-source projects and thinks every library should be a
Component.
</p>
<h4>Ian Storm Taylor</h4>
<p>
Ian is a designer and developer at Segment.io who’s super into
open-source. He loves component with a passion, and thinks anyone
and everyone who does front-end work should be using it.
</p>
</div>
</div>
<div class="session">
<h2><a name="es6-workshop" href="#es6-workshop">ES6</a> – Workshop</h2>
<div class="mentor">
<a href="https://github.com/domenic">
<img src="https://0.gravatar.com/avatar/c6d819207a3010b39d13e1f59f2c0029?r=x&s=150"/>
</a>
<h3><a href="https://github.com/domenic">Domenic Denicola</a></h3>
<div class="links">
<a href="https://github.com/domenic" title="GitHub"><img src="images/glyphicons_social_21_github.png"/></a>
<a href="https://twitter.com/domenic" title="Twitter"><img src="images/glyphicons_social_31_twitter.png"/></a>
</div>
</div>
<p>
The next version of JavaScript brings new syntax, new
capabilities, and generally lots of new toys to play with. And
you can use most of it right now! Many of its syntactic
features are easily used via transpilation, and even some of the
more exotic ones—like weak maps, or symbols, or proxies—are
starting to show up in the engines we use today.
</p>
<p>
This workshop will give you a hands-on introduction to a wide
variety of ES6 features, with a focus on those that you can use
today via transpilation or bleeding-edge Node and browser
versions. By the end, you'll be writing ES6 code fluently, and
be ready to take back these techniques to your team for use in
real-world projects.
</p>
<div class="about-mentor">
<h3>Domenic Denicola</h3>
<p>
Domenic Denicola is highly active in the JavaScript community,
building web applications for a living while maintaining many
open-source libraries and contributing to the web and JavaScript
standards process on the side. He's passionate about things like
software craftsmanship, the next version of JavaScript, and
making the standards process more transparent to developers, and
is known as one of the co-authors of the <a href="http://promisesaplus.com/">Promises/A+</a> open specification and the editor of
<a href="https://github.com/domenic/promises-unwrapping">the ES6 promises spec</a>.
</p>
<p>
Recently he was elected to the <a href="http://www.w3.org/2001/tag/">W3C Technical Architecture Group</a>,
and has been working on bringing streams <a
href="https://github.com/whatwg/streams/">from Node.js into the
browser</a>.<br /> Domenic works at <a href="http://www.lab49.com/">Lab49</a>
in New York City.
</p>
</div>
</div>
<div class="session">
<h2><a name="leveldb" href="#leveldb">LevelDB</a> – Workshop</h2>
<div class="mentor">
<a href="https://github.com/hij1nx">
<img src="https://avatars0.githubusercontent.com/u/136109?r=x&s=400"/>
</a>
<h3><a href="https://github.com/hij1nx">Paolo Fragomeni</a></h3>
<div class="links">
<a href="https://github.com/hij1nx" title="GitHub"><img src="images/glyphicons_social_21_github.png"/></a>
<a href="https://twitter.com/hij1nx" title="Twitter"><img src="images/glyphicons_social_31_twitter.png"/></a>
</div>
</div>
<p>
Databases have traditionally been a black box. Most people don't understand
how they work entirely, making them difficult to extend or integrate with
confidence. Why not try a more Node.js-like solution to the problem of data
persistence? A solution where you start with a simple kernel and add or create
small modules that facilitate *your* particular problem! Let's take a deep dive
into the world of LevelDB! Let's examine how you can liberate yourself from
feature bloated, highly monolithic, black-box databases without losing any value.
</p>
<div class="about-mentor">
<h4>Paolo Fragomeni</h4>
<p>
I like to build products. Currently I'm CTO at Mic Network, a futuristic news
company, from the future.
</p>
</div>
</div>
<div class="session">
<h2><a name="generators" href="#es6-generators">ES6 Generators</a> – Workshop</h2>
<div class="mentor">
<a href="https://github.com/juliangruber">
<img src="https://0.gravatar.com/avatar/a010d5218f2c3d194dbbac9c5d14d0ad?r=x&s=150"/>
</a>
<h3><a href="https://github.com/juliangruber">Julian Gruber</a></h3>
<div class="links">
<a href="https://github.com/juliangruber" title="GitHub"><img src="images/glyphicons_social_21_github.png"/></a>
<a href="https://twitter.com/juliangruber" title="Twitter"><img src="images/glyphicons_social_31_twitter.png"/></a>
</div>
</div>
<p>
Asynchronous flow control in JavaScript was broken. It didn't matter if you
used pure JS or a flow control library like promises or Node.js streams, you
were reimplementing what the language already had and lost interoperability.
Instead of handling errors with try/catch blocks and iterating with loops, you
were forced to use something custom that didn't work well with another custom
thing. With generators however, you can now use those trustworthy native
language constructs again and still do non-blocking IO!
</p>
<p>
We’re already relying heavily on generators at <a href="http://segment.io">segment.io</a> and they
made our code a lot more solid and maintainable. Let’s look at how
they work and how they can be used in real life situations.
</p>
<div class="about-mentor">
<h4>Julian Gruber</h4>
<p>
Julian Gruber is a Software Engineer from Southern Germany who
splits his time between his day job at Segment.io, his many
independent open source projects, and his metal band <a
href="http://runningdeath.bandcamp.com/">Running Death</a>.
His most recent areas of interest are JS generators, LevelDB and
browser operating systems.
</p>
</div>
</div>
<div class="session">
<h2><a name="nodeos" href="#nodeos">Nodeos – Adding a new level to the "full stack developer"</a> – Workshop</h2>
<div class="mentor">
<a href="https://github.com/groundwater">
<img src="https://1.gravatar.com/avatar/60f1d97dcc47c78778af94e6cf2f0099?r=x&s=150"/>
</a>
<h3><a href="https://github.com/groundwater">Jacob Groundwater</a></h3>
<div class="links">
<a href="https://github.com/groundwater" title="GitHub"><img src="images/glyphicons_social_21_github.png"/></a>
<a href="https://twitter.com/0x604" title="Twitter"><img src="images/glyphicons_social_31_twitter.png"/></a>
</div>
</div>
<p>
<a href="http://node-os.com/">Nodeos</a> is a lightweight Linux distribution built around node and npm.
There is no bash, no systemd, and no apt/yum. Your system tools are
written in node, and installed with npm.
</p>
<p>
Every npm package is a nodeos package, so anyone can contribute. The
base nodeos install gets you started, but beyond getting a few
necessary services running nodeos expresses no opinions on how to run
your system.
</p>
<p>
Nodeos wants to make systems programming as accessible as node has
made web programming.
</p>
<div class="about-mentor">
<h4>Jabob Groundwater</h4>
<p>
Jacob lives in the Bay Area, but is originally from Vancouver Canada.
He is an applied mathematician turned sysadmin turned software
engineer, and currently works on node tracing at new relic.
</p>
</div>
</div>
<div class="session">
<h2><a name="cad-cam-for-browser" href="#cad-cam-for-browser">A CAD→CAM solution for the Browser</a> – Talk</h2>
<div class="mentor">
<a href="https://github.com/tmpvar">
<img src="https://avatars1.githubusercontent.com/u/46673?s=150"/>
</a>
<h3><a href="https://github.com/tmpvar">Elijah Insua</a></h3>
<div class="links">
<a href="https://github.com/tmpvar" title="GitHub"><img src="images/glyphicons_social_21_github.png"/></a>
<a href="https://twitter.com/tmpvar" title="Twitter"><img src="images/glyphicons_social_31_twitter.png"/></a>
</div>
</div>
<p>
I'll be talking about the pain points experienced with using
existing CAD and CAM systems, which include:
</p>
<ul>
<li>Price</li>
<li>Cross-platform compatibility</li>
<li>Usability issues</li>
</ul>
<p>
Basically, you either pay a ton of money and get "cutting edge"
software and limit yourself to windows, or you can risk going with
an open solution that will likely not suit your needs. It's
important that the solution you choose is hackable and in a
language that many people understand.
</p>
<p>
After laying a bit more groundwork, we'll shift into more of a
"how do we do this in javascript" and I'll show where I am thus
far.
</p>
<p>
The kicker to this talk is walking through the various steps of:
</p>
<ul style="font-weight: bold;">
<li>Creating a 3d object
<li>Preparing the 3d object for milling
<li>Milling the object using a cnc that I'll be bringing
</ul>
<p>
I will go into the details of building your own cnc machine at home
and how that varies from a $50,000 machine that you can get off of
ebay or similar.
</p>
<div class="about-mentor">
<h3>Elijah Insua</h3>
<p>
As a long time tinkerer/maker I have recently rediscovered working
with my hands. Not only is it super fulfilling, but the end result
is a real physical thing that you can hold. My passion for
building robots and the web drives my dreams of building an
automated infrastructure, that allows me to quickly iterate on
various ideas while building physical objects. All built inside of
the browser of course!
</p>
</div>
</div>
<div class="session nodebots small">
<h2><a name="nodebots" href="#nodebots">NodeBots</a> – Workshop</h2>
<div class="mentors">
<div class="mentor">
<a href="https://github.com/AnnaGerber">
<img src="https://2.gravatar.com/avatar/6c5be200a84951c74c05932ae73fa4a9?r=x&s=150"/>
</a>
<h3><a href="https://github.com/AnnaGerber">Anna Gerber</a></h3>
</div>
<div class="mentor">
<a href="https://github.com/ajfisher">
<img src="https://0.gravatar.com/avatar/a0006ca00e14d33a4ca6fdf5a75b6d9a?r=x&s=150"/>
</a>
<h3><a href="https://github.com/ajfisher">Andrew Fisher</a></h3>
</div>
<div class="mentor">
<a href="https://github.com/wolfeidau">
<img src="https://1.gravatar.com/avatar/ebf974e0dbcfe88c508df6f395661a4b?r=x&s=150"/>
</a>
<h3><a href="https://github.com/wolfeidau">Mark Wolfe</a></h3>
</div>
<div class="mentor">
<a href="https://github.com/garrows">
<img src="https://1.gravatar.com/avatar/626884fa79c4b3aaa75d56d278cf0b44?r=x&s=150"/>
</a>
<h3><a href="https://github.com/garrows">Glen Arrowsmith</a></h3>
</div>
<div class="mentor">
<a href="https://github.com/nog3">
<img src="/people/brendan_halliday.jpg"/>
</a>
<h3><a href="https://github.com/nog3">Brendan Halliday</a></h3>
</div>
</div>
<p>
NodeBots are Arduino-based robots that are controlled by node.js.
This workshop will step you through assembling a number of basic
circuits and programming using an Arduino-compatible
microcontroller and node.js, to help you get started building your
own NodeBots.
</p>
<div class="about-mentor">
<h4>Resources</h4>
<ul>
<li><a href="http://node-ardx.org">node-ardx</a> <a href="https://github.com/AnnaGerber/node-ardx">https://github.com/AnnaGerber/node-ardx</a>
<li><a href="https://github.com/ajfisher/nbdau">NodeBot Day AU Resources</a>
<li><a href="https://github.com/rwaldron/johnny-five">Johnny-Five</a>
</ul>
<p>
To make the most of the time at the workshop, set up your NodeBots environment in advance: https://github.com/ajfisher/nbdau/blob/master/setup.md
</p>
</div>
</div>
<div class="session">
<h2><a name="mobile-iot-nodejs" href="#mobile-iot-nodejs">Interfacing with mobile IOT Nodes – Building networks of embedded IOT devices using Node.js</a> – Talk</h2>
<div class="mentor">
<img src="/people/michael_schloh.png"/>
<h3>Michael Schloh von Bennewitz</h3>
<div class="links">
</div>
</div>
<p>
Use cases of collaborating mobile (phone) and embedded (baseboard)
devices participating on a Internet of things benefit from special
consideration of device features. In this quirky presentation we'll
examine two such devices, a Tizen handset and a Galileo SBC
baseboard running Yocto Linux, and form concrete designs of their
IoT exchanges using JavaScript, Node.js, MQTT, and Skynet
technologies.
</p>
<p>
To illustrate the unique task of designing collaboration of sensor
and feature rich telemetry devices otherwise failing to converge in
the IoT landscape, we'll follow a Intel XDK workflow hands-on, and
provide boilerplate code and live demonstrations.
</p>
<div class="about-mentor">
<h4>Michael Schloh von Bennewitz</h4>
<p>
Michael Schloh von Bennewitz is a computer scientist
specializing in network software, mobile computing, and client
server design. Responsible for research, development, and
maintenance of packages in several community software
repositories, Michael actively contributes to the Opensource
development community. Fluent in four languages, he speaks at
technical events every year. Michael has presented for groups
including Cable & Wireless, Nokia, Ubuntu, and Mobile World
Congress.
</p>
</div>
</div>
<div class="session">
<h2><a name="node-docker" href="#node-docker">Dropping Anchor – Using node.js and Docker to Build Highly-Available Systems</a> – Talk</h2>
<div class="mentor">
<a href="https://github.com/deoxxa">
<img src="https://1.gravatar.com/avatar/d27bae51ba163785869161126434ea56?d=https%3A%2F%2Fidenticons.github.com%2F83f849c6fe01025f8f08a6ad12d02eb2.png&r=x&s=150"/>
</a>
<h3><a href="https://github.com/deoxxa">Conrad Pankoff</a></h3>
<div class="links">
<a href="https://github.com/deoxxa" title="GitHub"><img src="images/glyphicons_social_21_github.png"/></a>
<a href="https://twitter.com/deoxxa" title="Twitter"><img src="images/glyphicons_social_31_twitter.png"/></a>
</div>
</div>
<p>
From the complex concepts like distributed task scheduling to
the simple like hosting disk images, using Docker outside of
an experimental context can be surprisingly difficult. Strap
in for an exciting ride while Conrad covers the ins and outs
of how he uses node.js and Docker in his internal hosting
platform.
</p>
<div class="about-mentor">
<h3>Conrad Pankoff</h3>
<p>
Skipping between multiple levels of the stack, Conrad has worked
on projects ranging from embedded device programming to web
applications to multi-machine clustered systems. Through touching
so many different areas, Conrad has learnt first-hand the value
of keeping systems flexible yet manageable.
</p>
</div>
</div>
<div class="session">
<h2><a name="webrtc-components" href="#webrtc-components">WebRTC & Web Components; match made in heaven</a> – Workshop</h2>
<div class="mentors">
<div class="mentor">
<a href="https://github.com/DamonOehlman">
<img src="https://2.gravatar.com/avatar/2f3f59b09b160bc49f1e226e5b996ca3?r=x&s=150"/>
</a>
<h3><a href="https://github.com/DamonOehlman">Damon Oehlman</a></h3>
<div class="links">
<a href="https://github.com/DamonOehlman" title="GitHub"><img src="images/glyphicons_social_21_github.png"/></a>
<a href="https://twitter.com/DamonOehlman" title="Twitter"><img src="images/glyphicons_social_31_twitter.png"/></a>
</div>
</div>
<div class="mentor">
<a href="https://github.com/balupton">
<img src="https://1.gravatar.com/avatar/9400cb5aeb155ccec614652542fd274d?r=x&s=150"/>
</a>
<h3><a href="https://github.com/balupton">Benjamin Lupton</a></h3>
<div class="links">
<a href="https://github.com/balupton" title="GitHub"><img src="images/glyphicons_social_21_github.png"/></a>
<a href="https://twitter.com/balupton" title="Twitter"><img src="images/glyphicons_social_31_twitter.png"/></a>
</div>
</div>
</div>
<p>
Damon and Ben are both some of <a href="http://nodejs.org.au/#developers">the most active node.js module publishers in
Australia</a>. Damon's spent the past 6 months
working on <a href="http://rtc.io/">RTC.io</a> a library of javascript components to make WebRTC easy to
implement. Benjamin's spent the last 6 months working on <a href="https://github.com/bevry/interconnect">InterConnect</a>, an
open-source mashup of (IRC, Swiggle, Skype, Google Hangouts and GitHub
Profiles), which is built using Web Components and RTC.io.
</p>
<p>
Together, RTC.io and InterConnect's web components will make
building skype as easy as building a web form. We will introduce
everyone into the technologies of WebRTC and Web Components, the
technical details of them, the problems they're trying to solve,
and the technical challenges and complexities which RTC.io and
InterConnect's components hide away. The workshop will get people
hands on with the tech, building their own skypes, adding their
own features, etc, and actually working with the tech, actually
building something that video calls to each other!
</p>
</div>
<div class="session">
<h2><a name="bem" href="#bem">BEM for JS</a> – Talk</h2>
<div class="mentor">
<a href="https://github.com/tadatuta">
<img src="https://avatars0.githubusercontent.com/u/475746?s=150"/>
</a>
<h3><a href="https://github.com/tadatuta">Vladimir Grinenko</a></h3>
<div class="links">
<a href="https://github.com/tadatuta" title="GitHub"><img src="images/glyphicons_social_21_github.png"/></a>
<a href="https://twitter.com/tadatuta" title="Twitter"><img src="images/glyphicons_social_31_twitter.png"/></a>
</div>
</div>
<p>
Introducing BEM Block Libraries - a set of blocks build on top of
same ideas that inspired Web Components creators but long long time
ago. Being developed in 2008 by <a href="http://www.yandex.com/">Yandex, Russian Search Engine</a>,
they are very helpful in building websites fast and flexible. Why
so? Because of the years of experience put in them while working in
large rapidly changing services.
</p>
<p>
Unfortunately it is very well known only here in Russia and
ex-Soviet countries, where, thanks to Harry Roberts and Nicolas
Gallagher, so-called BEM CSS is spread far ahead in the rest of the
world. With this talk we aim to share what we have in BEM
Methodology to cover JS coding with and introduce Australian
developers to a new chapter in BEM, partly not always easy to
understand, open-sourced and handy for maintaining complexity of
web development you could grow in.
</p>
<div class="about-mentor">
<h4>Vladimir Grinenko</h4>