-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1074 lines (1034 loc) · 50.3 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="description" content="All-time heroes of LXJS. This is our Yearbook, where we keep fond memories of all the Speakers, Sponsors and the Team that made every edition of LXJS a resounding success." />
<meta property="og:image" content="http://yearbook.lxjs.org/img/og_thumb.jpg" />
<title>LXJS Yearbook</title>
<link rel="shortcut icon" href="img/favicon.ico" />
<link href="http://fonts.googleapis.com/css?family=Asap:400,700" rel="stylesheet" type="text/css" />
<link rel="stylesheet" href="css/foundation.min.css" />
<link rel="stylesheet" href="css/style.css" />
<link rel="stylesheet" href="icomoon/style.css" />
</head>
<body>
<header class="row" id="top">
<div class="columns">
<h1><img src="img/logo.png" alt="LXJS Yearbook logo" id="logo"></h1>
</div>
</header>
<div class="banner" id="desc">
<div class="row">
<div class="columns">
<p><strong>All-time heroes of LXJS</strong>. This is our Yearbook, where we keep fond memories of all the Speakers, Sponsors and the Team that made every edition of LXJS a resounding success.</p>
</div>
</div>
</div>
<div class="edition">
<div class="row">
<div class="columns">
<h1 class="main"><a href="http://2014.lxjs.org">LXJS 2014</a></h1>
<ul class="small-block-grid-2 medium-block-grid-4 facts">
<li>
<h2><span class="icon-pin-alt"></span>Venue</h2>
<p><strong>Nave da Estufa Fria</strong>, an Art Deco Hall hidden inside a Greenhouse in the center of Lisbon</p>
</li>
<li>
<h2><span class="icon-calculator"></span>Budget</h2>
<p><strong>101.100 Eur</strong> cost, 2.800 Eur loss (within acceptable bounds)</p>
</li>
<li>
<h2><span class="icon-movie"></span>Videos, Photos</h2>
<p><a href="https://www.youtube.com/playlist?list=PLt4dwg5cC5TRpoSVH5Rs6-bIIUNIYTy9-">Talks and Interviews (25 videos)</a><br>
<a href="https://www.dropbox.com/sh/hgajjq4e439c8jq/AADnPm4kM8bkxftK1tMWuR_4a/2014?dl=0">Photos on Dropbox</a>
</p>
</li>
<li>
<h2><span class="icon-users"></span>Attendees</h2>
<p class="large">262</p>
</li>
</ul>
</div>
<div class="columns">
<h2><span class="icon-comment"></span>Speakers</h2>
<ul class="small-block-grid-2 medium-block-grid-4 large-block-grid-6 speakers">
<li>
<strong><a href="http://twitter.com/addyosmani">Addy Osmani</a></strong>
<a href="https://www.youtube.com/watch?v=GOPXVLxp9Nc&index=8&list=PLt4dwg5cC5TRpoSVH5Rs6-bIIUNIYTy9-" class="video icon-movie">Video</a>
<a href="https://www.youtube.com/watch?v=O5SAckI0YWs&list=PLt4dwg5cC5TRpoSVH5Rs6-bIIUNIYTy9-&index=23" class="video icon-movie">Interview</a>
<p class="bio">Senior Engineer In Developer Relations, Google</p>
</li>
<li>
<strong><a href="http://twitter.com/_alanshaw">Alan Shaw</a></strong>
<span class="meta">Trainer</span>
<p class="bio">Node.js web developer</p>
</li>
<li>
<strong><a href="http://twitter.com/achingbrain">Alex Potsides</a></strong>
<a href="https://www.youtube.com/watch?v=8zfQ_uq25QQ&list=PLt4dwg5cC5TRpoSVH5Rs6-bIIUNIYTy9-" class="video icon-movie">Interview</a>
<p class="bio">Developer, robot wrangler</p>
</li>
<li>
<strong><a href="http://twitter.com/lalamaguire">Angie Maguire</a></strong>
<a href="https://www.youtube.com/watch?v=4-BwNp2grRo&index=2&list=PLt4dwg5cC5TRpoSVH5Rs6-bIIUNIYTy9-" class="video icon-movie">Video</a>
<a href="https://www.youtube.com/watch?v=QBWIFLzAhH4&index=17&list=PLt4dwg5cC5TRpoSVH5Rs6-bIIUNIYTy9-" class="video icon-movie">Interview</a>
<p class="bio">Head of Communications, Mint Digital and Founder, Ladies Who Code</p>
</li>
<li>
<strong><a href="http://twitter.com/nvcexploder">Ben Acker</a></strong>
<a href="https://www.youtube.com/watch?v=8zfQ_uq25QQ&list=PLt4dwg5cC5TRpoSVH5Rs6-bIIUNIYTy9-" class="video icon-movie">Interview</a>
<p class="bio">Developer, Walmartlabs</p>
</li>
<li>
<strong><a href="http://twitter.com/brittanystoroz">Brittany Storoz</a></strong>
<a href="https://www.youtube.com/watch?v=ohF_exBsQYQ&index=10&list=PLt4dwg5cC5TRpoSVH5Rs6-bIIUNIYTy9-" class="video icon-movie">Video</a>
<p class="bio">Interactive Developer, New York Times</p>
</li>
<li>
<strong><a href="http://twitter.com/indexzero">Charlie Robbins</a></strong>
<a href="https://www.youtube.com/watch?v=mOH06gEEvKE&index=7&list=PLt4dwg5cC5TRpoSVH5Rs6-bIIUNIYTy9-" class="video icon-movie">Video</a>
<p class="bio">Founder, CEO. Nodejitsu</p>
</li>
<li>
<strong><a href="http://twitter.com/dominictarr">Dominic Tarr</a></strong>
<span class="meta">Trainer</span>
<p class="bio">Chaotic God</p>
</li>
<li>
<strong><a href="http://twitter.com/feross">Feross Aboukhadijeh</a></strong>
<a href="https://www.youtube.com/watch?v=QpQhR9fBNnk&index=16&list=PLt4dwg5cC5TRpoSVH5Rs6-bIIUNIYTy9-" class="video icon-movie">Video</a>
<p class="bio">Mad scientist, PeerCDN</p>
</li>
<li>
<strong><a href="http://twitter.com/gorhgorh">Jérome Loï</a></strong>
<span class="meta">Trainer</span>
<p class="bio">Friend of the NodeBots, Paris NodeBots organiser</p>
</li>
<li>
<strong><a href="http://twitter.com/jlipps">Jonathan Lipps</a></strong>
<a href="https://www.youtube.com/watch?v=AAxqMVgeJy4&index=15&list=PLt4dwg5cC5TRpoSVH5Rs6-bIIUNIYTy9-" class="video icon-movie">Video</a>
<a href="https://www.youtube.com/watch?v=LSljjkqc4f0&index=18&list=PLt4dwg5cC5TRpoSVH5Rs6-bIIUNIYTy9-" class="video icon-movie">Interview</a>
<p class="bio">Director of Ecosystem & Integrations / Sauce Labs</p>
</li>
<li>
<strong><a href="http://twitter.com/jongleberry">Jonathan Ong</a></strong>
<span class="meta">Trainer</span>
<p class="bio">Independent Developer</p>
</li>
<li>
<strong><a href="http://twitter.com/juliangruber">Julian Grubber</a></strong>
<span class="meta">Trainer</span>
<p class="bio">Software Engineer</p>
</li>
<li>
<strong><a href="http://twitter.com/kevinsawicki">Kevin Sawicki</a></strong>
<a href="https://www.youtube.com/watch?v=DyFdr9zVPHE&index=14&list=PLt4dwg5cC5TRpoSVH5Rs6-bIIUNIYTy9-" class="video icon-movie">Video</a>
<p class="bio">Developer, GitHub</p>
</li>
<li>
<strong><a href="http://twitter.com/matteocollina">Matteo Collina</a></strong>
<a href="https://www.youtube.com/watch?v=BxJ-27Nnakc&index=12&list=PLt4dwg5cC5TRpoSVH5Rs6-bIIUNIYTy9-" class="video icon-movie">Video</a>
<p class="bio">Maintainer / MQTT.js, node-coap, Mosca, Ponte</p>
</li>
<li>
<strong><a href="http://twitter.com/mrbruning">Max Bruning</a></strong>
<span class="meta">Trainer</span>
<p class="bio">Training Director, Joyent</p>
</li>
<li>
<strong><a href="http://twitter.com/mbrevoort">Mike Brevoort</a></strong>
<a href="https://www.youtube.com/watch?v=nK2og2MSUCs&index=9&list=PLt4dwg5cC5TRpoSVH5Rs6-bIIUNIYTy9-" class="video icon-movie">Video</a>
<p class="bio">Chief Architect of Innovation and Advanced Development, Pearson HigherEd</p>
</li>
<li>
<strong><a href="http://twitter.com/olizilla">Oli Evans</a></strong>
<a href="https://www.youtube.com/watch?v=8zfQ_uq25QQ&list=PLt4dwg5cC5TRpoSVH5Rs6-bIIUNIYTy9-" class="video icon-movie">Interview</a>
<p class="bio">Code & community wrangler, (╯°□°)╯︵ TABLEFLIP</p>
</li>
<li>
<strong><a href="http://twitter.com/wwr">Roger Wang</a></strong>
<a href="https://www.youtube.com/watch?v=XmHh4RrlpIk&index=4&list=PLt4dwg5cC5TRpoSVH5Rs6-bIIUNIYTy9-" class="video icon-movie">Video</a>
<p class="bio">Creator and maintainer, node-webkit project</p>
</li>
<li>
<strong><a href="http://twitter.com/supersole">Soledad Penadés</a></strong>
<a href="https://www.youtube.com/watch?v=Bqj9LDszlDY&index=6&list=PLt4dwg5cC5TRpoSVH5Rs6-bIIUNIYTy9-" class="video icon-movie">Video</a>
<p class="bio">Senior HTML5 Engineer</p>
</li>
<li>
<strong><a href="http://twitter.com/tancdev">Tancredi Trugenberger</a></strong>
<a href="https://www.youtube.com/watch?v=BGNwZu3KJlE&index=5&list=PLt4dwg5cC5TRpoSVH5Rs6-bIIUNIYTy9-" class="video icon-movie">Video</a>
<a href="https://www.youtube.com/watch?v=Xp5f2byLfc0&list=PLt4dwg5cC5TRpoSVH5Rs6-bIIUNIYTy9-&index=20" class="video icon-movie">Interview</a>
<p class="bio">Web Lead @ Kano</p>
</li>
<li>
<strong><a href="http://twitter.com/timpark">Tim Park</a></strong>
<span class="meta">Trainer</span>
<p class="bio">Open platforms and Internet of Things, Microsoft</p>
</li>
<li>
<strong><a href="http://twitter.com/tjfontaine">TJ Fontaine</a></strong>
<a href="https://www.youtube.com/watch?v=Ruz73JFwBZA&index=1&list=PLt4dwg5cC5TRpoSVH5Rs6-bIIUNIYTy9-" class="video icon-movie">Video</a>
<a href="https://www.youtube.com/watch?v=Wq5qPS8Ye9w&list=PLt4dwg5cC5TRpoSVH5Rs6-bIIUNIYTy9-&index=22" class="video icon-movie">Interview</a>
<p class="bio">Node.js Project Lead, Joyent</p>
</li>
<li>
<strong><a href="http://twitter.com/phuunet">Tom Ashworth</a></strong>
<a href="https://www.youtube.com/watch?v=a1KQGDRNepI&index=3&list=PLt4dwg5cC5TRpoSVH5Rs6-bIIUNIYTy9-" class="video icon-movie">Video</a>
<p class="bio">Front-end engineer, Twitter</p>
</li>
<li>
<strong><a href="http://twitter.com/HackyGoLucky">Tracy Hinds</a></strong>
<a href="https://www.youtube.com/watch?v=wdOxI7NHzCg&index=13&list=PLt4dwg5cC5TRpoSVH5Rs6-bIIUNIYTy9-" class="video icon-movie">Video</a>
<p class="bio">PDXNode|CascadiaJS organizer, Web Engineer, Urban Airship</p>
</li>
<li>
<strong><a href="http://twitter.com/thegoleffect">Van Nguyen</a></strong>
<span class="meta">Trainer</span>
<p class="bio">Lead Engineer, WalmartLabs</p>
</li>
<li>
<strong><a href="http://twitter.com/wpreul">Wyatt Preul</a></strong>
<a href="https://www.youtube.com/watch?v=EFSB1bjkjbI&index=11&list=PLt4dwg5cC5TRpoSVH5Rs6-bIIUNIYTy9-" class="video icon-movie">Video</a>
<p class="bio">Software Architect</p>
</li>
</ul>
</div>
<div class="columns">
<h2><span class="icon-heart"></span>Sponsors</h2>
<ul class="small-block-grid-2 medium-block-grid-4 large-block-grid-6 sponsors">
<li>
<a href="http://www.blip.pt/" title="Blip"><img src="http://2014.lxjs.org/img/logo-sponsor-blip.png" alt="Blip"></a>
</li>
<li>
<a href="http://www.microsoft.com/" title="Microsoft"><img src="http://2014.lxjs.org/img/logo-sponsor-microsoft.png" alt="Microsoft"></a>
</li>
<li>
<a href="http://www.sapo.pt/" title="Sapo"><img src="http://2014.lxjs.org/img/logo-sponsor-sapo.png" alt="Sapo"></a>
</li>
<li>
<a href="https://www.digitalocean.com" title="Digital Ocean"><img src="http://2014.lxjs.org/img/logo-sponsor-digitalocean.png" alt="Digital Ocean"></a>
</li>
<li>
<a href="https://gitter.im/" title="Gitter"><img src="http://2014.lxjs.org/img/logo-sponsor-gitter.png" alt="Gitter"></a>
</li>
<li>
<a href="http://www.mongodb.org/" title="MongoDB"><img src="http://2014.lxjs.org/img/logo-sponsor-mongodb.png" alt="MongoDB"></a>
</li>
<li>
<a href="https://saucelabs.com/" title="Sauce Labs"><img src="http://2014.lxjs.org/img/logo-sponsor-saucelabs.png" alt="Sauce Labs"></a>
</li>
<li>
<a href="https://www.meteor.com/" title="Meteor"><img src="http://2014.lxjs.org/img/logo-sponsor-meteor.png" alt="Meteor"></a>
</li>
<li>
<a href="http://www.aptoide.com/" title="Aptoide"><img src="http://2014.lxjs.org/img/logo-sponsor-aptoide.png" alt="Aptoide"></a>
</li>
<li>
<a href="https://liftsecurity.io/" title="^Lift"><img src="http://2014.lxjs.org/img/logo-sponsor-lift.png" alt="^Lift"></a>
</li>
<li>
<a href="http://www.oreilly.com/" title="O'Reilly Media"><img src="http://2014.lxjs.org/img/logo-sponsor-oreilly.png" alt="O'Reilly Media"></a>
</li>
<li>
<a href="http://www.pearson.com/" title="Pearson"><img src="http://2014.lxjs.org/img/logo-sponsor-pearson.png" alt="Pearson"></a>
</li>
<li>
<a href="http://www.walmartlabs.com/" title="Walmart Labs"><img src="http://2014.lxjs.org/img/logo-sponsor-walmartlabs.png" alt="Walmart Labs"></a>
</li>
<li>
<a href="https://cloudup.com/" title="Cloudup"><img src="http://2014.lxjs.org/img/logo-sponsor-cloudup.png" alt="Cloudup"></a>
</li>
<li>
<a href="http://google.com/" title="Google"><img src="http://2014.lxjs.org/img/logo-sponsor-google.png" alt="Google"></a>
</li>
<li>
<a href="http://observador.pt/" title="Observador"><img src="http://2014.lxjs.org/img/logo-sponsor-observador.png" alt="Observador"></a>
</li>
<li>
<a href="http://weareone.pt/" title="we are one"><img src="http://2014.lxjs.org/img/logo-sponsor-weareone.png" alt="we are one"></a>
</li>
<li>
<a href="http://yld.io/" title="YLD!"><img src="http://2014.lxjs.org/img/logo-sponsor-yld.png" alt="YLD!"></a>
</li>
<li>
<a href="http://quodis.com" title="Quodis"><img src="http://2014.lxjs.org/img/logo-sponsor-quodis.png" alt="Quodis"></a>
</li>
<li>
<a href="http://acavideo.com/" title="ACA Video"><img src="http://2014.lxjs.org/img/logo-sponsor-acavideo.png" alt="ACA Video"></a>
</li>
<li>
<a href="http://hotel-florida.pt" title="Hotel Florida"><img src="http://2014.lxjs.org/img/logo-sponsor-hotel-florida.png" alt="Hotel Florida"></a>
</li>
</ul>
</div>
<div class="columns">
<h2><span class="icon-uniE607"></span>Team</h2>
<ul class="small-block-grid-2 medium-block-grid-4 large-block-grid-6 team">
<li>
<strong><a href="http://twitter.com/anoemi">Ana Hevesi</a></strong>
<p class="bio">COMMUNITY GEEK</p>
</li>
<li>
<strong><a href="http://twitter.com/andremrodrigues">André Rodrigues</a></strong>
<p class="bio">SOFTWARE ENGINEER</p>
</li>
<li>
<strong><a href="http://twitter.com/bmccoelho">Bruno Coelho</a></strong>
<p class="bio">SOFTWARE ENGINEER</p>
</li>
<li>
<strong><a href="http://twitter.com/daviddias">David Dias</a></strong>
<p class="bio">ENTHUSIASTIC ENGINEER</p>
</li>
<li>
<strong><a href="http://twitter.com/lxvr">Leo Xavier</a></strong>
<p class="bio">Organizer, FOUNDER QUODIS, CTO OBSERVADOR</p>
</li>
<li>
<strong><a href="http://twitter.com/luismreis">Luís Reis</a></strong>
<p class="bio">PROFESSIONAL GEEK</p>
</li>
<li>
<strong><a href="http://twitter.com/dscape">Nuno Job</a></strong>
<p class="bio">INQUISITIVE MIND</p>
</li>
<li>
<strong><a href="http://twitter.com/pgte">Pedro Teixeira</a></strong>
<p class="bio">CO-FOUNDER, THE NODE FIRM / DEVELOPER, CROWDPROCESS</p>
</li>
<li>
<strong><a href="http://twitter.com/veramsm">Vera Magro</a></strong>
<p class="bio">Event Management</p>
</li>
</ul>
</div>
</div>
</div>
<div class="edition">
<div class="row">
<div class="columns">
<h1 class="main"><a href="http://2013.lxjs.org">LXJS 2013</a></h1>
<ul class="small-block-grid-2 medium-block-grid-4 facts">
<li>
<h2><span class="icon-pin-alt"></span>Venue</h2>
<p><strong>Cinema São Jorge</strong>, an Art Deco Theather in the heart of Lisbon</p>
</li>
<li>
<h2><span class="icon-calculator"></span>Budget</h2>
<p><strong>88.141 Eur</strong> cost, 7.256 Eur profit (transitioned into 2014)</p>
</li>
<li>
<h2><span class="icon-movie"></span>Videos, Photos</h2>
<p><a href="https://www.youtube.com/watch?v=bRmSMdQnfAc&list=PLrnJ6q5dXKUttKUYk69O9-V6yRK8PJkW8">Day 1 (18 videos)</a><br>
<a href="https://www.youtube.com/watch?v=G1QCBzQ0aNc&list=PLrnJ6q5dXKUuhTCZ0RVB3uUKuH-XJK7WI">Day 2 (18 videos)</a><br>
<a href="https://www.dropbox.com/sh/hgajjq4e439c8jq/AAC_AYbEvF8skJ4qXCOHvftaa/2013?dl=0">Photos on Dropbox</a>
</p>
</li>
<li>
<h2><span class="icon-users"></span>Attendees</h2>
<p class="large">330</p>
</li>
</ul>
</div>
<div class="columns">
<h2><span class="icon-comment"></span>Speakers</h2>
<ul class="small-block-grid-2 medium-block-grid-4 large-block-grid-6 speakers">
<li>
<strong><a href="http://twitter.com/adam_baldwin">Adam Baldwin</a></strong>
<a href="https://www.youtube.com/watch?v=49Bpzq6okWk" class="video icon-movie">Video</a>
<p class="bio">TEAM LEAD, ^LIFT SECURITY</p>
</li>
<li>
<strong><a href="http://twitter.com/adambrault">Adam Brault</a></strong>
<a href="https://www.youtube.com/watch?v=WS7RXD6EP34" class="video icon-movie">Video</a>
<p class="bio">LUCKY BASTARD, &YET</p>
</li>
<li>
<strong><a href="http://twitter.com/espylaub">Alex Feyerke</a></strong>
<a href="https://www.youtube.com/watch?v=iyjwlvwOoA4" class="video icon-movie">Video</a>
<p class="bio">FREELANCE WEB GENERALIST</p>
</li>
<li>
<strong><a href="http://twitter.com/satazor">André Cruz</a></strong>
<a href="https://www.youtube.com/watch?v=PHlZan97TN0" class="video icon-movie">Video</a>
<p class="bio">SOFTWARE ENGINEER, BABOOM</p>
</li>
<li>
<strong><a href="http://twitter.com/teabass">Andrew Nesbitt</a></strong>
<a href="https://www.youtube.com/watch?v=1qq4c6J8lVU" class="video icon-movie">Video</a>
<p class="bio">FULL STACK WEB DEVELOPER</p>
</li>
<li>
<strong><a href="http://twitter.com/angelinamagnum">Angelina Fabbro</a></strong>
<a href="https://www.youtube.com/watch?v=hIs1fWumaXU" class="video icon-movie">Video</a>
<p class="bio">TECHNICAL EVANGELIST, MOZILLA</p>
</li>
<li>
<strong><a href="http://twitter.com/aral">Aral Balkan</a></strong>
<a href="https://www.youtube.com/watch?v=G1QCBzQ0aNc" class="video icon-movie">Video</a>
<p class="bio">DESIGNER, PROMETHEUS</p>
</li>
<li>
<strong><a href="http://twitter.com/piscisaureus">Bert Belder</a></strong>
<a href="https://www.youtube.com/watch?v=QnO6Uut4Ao8" class="video icon-movie">Video</a>
<p class="bio">NODE.JS CORE DEVELOPER, STRONGLOOP FOUNDER</p>
</li>
<li>
<strong><a href="http://twitter.com/billdoesphysics">Bill Mills</a></strong>
<a href="https://www.youtube.com/watch?v=hIs1fWumaXU" class="video icon-movie">Video</a>
<p class="bio">PHYSICIST AND SOFTWARE DEVELOPER, TRIUMF</p>
</li>
<li>
<strong><a href="http://twitter.com/brianleroux">Brian LeRoux</a></strong>
<a href="https://www.youtube.com/watch?v=fXct9DqD1_A" class="video icon-movie">Video</a>
<p class="bio">SOFTWARE DEVELOPER, ADOBE</p>
</li>
<li>
<strong><a href="http://twitter.com/caolan">Caolan McMahon</a></strong>
<a href="https://www.youtube.com/watch?v=iyjwlvwOoA4" class="video icon-movie">Video</a>
<p class="bio">JAVASCRIPT HACKER</p>
</li>
<li>
<strong><a href="http://twitter.com/xiecc">Charlie Crane</a></strong>
<a href="https://www.youtube.com/watch?v=nvUGXjGrhg4" class="video icon-movie">Video</a>
<p class="bio">SENIOR ENGINEER, NETEASE</p>
</li>
<li>
<strong><a href="http://twitter.com/chrisbumgardner">Chris Bumgardner</a></strong>
<a href="https://www.youtube.com/watch?v=Xyx2gu6L5Kw" class="video icon-movie">Video</a>
<p class="bio">CTO CO-FOUNDER, SKYCATCH</p>
</li>
<li>
<strong><a href="http://twitter.com/domenic">Domenic Denicola</a></strong>
<a href="https://www.youtube.com/watch?v=hneN6aW-d9w" class="video icon-movie">Video</a>
<p class="bio">LOVES USING JAVASCRIPT FOR EVERYTHING</p>
</li>
<li>
<strong><a href="http://twitter.com/dominictarr">Dominic Tarr</a></strong>
<a href="https://www.youtube.com/watch?v=rLeCV7eODVg" class="video icon-movie">Video</a>
<p class="bio">CHIEF MAD SCIENTIST, NEARFORM</p>
</li>
<li>
<strong><a href="http://twitter.com/ded">Dustin Diaz</a></strong>
<a href="https://www.youtube.com/watch?v=nVuKc5lZJps" class="video icon-movie">Video</a>
<p class="bio">FRONTEND ARCHITECT, CHANGE.ORG</p>
</li>
<li>
<strong><a href="http://twitter.com/standardista">Estelle Weyl</a></strong>
<a href="https://www.youtube.com/watch?v=65BEO3knL6o" class="video icon-movie">Video</a>
<p class="bio">AUTHOR, SPEAKER, TRAINER, CONSULTANT</p>
</li>
<li>
<strong><a href="http://twitter.com/gillesruppert">Gilles Ruppert</a></strong>
<a href="https://www.youtube.com/watch?v=OvJWkJ26OEM" class="video icon-movie">Video</a>
<p class="bio">FRONTEND ENGINEER</p>
</li>
<li>
<strong><a href="http://twitter.com/ErisDS">Hannah Wolfe</a></strong>
<a href="https://www.youtube.com/watch?v=O--FF6rLOuc" class="video icon-movie">Video</a>
<p class="bio">CTO & CO-FOUNDER, GHOST</p>
</li>
<li>
<strong><a href="http://twitter.com/ibobrik">Ivan Babrou</a></strong>
<a href="https://www.youtube.com/watch?v=lYAzCqe2cEY" class="video icon-movie">Video</a>
<p class="bio">SOFTWARE ENGINEER, TOPFACE</p>
</li>
<li>
<strong><a href="http://twitter.com/substack">James Halliday</a></strong>
<a href="https://www.youtube.com/watch?v=DCQNm6yiZh0" class="video icon-movie">Video</a>
<p class="bio">UNIX PHILOSOPHER</p>
</li>
<li>
<strong><a href="http://twitter.com/jedschmidt">Jed Schmidt</a></strong>
<a href="https://www.youtube.com/watch?v=bRmSMdQnfAc" class="video icon-movie">Video</a>
<p class="bio">RESIDENT WEB GEEK, UNIQLO</p>
</li>
<li>
<strong><a href="http://twitter.com/jlipps">Jonathan Lipps</a></strong>
<a href="https://www.youtube.com/watch?v=zsbNVkayYRQ" class="video icon-movie">Video</a>
<p class="bio">SENIOR SOFTWARE DEVELOPER, SAUCE LABS</p>
</li>
<li>
<strong><a href="http://twitter.com/laurakalbag">Laura Kalbag</a></strong>
<a href="https://www.youtube.com/watch?v=UOM5eY5hG-Q" class="video icon-movie">Video</a>
<p class="bio">FREELANCE DESIGNER</p>
</li>
<li>
<strong><a href="http://twitter.com/sonicspot">Marco Oliveira</a></strong>
<a href="https://www.youtube.com/watch?v=PHlZan97TN0" class="video icon-movie">Video</a>
<p class="bio">CTO, BABOOM</p>
</li>
<li>
<strong><a href="http://twitter.com/maboa">Mark Boas</a></strong>
<a href="https://www.youtube.com/watch?v=8xiI6-mQrSc" class="video icon-movie">Video</a>
<p class="bio">DEVELOPER HAPPYWORM / FOUNDER HYPERAUDIO INC</p>
</li>
<li>
<strong><a href="http://twitter.com/AVGP">Martin Naumann</a></strong>
<a href="https://www.youtube.com/watch?v=u9PRH3Efd04" class="video icon-movie">Video</a>
<p class="bio">TECHNICAL LEADER, CENTRALWAY</p>
</li>
<li>
<strong><a href="http://twitter.com/michalbe">Michal Budzynski</a></strong>
<p class="bio">BOOT TO GECKO DEVELOPER, MOZILLA</p>
</li>
<li>
<strong><a href="http://twitter.com/mbrevoort">Mike Brevoort</a></strong>
<a href="https://www.youtube.com/watch?v=k6QkNt4hZWQ" class="video icon-movie">Video</a>
<p class="bio">DOER & ENGINEER, PEARSON</p>
</li>
<li>
<strong><a href="http://twitter.com/olizilla">Oli Evans</a></strong>
<a href="https://www.youtube.com/watch?v=jFiLPpTKK-I" class="video icon-movie">Video</a>
<p class="bio">BESPOKE WEB TAILOR</p>
</li>
<li>
<strong><a href="http://twitter.com/insertcoffee">Peter Johnson</a></strong>
<a href="https://www.youtube.com/watch?v=9npo2vqcTKA" class="video icon-movie">Video</a>
<p class="bio">WEB GEEK, NODE.JS DEVELOPER, INDIE GAME DEVELOPER</p>
</li>
<li>
<strong><a href="http://twitter.com/rockbot">Raquel Velez</a></strong>
<a href="https://www.youtube.com/watch?v=SssnWZzLGvo" class="video icon-movie">Video</a>
<p class="bio">HACKER OF THE WEB, ROBOTICS ENGINEER</p>
</li>
<li>
<strong><a href="http://twitter.com/robertnyman">Robert Nyman</a></strong>
<a href="https://www.youtube.com/watch?v=hqyrldlSx_o" class="video icon-movie">Video</a>
<p class="bio">TECHNICAL EVANGELIST, MOZILLA</p>
</li>
<li>
<strong><a href="http://twitter.com/rvagg">Rod Vagg</a></strong>
<a href="https://www.youtube.com/watch?v=-vD33vPKcAM" class="video icon-movie">Video</a>
<p class="bio">JAVASCRIPT DEVELOPER</p>
</li>
<li>
<strong><a href="http://twitter.com/SaraJChipps">Sara Chipps</a></strong>
<a href="https://www.youtube.com/watch?v=U0e6eZtwsog" class="video icon-movie">Video</a>
<p class="bio">CTO, LEVO LEAGUE / CO-FOUNDER, GIRL DEVELOP IT</p>
</li>
<li>
<strong><a href="http://twitter.com/shanehudson">Shane Hudson</a></strong>
<a href="https://www.youtube.com/watch?v=4_0IF5PlImw" class="video icon-movie">Video</a>
<p class="bio">FREELANCE WEBSITE DEVELOPER</p>
</li>
<li>
<strong><a href="http://twitter.com/liquidimage_">Tancredi Trugenberger</a></strong>
<a href="https://www.youtube.com/watch?v=CV5TA2aXXaQ" class="video icon-movie">Video</a>
<p class="bio">CREATIVE DEV, MEMRISE</p>
</li>
<li>
<strong><a href="http://twitter.com/thlorenz">Thorsten Lorenz</a></strong>
<a href="https://www.youtube.com/watch?v=9llfAByho98" class="video icon-movie">Video</a>
<p class="bio">JAVASCRIPT DEVELOPER</p>
</li>
<li>
<strong><a href="http://twitter.com/timpark">Tim Park</a></strong>
<a href="https://www.youtube.com/watch?v=xV0x3boaZwU" class="video icon-movie">Video</a>
<p class="bio">ENGINEER IN RESIDENCE, MICROSOFT ACCELERATORS</p>
</li>
<li>
<strong><a href="http://twitter.com/mraleph">Vyacheslav Egorov</a></strong>
<a href="https://www.youtube.com/watch?v=65-RbBwZQdU" class="video icon-movie">Video</a>
<p class="bio">SOFTWARE ENGINEER, GOOGLE</p>
</li>
</ul>
</div>
<div class="columns">
<h2><span class="icon-heart"></span>Sponsors</h2>
<ul class="small-block-grid-2 medium-block-grid-4 large-block-grid-6 sponsors">
<li>
<a href="http://appendto.com/" title="Visit appendTo website"><img src="http://2013.lxjs.org/img/logo-sponsor-appendto.png" alt="appendTo"></a>
</li>
<li>
<a href="http://www.blip.pt" title="Visit Blip website"><img src="http://2013.lxjs.org/img/logo-sponsor-blip.png" alt="Blip"></a>
</li>
<li>
<a href="http://www.booking.com" title="Visit Booking.com website"><img src="http://2013.lxjs.org/img/logo-sponsor-bookingcom.png" alt="Booking.com"></a>
</li>
<li>
<a href="http://www.clubjudge.com" title="Visit Club Judge website"><img src="http://2013.lxjs.org/img/logo-sponsor-club-judge.png" alt="Club Judge"></a>
</li>
<li>
<a href="http://www.sapo.pt" title="Visit SAPO website"><img src="http://2013.lxjs.org/img/logo-sponsor-sapo.png" alt="SAPO"></a>
</li>
<li>
<a href="http://www.spotify.com" title="Visit Spotify website"><img src="http://2013.lxjs.org/img/logo-sponsor-spotify.png" alt="Spotify"></a>
</li>
<li>
<a href="http://www.windowsazure.com/" title="Visit Windows Azure website"><img src="http://2013.lxjs.org/img/logo-sponsor-windows-azure.png" alt="Windows Azure"></a>
</li>
<li>
<a href="http://lunacloud.com" title="Visit Lunacloud website"><img src="http://2013.lxjs.org/img/logo-sponsor-lunacloud.png" alt="Lunacloud"></a>
</li>
<li>
<a href="http://www.mozilla.org" title="Visit Mozilla website"><img src="http://2013.lxjs.org/img/logo-sponsor-mozilla.png" alt="Mozilla"></a>
</li>
<li>
<a href="http://www.nearform.com/" title="Visit nearForm website"><img src="http://2013.lxjs.org/img/logo-sponsor-nearform.png" alt="nearForm"></a>
</li>
<li>
<a href="http://phonegap.com" title="Visit PhoneGap website"><img src="http://2013.lxjs.org/img/logo-sponsor-phonegap.png" alt="PhoneGap"></a>
</li>
<li>
<a href="http://phonejs.devexpress.com/" title="Visit PhoneJS website"><img src="http://2013.lxjs.org/img/logo-sponsor-phone-js.png" alt="PhoneJS"></a>
</li>
<li>
<a href="http://saucelabs.com" title="Visit Sauce Labs website"><img src="http://2013.lxjs.org/img/logo-sponsor-sauce-labs.png" alt="Sauce Labs"></a>
</li>
<li>
<a href="http://strongloop.com" title="Visit StrongLoop website"><img src="http://2013.lxjs.org/img/logo-sponsor-strongloop.png" alt="StrongLoop"></a>
</li>
<li>
<a href="http://www.yammer.com" title="Visit Yammer website"><img src="http://2013.lxjs.org/img/logo-sponsor-yammer.png" alt="Yammer"></a>
</li>
<li>
<a href="http://www.meteor.com" title="Visit Meteor website"><img src="http://2013.lxjs.org/img/logo-sponsor-meteor.png" alt="Meteor"></a>
</li>
<li>
<a href="http://www.aptoide.com/" title="Visit Aptoide website"><img src="http://2013.lxjs.org/img/logo-sponsor-aptoide.png" alt="Aptoide"></a>
</li>
<li>
<a href="http://www.campaignmonitor.com/" title="Visit Campaign Monitor Nast website"><img src="http://2013.lxjs.org/img/logo-sponsor-campaign-monitor.png" alt="Campaign Monitor"></a>
</li>
<li>
<a href="https://cloudup.com/" title="Visit Cloudup website"><img src="http://2013.lxjs.org/img/logo-sponsor-cloudup.png" alt="Cloudup"></a>
</li>
<li>
<a href="http://www.condenast.com/" title="Visit Condé Nast website"><img src="http://2013.lxjs.org/img/logo-sponsor-conde-nast.png" alt="Condé Nast"></a>
</li>
<li>
<a href="http://www.lab49.com/" title="Visit Lab49 website"><img src="http://2013.lxjs.org/img/logo-sponsor-lab49.png" alt="Lab49"></a>
</li>
<li>
<a href="http://llcb.pt/" title="Visit Living Lab da Cova da Beira website"><img src="http://2013.lxjs.org/img/logo-sponsor-living-lab.png" alt="Living Lab da Cova da Beira"></a>
</li>
<li>
<a href="http://code.netease.com/" title="Visit NetEase website"><img src="http://2013.lxjs.org/img/logo-sponsor-netease.png" alt="NetEase"></a>
</li>
<li>
<a href="http://topface.com/" title="Visit Topface website"><img src="http://2013.lxjs.org/img/logo-sponsor-topface.png" alt="Topface"></a>
</li>
<li>
<a href="http://www.triumf.ca/" title="Visit TRIUMF website"><img src="http://2013.lxjs.org/img/logo-sponsor-triumf.png" alt="TRIUMF"></a>
</li>
<li>
<a href="http://weareone.pt/" title="Visit we are one website"><img src="http://2013.lxjs.org/img/logo-sponsor-we-are-one.png" alt="we are one"></a>
</li>
<li>
<a href="http://acavideo.com/" title="Visit ACA Video website"><img src="http://2013.lxjs.org/img/logo-sponsor-acavideo.png" alt="ACA Video"></a>
</li>
<li>
<a href="http://greentonebits.com/" title="Visit Green Tone Bits website"><img src="http://2013.lxjs.org/img/logo-sponsor-green-tone-bits.png" alt="Green Tone Bits"></a>
</li>
<li>
<a href="http://hotel-florida.pt" title="Visit Hotel Florida website"><img src="http://2013.lxjs.org/img/logo-sponsor-hotel-florida.png" alt="Hotel Florida"></a>
</li>
<li>
<a href="http://quodis.com" title="Visit Quodis website"><img src="http://2013.lxjs.org/img/logo-sponsor-quodis.png" alt="Quodis"></a>
</li>
</ul>
</div>
<div class="columns">
<h2><span class="icon-uniE607"></span>Team</h2>
<ul class="small-block-grid-2 medium-block-grid-4 large-block-grid-6 team">
<li>
<strong><a href="http://twitter.com/anoemi">Ana Hevesi</a></strong>
<p class="bio">COMMUNITY GEEK</p>
</li>
<li>
<strong><a href="http://twitter.com/andremrodrigues">André Rodrigues</a></strong>
<p class="bio">SOFTWARE ENGINEER</p>
</li>
<li>
<strong><a href="http://twitter.com/bmccoelho">Bruno Coelho</a></strong>
<p class="bio">SOFTWARE ENGINEER</p>
</li>
<li>
<strong><a href="http://twitter.com/daviddias">David Dias</a></strong>
<p class="bio">ENTHUSIASTIC ENGINEER</p>
</li>
<li>
<strong><a href="http://twitter.com/lxvr">Leo Xavier</a></strong>
<p class="bio">FOUNDER, QUODIS</p>
</li>
<li>
<strong><a href="http://twitter.com/luismreis">Luís Reis</a></strong>
<p class="bio">PROFESSIONAL GEEK</p>
</li>
<li>
<strong><a href="http://twitter.com/dscape">Nuno Job</a></strong>
<p class="bio">INQUISITIVE MIND</p>
</li>
<li>
<strong><a href="http://twitter.com/pgte">Pedro Teixeira</a></strong>
<p class="bio">CO-FOUNDER, THE NODE FIRM / DEVELOPER, CROWDPROCESS</p>
</li>
<li>
<strong><a href="http://twitter.com/trodrigues">Tiago Rodrigues</a></strong>
<p class="bio">JAVASCRIPT DEVELOPER, MOSTLY FRONT END</p>
</li>
</ul>
</div>
</div>
</div>
<!-- End 2013 -->
<div class="edition">
<div class="row">
<div class="columns">
<h1 class="main"><a href="http://2012.lxjs.org">LXJS 2012</a></h1>
<ul class="small-block-grid-2 medium-block-grid-4 facts">
<li>
<h2><span class="icon-pin-alt"></span>Venue</h2>
<p><strong>Mercado da Ribeira</strong>, an old fishmarket next to the river</p>
</li>
<li>
<h2><span class="icon-calculator"></span>Budget</h2>
<p><strong>69.155 Eur</strong> cost<br>
235 Eur profit</p>
</li>
<li>
<h2><span class="icon-movie"></span>Videos, Photos</h2>
<p><a href="http://www.youtube.com/user/lxjs2012/videos?flow=grid&view=1">YouTube playlist (43 videos)</a><br>
<a href="https://www.dropbox.com/sh/hgajjq4e439c8jq/AACWii8PaKwwkanuhgMWWf4wa/2012?dl=0">Photos on Dropbox</a>
</p>
</li>
<li>
<h2><span class="icon-users"></span>Attendees</h2>
<p class="large">271</p>
</li>
</ul>
</div>
<div class="columns">
<h2><span class="icon-comment"></span>Speakers</h2>
<ul class="small-block-grid-2 medium-block-grid-4 large-block-grid-6 speakers">
<li>
<strong><a href="http://twitter.com/christkv">Christian Kvalheim</a></strong>
<a href="https://www.youtube.com/watch?v=GvadoFZESiU" class="video icon-movie">Video</a>
<p class="bio">Evangelist, 10gen</p>
</li>
<li>
<strong><a href="http://twitter.com/brianleroux">Brian LeRoux</a></strong>
<a href="https://www.youtube.com/watch?v=lObZbhhTq5E" class="video icon-movie">Video</a>
<p class="bio">Engineer, Adobe</p>
</li>
<li>
<strong><a href="http://twitter.com/janl">Jan Lehnardt</a></strong>
<a href="https://www.youtube.com/watch?v=FYed4dYVtJA" class="video icon-movie">Video</a>
<p class="bio">Co-founder, Couchbase</p>
</li>
<li>
<strong><a href="http://twitter.com/mikeal">Mikeal Rogers</a></strong>
<a href="https://www.youtube.com/watch?v=GaqxIMLLOu8" class="video icon-movie">Video</a>
<p class="bio">Founder, Gather</p>
</li>
<li>
<strong><a href="http://twitter.com/dshaw">Daniel Shaw</a></strong>
<a href="https://www.youtube.com/watch?v=uD8VrbGsbQY" class="video icon-movie">Video</a>
<p class="bio">Engineer, Voxer</p>
</li>
<li>
<strong>Paddy Byers</strong>
<a href="https://www.youtube.com/watch?v=zLeZXSKePhQ" class="video icon-movie">Video</a>
<p class="bio">CTO, Tao Group</p>
</li>
<li>
<strong><a href="http://twitter.com/puffnfresh">Brian McKenna</a></strong>
<a href="https://www.youtube.com/watch?v=jZDI7QPFsdg" class="video icon-movie">Video</a>
<p class="bio">Engineer, Atlassian</p>
</li>
<li>
<strong><a href="http://twitter.com/xcambar">Xavier Cambar</a></strong>
<a href="https://www.youtube.com/watch?v=gQ92pRG2npo" class="video icon-movie">Video</a>
<p class="bio">Software Engineer, Neolane</p>
</li>
<li>
<strong><a href="http://twitter.com/vmische">Volker Mische</a></strong>
<a href="https://www.youtube.com/watch?v=qKnZk27E9Uc" class="video icon-movie">Video</a>
<p class="bio">Creator of GeoCouch</p>
</li>
<li>
<strong><a href="http://twitter.com/twtomcat">Markus Leutwyler</a></strong>
<a href="https://www.youtube.com/watch?v=CcS3U_kZVCY" class="video icon-movie">Video</a>
<p class="bio">webOS Developer Relations, Hewlett-Packard</p>
</li>
<li>
<strong><a href="http://twitter.com/christopherdone">Christopher Done</a></strong>
<a href="https://www.youtube.com/watch?v=u2npMF6U3W4" class="video icon-movie">Video</a>
<p class="bio">Engineer, CREATE-NET</p>
</li>
<li>
<strong><a href="http://twitter.com/_jhs">Jason Smith</a></strong>
<a href="https://www.youtube.com/watch?v=8dMMv-pmTgA" class="video icon-movie">Video</a>
<p class="bio">Technologist, Iris Couch</p>
</li>
<li>
<strong><a href="http://twitter.com/maciejmalecki">Maciej Malecki</a></strong>
<a href="https://www.youtube.com/watch?v=GV12LGxxSzo" class="video icon-movie">Video</a>
<p class="bio">Engineer, Nodejitsu</p>
</li>
<li>
<strong><a href="http://twitter.com/hij1nx">Paolo Fragomeni</a></strong>
<p class="bio">CTO, Nodejitsu</p>
</li>
<li>
<strong><a href="http://twitter.com/daleharvey">Dale Harvey</a></strong>
<a href="https://www.youtube.com/watch?v=OI8a3RggHqk" class="video icon-movie">Video</a>
<p class="bio">Engineer, Mozilla</p>
</li>
<li>
<strong><a href="http://twitter.com/__lucas">Lucas Hrabovsky</a></strong>
<a href="https://www.youtube.com/watch?v=7wFhbwTP8sY" class="video icon-movie">Video</a>
<p class="bio">CTO, ex.fm</p>
</li>
<li>
<strong><a href="http://twitter.com/andremrodrigues">André Rodrigues</a></strong>
<a href="https://www.youtube.com/watch?v=V0sVwr3Vs6A" class="video icon-movie">Video</a>
<p class="bio">Webdeveloper, Microsoft</p>
</li>
<li>
<strong><a href="http://twitter.com/neuman">Neuman Vong</a></strong>
<a href="https://www.youtube.com/watch?v=Gi1mdwx8m4Q" class="video icon-movie">Video</a>
<p class="bio">Engineer, Twilio</p>
</li>
<li>
<strong><a href="http://twitter.com/tmpvar">Elijah Insua</a></strong>
<a href="https://www.youtube.com/watch?v=XbXcdhYwR8I" class="video icon-movie">Video</a>
<p class="bio">Engineer, Nodejitsu</p>
</li>
<li>
<strong><a href="http://twitter.com/substack">James Halliday</a></strong>
<a href="https://www.youtube.com/watch?v=lQAV3bPOYHo" class="video icon-movie">Video</a>
<p class="bio">Co-founder, Browserling/Testling</p>
</li>
<li>
<strong><a href="http://twitter.com/maxogden">Max Ogden</a></strong>
<a href="https://www.youtube.com/watch?v=FDDpEBRGdew" class="video icon-movie">Video</a>
<p class="bio">Engineer</p>
</li>
<li>
<strong><a href="http://twitter.com/jchris">J Chris Anderson</a></strong>
<a href="https://www.youtube.com/watch?v=0fsALv2xOHM" class="video icon-movie">Video</a>
<p class="bio">Chief Architect (Mobile), Couchbase</p>
</li>
<li>
<strong><a href="http://twitter.com/felixge">Felix Geisendörfer</a></strong>
<a href="https://www.youtube.com/watch?v=jl5v3bsMH_E" class="video icon-movie">Video</a>
<p class="bio">Co-founder, Transloadit</p>
</li>
<li>
<strong><a href="http://twitter.com/rjrodger">Richard Rodger</a></strong>
<a href="https://www.youtube.com/watch?v=2_tF0Aozosc" class="video icon-movie">Video</a>
<p class="bio">COO/Founder, nearForm</p>
</li>
<li>
<strong><a href="http://twitter.com/admc">Adam Christian</a></strong>
<a href="https://www.youtube.com/watch?v=6y-QOxfhWpE" class="video icon-movie">Video</a>
<p class="bio">Director of Web Development, Sauce Labs</p>
</li>
<li>
<strong><a href="http://twitter.com/rik24d">Anthony Ricaud</a></strong>
<a href="https://www.youtube.com/watch?v=DOumaOzoQTg" class="video icon-movie">Video</a>
<p class="bio">Web developer, Mozilla</p>
</li>
<li>
<strong><a href="http://twitter.com/seb_ly">Seb Lee-Delisle</a></strong>
<a href="https://www.youtube.com/watch?v=oR9hhcP2ArU" class="video icon-movie">Video</a>
<p class="bio">Founder, CreativeJS.com</p>
</li>
<li>
<strong><a href="http://twitter.com/3rdEden">Arnout Kazemier</a></strong>
<a href="https://www.youtube.com/watch?v=Qkv8urfTmNw" class="video icon-movie">Video</a>
<p class="bio">Lead Software Engineer, Nodejitsu</p>
</li>
<li>
<strong><a href="http://twitter.com/indexzero">Charlie Robbins</a></strong>
<a href="https://www.youtube.com/watch?v=9PK68ZKcSEk" class="video icon-movie">Video</a>
<p class="bio">CEO, Nodejitsu</p>
</li>
<li>
<strong><a href="http://twitter.com/socketstream">Owen Barnes</a></strong>
<a href="https://www.youtube.com/watch?v=LOS1lpWXphs" class="video icon-movie">Video</a>
<p class="bio">Senior Manager, AOL</p>
</li>
<li>
<strong><a href="http://twitter.com/karolinaszczur">Karolina Szczur</a></strong>
<a href="https://www.youtube.com/watch?v=o70jaNU08F0" class="video icon-movie">Video</a>
<p class="bio">UX Designer, Nodejitsu</p>
</li>
<li>
<strong><a href="http://twitter.com/nonken">Nikolai Onken</a></strong>
<p class="bio">Co-founder, uxebu</p>
</li>
<li>
<strong><a href="http://twitter.com/piscisaureus">Bert Belder</a></strong>
<a href="https://www.youtube.com/watch?v=nGn60vDSxQ4" class="video icon-movie">Video</a>
<p class="bio">Node.js developer, Cloud9 IDE</p>
</li>
<li>
<strong><a href="http://twitter.com/dmitrimelikyan">Dmitri Melikyan</a></strong>
<a href="https://www.youtube.com/watch?v=vbQLfRXB3f4" class="video icon-movie">Video</a>
<p class="bio">Founder, NodeTime</p>
</li>
<li>
<strong><a href="http://twitter.com/garannm">Garann Means</a></strong>
<a href="https://www.youtube.com/watch?v=v6YtG-j9TAM" class="video icon-movie">Video</a>
<p class="bio">Engineer, Etsy</p>
</li>
<li>
<strong><a href="http://twitter.com/igorsoarez">Igor Soarez</a></strong>
<a href="https://www.youtube.com/watch?v=6XYSfHS63Ps" class="video icon-movie">Video</a>
<p class="bio">Software Engineer</p>
</li>
</ul>
</div>
<div class="columns">
<h2><span class="icon-heart"></span>Sponsors</h2>
<ul class="small-block-grid-2 medium-block-grid-4 large-block-grid-6 sponsors">
<li>
<a href="http://nodejitsu.com" title="Visit Nodejitsu"><img src="http://2012.lxjs.org/assets/images/sponsor_main_node_jitsu.png" alt="Nodejitsu Logo"></a>
</li>
<li>
<a href="http://thenodefirm.com" title="Visit Node Firm"><img src="http://2012.lxjs.org/assets/images/sponsor_main_nodefirm.png" alt="Node Firm Logo"></a>
</li>
<li>
<a href="http://sapo.pt" title="Visit SAPO"><img src="http://2012.lxjs.org/assets/images/sponsor_main_sapo.png" alt="SAPO Logo"></a>
</li>
<li>
<a href="http://saucelabs.com" title="Visit Sauce Labs"><img src="http://2012.lxjs.org/assets/images/sponsor_main_saucelabs.png" alt="Sauce Labs Logo"></a>
</li>
<li>
<a href="http://10gen.com" title="Visit 10gen"><img src="http://2012.lxjs.org/assets/images/sponsor_main_10gen.png" alt="10gen Logo"></a>
</li>
<li>
<a href="http://scalarium.com" title="Visit Scalarium"><img src="http://2012.lxjs.org/assets/images/sponsor_main_scalarium.png" alt="Scalarium Logo"></a>
</li>
<li>
<a href="http://wegoout.com" title="Visit WeGoOut"><img src="http://2012.lxjs.org/assets/images/sponsor_main_wegoout.png" alt="WeGoOut Logo"></a>
</li>
<li>
<a href="http://voltdb.com" title="Visit VoltDB"><img src="http://2012.lxjs.org/assets/images/sponsor_main_voltdb.png" alt="VoltDB Logo"></a>
</li>
<li>
<a href="http://quodis.com" title="Visit Quodis"><img src="http://2012.lxjs.org/assets/images/sponsor_main_quodis.png" alt="Quodis Logo"></a>
</li>
<li>
<a href="http://voxer.com" title="Visit Voxer"><img src="http://2012.lxjs.org/assets/images/sponsor_main_voxer.png" alt="Voxer Logo"></a>
</li>
<li>
<a href="http://transloadit.com/" title="Visit Transloadit"><img src="http://2012.lxjs.org/assets/images/sponsor_main_transloadit.png" alt="Transloadit Logo"></a>
</li>
<li>
<a href="http://clock.co.uk/" title="Visit Clock"><img src="http://2012.lxjs.org/assets/images/sponsor_main_clock.png" alt="Clock Logo"></a>
</li>
<li>
<a href="http://acavideo.com" title="Visit ACA Video"><img src="http://2012.lxjs.org/assets/images/sponsor_main_acavideo.png" alt="ACA Video Logo"></a>
</li>
<li>
<a href="http://geekli.st" title="Visit Geeklist"><img src="http://2012.lxjs.org/assets/images/sponsor_main_geeklist.png" alt="Geeklist Logo"></a>
</li>
<li>
<a href="http://couchbase.com" title="Visit Couchbase"><img src="http://2012.lxjs.org/assets/images/sponsor_main_couchbase.png" alt="Couchbase Logo"></a>
</li>
<li>
<a href="http://www.windowsazure.com" title="Visit Windows Azure"><img src="http://2012.lxjs.org/assets/images/sponsor_main_azure.png" alt="Windows Azure Logo"></a>
</li>
<li>
<a href="http://iriscouch.com" title="Visit Iris Couch"><img src="http://2012.lxjs.org/assets/images/sponsor_main_iris.png" alt="Iris Couch Logo"></a>
</li>
<li>
<a href="http://etsy.com" title="Visit Etsy"><img src="http://2012.lxjs.org/assets/images/sponsor_main_etsy.png" alt="Etsy Logo"></a>
</li>
<li>
<a href="http://mozilla.org" title="Visit Mozilla"><img src="http://2012.lxjs.org/assets/images/sponsor_main_mozilla.png" alt="Mozilla Logo"></a>
</li>
<li>
<a href="http://all-desk.com" title="Visit all-desk.com"><img src="http://2012.lxjs.org/assets/images/sponsor_main_alldesk.png" alt="all-desk.com Logo"></a>
</li>
<li>
<a href="http://twilio.com" title="Visit twilio"><img src="http://2012.lxjs.org/assets/images/sponsor_main_twilio.png" alt="twilio Logo"></a>
</li>
<li>
<a href="http://sendgrid.com" title="Visit SendGrid"><img src="http://2012.lxjs.org/assets/images/sponsor_main_sendgrid.png" alt="SendGrid Logo"></a>
</li>
<li>
<a href="http://enyojs.com" title="Visit Enyo"><img src="http://2012.lxjs.org/assets/images/sponsor_main_enyo.png" alt="Enyo Logo"></a>
</li>
<li>
<a href="http://phonegap.com" title="Visit PhoneGap"><img src="http://2012.lxjs.org/assets/images/sponsor_main_phonegap.png" alt="PhoneGap Logo"></a>
</li>
<li>
<a href="http://weareone.pt/" title="Visit we are one"><img src="http://2012.lxjs.org/assets/images/sponsor_main_wao.png" alt="we are one Logo"></a>
</li>
</ul>
</div>
<div class="columns">
<h2><span class="icon-uniE607"></span>Team</h2>