-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathschedule.html
1031 lines (656 loc) · 44.9 KB
/
schedule.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>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>京JS 2013 - A two-day conference in Beijing for the JavaScript and Node.js community</title>
<meta name="description" content="京JS 2013 - A two-day conference in Beijing for the JavaScript and Node.js community">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="keywords" content="javascript, node.js, conference, beijing, china, shanghai, jingjs, hujs" />
<meta name="author" content="Codrops" />
<script>
////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////// //////////////////////////////////////
////////////////////////////////////// //////////////////////// ////////
/////////////////////////////////////// //////////////////////// ////////
/////////////////////////////////////// //////////////////////// ////////
/////////////////////////////////////// //////////////////////// ////////
////////////////////////////////////// ///////////// ////////
///////////////////////////// //////////// ////////
//////////////////////// /////////// ////////// ////////
////////////////////////// ///////////////////////////////// ////////
//////////////////////////// ////////////// //////////////////// ////////
/////////////////////////////////////// ////////////////// ////////
//////////////////////////////// /////// //// ////////
//////////////////////////////// ////// //////// ////////
///////////////////////////////// //////// ///////// //////////
///////////////////////////////// //////// //////////// ////////////
///////////////////////////////// /////// ////////////////////////////////
////////////////////////////////// /////////////////////////////////
////////////////////////////////// /////////////// ///////////
/////////////////////////////////// //////////////// /////////
/////////////////////////////////////// /////////////// // /////////
/////////////////////////////////////// /////////////// ///// /////////
/////////////////////////////// ///// /// //////// /////////////////
////////////////////////////// ////// //// //////// //////////////
///////////////////////////// ////// ///// //////// ///////////
//////////////////////////// ////// ////// ///////// /////////
//////////////////////////// /////// /////// ///////////// ////////
//////////////////////////// ////// //////// ///////////// ////////
//////////////////////////// //// ////////////// /////// ////////
////////////////////////////////////// ////////////// /// ////////
////////////////////////////////////// /////////////// /////////
/////////////////////////////////////// ////////////////// ///////////
////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////
</script>
<link rel="stylesheet" type="text/css" href="css/default.css" />
<link rel="stylesheet" type="text/css" href="css/speakers.css" />
<link rel="stylesheet" type="text/css" href="css/schedule.css" />
<script type="text/javascript" src="js/modernizr.custom.79639.js"></script>
</head>
<body onload="initialize();">
<div class="container">
<!-- START Big header/image slider -->
<div id="slider" class="sl-slider-wrapper">
<div class="sl-slider">
<!-- Fixed floating content -->
<div class="sl-trans-elems">
<h2><a href="index.html"><img src="img/logo.png"/></a></h2>
<blockquote>
<h3 data-i18n="conf-date">2013 NOV 9-11, BEIJING</h3>
<p data-i18n="conf-tagline">A conference for the JavaScript community in China
</blockquote>
</div>
<!-- Slides -->
<div class="sl-slide" data-orientation="horizontal" data-slice1-rotation="-25" data-slice2-rotation="-25" data-slice1-scale="2" data-slice2-scale="2">
<div class="sl-slide-inner">
<div class="bg-img bg-img-1"></div>
</div>
</div>
<div class="sl-slide" data-orientation="vertical" data-slice1-rotation="10" data-slice2-rotation="-15" data-slice1-scale="1.5" data-slice2-scale="1.5">
<div class="sl-slide-inner">
<div class="bg-img bg-img-2"></div>
</div>
</div>
<div class="sl-slide" data-orientation="horizontal" data-slice1-rotation="3" data-slice2-rotation="3" data-slice1-scale="2" data-slice2-scale="1">
<div class="sl-slide-inner">
<div class="bg-img bg-img-3"></div>
</div>
</div>
<div class="sl-slide" data-orientation="vertical" data-slice1-rotation="-5" data-slice2-rotation="25" data-slice1-scale="2" data-slice2-scale="1">
<div class="sl-slide-inner">
<div class="bg-img bg-img-4"></div>
</div>
</div>
</div>
<!-- /sl-slider -->
<nav id="nav-dots" class="nav-dots">
<span class="nav-dot-current"></span>
<span></span>
<span></span>
<span></span>
</nav>
</div> <!-- /slider-wrapper -->
<!-- END Big header/image slider -->
<!-- START floating header/topnav -->
<div class="header">
<div class="inner">
<a href="index.html"><img src="img/logo.png" /></a>
<nav>
<a href="mailto:welcome@jingjs.org?Subject=[JingJS]%20General%20Inquiry" class="email"><span>Email</span></a>
<a href="http://weibo.com/jingjs2013" class="weibo"><span>Weibo</span></a>
<a href="https://twitter.com/jingjsconf" class="twitter"><span>Twitter</span></a>
<a href="https://github.com/jsconfcn" class="github"><span>Github</span></a>
<!-- TODO: Implement i18n here -->
<a onclick="toggleLang(this);" href="javascript:void(0);" class="language cn" lang="en-us" data-i18n="lang-widget">中文</a>
</nav>
</div>
</div>
<!-- START floating header/topnav -->
<!-- TODO: Is this necessary? -->
<header class="clearfix">
</header>
<!-- START Main Content -->
<div class="main">
<section id="schedule">
<div>
<div class="row-fluid">
<h1>11/09/2013</h1>
<ul class="cbp_tmtimeline">
<li class="talk lulinqing">
<time class="cbp_tmtime" datetime="2013-11-09T01:00:00.000Z"><span>11/09/2013</span> <span>9:00 AM</span></time>
<div class="cbp_tmicon cbp_tmicon-talk cbp_tmicon-lulinqing"></div>
<div class="cbp_tmlabel">
<h2><a href="https://github.com/lulinqing">Linqing Lu</a></h2>
<h3>Node.js on the road, on the cloud</h3>
<span class="abstract">
<p>Talk plan:</p>
<p>A- Node.js roadmap from Bert/Ben in Node.js core team(details coming around Sep).</p>
<p>B- Hosting Node.js apps with PaaS and MBaaS.</p>
</span>
</div>
</li>
<li class="talk kyledrake">
<time class="cbp_tmtime" datetime="2013-11-09T01:20:00.000Z"><span>11/09/2013</span> <span>9:20 AM</span></time>
<div class="cbp_tmicon cbp_tmicon-talk cbp_tmicon-kyledrake"></div>
<div class="cbp_tmlabel">
<h2><a href="https://github.com/kyledrake">Kyle Drake</a></h2>
<h3>Bitcoin and JavaScript: The new gold standards</h3>
<span class="abstract">
<p></p>
<p></p>
</span>
</div>
</li>
<li class="talk kennyluck">
<time class="cbp_tmtime" datetime="2013-11-09T01:40:00.000Z"><span>11/09/2013</span> <span>9:40 AM</span></time>
<div class="cbp_tmicon cbp_tmicon-talk cbp_tmicon-kennyluck"></div>
<div class="cbp_tmlabel">
<h2><a href="https://github.com/kennyluck">Kang-Hao (Kenny) Lu</a></h2>
<h3>Optimizing JS Games: Hidden Classes, Inline Caches and Dictionary Mode</h3>
<span class="abstract">
<p>The main theme about this talk will be JS performance in JS games, or any JS applications in which DOM access isn't the bottleneck. As a developer of a game-targted browser engine Shpinx, I'd like to talk about concepts and stragies we use while optimizing games (不江湖, from fps 30 to 50) and canvas library (Cocos2d-html5, notably pull request #1015).</p>
<p>In addition to the concepts of hidden classes and inline caches, which were already discussed in some of the excellent talks like Vyacheslav Egorov's, this talk focuses more on dictionary mode and common ways how JS objects fall into it. Some demos of the tools for examining these internals might also be provided.</p>
<p>The talk will be given in Chinese.</p>
</span>
</div>
</li>
<li class="break coffee">
<time class="cbp_tmtime" datetime="2013-11-09T02:20:00.000Z"><span>11/09/2013</span> <span>10:20 AM</span></time>
<div class="cbp_tmicon cbp_tmicon-break cbp_tmicon-coffee"></div>
<div class="cbp_tmlabel">
<h2>Coffee Break</h2>
<h3>Lets have some coffee</h3>
</div>
</li>
<li class="talk jden">
<time class="cbp_tmtime" datetime="2013-11-09T02:30:00.000Z"><span>11/09/2013</span> <span>10:30 AM</span></time>
<div class="cbp_tmicon cbp_tmicon-talk cbp_tmicon-jden"></div>
<div class="cbp_tmlabel">
<h2><a href="https://github.com/jden">Jason Denizac</a></h2>
<h3>My Year With Node.js</h3>
<span class="abstract">
<p>Over the past year I've dived deep into Node.js. I'll share what I've learned (and what I wish I had known) about the technology, the community, and building a startup around this vibrant open source ecosystem.</p>
</span>
</div>
</li>
<li class="talk isaacmao">
<time class="cbp_tmtime" datetime="2013-11-09T02:50:00.000Z"><span>11/09/2013</span> <span>10:50 AM</span></time>
<div class="cbp_tmicon cbp_tmicon-talk cbp_tmicon-isaacmao"></div>
<div class="cbp_tmlabel">
<h2><a href="https://github.com/isaacmao">Isaac Mao</a></h2>
<h3>TBD</h3>
<span class="abstract">
<p></p>
<p></p>
</span>
</div>
</li>
<li class="workshop nodeschool">
<time class="cbp_tmtime" datetime="2013-11-09T03:30:00.000Z"><span>11/09/2013</span> <span>11:30 AM</span></time>
<div class="cbp_tmicon cbp_tmicon-workshop cbp_tmicon-nodeschool"></div>
<div class="cbp_tmlabel">
<h2><a href="http://nodeschool.io">nodeschool.io Workshop</a></h2>
<h3>with James Halliday (@substack)</h3>
<span class="abstract">
<p>A hands-on workshop with James Halliday (@substack), learning Node.js using the new site nodeschool.io.</p>
</span>
</div>
</li>
<li class="break lunch">
<time class="cbp_tmtime" datetime="2013-11-09T04:00:00.000Z"><span>11/09/2013</span> <span>12:00 PM</span></time>
<div class="cbp_tmicon cbp_tmicon-break cbp_tmicon-lunch"></div>
<div class="cbp_tmlabel">
<h2>Lunch Break</h2>
<h3>Lets have some lunch</h3>
</div>
</li>
<li class="talk grz">
<time class="cbp_tmtime" datetime="2013-11-09T05:00:00.000Z"><span>11/09/2013</span> <span>1:00 PM</span></time>
<div class="cbp_tmicon cbp_tmicon-talk cbp_tmicon-grz"></div>
<div class="cbp_tmlabel">
<h2><a href="https://github.com/grz">RunZeng Guo</a></h2>
<h3>Qzone网页性能监控和优化的新尝试</h3>
<span class="abstract">
<p></p>
<p></p>
</span>
</div>
</li>
<li class="talk substack">
<time class="cbp_tmtime" datetime="2013-11-09T05:20:00.000Z"><span>11/09/2013</span> <span>1:20 PM</span></time>
<div class="cbp_tmicon cbp_tmicon-talk cbp_tmicon-substack"></div>
<div class="cbp_tmlabel">
<h2><a href="https://github.com/substack">James Halliday</a></h2>
<h3><a href="http://t.cn/zRYsZZ5">the wizard of moduletopia</a></h3>
<span class="abstract">
<p></p>
<p></p>
</span>
</div>
</li>
<li class="talk mde">
<time class="cbp_tmtime" datetime="2013-11-09T06:00:00.000Z"><span>11/09/2013</span> <span>2:00 PM</span></time>
<div class="cbp_tmicon cbp_tmicon-talk cbp_tmicon-mde"></div>
<div class="cbp_tmlabel">
<h2><a href="https://github.com/mde">Matthew Eernisse</a></h2>
<h3>Zero to Ready with Geddy</h3>
<span class="abstract">
<p>The Geddy Web framework provides a simple, structured way to build a scalable, production-ready Web app with NodeJS.</p>
<p>In this talk, I'll show how easy it is to get started working on a Node app, starting by creating an app using Geddy's CLI, and a walk-through of a basic app layout. I will then move on to setting up a database, and then adding authentication by installing the geddy-passport module. The focus here is on building a practical, working application, along with demonstrating the setup of a JavaScript MVC app, and some Node conventions for code.</p>
<p>After setting up a basic app, I'll move on to showing how to use Geddy's generator scripts to set up a basic REST API, demonstrating how Geddy's MVC (model/view/controller) architecture works. I'll start with the model layer, Geddy's ORM (object-relational mapper) -- showing how Node's asynchronous programming paradigm works with database-access, and then moving on to Geddy's query API, and database migrations for schema changes. Next I'll show how to use the retrieved data to render a response -- either structured data (like JSON), or rendering HTML templates.</p>
<p>Last I'll cover how Geddy's MVC integrates with realtime -- using the same model code in the browser as on the server, and then show how to test a Geddy application.</p>
<p>The idea is to leave attendees with a working application, and a basic understanding of how the pieces of a Geddy app fit together -- to show how easy it is to use Geddy to jump-start a server-side JavaScript adventure with Node.</p>
</span>
</div>
</li>
<li class="break coffee">
<time class="cbp_tmtime" datetime="2013-11-09T06:40:00.000Z"><span>11/09/2013</span> <span>2:40 PM</span></time>
<div class="cbp_tmicon cbp_tmicon-break cbp_tmicon-coffee"></div>
<div class="cbp_tmlabel">
<h2>Coffee Break</h2>
<h3>Lets have some coffee</h3>
</div>
</li>
<li class="talk undoZen">
<time class="cbp_tmtime" datetime="2013-11-09T07:00:00.000Z"><span>11/09/2013</span> <span>3:00 PM</span></time>
<div class="cbp_tmicon cbp_tmicon-talk cbp_tmicon-undoZen"></div>
<div class="cbp_tmlabel">
<h2><a href="https://github.com/undoZen">Anson Yu Wang</a></h2>
<h3><a href="http://t.cn/zRTd7A3">Implementing BigPipe in Node.js</a></h3>
<span class="abstract">
<p>I'll show you what BigPipe is, when to use it and how you can implement it using node.js.</p>
</span>
</div>
</li>
<li class="talk be5invis">
<time class="cbp_tmtime" datetime="2013-11-09T07:20:00.000Z"><span>11/09/2013</span> <span>3:20 PM</span></time>
<div class="cbp_tmicon cbp_tmicon-talk cbp_tmicon-be5invis"></div>
<div class="cbp_tmlabel">
<h2><a href="https://github.com/be5invis">Belleve Invis</a></h2>
<h3><a href="http://t.cn/zRYwlkg">On Harmony</a></h3>
<span class="abstract">
<p>- Introduce proposals of ECMAScript-Harmony (abbr. ES-harmony)</p>
<p>- Deep analysis of selected new features (incl. Classes, Proxies, Module system and Generators)</p>
<p>- Discussion about script language design and optimization</p>
</span>
</div>
</li>
<li class="talk xiecc">
<time class="cbp_tmtime" datetime="2013-11-09T08:00:00.000Z"><span>11/09/2013</span> <span>4:00 PM</span></time>
<div class="cbp_tmicon cbp_tmicon-talk cbp_tmicon-xiecc"></div>
<div class="cbp_tmlabel">
<h2><a href="https://github.com/xiecc">Charlie Crane</a></h2>
<h3><a href="http://t.cn/zRTr9V4">pomelo欧洲之旅 (Pomelo European Trip)</a></h3>
<span class="abstract">
<p>Discuss the experience on attending and speaking at JsConf.eu and LXJS.</p>
</span>
</div>
</li>
<li class="talk py8765">
<time class="cbp_tmtime" datetime="2013-11-09T08:10:00.000Z"><span>11/09/2013</span> <span>4:10 PM</span></time>
<div class="cbp_tmicon cbp_tmicon-talk cbp_tmicon-py8765"></div>
<div class="cbp_tmlabel">
<h2><a href="https://github.com/py8765">Weijun Liu</a></h2>
<h3><a href="http://t.cn/zRTr9VU">基于node.js与pomelo的消息推送平台</a></h3>
<span class="abstract">
<p>The topic will cover a short introduction of pomelo framework, and new features since V0.2.</p>
<p>Then, we'll introduce our online message push platform, which is implemented in pomelo. We will talk about the architecture, design detail, features, performance issues of our message platform, etc.</p>
</span>
</div>
</li>
<li class="break coffee">
<time class="cbp_tmtime" datetime="2013-11-09T08:50:00.000Z"><span>11/09/2013</span> <span>4:50 PM</span></time>
<div class="cbp_tmicon cbp_tmicon-break cbp_tmicon-coffee"></div>
<div class="cbp_tmlabel">
<h2>Coffee Break</h2>
<h3>Lets have some coffee</h3>
</div>
</li>
<li class="talk andrerod">
<time class="cbp_tmtime" datetime="2013-11-09T09:00:00.000Z"><span>11/09/2013</span> <span>5:00 PM</span></time>
<div class="cbp_tmicon cbp_tmicon-talk cbp_tmicon-andrerod"></div>
<div class="cbp_tmlabel">
<h2><a href="https://github.com/andrerod">André Rodrigues</a></h2>
<h3>Build a Photobooth App with Azure and Kinect</h3>
<span class="abstract">
<p></p>
</span>
</div>
</li>
<li class="talk NickCarneiro">
<time class="cbp_tmtime" datetime="2013-11-09T09:20:00.000Z"><span>11/09/2013</span> <span>5:20 PM</span></time>
<div class="cbp_tmicon cbp_tmicon-talk cbp_tmicon-NickCarneiro"></div>
<div class="cbp_tmlabel">
<h2><a href="https://github.com/NickCarneiro">Nick Carneiro</a></h2>
<h3>A Survey of Client-side Data Visualization</h3>
<span class="abstract">
<p>The rise of data-driven product management has brought data visualization to the fore in recent years. JavaScript developers are uniquely positioned to take advantage of high demand for data visualization and new browser features. In this talk I cover the history of data visualization, the best tools available today, and what's next. </p>
<p>Topics Covered: Best and worst practices, modern datavis tools (D3, Google Charts), performance concerns</p>
</span>
</div>
</li>
<li class="break party">
<time class="cbp_tmtime" datetime="2013-11-09T11:00:00.000Z"><span>11/09/2013</span> <span>7:00 PM</span></time>
<div class="cbp_tmicon cbp_tmicon-break cbp_tmicon-party"></div>
<div class="cbp_tmlabel">
<h2><a href="http://www.chekucafe.com/">After Party @ 车库咖啡</a></h2>
<h3>Join us for food, drinks and conversation.</h3>
<span class="abstract">
<p>TODO: Directions</p>
</span>
</div>
</li>
</ul>
<h1>11/10/2013</h1>
<ul class="cbp_tmtimeline">
<li class="talk rednaxelafx">
<time class="cbp_tmtime" datetime="2013-11-10T01:00:00.000Z"><span>11/10/2013</span> <span>9:00 AM</span></time>
<div class="cbp_tmicon cbp_tmicon-talk cbp_tmicon-rednaxelafx"></div>
<div class="cbp_tmlabel">
<h2><a href="https://github.com/rednaxelafx">Krystal Mok</a></h2>
<h3>Implementing a high performance JavaScript Engine</h3>
<span class="abstract">
<p></p>
<p></p>
</span>
</div>
</li>
<li class="talk coderoshi">
<time class="cbp_tmtime" datetime="2013-11-10T01:20:00.000Z"><span>11/10/2013</span> <span>9:20 AM</span></time>
<div class="cbp_tmicon cbp_tmicon-talk cbp_tmicon-coderoshi"></div>
<div class="cbp_tmlabel">
<h2><a href="https://github.com/coderoshi">Eric Redmond</a></h2>
<h3>HTTP is Hard</h3>
<span class="abstract">
<p>As web services have become a standard method for interacting with a central service, REST principles over HTTP are the most common interface. But the HTTP specification is actually very complex (much more complex than telnet or IMAP). This talk focuses on the (often) unseen underlying complexity of properly developing web services against the HTTP protocol, and provides some suggestions on developing node.js web services that adhere to the spirit and letter of the HTTP specification.</p>
</span>
</div>
</li>
<li class="talk dominictarr">
<time class="cbp_tmtime" datetime="2013-11-10T01:40:00.000Z"><span>11/10/2013</span> <span>9:40 AM</span></time>
<div class="cbp_tmicon cbp_tmicon-talk cbp_tmicon-dominictarr"></div>
<div class="cbp_tmlabel">
<h2><a href="https://github.com/dominictarr">Dominic Tarr</a></h2>
<h3>TBD</h3>
<span class="abstract">
<p></p>
<p></p>
</span>
</div>
</li>
<li class="break coffee">
<time class="cbp_tmtime" datetime="2013-11-10T02:20:00.000Z"><span>11/10/2013</span> <span>10:20 AM</span></time>
<div class="cbp_tmicon cbp_tmicon-break cbp_tmicon-coffee"></div>
<div class="cbp_tmlabel">
<h2>Coffee Break</h2>
<h3>Lets have some coffee</h3>
</div>
</li>
<li class="talk alyraz">
<time class="cbp_tmtime" datetime="2013-11-10T02:30:00.000Z"><span>11/10/2013</span> <span>10:30 AM</span></time>
<div class="cbp_tmicon cbp_tmicon-talk cbp_tmicon-alyraz"></div>
<div class="cbp_tmlabel">
<h2><a href="https://github.com/alyraz">Alyssa Ravasio</a></h2>
<h3>Lean Development with Node.js</h3>
<span class="abstract">
<p>Largely based on my personal experiences and those of entrepreneurial friends in the valley, I want to talk about why Node.js is so great for building startups and how it facilitates a lean style of product development.</p>
<p>My story: Building Hipcamp with Node.js and the pivots I've made, why Node.js allowed us to make them faster and more seamlessly. A couple places where I fell down. </p>
<p>Art of Prototyping: How Node.js empowers building products that test riskiest business assumptions first (super lightweight, fast).</p>
<p>Customer Development: How Node.js enables more rapid product iterations, quicker reaction of user feedback, how to elicit and integrate user feedback into product roadmap</p>
<p>Lean Team: Why Node.js is great for building products with small teams (everyone can do server and client side, no loss of time in context-switching)</p>
<p>Analytics with Node.js: How to build, measure, learn</p>
</span>
</div>
</li>
<li class="talk oren">
<time class="cbp_tmtime" datetime="2013-11-10T02:50:00.000Z"><span>11/10/2013</span> <span>10:50 AM</span></time>
<div class="cbp_tmicon cbp_tmicon-talk cbp_tmicon-oren"></div>
<div class="cbp_tmlabel">
<h2><a href="https://github.com/oren">Oren Golan</a></h2>
<h3><a href="http://t.cn/zRT1hDL">Don't Panic - The Hitchhiker's Guide to Node</a></h3>
<span class="abstract">
<p>Full-stack JavaScript application opens up new possibilities but it also adds a challenge of making many in-flight decisions, such as the following: Should we use a web framework? Which one? How to organize our client-side codebase? Should we write in Object Oriented or Functional style?</p>
<p>In this talk we won't spend time on fluff and dive right in to a real codebase. I'll share code and practices that are applicable immediately to any JavaScript developer.</p>
</span>
</div>
</li>
<li class="workshop lightning">
<time class="cbp_tmtime" datetime="2013-11-10T03:30:00.000Z"><span>11/10/2013</span> <span>11:30 AM</span></time>
<div class="cbp_tmicon cbp_tmicon-workshop cbp_tmicon-lightning"></div>
<div class="cbp_tmlabel">
<h2><a href="http://en.wikipedia.org/wiki/Lightning_talk">Lightning Talks</a></h2>
<h3>Come share with us! Sign up to give a 5 minute talk on a topic of your choice.</h3>
<span class="abstract">
<p>Come share with us! Sign up to give a 5 minute talk on a topic of your choice.</p>
</span>
</div>
</li>
<li class="break lunch">
<time class="cbp_tmtime" datetime="2013-11-10T04:00:00.000Z"><span>11/10/2013</span> <span>12:00 PM</span></time>
<div class="cbp_tmicon cbp_tmicon-break cbp_tmicon-lunch"></div>
<div class="cbp_tmlabel">
<h2>Lunch Break</h2>
<h3>Lets have some lunch</h3>
</div>
</li>
<li class="talk tongyao">
<time class="cbp_tmtime" datetime="2013-11-10T05:00:00.000Z"><span>11/10/2013</span> <span>1:00 PM</span></time>
<div class="cbp_tmicon cbp_tmicon-talk cbp_tmicon-tongyao"></div>
<div class="cbp_tmlabel">
<h2><a href="https://github.com/tongyao">Yao Tong</a></h2>
<h3><a href="http://t.cn/zRTd866">实时APP时代与云端一体开发框架 - Clouda</a></h3>
<span class="abstract">
<p></p>
<p></p>
</span>
</div>
</li>
<li class="talk johnnymugs">
<time class="cbp_tmtime" datetime="2013-11-10T05:40:00.000Z"><span>11/10/2013</span> <span>1:40 PM</span></time>
<div class="cbp_tmicon cbp_tmicon-talk cbp_tmicon-johnnymugs"></div>
<div class="cbp_tmlabel">
<h2><a href="https://github.com/johnnymugs">Johnny Mukai</a></h2>
<h3>Self Discovery: Looking for Insight in Javascript’s Esoteric Roots</h3>
<span class="abstract">
<p>One of the most common gripes about Javascript is its use of prototypes rather than classes, if the myriad tools, patterns, and frameworks that massage it into a more classical OOP model are any indicator. But are these approaches hammering a prototypal peg into a class-shaped hole? What was happening in the early 90s that made Brendan Eich reach for prototypes rather than classes when designing his new language?</p>
<p>To find out, let’s a take a trip back in time and examine an exciting and very different language that heavily influenced Javascript: Self. Self is an ambitious language that, among other things, introduced prototypal OOP to the programming world. What lessons can we learn from this early pioneer of prototypal languages? Can we write better Javascript by understanding Self’s goals and approach to programming? Let’s explore the ambitions of Self and see if we can suss out the advantages and disadvantages of the prototypal approach and apply what we find to our own Javascript writing.</p>
</span>
</div>
</li>
<li class="talk kjbekkelund">
<time class="cbp_tmtime" datetime="2013-11-10T06:20:00.000Z"><span>11/10/2013</span> <span>2:20 PM</span></time>
<div class="cbp_tmicon cbp_tmicon-talk cbp_tmicon-kjbekkelund"></div>
<div class="cbp_tmlabel">
<h2><a href="https://github.com/kjbekkelund">Kim Joar Bekkelund</a></h2>
<h3>Patterns of Large-Scale JavaScript Applications</h3>
<span class="abstract">
<p>JavaScript has come a long way in few years. As we no longer need to battle DOM differences we can focus on building our applications instead. Now, however, as more and more application logic move from the server to the client our main problem is that we need to unlearn our earlier DOM-centric approach to JavaScript. Tools such as Backbone and Angular help, but before we are able to use the effectively we have to change some of our neural pathways. In this talk I will look at a couple of patterns that will help you move away from jQuery spaghetti and get you started on a foundation for building large-scale JavaScript applications.</p>
</span>
</div>
</li>
<li class="break coffee">
<time class="cbp_tmtime" datetime="2013-11-10T07:00:00.000Z"><span>11/10/2013</span> <span>3:00 PM</span></time>
<div class="cbp_tmicon cbp_tmicon-break cbp_tmicon-coffee"></div>
<div class="cbp_tmlabel">
<h2>Coffee Break</h2>
<h3>Lets have some coffee</h3>
</div>
</li>
<li class="talk PinZhang">
<time class="cbp_tmtime" datetime="2013-11-10T07:20:00.000Z"><span>11/10/2013</span> <span>3:20 PM</span></time>
<div class="cbp_tmicon cbp_tmicon-talk cbp_tmicon-PinZhang"></div>
<div class="cbp_tmlabel">
<h2><a href="https://github.com/PinZhang">Zhang Pin</a></h2>
<h3><a href="http://vdisk.weibo.com/s/544GFEuUAGN">Firefox OS - Bring the Open Web to Mobile Devices</a></h3>
</div>
</li>
<li class="talk jakobmattsson">
<time class="cbp_tmtime" datetime="2013-11-10T08:00:00.000Z"><span>11/10/2013</span> <span>4:00 PM</span></time>
<div class="cbp_tmicon cbp_tmicon-talk cbp_tmicon-jakobmattsson"></div>
<div class="cbp_tmlabel">
<h2><a href="https://github.com/jakobmattsson">Jakob Mattson</a></h2>
<h3>Automated CSS-testing: Not just a myth</h3>
<span class="abstract">
<p>You have some kind of test suite for your web app, so you know the features work. But does it look right? You fire up half a dozen virtual machines and open your drawer with five different mobile devices in it to check it out. The lack of automation in that is embarrasing.</p>
<p>Some people say that you can't test HTML/CSS. I'd like to show you the opposite. You can automate testing visual layout, refactor your CSS with confidence and get rid of this pain.</p>
<p>You understand why. Let's talk about how.</p>
</span>
</div>
</li>
<li class="break coffee">
<time class="cbp_tmtime" datetime="2013-11-10T08:40:00.000Z"><span>11/10/2013</span> <span>4:40 PM</span></time>
<div class="cbp_tmicon cbp_tmicon-break cbp_tmicon-coffee"></div>
<div class="cbp_tmlabel">
<h2>Coffee Break</h2>
<h3>Lets have some coffee</h3>
</div>
</li>
<li class="talk fool2fish">
<time class="cbp_tmtime" datetime="2013-11-10T09:00:00.000Z"><span>11/10/2013</span> <span>5:00 PM</span></time>
<div class="cbp_tmicon cbp_tmicon-talk cbp_tmicon-fool2fish"></div>
<div class="cbp_tmlabel">
<h2><a href="https://github.com/fool2fish">Zhouxuan Yang</a></h2>
<h3>totoro:简单易用,稳定的前端测试工具</h3>
<span class="abstract">
<p></p>
<p></p>
</span>
</div>
</li>
<li class="talk jacobbubu">
<time class="cbp_tmtime" datetime="2013-11-10T09:20:00.000Z"><span>11/10/2013</span> <span>5:20 PM</span></time>
<div class="cbp_tmicon cbp_tmicon-talk cbp_tmicon-jacobbubu"></div>
<div class="cbp_tmlabel">
<h2><a href="https://github.com/jacobbubu">沈嵘 (Rong Shen)</a></h2>
<h3><a href="http://t.cn/zRTt5dD">Advanced Grunt.js</a></h3>
<span class="abstract">
<p>我是一个Grunt的重度用户,Nextday的Web Site和Backend API(预计在8月中发布)都是基于Grunt进行CI的。</p>
<p>本次话题将以一个静态站点的生成和部署为实例,讲解Grunt的高级用法。同时,也便于初次使用的用户能够通过Copy & Paste完成一些常见的任务。</p>
</span>
</div>
</li>
<li class="break party2">
<time class="cbp_tmtime" datetime="2013-11-09T13:00:00.000Z"><span>11/10/2013</span> <span>9:00 PM</span></time>
<div class="cbp_tmicon cbp_tmicon-break cbp_tmicon-party2"></div>
<div class="cbp_tmlabel">
<h2><a href="http://www.pyrobeijing.com/">After Party @ Pyro Pizza</a></h2>
<h3>Join us for food, drinks and conversation.</h3>
<span class="abstract">
<p>TODO: Directions</p>
</span>
</div>
</li>
</ul>
</div>
</div>
</section>
</div>
<!-- END Main Content -->
<!-- START Footer -->
<footer id="footer">
<div class="content">
<div class="links">
<a href="mailto:welcome@jingjs.org?Subject=[JingJS]%20General%20Inquiry" class="email"><span>Email</span></a>
<a href="http://weibo.com/jingjs2013" class="weibo"><span>Weibo</span></a>
<a href="https://twitter.com/jingjsconf" class="twitter"><span>Twitter</span></a>
<a href="https://github.com/jsconfcn" class="github"><span>Github</span></a>
<!-- TODO: Implement i18n here -->
<a onclick="toggleLang(this);" href="javascript:void(0);" class="language cn" lang="en-us" data-i18n="lang-widget">中文</a>
</div>
<div class="copyright"><a href="code-of-conduct.html">Code Of Conduct</a> | <a href="http://creativecommons.org/licenses/by/3.0/">CCA 3.0 License</a> | Built by the <a href="http://jsconfchina.com">JSConf China Team</a></div>
</div>
</footer>
<!-- END Footer -->
</div>
<!-- START Scripts -->
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>
<script type="text/javascript" src="js/jquery.ba-cond.min.js"></script>
<script type="text/javascript" src="js/jquery.slitslider.js"></script>
<script type="text/javascript">
$(function() {
var Page = (function() {
var $nav = $( '#nav-dots > span' ),
slitslider = $( '#slider' ).slitslider( {
onBeforeChange : function( slide, pos ) {
$nav.removeClass( 'nav-dot-current' );
$nav.eq( pos ).addClass( 'nav-dot-current' );
},
autoplay: true
} ),
init = function() {
initEvents();
},
initEvents = function() {
$nav.each( function( i ) {
$(this).on( 'click', function( event ) {
var $dot = $(this);
if(!slitslider.isActive()) {
$nav.removeClass( 'nav-dot-current' );
$dot.addClass( 'nav-dot-current' );
}
slitslider.jump( i + 1 );
return false;
} );
} );
};
return { init : init };
})();
Page.init();
});
</script>
<script src="js/classie.js"></script>
<script src="js/cbpAnimatedHeader.min.js"></script>
<script src="js/i18n.js"></script>
<script>
function toggleLang(e){
var currLang = e.getAttribute('lang');
var langStateTransitions = {
'en-us': 'zh-cn',
'zh-cn': 'en-us'
};
i18n(langStateTransitions[currLang]);