-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
3551 lines (3357 loc) · 198 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>
<title>RUPY 2012</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="latlong" content="49.210211, 16.599676 ">
<meta name="keywords" content="python, ruby, conference, europe, brazil">
<meta name="author" content="RUPY 2012 team">
<meta property="og:title" content="RUPY 2012">
<meta property="og:url" content="http://12.rupy.eu/">
<meta property="og:image" content="/assets/og_logo_info-ea4ddea6efe4e07edfbbe4bfabf37d86.png">
<meta property="og:image:width" content="125">
<meta property="og:image:height" content="125">
<meta itemprop="name" content="Rupy 2012">
<meta itemprop="description" content="Rupy 2012, Strongly dynamic Conference. Connecting Hemispheres.">
<meta itemprop="image" content="/assets/og_logo_info-ea4ddea6efe4e07edfbbe4bfabf37d86.png">
<link rel="image_src" href="/assets/og_logo_info-ea4ddea6efe4e07edfbbe4bfabf37d86.png">
<meta content="authenticity_token" name="csrf-param">
<meta name="page" content="home#show">
<link href="/favicon.png" rel="shortcut icon" type="image/vnd.microsoft.icon">
<link href="assets/application.css" media="all" rel="stylesheet" type="text/css">
<script src="http://maps.google.com/maps/api/js?sensor=false" type="text/javascript"></script>
<script src="assets/application-c733851f353985813b9e46015ad22900.js" type="text/javascript"></script>
</head>
<body id="about" data-spy="scroll" data-target=".navbar">
<header>
<div class="navbar navbar-fixed-top">
<div class="navbar-inner">
<div class="container">
<div class="nav-collapse collapse">
<div class="brand">
<a href="http://12.rupy.eu/" title="Brno Edition" class="current">Brno Edition</a> | <a href="http://rupy.com.br/" title="Brazil Edition" class="">Brazil Edition</a>
</div>
<ul class="nav pull-right">
<li class="active"><a href="#about">About</a></li>
<li><a href="#speakers">Speakers</a></li>
<li><a href="#workshops">Workshops</a></li>
<li><a href="#agenda">Agenda</a></li>
<li><a href="#location">Location</a></li>
<li><a href="#sponsors">Sponsors</a></li>
<li><a href="#team">Team</a></li>
<li><a href="#faq">FAQ</a></li>
</ul>
</div>
</div>
</div>
</div>
</header>
<section id="social" class="container">
<div class="row">
<div class="span4">
<div class="content-column">
Previous Editions: <a href="http://11.rupy.eu/">2011</a>
</div>
</div>
<div class="span3 offset5">
<div class="content-column">
<ul class="nav pull-right">
<li class="icon small tumblr"><a href="http://blog.rupy.eu/">Blog</a></li>
<li class="icon small twitter"><a href="https://twitter.com/rupy">Twitter</a></li>
<li class="icon small facebook"><a href="https://facebook.com/rupy.conference">Facebook</a></li>
<li class="icon small linkedin"><a href="https://www.linkedin.com/groups?gid=63103&mostPopular=&trk=tyah">LinkedIn</a></li>
</ul>
</div>
</div>
</div>
</section>
<section id="about" class="hero-unit section container">
<div id="logo">
<h1>RuPy 2012</h1>
<p>
<span>Strongly Dynamic Conference</span> <span>Connecting Hemispheres</span>
</p>
</div>
<blockquote class="highline">
<span><strong>RuPy</strong> is unique conference that brings together communities from different <strong>state-of-the-art</strong> programming</span>
<span>languages <strong>Ruby</strong>, <Strong>Python</strong>, <strong>JavaScript</strong> and related technologies.</span>
</blockquote>
<div class="highline">
<span>Joins us on <strong>November 16—18, 2012</strong></span> <span>in Brno, Czech Republic.</span>
</div>
<div class="row">
<div class="span6">
<h3 class="highline"><span class="icon medium twitter">Twitter</span></h3>
<div class="content-column news">
<div class="tweet"></div>
</div>
</div>
<div class="span6">
<h3 class="highline"><span class="icon medium tumblr">Blog</span></h3>
<div class="content-column news">
<div class="rss-feed"></div>
</div>
</div>
</div>
</section>
<section id="speakers" class="section container">
<h2>Speakers</h2>
<blockquote class="highline">
<span>Behold our <strong>professional, creative, sharp-witted</strong> and simply <strong>awesome speakers</strong> and <strong>developers</strong></span> <span>who will surely make this conference an <strong>unforgettable experience.</strong></span>
</blockquote>
<div class="row">
<div class="span3 box">
<div class="content-column">
<img alt="Dr Nic Williams" height="240" src="/assets/speakers/dr-nic-williams.jpg?1349713388" width="240" />
<div class="info">
<div class="content-column">
<h4><span>Dr Nic</span> <span>Williams</span></h4>
<div class="twitter"> <a href="https://twitter.com/drnic">@drnic</a>
</div> <div class="title center-block"><span class="middle">VP of Developer Evangelism at Engine Yard</span></div>
<div class="additional-info">
<p>
<a href="#dr-nic-williams" data-toggle="modal">Bio</a> | <a href="#dr-nic-williams-talk" data-toggle="modal">Talk</a>
</p>
<div class="modal hide" id="dr-nic-williams">
<div class="content-column">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h3>Dr Nic Williams</h3>
<q>VP of Developer Evangelism at Engine Yard</q>
</div>
<div class="modal-body">
<p class="speaker-avatar">
<img alt="Dr Nic Williams" class="clearfix" height="140" src="/assets/speakers/dr-nic-williams.jpg?1349713388" width="140" />
</p>
<p class="justify-text">Dr Nic is a developer’s developer. He writes blog posts for developers; creates tools, libraries and text editor extensions for developers; and speaks to developers at conferences.
He’s the VP of Developer Evangelism at Engine Yard, the leading Platform as a Service. He has contributed to over 250 open source projects. He is known for creating or curating projects such as Rails Installer, Composite Primary Keys, Choc Top, App Scrolls, Rails TextMate bundle, New Gem, Tab Tab, GitHub Badges, Install Theme for Rails, and Dr Nic’s Magic Models.</p>
</div>
<div class="modal-footer">
<ul class="nav pull-left"><li class="icon small github-dark"><a href="https://github.com/drnic">Github</a></li><li class="icon small twitter-dark"><a href="https://twitter.com/drnic">Twitter</a></li><li class="icon small website-dark"><a href="http://drnicwilliams.com">Website</a></li></ul>
<a href="#" class="btn btn-primary" data-dismiss="modal">Close</a>
</div>
</div>
</div>
<div class="modal hide" id="dr-nic-williams-talk">
<div class="content-column">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h3>The Future of Deployment</h3>
<q>Dr Nic Williams</q>
</div>
<div class="modal-body">
<div class="justify-text">
</div>
</div>
<div class="modal-footer">
<a href="#" class="btn btn-primary" data-dismiss="modal">Close</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="span3 box">
<div class="content-column">
<img alt="Steve Klabnik" height="240" src="/assets/speakers/steve-klabnik.jpg?1349713531" width="240" />
<div class="info">
<div class="content-column">
<h4><span>Steve</span> <span>Klabnik</span></h4>
<div class="twitter"> <a href="https://twitter.com/steveklabnik">@steveklabnik</a>
</div> <div class="title center-block"><span class="middle">Instructor, Jumpstart Lab</span></div>
<div class="additional-info">
<p>
<a href="#steve-klabnik" data-toggle="modal">Bio</a> | <a href="#steve-klabnik-talk" data-toggle="modal">Talk</a>
</p>
<div class="modal hide" id="steve-klabnik">
<div class="content-column">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h3>Steve Klabnik</h3>
<q>Instructor, Jumpstart Lab</q>
</div>
<div class="modal-body">
<p class="speaker-avatar">
<img alt="Steve Klabnik" class="clearfix" height="140" src="/assets/speakers/steve-klabnik.jpg?1349713531" width="140" />
</p>
<p class="justify-text">Ruby, anarchism, critical code studies. I love hypermedia APIs and teach awesome Ruby and Rails classes with Jumpstart Lab.</p>
</div>
<div class="modal-footer">
<ul class="nav pull-left"><li class="icon small github-dark"><a href="https://github.com/steveklabnik">Github</a></li><li class="icon small twitter-dark"><a href="https://twitter.com/steveklabnik">Twitter</a></li><li class="icon small website-dark"><a href="http://steveklabnik.com">Website</a></li></ul>
<a href="#" class="btn btn-primary" data-dismiss="modal">Close</a>
</div>
</div>
</div>
<div class="modal hide" id="steve-klabnik-talk">
<div class="content-column">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h3>Why should I care about Rails 4?</h3>
<q>Steve Klabnik</q>
</div>
<div class="modal-body">
<div class="justify-text">
It's been a long time coming, and there's a lot going on with edge Rails. In this talk, Steve will show off some new features of Rails 4, as well as discuss where Rails is going in the future.
</div>
</div>
<div class="modal-footer">
<a href="#" class="btn btn-primary" data-dismiss="modal">Close</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="span3 box">
<div class="content-column">
<img alt="José Valim" height="240" src="/assets/speakers/jose-valim.jpg?1349715165" width="240" />
<div class="info">
<div class="content-column">
<h4><span>José</span> <span>Valim</span></h4>
<div class="twitter"> <a href="https://twitter.com/josevalim">@josevalim</a>
</div> <div class="title center-block"><span class="middle">Lead Delevoper at Plataformatec</span></div>
<div class="additional-info">
<p>
<a href="#jose-valim" data-toggle="modal">Bio</a> | <a href="#jose-valim-talk" data-toggle="modal">Talk</a>
</p>
<div class="modal hide" id="jose-valim">
<div class="content-column">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h3>José Valim</h3>
<q>Lead Delevoper at Plataformatec</q>
</div>
<div class="modal-body">
<p class="speaker-avatar">
<img alt="José Valim" class="clearfix" height="140" src="/assets/speakers/jose-valim.jpg?1349715165" width="140" />
</p>
<p class="justify-text">José Valim is a Rails Core member and author of Crafting Rails Applications. Also, he is the lead-developer of Plataformatec, a Ruby on Rails consultancy firm based in Brazil. He created and maintains many open source projects, the latest being Elixir and Dynamo, a language and web framework targeting the Erlang VM.</p>
</div>
<div class="modal-footer">
<ul class="nav pull-left"><li class="icon small github-dark"><a href="https://github.com/josevalim">Github</a></li><li class="icon small twitter-dark"><a href="https://twitter.com/josevalim">Twitter</a></li><li class="icon small website-dark"><a href="http://plataformatec.com.br/">Website</a></li></ul>
<a href="#" class="btn btn-primary" data-dismiss="modal">Close</a>
</div>
</div>
</div>
<div class="modal hide" id="jose-valim-talk">
<div class="content-column">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h3>Elixir - A modern approach to programming for the Erlang VM</h3>
<q>José Valim</q>
</div>
<div class="modal-body">
<div class="justify-text">
<p>In this talk, José Valim will cover the main goals and features in Elixir while also presenting some of the rationale and changes behind the language design and its latest tools.</p>
</div>
</div>
<div class="modal-footer">
<a href="#" class="btn btn-primary" data-dismiss="modal">Close</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="span3 box">
<div class="content-column">
<img alt="Zed A. Shaw" height="240" src="/assets/speakers/zed-shaw.jpg?1352669459" width="240" />
<div class="info">
<div class="content-column">
<h4><span>Zed</span> <span>A. Shaw</span></h4>
<div class="twitter"> <a href="https://twitter.com/zedshaw">@zedshaw</a>
</div> <div class="title center-block"><span class="middle">The Original Programming Motherfucker</span></div>
<div class="additional-info">
<p>
<a href="#zed-a-shaw" data-toggle="modal">Bio</a> | <a href="#zed-a-shaw-talk" data-toggle="modal">Talk</a>
</p>
<div class="modal hide" id="zed-a-shaw">
<div class="content-column">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h3>Zed A. Shaw</h3>
<q>The Original Programming Motherfucker</q>
</div>
<div class="modal-body">
<p class="speaker-avatar">
<img alt="Zed A. Shaw" class="clearfix" height="140" src="/assets/speakers/zed-shaw.jpg?1352669459" width="140" />
</p>
<p class="justify-text">I am the author of Learn Python The Hard Way, Learn Ruby The Hard Way, The Command Line Crash Course, and Learn C The Hard Way. I'm the original author of the Mongrel web server, the Lamson email server, and many other smaller open source projects. I also created the Programming, Motherfucker methodology which is awesome because it has t-shirts. I also play and build guitars, synths, and basses for fun.</p>
</div>
<div class="modal-footer">
<ul class="nav pull-left"><li class="icon small github-dark"><a href="https://github.com/zedshaw">Github</a></li><li class="icon small twitter-dark"><a href="https://twitter.com/zedshaw">Twitter</a></li><li class="icon small website-dark"><a href="http://zedshaw.com">Website</a></li></ul>
<a href="#" class="btn btn-primary" data-dismiss="modal">Close</a>
</div>
</div>
</div>
<div class="modal hide" id="zed-a-shaw-talk">
<div class="content-column">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h3>Keynote</h3>
<q>Zed A. Shaw</q>
</div>
<div class="modal-body">
<div class="justify-text">
</div>
</div>
<div class="modal-footer">
<a href="#" class="btn btn-primary" data-dismiss="modal">Close</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="span3 box">
<div class="content-column">
<img alt="Charles Oliver Nutter" height="240" src="/assets/speakers/charles-olivier-nutter.jpg?1349713813" width="240" />
<div class="info">
<div class="content-column">
<h4><span>Charles</span> <span>Oliver Nutter</span></h4>
<div class="twitter"> <a href="https://twitter.com/headius">@headius</a>
</div> <div class="title center-block"><span class="middle">JRuby Co-Lead</span></div>
<div class="additional-info">
<p>
<a href="#charles-oliver-nutter" data-toggle="modal">Bio</a> | <a href="#charles-oliver-nutter-talk" data-toggle="modal">Talk</a>
</p>
<div class="modal hide" id="charles-oliver-nutter">
<div class="content-column">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h3>Charles Oliver Nutter</h3>
<q>JRuby Co-Lead</q>
</div>
<div class="modal-body">
<p class="speaker-avatar">
<img alt="Charles Oliver Nutter" class="clearfix" height="140" src="/assets/speakers/charles-olivier-nutter.jpg?1349713813" width="140" />
</p>
<p class="justify-text">Charles works on JRuby and other language implementations at Red Hat, helping to bring languages to the power of the JVM and bring the JVM to the broader polyglot world.</p>
</div>
<div class="modal-footer">
<ul class="nav pull-left"><li class="icon small github-dark"><a href="https://github.com/headius">Github</a></li><li class="icon small twitter-dark"><a href="https://twitter.com/headius">Twitter</a></li><li class="icon small website-dark"><a href="http://blog.headius.com">Website</a></li></ul>
<a href="#" class="btn btn-primary" data-dismiss="modal">Close</a>
</div>
</div>
</div>
<div class="modal hide" id="charles-oliver-nutter-talk">
<div class="content-column">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h3>JRuby: Industrial-Strength Ruby</h3>
<q>Charles Oliver Nutter, Thomas E Enebo</q>
</div>
<div class="modal-body">
<div class="justify-text">
There's a lot to love about JRuby. It performs better than just about any other implementation. It has solid, reliable, parallel threading. Its extensions are managed code and won't segfault or interfere with threads or GC. And it gives Ruby access to anything that can run on a JVM, including code written in other languages.
</div>
</div>
<div class="modal-footer">
<a href="#" class="btn btn-primary" data-dismiss="modal">Close</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="span3 box">
<div class="content-column">
<img alt="Thomas E Enebo" height="240" src="/assets/speakers/thomas-enebo.jpg?1349713653" width="240" />
<div class="info">
<div class="content-column">
<h4><span>Thomas</span> <span>E Enebo</span></h4>
<div class="twitter"> <a href="https://twitter.com/tom_enebo ">@tom_enebo </a>
</div> <div class="title center-block"><span class="middle">JRuby Co-Lead</span></div>
<div class="additional-info">
<p>
<a href="#thomas-e-enebo" data-toggle="modal">Bio</a> | <a href="#thomas-e-enebo-talk" data-toggle="modal">Talk</a>
</p>
<div class="modal hide" id="thomas-e-enebo">
<div class="content-column">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h3>Thomas E Enebo</h3>
<q>JRuby Co-Lead</q>
</div>
<div class="modal-body">
<p class="speaker-avatar">
<img alt="Thomas E Enebo" class="clearfix" height="140" src="/assets/speakers/thomas-enebo.jpg?1349713653" width="140" />
</p>
<p class="justify-text">Thomas Enebo is co-lead of the JRuby project and an employee of Red
Hat. He has been a practitioner of Java since the heady days of the
HotJava browser, and he has been happily using Ruby since 2001. When
Thomas is not working he enjoys biking, anime, and drinking a decent
IPA.</p>
</div>
<div class="modal-footer">
<ul class="nav pull-left"><li class="icon small github-dark"><a href="https://github.com/enebo">Github</a></li><li class="icon small twitter-dark"><a href="https://twitter.com/tom_enebo ">Twitter</a></li><li class="icon small website-dark"><a href="http://blog.enebo.com/">Website</a></li></ul>
<a href="#" class="btn btn-primary" data-dismiss="modal">Close</a>
</div>
</div>
</div>
<div class="modal hide" id="thomas-e-enebo-talk">
<div class="content-column">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h3>JRuby: Industrial-Strength Ruby</h3>
<q>Charles Oliver Nutter, Thomas E Enebo</q>
</div>
<div class="modal-body">
<div class="justify-text">
There's a lot to love about JRuby. It performs better than just about any other implementation. It has solid, reliable, parallel threading. Its extensions are managed code and won't segfault or interfere with threads or GC. And it gives Ruby access to anything that can run on a JVM, including code written in other languages.
</div>
</div>
<div class="modal-footer">
<a href="#" class="btn btn-primary" data-dismiss="modal">Close</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="span3 box">
<div class="content-column">
<img alt="Mitchell Hashimoto" height="240" src="/assets/speakers/mitchell-hashimoto.jpg?1349713912" width="240" />
<div class="info">
<div class="content-column">
<h4><span>Mitchell</span> <span>Hashimoto</span></h4>
<div class="twitter"> <a href="https://twitter.com/mitchellh">@mitchellh</a>
</div> <div class="title center-block"><span class="middle">Creator and Maintainer of Vagrant</span></div>
<div class="additional-info">
<p>
<a href="#mitchell-hashimoto" data-toggle="modal">Bio</a> | <a href="#mitchell-hashimoto-talk" data-toggle="modal">Talk</a>
</p>
<div class="modal hide" id="mitchell-hashimoto">
<div class="content-column">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h3>Mitchell Hashimoto</h3>
<q>Creator and Maintainer of Vagrant</q>
</div>
<div class="modal-body">
<p class="speaker-avatar">
<img alt="Mitchell Hashimoto" class="clearfix" height="140" src="/assets/speakers/mitchell-hashimoto.jpg?1349713912" width="140" />
</p>
<p class="justify-text">Mitchell is the creator of <a href="http://vagrantup.com/">Vagrant</a>, an <a href="http://www.oreillynet.com/pub/au/5373">O'Reilly author</a>, and a professional speaker. He is a well known and respected leader in the DevOps community, most commonly associated with building forward-thinking automation tools. He is also passionate about open source, and spends hours of his free time each day contributing to the community in any way possible.</p>
</div>
<div class="modal-footer">
<ul class="nav pull-left"><li class="icon small github-dark"><a href="https://github.com/mitchellh">Github</a></li><li class="icon small twitter-dark"><a href="https://twitter.com/mitchellh">Twitter</a></li><li class="icon small website-dark"><a href="http://mitchellhashimoto.com">Website</a></li></ul>
<a href="#" class="btn btn-primary" data-dismiss="modal">Close</a>
</div>
</div>
</div>
<div class="modal hide" id="mitchell-hashimoto-talk">
<div class="content-column">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h3>The Future of Development</h3>
<q>Mitchell Hashimoto</q>
</div>
<div class="modal-body">
<div class="justify-text">
<p>Three years ago, the de facto way to do web development was by installing lots of backend software on your machine, and running that application directly from your machine. This method is still around, but wrought with problems and pitfalls.</p>
<p>Then came Vagrant. Vagrant introduced an elegant workflow around working with VirtualBox virtual machines. Today, working in VMs for development, infrastructure/operations work, and more has become more of the norm. There is still a long way to go, but Vagrant-style workflows are quickly overcoming the previous status quo.</p>
<p>It's time for development and our points of view on development to change again. With the rise of PaaS, multiple cloud vendors, more accessible virtualization, and more, we now have the opportunity to once again fundamentally change the way we work. This talk will discuss my ideas on this and introduce the work I'm doing to reach this goal with future versions of Vagrant. The goal of this talk is to stir up your imagination and redefine what you believe is possible, and how you can work.</p>
<p>And, prepare to hear some exciting news, announced to the world for
the first time ever.</p>
</div>
</div>
<div class="modal-footer">
<a href="#" class="btn btn-primary" data-dismiss="modal">Close</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="span3 box">
<div class="content-column">
<img alt="Benjamin Browning" height="240" src="/assets/speakers/benjamin-browning.jpg?1350501063" width="240" />
<div class="info">
<div class="content-column">
<h4><span>Benjamin</span> <span>Browning</span></h4>
<div class="twitter"> <a href="https://twitter.com/bbrowning">@bbrowning</a>
</div> <div class="title center-block"><span class="middle">TorqueBox Lead at Red Hat</span></div>
<div class="additional-info">
<p>
<a href="#benjamin-browning" data-toggle="modal">Bio</a> | <a href="#benjamin-browning-talk" data-toggle="modal">Talk</a>
</p>
<div class="modal hide" id="benjamin-browning">
<div class="content-column">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h3>Benjamin Browning</h3>
<q>TorqueBox Lead at Red Hat</q>
</div>
<div class="modal-body">
<p class="speaker-avatar">
<img alt="Benjamin Browning" class="clearfix" height="140" src="/assets/speakers/benjamin-browning.jpg?1350501063" width="140" />
</p>
<p class="justify-text">Ben is the lead of the TorqueBox project and an active contributor to many other open-source projects. He spent several years in the enterprise Java world before embracing the JRuby goodness and now works hard to bring the Ruby and Java communities together through TorqueBox.</p>
</div>
<div class="modal-footer">
<ul class="nav pull-left"><li class="icon small github-dark"><a href="https://github.com/bbrowning">Github</a></li><li class="icon small twitter-dark"><a href="https://twitter.com/bbrowning">Twitter</a></li><li class="icon small website-dark"><a href="http://thinkingconcurrently.com/">Website</a></li></ul>
<a href="#" class="btn btn-primary" data-dismiss="modal">Close</a>
</div>
</div>
</div>
<div class="modal hide" id="benjamin-browning-talk">
<div class="content-column">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h3>Simplify Your Infrastructure with TorqueBox</h3>
<q>Benjamin Browning</q>
</div>
<div class="modal-body">
<div class="justify-text">
<p>TorqueBox is an open source project that combines JRuby with the JBoss Application Server to form a fast, scalable server for Rack/Rails applications. It exposes features traditionally found in Java application servers to Ruby, such as asynchronous processing, job scheduling, daemons, caching, clustering, and websockets.</p>
<p>After a quick overview, we'll show how the above features simplify the accidental complexity present in many Ruby applications.</p>
</div>
</div>
<div class="modal-footer">
<a href="#" class="btn btn-primary" data-dismiss="modal">Close</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="span3 box">
<div class="content-column">
<img alt="Piotr Szotkowski" height="240" src="/assets/speakers/piotr-szotkowski.jpg?1349714999" width="240" />
<div class="info">
<div class="content-column">
<h4><span>Piotr</span> <span>Szotkowski</span></h4>
<div class="twitter"> <a href="https://twitter.com/chastell">@chastell</a>
</div> <div class="title center-block"><span class="middle">Cheap Science Officer at Rebased</span></div>
<div class="additional-info">
<p>
<a href="#piotr-szotkowski" data-toggle="modal">Bio</a> | <a href="#piotr-szotkowski-talk" data-toggle="modal">Talk</a>
</p>
<div class="modal hide" id="piotr-szotkowski">
<div class="content-column">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h3>Piotr Szotkowski</h3>
<q>Cheap Science Officer at Rebased</q>
</div>
<div class="modal-body">
<p class="speaker-avatar">
<img alt="Piotr Szotkowski" class="clearfix" height="140" src="/assets/speakers/piotr-szotkowski.jpg?1349714999" width="140" />
</p>
<p class="justify-text">Piotr Szotkowski is an assistant professor at Warsaw University of Technology (where he happily sneaks Ruby, EventMachine and newfangled database systems into the creaking world of twentieth-century academia) and a Ruby developer at <a href="http://rebased.pl/">Rebased</a>. He’s also a long-time contributor to various open source projects for the civic sector and co-organiser of NetWtorek – monthly meetings of people from the NGO/non-profit and IT sectors, as well as SocHack – quarterly 48-hour hackatons for worthy causes, in coordination with <a href="http://www.rhok.org/">Random Hacks of Kindness, </a><a href="http://www.opendataday.org/">Open Data Day</a> and <a href="http://www.openeducationweek.org/">Open Education Week</a>.</p>
</div>
<div class="modal-footer">
<ul class="nav pull-left"><li class="icon small github-dark"><a href="https://github.com/chastell">Github</a></li><li class="icon small twitter-dark"><a href="https://twitter.com/chastell">Twitter</a></li><li class="icon small website-dark"><a href="http://chastell.net">Website</a></li></ul>
<a href="#" class="btn btn-primary" data-dismiss="modal">Close</a>
</div>
</div>
</div>
<div class="modal hide" id="piotr-szotkowski-talk">
<div class="content-column">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h3>Fly, You Tools!</h3>
<q>Piotr Szotkowski</q>
</div>
<div class="modal-body">
<div class="justify-text">
<p>As developers we heavily depend on our tools of the trade, as oftentimes mastering them means getting out of deep trouble so much faster.</p>
<p>This talk covers some lesser known features of our everyday infrastructure (like Git or PostgreSQL); tricks which make using these tools such a pleasure, regardless whether it’s for shaving yet another yak or saving one’s own skin.</p>
</div>
</div>
<div class="modal-footer">
<a href="#" class="btn btn-primary" data-dismiss="modal">Close</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="span3 box">
<div class="content-column">
<img alt="Andrzej Krzywda" height="240" src="/assets/speakers/andrzej-krzywda.jpg?1352168984" width="240" />
<div class="info">
<div class="content-column">
<h4><span>Andrzej</span> <span>Krzywda</span></h4>
<div class="twitter"> <a href="https://twitter.com/andrzejkrzywda">@andrzejkrzywda</a>
</div> <div class="title center-block"><span class="middle">Ruby and CoffeeScript programmer</span></div>
<div class="additional-info">
<p>
<a href="#andrzej-krzywda" data-toggle="modal">Bio</a> | <a href="#andrzej-krzywda-talk" data-toggle="modal">Talk</a>
</p>
<div class="modal hide" id="andrzej-krzywda">
<div class="content-column">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h3>Andrzej Krzywda</h3>
<q>Ruby and CoffeeScript programmer</q>
</div>
<div class="modal-body">
<p class="speaker-avatar">
<img alt="Andrzej Krzywda" class="clearfix" height="140" src="/assets/speakers/andrzej-krzywda.jpg?1352168984" width="140" />
</p>
<p class="justify-text">Ruby and Coffee programmer. The founder of Arkency and GameBoxed. Rails teacher at University of Wroclaw.
He's originally a backend developer, with Rails experience since 2004. He knows all the pains and beauty of Rails. Now, after working for the last 2 years on frontends, he knows how to build them properly. He will teach us all the lessons he's learned and he's going to show a lot of production frontend code.</p>
</div>
<div class="modal-footer">
<ul class="nav pull-left"><li class="icon small github-dark"><a href="https://github.com/andrzejkrzywda">Github</a></li><li class="icon small twitter-dark"><a href="https://twitter.com/andrzejkrzywda">Twitter</a></li><li class="icon small website-dark"><a href="http://andrzejkrzywda.com">Website</a></li></ul>
<a href="#" class="btn btn-primary" data-dismiss="modal">Close</a>
</div>
</div>
</div>
<div class="modal hide" id="andrzej-krzywda-talk">
<div class="content-column">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h3>Single Page Applications with CoffeeScript</h3>
<q>Andrzej Krzywda</q>
</div>
<div class="modal-body">
<div class="justify-text">
<p>We, the backend programmers, often have troubles working on JS frontends. We avoid it, even when that would be the best User Experience.</p>
<ul>
<li>What if you knew how to manage the JavaScript (or rather CoffeeScript)?</li>
<li>What if you could use even nicer architectures than the ones you build on the backend?</li>
</ul>
<p>Once you realize, that the frontend is a separate application and once you learn good patterns of the real MVC, you will be proud of your frontend code.</p>
</div>
</div>
<div class="modal-footer">
<a href="#" class="btn btn-primary" data-dismiss="modal">Close</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="span3 box">
<div class="content-column">
<img alt="Karel Minarík" height="240" src="/assets/speakers/karel-minarik.jpg?1349715249" width="240" />
<div class="info">
<div class="content-column">
<h4><span>Karel</span> <span>Minarík</span></h4>
<div class="twitter"> <a href="https://twitter.com/karmiq">@karmiq</a>
</div> <div class="title center-block"><span class="middle">Ruby Developer</span></div>
<div class="additional-info">
<p>
<a href="#karel-minarik" data-toggle="modal">Bio</a> | <a href="#karel-minarik-talk" data-toggle="modal">Talk</a>
</p>
<div class="modal hide" id="karel-minarik">
<div class="content-column">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h3>Karel Minarík</h3>
<q>Ruby Developer</q>
</div>
<div class="modal-body">
<p class="speaker-avatar">
<img alt="Karel Minarík" class="clearfix" height="140" src="/assets/speakers/karel-minarik.jpg?1349715249" width="140" />
</p>
<p class="justify-text">Karel Minarík is as a freelance designer and developer of web applications, consultant, software architect and Ruby/Rails and NoSQL evangelist. He lives in Prague with his wife and two daughters. Find out more at <a href="http://karmi.cz/">karmi.cz</a>.</p>
</div>
<div class="modal-footer">
<ul class="nav pull-left"><li class="icon small github-dark"><a href="https://github.com/karmi">Github</a></li><li class="icon small twitter-dark"><a href="https://twitter.com/karmiq">Twitter</a></li><li class="icon small website-dark"><a href="http://karmi.cz/">Website</a></li></ul>
<a href="#" class="btn btn-primary" data-dismiss="modal">Close</a>
</div>
</div>
</div>
<div class="modal hide" id="karel-minarik-talk">
<div class="content-column">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h3>Ruby and Elasticsearch</h3>
<q>Karel Minarík</q>
</div>
<div class="modal-body">
<div class="justify-text">
<p>Elasticsearch is a Lucene-based search engine with powerful capabilities, which has been gaining a lot of steam in the recent year or two.</p>
<p>In the talk, we'll see how to work with elasticsearch in Ruby with the Tire client, by walking through a real use case. I'll go over the problems of modelling your data as JSON documents, explaining the analysis process and using custom analyzers, giving tips on proper testing setup, writing Cucumber features for search behaviour, extending the Tire client, and more.</p>
</div>
</div>
<div class="modal-footer">
<a href="#" class="btn btn-primary" data-dismiss="modal">Close</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="span3 box">
<div class="content-column">
<img alt="Honza Král" height="240" src="/assets/speakers/honza-kral.jpg?1349714299" width="240" />
<div class="info">
<div class="content-column">
<h4><span>Honza</span> <span>Král</span></h4>
<div class="twitter"> <a href="https://twitter.com/HonzaKral ">@HonzaKral </a>
</div> <div class="title center-block"><span class="middle">Python Engineer</span></div>
<div class="additional-info">
<p>
<a href="#honza-kral" data-toggle="modal">Bio</a> | <a href="#honza-kral-talk" data-toggle="modal">Talk</a>
</p>
<div class="modal hide" id="honza-kral">
<div class="content-column">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h3>Honza Král</h3>
<q>Python Engineer</q>
</div>
<div class="modal-body">
<p class="speaker-avatar">
<img alt="Honza Král" class="clearfix" height="140" src="/assets/speakers/honza-kral.jpg?1349714299" width="140" />
</p>
<p class="justify-text">Honza is a Python programmer and Django core developer – since he is scared of the bright and shiny world of browsers, designers, and users he prefers to stay buried deep in the infrastructure code and just provides others with tools to do the actual site-building.</p>
</div>
<div class="modal-footer">
<ul class="nav pull-left"><li class="icon small github-dark"><a href="https://github.com/HonzaKral">Github</a></li><li class="icon small twitter-dark"><a href="https://twitter.com/HonzaKral ">Twitter</a></li></ul>
<a href="#" class="btn btn-primary" data-dismiss="modal">Close</a>
</div>
</div>
</div>
<div class="modal hide" id="honza-kral-talk">
<div class="content-column">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h3>Extendable Django Apps</h3>
<q>Honza Král</q>
</div>
<div class="modal-body">
<div class="justify-text">
<p>I will describe how we manage to run all manner of different sites off of one code base, what were the challenges and how we managed to overcome them.</p>
</div>
</div>
<div class="modal-footer">
<a href="#" class="btn btn-primary" data-dismiss="modal">Close</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="span3 box">
<div class="content-column">
<img alt="Armin Ronacher" height="240" src="/assets/speakers/armin-ronacher.jpg?1350648289" width="240" />
<div class="info">
<div class="content-column">
<h4><span>Armin</span> <span>Ronacher</span></h4>
<div class="twitter"> <a href="https://twitter.com/mitsuhiko">@mitsuhiko</a>
</div> <div class="title center-block"><span class="middle">Software Engineer at Fireteam Ltd.</span></div>
<div class="additional-info">
<p>
<a href="#armin-ronacher" data-toggle="modal">Bio</a> | <a href="#armin-ronacher-talk" data-toggle="modal">Talk</a>
</p>
<div class="modal hide" id="armin-ronacher">
<div class="content-column">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h3>Armin Ronacher</h3>
<q>Software Engineer at Fireteam Ltd.</q>
</div>
<div class="modal-body">
<p class="speaker-avatar">
<img alt="Armin Ronacher" class="clearfix" height="140" src="/assets/speakers/armin-ronacher.jpg?1350648289" width="140" />
</p>
<p class="justify-text">Software developer and Open Source lover with a focus on Python. Author of Flask, Jinja2 and a few other Python projects. Interest in system architecture and API/graphical design and writing.</p>
</div>
<div class="modal-footer">
<ul class="nav pull-left"><li class="icon small github-dark"><a href="https://github.com/mitsuhiko">Github</a></li><li class="icon small twitter-dark"><a href="https://twitter.com/mitsuhiko">Twitter</a></li><li class="icon small website-dark"><a href="http://lucumr.pocoo.org/">Website</a></li></ul>
<a href="#" class="btn btn-primary" data-dismiss="modal">Close</a>
</div>
</div>
</div>
<div class="modal hide" id="armin-ronacher-talk">
<div class="content-column">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h3>Rust from Python and Ruby</h3>
<q>Armin Ronacher</q>
</div>
<div class="modal-body">
<div class="justify-text">
<p>Rust is a programming language that wants to rival C++ but takes a lot of inspiration from Haskell and Erlang, looks a bit like Ruby and has many of the design philosophies from Python. This is an introduction why Rust might very well be an interesting language in the future.</p>
</div>
</div>
<div class="modal-footer">
<a href="#" class="btn btn-primary" data-dismiss="modal">Close</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="span3 box">
<div class="content-column">
<img alt="Piotr Solnica" height="240" src="/assets/speakers/piotr-solnica.jpg?1349714424" width="240" />
<div class="info">
<div class="content-column">
<h4><span>Piotr</span> <span>Solnica</span></h4>
<div class="twitter"> <a href="https://twitter.com/_solnic_">@_solnic_</a>
</div> <div class="title center-block"><span class="middle">Freelancer</span></div>
<div class="additional-info">
<p>
<a href="#piotr-solnica" data-toggle="modal">Bio</a> </p>
<div class="modal hide" id="piotr-solnica">
<div class="content-column">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h3>Piotr Solnica</h3>
<q>Freelancer</q>
</div>
<div class="modal-body">
<p class="speaker-avatar">
<img alt="Piotr Solnica" class="clearfix" height="140" src="/assets/speakers/piotr-solnica.jpg?1349714424" width="140" />
</p>
<p class="justify-text">Piotr Solnica is a software developer based in Kraków, Poland. He's been using Ruby as his main language of choice since 2005. He's a member of DataMapper Core Team and a contributor to many open source projects. He's a big fan of OOP and clean code and likes to blog about it at solnic.eu.</p>
</div>
<div class="modal-footer">
<ul class="nav pull-left"><li class="icon small github-dark"><a href="https://github.com/solnic">Github</a></li><li class="icon small twitter-dark"><a href="https://twitter.com/_solnic_">Twitter</a></li></ul>
<a href="#" class="btn btn-primary" data-dismiss="modal">Close</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="span3 box">
<div class="content-column">
<img alt="Dr Frank Celler" height="240" src="/assets/speakers/dr-frank-celler.jpg?1350032194" width="240" />
<div class="info">
<div class="content-column">
<h4><span>Dr Frank</span> <span>Celler</span></h4>
<div class="twitter"> <a href="https://twitter.com/fceller">@fceller</a>
</div> <div class="title center-block"><span class="middle">Lead Developer at ArangoDB</span></div>
<div class="additional-info">
<p>
<a href="#dr-frank-celler" data-toggle="modal">Bio</a> | <a href="#dr-frank-celler-talk" data-toggle="modal">Talk</a>
</p>
<div class="modal hide" id="dr-frank-celler">
<div class="content-column">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h3>Dr Frank Celler</h3>
<q>Lead Developer at ArangoDB</q>
</div>
<div class="modal-body">
<p class="speaker-avatar">
<img alt="Dr Frank Celler" class="clearfix" height="140" src="/assets/speakers/dr-frank-celler.jpg?1350032194" width="140" />
</p>
<p class="justify-text">Frank is both entrepreneur and backend developer, developing mostly memory databases for two decades. Besides Frank organizes Cologne’s NoSQL group & NoSQL conferences. Since Matz released MRuby Frank became an active member of the Ruby community.</p>
</div>
<div class="modal-footer">
<ul class="nav pull-left"><li class="icon small github-dark"><a href="https://github.com/fceller">Github</a></li><li class="icon small twitter-dark"><a href="https://twitter.com/fceller">Twitter</a></li><li class="icon small website-dark"><a href="http://www.arangodb.org">Website</a></li></ul>
<a href="#" class="btn btn-primary" data-dismiss="modal">Close</a>
</div>
</div>
</div>
<div class="modal hide" id="dr-frank-celler-talk">
<div class="content-column">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h3>Running MRuby in a database - totally awesome, useful or just another pointless approach?</h3>
<q>Dr Frank Celler</q>
</div>
<div class="modal-body">
<div class="justify-text">
<p>In April Matz released a new implementation of the Ruby language called MRuby. MRuby allows developers to embed Ruby in other programs. This talk will give you an overview what MRuby is, what can be done with MRuby and what not. And we will have a closer look at our approach of embedding Ruby in the open source NoSQL database ArangoDB. We will introduce some real life use cases, ready to hear if this approach is nonsense in your point of view or may help you building better applications in a shorter period of time.</p>
</div>
</div>
<div class="modal-footer">
<a href="#" class="btn btn-primary" data-dismiss="modal">Close</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="span3 box">
<div class="content-column">
<img alt="Igor Minár" height="240" src="/assets/speakers/igor-minar.jpg?1349715709" width="240" />
<div class="info">
<div class="content-column">
<h4><span>Igor</span> <span>Minár</span></h4>
<div class="twitter"> <a href="https://twitter.com/IgorMinar">@IgorMinar</a>
</div> <div class="title center-block"><span class="middle">Troublemaker at Google</span></div>
<div class="additional-info">
<p>
<a href="#igor-minar" data-toggle="modal">Bio</a> | <a href="#igor-minar-talk" data-toggle="modal">Talk</a>
</p>
<div class="modal hide" id="igor-minar">
<div class="content-column">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h3>Igor Minár</h3>
<q>Troublemaker at Google</q>
</div>
<div class="modal-body">
<p class="speaker-avatar">
<img alt="Igor Minár" class="clearfix" height="140" src="/assets/speakers/igor-minar.jpg?1349715709" width="140" />
</p>
<p class="justify-text">Igor Minár is a software engineer at Google. He is a co-lead of the AngularJS project that aims to bring simplicity to the development of client-side web development via declarative markup, data-binding, and APIs with testability baked in. In his previous life, Igor was a hardcore server-side developer at Sun Microsystems specializing in test-driven web development with Java, JavaEE, JRuby and Rails.</p>
</div>
<div class="modal-footer">
<ul class="nav pull-left"><li class="icon small github-dark"><a href="https://github.com/IgorMinar">Github</a></li><li class="icon small twitter-dark"><a href="https://twitter.com/IgorMinar">Twitter</a></li><li class="icon small website-dark"><a href="http://angularjs.org/">Website</a></li></ul>
<a href="#" class="btn btn-primary" data-dismiss="modal">Close</a>
</div>
</div>
</div>
<div class="modal hide" id="igor-minar-talk">
<div class="content-column">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h3>AngularJS</h3>
<q>Igor Minár</q>
</div>
<div class="modal-body">
<div class="justify-text">
<p>What if you could write modern web apps with dramatically fewer lines of code and improve its readability and expressiveness at the same time? No, there’s no new language to learn. Just familiar old HTML and JavaScript. As a matter of fact, there’s some stuff for you to un-learn.</p>
<p>AngularJS is a client-side JavaScript web development framework where we believe we’ve done something special. We’ve approached the problem let’s say differently from the way any other JavaScript tool has before. Instead of asking what kind of functions we could provide to make writing apps smoother, we asked “what if the browser worked differently in a way that eliminates code and gives structure to apps?”</p>
<p>This talk will take the audience on a tour of what the web platform of the future will look like and how the AngularJS framework can provide many of the powerful capabilities to existing browsers and bridge the path to web components, model driven views and other platform features that are currently being spec-ed.</p>
</div>