-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1059 lines (918 loc) · 43.1 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, title, CSS, favicons, etc. -->
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="keywords" content="">
<meta name="author" content="">
<title>Deccan RubyConf 2016</title>
<link href="/assets/stylesheets/default.css" rel="stylesheet">
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
<!-- Favicons -->
<link rel="apple-touch-icon" href="/assets/images/apple-touch-icon.png">
<link rel="icon" href="/assets/images/favicon.ico">
</head>
<body>
<header class="navbar navbar-static-top bs-docs-nav" id="top" role="banner">
<div class="container-fluid">
<div class="logo-wrap-mobile">
<a href="#" class="icon-rubyconflogo"></a>
</div>
<div class="navbar-header">
<button class="navbar-toggle collapsed" type="button" data-toggle="collapse"
data-target=".bs-navbar-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bars"></span>
</button>
</div>
<nav class="collapse navbar-collapse bs-navbar-collapse">
<ul class="nav navbar-nav navbar-right">
<li><a href="/coc.html">Code Of Conduct</a></li>
<li><a href="#speakers">Speakers</a></li>
<li><a href="#program">Program</a></li>
<li><a href="#sponsors">Sponsors</a></li>
<li><a href="#contact">Contact</a></li>
<li><a href="/faq.html">FAQ</a></li>
<li><a href="/cfp-selection.html">CFP Selection</a>
</li>
<li><a href="https://www.townscript.com/e/drc16">Register</a></li>
</ul>
</nav>
</div>
</header>
<section class="row sec-default sec-home" id="home">
<article class="col-sm-3 side-panel red">
<div class="container-fluid">
<div class="logo-wrap">
<a href="#" class="icon-rubyconflogo"></a>
</div>
<img src="/assets/images/registrations-open.png" alt="Registrations Open"
class="pati registration-pati"/>
</div>
</article>
<section class="col-sm-9 main-content">
<div class="container-fluid">
<h1 class="conf-title">Deccan RubyConf 2016</h1>
<p class="conf-date">6th Aug. 2016 Conference at Hyatt Regency Pune
<br/>
7th Aug. 2016 Workshops
</p>
<p class="conf-tagline">
A Single-Track Conference + Workshops
</p>
<a href="https://www.townscript.com/e/drc16" class="btn btn-primary"
target="_blank">Register</a>
<p class="get-sponsors">Get in on the action, <a href="drbc_2016_sponsorship.pdf"
download>Sponsor Us</a></p>
</div>
</section>
</section>
<section class="row sec-default sec-speakers" id="speakers">
<article class="col-sm-3 side-panel red">
<h1>Speakers</h1>
</article>
<section class="col-sm-9 main-content">
<div id="carousel-desktop" class="carousel slide" data-ride="carousel"
data-interval="false">
<div class="carousel-inner carousel-desktop" role="listbox">
<div class="item active">
<div class="row">
<div class="col-sm-4">
<div class="thumbnail">
<img src="/assets/images/speakers/200x200/ernie.jpg" alt="Ernie Miller"
class="speakers img-responsive">
<div class="caption">
<h4>Ernie Miller</h4>
<p>Ernie's been programming since he was 6, and professionally for the
past 18 years or so. He's passionate about creating things, and sees
software development as an especially powerful medium for creation.
Sometimes he still can't believe that people actually pay us to have
this much fun.</p>
<div class="socialmedia-link">
<a href="https://twitter.com/erniemiller" class="icon-twitter"
target="_blank"></a>
</div>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="thumbnail">
<img src="/assets/images/speakers/pat.png" alt="Pat Allan"
class="speakers img-responsive">
<div class="caption">
<h4>Pat Allan</h4>
<p>
Gelato connoisseur, pancake master, recovering events organiser,
and web developer based in Melbourne, Australia. As well as working
with talented development teams and writing open source Ruby libraries,
Pat is a fan of bringing people together for gatherings small and large,
including <a href="http://trampolineday.com/">Trampoline</a>,
<a href="http://railscamps.com/">Rails Camp</a>,
and <a href="http://rubyconf.org.au/2015">RubyConf AU</a>.
</p>
<div class="socialmedia-link">
<a href="https://twitter.com/pat" class="icon-twitter"
target="_blank"></a>
</div>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="thumbnail">
<img src="/assets/images/speakers/arthurnn.jpeg" alt="Arthur Neves"
class="speakers img-responsive">
<div class="caption">
<h4>Arthur Neves</h4>
<p>
I work at GitHub, I do a lot of open source work. I am part of the
Rails committer team, as well as I am the principal server side developer
at rubygems.org. You can check my github page for more info about my contributions.
I live and work in Canada. And have been to Portugal once. I speak Portuguese,
as it is my native language, as I was born in Brazil. I also speak French
and Spanish. and I am learning Japanese at the moment :)
</p>
<div class="socialmedia-link">
<a href="https://twitter.com/arthurnn" class="icon-twitter"
target="_blank"></a>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-4">
<div class="thumbnail">
<img src="/assets/images/speakers/mike.png" alt="Mike North"
class="speakers img-responsive">
<div class="caption">
<h4>Mike North</h4>
<p>
Mike is the CTO of Levanto Financial, and an avid open source contributor
to many JavaScript, Ruby and Elixir projects. Formerly, as the UI Architect
for Yahoo’s Ads & Data division, he provided technical oversight for over a
hundred UI engineers and over a dozen projects, and was a driving force in
the adoption of modern web technologies across the company. Mike has a passion
for improving developer productivity, and for helping developers to focus on what
makes their app or project special.
</p>
<div class="socialmedia-link">
<a href="https://twitter.com/MichaelLNorth" class="icon-twitter"
target="_blank"></a>
</div>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="thumbnail">
<img src="/assets/images/speakers/pramod.jpg" alt="Pramod Shinde"
class="speakers img-responsive">
<div class="caption">
<h4>Pramod Shinde</h4>
<p>
A Ruby on Rails Developer works with Josh Software, In spare time
I enjoy outdoor activities like playing football, trekking etc.
</p>
<div class="socialmedia-link">
<a href="http://twitter.com/pramod_shinde" class="icon-twitter"
target="_blank"></a>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-4">
<div class="thumbnail">
<img src="/assets/images/speakers/aditya.png" alt="Aditya Godbole"
class="speakers img-responsive">
<div class="caption">
<h4>Aditya Godbole</h4>
<p>
Aditya is a software architect with 13 years of experience. He has worked in many domains and technologies including Mainframes, Embedded systems, Linux and BSD Kernel Development, Image processing and Machine Vision, Web Applications, Cloud Infrastructure and DevOps.
</p>
<div class="socialmedia-link">
<a href="http://twitter.com/aagdbl" class="icon-twitter"
target="_blank"></a>
</div>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="thumbnail">
<img src="/assets/images/speakers/jim.jpg" alt="Jim Remsik"
class="speakers img-responsive">
<div class="caption">
<h4>Jim Remsik</h4>
<p>
A world-renowned hugger, conference organizer, community instigator, and speaker, Jim has spent a decade building teams for other people prior to founding Adorable. He is a connector of people and problem-solver with a varied background that includes: apprenticing with a printing company, driving stock car, and photographing weddings.
</p>
<div class="socialmedia-link">
<a href="http://twitter.com/jremsikjr" class="icon-twitter"
target="_blank"></a>
</div>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="thumbnail">
<img src="/assets/images/speakers/santosh-wadghule.jpg" alt="Santosh Wadghule"
class="speakers img-responsive">
<div class="caption">
<h4>Santosh Wadghule</h4>
<p>
Santosh Wadghule is a Freelancer based out of Pune. He is working with Ruby and Rails from last 5 years. Loves open source world. When he is not coding, he mostly spends time with his family and takes photos of food wherever he goes.
</p>
<div class="socialmedia-link">
<a href="https://twitter.com/mechanicles" class="icon-twitter"
target="_blank"></a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="carousel-mobile" class="carousel slide" data-ride="carousel"
data-interval="false">
<div class="carousel-inner carousel-mobile" role="listbox">
<div class="item active">
<div class="thumbnail">
<img src="/assets/images/speakers/200x200/ernie.jpg" alt="Ernie Miller"
class="speakers img-responsive">
<div class="caption">
<h4>Ernie Miller</h4>
<p>Ernie's been programming since he was 6, and professionally for the
past 18 years or so. He's passionate about creating things, and sees
software development as an especially powerful medium for creation.
Sometimes he still can't believe that people actually pay us to have
this much fun.</p>
<div class="socialmedia-link">
<a href="https://twitter.com/erniemiller" class="icon-twitter"
target="_blank"></a>
</div>
</div>
</div>
</div>
<div class="item active">
<div class="thumbnail">
<img src="/assets/images/speakers/pat.png" alt="Pat Allan"
class="speakers img-responsive">
<div class="caption">
<h4>Pat Allan</h4>
<p>
Gelato connoisseur, pancake master, recovering events organiser,
and web developer based in Melbourne, Australia. As well as working
with talented development teams and writing open source Ruby libraries,
Pat is a fan of bringing people together for gatherings small and large,
including <a href="http://trampolineday.com/">Trampoline</a>,
<a href="http://railscamps.com/">Rails Camp</a>,
and <a href="http://rubyconf.org.au/2015">RubyConf AU</a>.
</p>
<div class="socialmedia-link">
<a href="https://twitter.com/pat" class="icon-twitter"
target="_blank"></a>
</div>
</div>
</div>
</div>
<div class="item active">
<div class="thumbnail">
<img src="/assets/images/speakers/arthurnn.jpeg" alt="Arthur Neves"
class="speakers img-responsive">
<div class="caption">
<h4>Arthur Neves</h4>
<p>
I work at GitHub, I do a lot of open source work. I am part of the
Rails committer team, as well as I am the principal server side developer
at rubygems.org. You can check my github page for more info about my contributions.
I live and work in Canada. And have been to Portugal once. I speak Portuguese,
as it is my native language, as I was born in Brazil. I also speak French
and Spanish. and I am learning Japanese at the moment :)
</p>
<div class="socialmedia-link">
<a href="https://twitter.com/arthurnn" class="icon-twitter"
target="_blank"></a>
</div>
</div>
</div>
</div>
<div class="item active">
<div class="thumbnail">
<img src="/assets/images/speakers/mike.png" alt="Mike North"
class="speakers img-responsive">
<div class="caption">
<h4>Mike North</h4>
<p>
Mike is the CTO of Levanto Financial, and an avid open source contributor
to many JavaScript, Ruby and Elixir projects. Formerly, as the UI Architect
for Yahoo’s Ads & Data division, he provided technical oversight for over a
hundred UI engineers and over a dozen projects, and was a driving force in
the adoption of modern web technologies across the company. Mike has a passion
for improving developer productivity, and for helping developers to focus on what
makes their app or project special.
</p>
<div class="socialmedia-link">
<a href="https://twitter.com/MichaelLNorth" class="icon-twitter"
target="_blank"></a>
</div>
</div>
</div>
</div>
<div class="item active">
<div class="thumbnail">
<img src="/assets/images/speakers/pramod.jpg" alt="Pramod Shinde"
class="speakers img-responsive">
<div class="caption">
<h4>Pramod Shinde</h4>
<p>
A Ruby on Rails Developer works with Josh Software, In spare time
I enjoy outdoor activities like playing football, trekking etc.
</p>
<div class="socialmedia-link">
<a href="https://twitter.com/pramod_shinde" class="icon-twitter"
target="_blank"></a>
</div>
</div>
</div>
</div>
<div class="item active">
<div class="thumbnail">
<img src="/assets/images/speakers/aditya.png" alt="Aditya Godbole"
class="speakers img-responsive">
<div class="caption">
<h4>Aditya Godbole</h4>
Aditya is a software architect with 13 years of experience. He has worked in many domains and technologies including Mainframes, Embedded systems, Linux and BSD Kernel Development, Image processing and Machine Vision, Web Applications, Cloud Infrastructure and DevOps.
<p>
</p>
<div class="socialmedia-link">
<a href="https://twitter.com/aagdbl" class="icon-twitter"
target="_blank"></a>
</div>
</div>
</div>
<div class="item active">
<div class="thumbnail">
<img src="/assets/images/speakers/jim.jpg" alt="Jim Remsik"
class="speakers img-responsive">
<div class="caption">
<h4>Jim Remsik</h4>
<p>
A world-renowned hugger, conference organizer, community instigator, and speaker, Jim has spent a decade building teams for other people prior to founding Adorable. He is a connector of people and problem-solver with a varied background that includes: apprenticing with a printing company, driving stock car, and photographing weddings.
</p>
<div class="socialmedia-link">
<a href="http://twitter.com/jremsikjr" class="icon-twitter"
target="_blank"></a>
</div>
</div>
</div>
</div>
<div class="item active">
<div class="thumbnail">
<img src="/assets/images/speakers/santosh-wadghule.jpg" alt="Santosh Wadghule"
class="speakers img-responsive">
<div class="caption">
<h4>Santosh Wadghule</h4>
<p>
Santosh Wadghule is a Freelancer based out of Pune. He is working with Ruby and Rails from last 5 years. Loves open source world. When he is not coding, he mostly spends time with his family and takes photos of food wherever he goes.
</p>
<div class="socialmedia-link">
<a href="https://twitter.com/mechanicles" class="icon-twitter"
target="_blank"></a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
</section>
<section class="row sec-default sec-speakers" id="workshop-conductors">
<article class="col-sm-3 side-panel red">
<h1>Workshop conductors</h1>
<img src="/assets/images/keep-quiet.png" alt="Quiet Please"
class="pati keep_quiet-pati"/>
</article>
<section class="col-sm-9 main-content">
<div id="carousel-desktop" class="carousel slide" data-ride="carousel"
data-interval="false">
<div class="carousel-inner carousel-desktop" role="listbox">
<div class="item active">
<div class="row">
<div class="col-sm-4">
<div class="thumbnail">
<img src="/assets/images/speakers/200x200/nick-sutterer.jpg" alt="Nick Sutterer"
class="speakers img-responsive">
<div class="caption">
<h4>Nick Sutterer</h4>
<h5>Ruby Architect</h5>
<p>Nick usually hangs around in pools sipping icey cold caipirinhas with
his fellow open-source comrades and calls this a "conference".
Apparently, he also attempts to ride a surf board in hot tubs and
enjoys listening to and playing insufferable loud music in his secret
laboratory 250 ft below the earth of the Outback. Should he ever leave
his bunker, make sure to hug him if you meet him in person.</p>
<div class="socialmedia-link">
<a href="https://twitter.com/apotonick" class="icon-twitter"
target="_blank"></a>
<a href="https://www.facebook.com/nick.sutterer.7"
class="icon-facebook" target="_blank"></a>
</div>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="thumbnail">
<img src="/assets/images/speakers/200x200/sahil.jpg" alt="Sahil Muthoo"
class="speakers img-responsive">
<div class="caption">
<h4>Sahil Muthoo</h4>
<h5>DevToProd</h5>
<p>Sahil writes software for the joy of creation. He loves that feeling when
castles of sand in his head come alive inside a computer. He’s been
tinkering with Chef + Rails since 2012.</p>
<div class="socialmedia-link">
<a href="https://twitter.com/sahilmuthoo" class="icon-twitter"
target="_blank"></a>
</div>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="thumbnail">
<img src="/assets/images/speakers/200x200/mohit.jpg" alt="Mohit Thatte"
class="speakers img-responsive">
<div class="caption">
<h4>Mohit Thatte</h4>
<h5>DevToProd</h5>
<p>Mohit is addicted to learning, and believes ‘Ars longa, vita brevis’.
He also believes that software development is primarily about teams,
culture and empathy.</p>
<div class="socialmedia-link">
<a href="https://twitter.com/mohitthatte" class="icon-twitter"
target="_blank"></a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="carousel-mobile" class="carousel slide" data-ride="carousel"
data-interval="false">
<div class="carousel-inner carousel-mobile" role="listbox">
<div class="item active">
<div class="thumbnail">
<img src="/assets/images/speakers/200x200/nick-sutterer.jpg" alt="Nick Sutterer"
class="speakers img-responsive">
<div class="caption">
<h4>Nick Sutterer</h4>
<h5>Ruby Architect</h5>
<p>Nick usually hangs around in pools sipping icey cold caipirinhas with his
fellow open-source comrades and calls this a "conference". Apparently, he
also attempts to ride a surf board in hot tubs and enjoys listening to and
playing insufferable loud music in his secret laboratory 250 ft below the
earth of the Outback. Should he ever leave his bunker, make sure to hug
him if you meet him in person.</p>
<div class="socialmedia-link">
<a href="https://twitter.com/apotonick" class="icon-twitter"
target="_blank"></a>
<a href="https://www.facebook.com/nick.sutterer.7" class="icon-facebook"
target="_blank"></a>
</div>
</div>
</div>
</div>
<div class="item active">
<div class="thumbnail">
<img src="/assets/images/speakers/200x200/sahil.jpg" alt="Sahil Muthoo"
class="speakers img-responsive">
<div class="caption">
<h4>Sahil Muthoo</h4>
<h5>DevToProd</h5>
<p>Sahil writes software for the joy of creation. He loves that feeling
when castles of sand in his head come alive inside a computer. He’s
been tinkering with Chef + Rails since 2012.</p>
<div class="socialmedia-link">
<a href="https://twitter.com/sahilmuthoo" class="icon-twitter"
target="_blank"></a>
</div>
</div>
</div>
<div class="item active">
<div class="thumbnail">
<img src="/assets/images/speakers/200x200/mohit.jpg" alt="Mohit Thatte"
class="speakers img-responsive">
<div class="caption">
<h4>Mohit Thatte</h4>
<h5>DevToProd</h5>
<p>Mohit is addicted to learning, and believes ‘Ars longa, vita brevis’.
He also believes that software development is primarily about teams,
culture and empathy.</p>
<div class="socialmedia-link">
<a href="https://twitter.com/mohitthatte" class="icon-twitter"
target="_blank"></a>
</div>
</div>
</div>
</div>
</div>
</section>
</section>
<section class="row sec-default sec-schedule" id="program">
<article class="col-sm-3 side-panel black">
<h1>Program</h1>
<img src="/assets/images/turn_right.png" alt="Turn Right"
class="pati turn_right-pati"/>
</article>
<section class="col-sm-9 main-content">
<h1>The What, The When & The Where</h1>
<table class="table schedule-table">
<colgroup>
<col width="60%"/>
<col width="20%"/>
<col/>
</colgroup>
<tr>
<td>
<div class="talks-wrap">
<h2>6th August - Conference talks</h2>
</div>
</td>
<td> </td>
<td>Hyatt Regency</td>
</tr>
<tr>
<td>
<strong>Registration</strong>
</td>
<td>8.30 AM to 9.15 AM</td>
<td> </td>
</tr>
<tr>
<td>
<strong>Kickoff</strong>
</td>
<td>9.15 AM to 9.30 AM</td>
<td> </td>
</tr>
<tr>
<td>
<div class="talks-wrap">
<strong>Keynote</strong>
by <br/>
<strong>Ernie Miller</strong>
</div>
</td>
<td>9.30 AM to 10.15 AM</td>
<td></td>
</tr>
<tr>
<td>
<div class="talks-wrap">
<strong>Programming in the large - designing with Interfaces</strong>
by <br/>
<strong>Aditya Godbole</strong>
</div>
</td>
<td>10.15 AM to 10.45 AM</td>
<td></td>
</tr>
<tr>
<td style="text-align:left">
Software design is about people. As the development team size grows, the strengths of Ruby start becoming its weaknesses. In this talk, we will see how we can deal with this problem.
</td>
</tr>
<tr>
<td>
<strong>Tea Break</strong>
</td>
<td>10.45 AM to 11.15 AM</td>
<td> </td>
</tr>
<tr>
<td>
<div class="talks-wrap">
<strong>Phoenix for Rubyists</strong>
by <br/>
<strong>Mike North</strong>
</div>
</td>
<td>11.15 AM to 11.45 AM</td>
<td></td>
</tr>
<tr>
<td style="text-align:left">
Because Elixir and Phoenix borrow so many good ideas from the Rails ecosystem, it’s astoundingly easy for Ruby developers to become proficient in this powerful new set of tools. First, I’ll introduce Phoenix from a Rails POV, and then show two ways it can be used in conjunction with Rails.
</td>
</tr>
<tr>
<td>
<div class="talks-wrap">
<strong>Lost while developing API's in Rails?</strong>
by <br/>
<strong>Pramod Shinde</strong>
</div>
</td>
<td>11.45 AM to 12.15 PM</td>
<td></td>
</tr>
<tr>
<td style="text-align:left">
As web development is leaning towards single page application’s with JS framework’s, scalable API’s are now critical. I will be talking about the WHAT, WHY and HOW of RoR JSON API’s. You will also see how to build generic API’s to serve web and mobile platforms.
</td>
</tr>
<tr>
<td>
<div class="talks-wrap">
<strong>It's fun to compute</strong>
by <br/>
<strong>Julian Cheal</strong>
</div>
</td>
<td>12.15 PM to 12.45 PM</td>
<td></td>
</tr>
<tr>
<td style="text-align:left">
Come with us now on a journey through time and space. As we explore the world of analog/digital synthesis. From computer generated music to physical synthesisers and everything in between.
<br/>
So you want to write music with code, but don’t know the difference between an LFO, ADSR, LMFAO, etc. Or a Sine wave, Saw wave, Google wave. We’ll explore what these mean, and how Ruby can be used to make awesome sounds. Ever wondered what Fizz Buzz sounds like, or which sounds better bubble sort or quick sort? So hey Ruby, let’s make music!
</td>
</tr>
<tr>
<td>
<strong>Lunch Break</strong>
</td>
<td>12.45 PM to 2 PM</td>
<td> </td>
</tr>
<tr>
<td>
<div class="talks-wrap">
<strong>Open Source: Power and the Passion </strong>
by <br/>
<strong>Pat Allan</strong>
</div>
</td>
<td>2 PM to 2.30 PM</td>
<td></td>
</tr>
<tr>
<td style="text-align:left">
You likely use open source software every day: in your code, tools, and servers. But is it the stable foundation we expected? Let’s look at the strengths & weaknesses of open source and trade in our assumptions for a greater awareness. Together let’s shape a more sustainable open source ecosystem!
</td>
</tr>
<tr>
<td>
<div class="talks-wrap">
<strong>Using multiple connections in ActiveRecord</strong>
by <br/>
<strong>Arthur Neves</strong>
</div>
</td>
<td>2.30 PM to 3 PM</td>
<td></td>
</tr>
<tr>
<td style="text-align:left">
Historically to handle multiple connections in Rails, you had to either patch active record or use a gem. Now, with some new apis on Rails 5.0, we can connect to multiple databases without needing any extra dependencies, and with just a few line of codes. And that will be even easier on Rails 5.1.
</td>
</tr>
<tr>
<td>
<strong>Tea Break</strong>
</td>
<td>3 PM to 3.30 PM</td>
<td> </td>
</tr>
<tr>
<td>
<strong>Lightening talks</strong>
</td>
<td>3.30 PM to 4 PM</td>
<td> </td>
</tr>
<tr>
<td>
<div class="talks-wrap">
<strong>Aila! Caching in Rails</strong>
by <br/>
<strong>Santosh Wadghule</strong>
</div>
</td>
<td>4 PM to 4.30 PM</td>
<td></td>
</tr>
<tr>
<td style="text-align:left">
I will be speaking on why caching is important and how we can scale up the Rails app using different caching strategies like page, action & fragment. I will also speak on how we can improve the performance in the simplest way by using instance variable caching for expensive command’s result.
</td>
</tr>
<tr>
<td>
<div class="talks-wrap">
<strong>How (Not) To Build & Scale Teams</strong>
by <br/>
<strong>Jim Remsik</strong>
</div>
</td>
<td>4.30 PM to 5 PM</td>
<td></td>
</tr>
<tr>
<td style="text-align:left">
Organizations time & again recognize desired results and attempt to achieve more success by doing more of the same. Two decades of experience and stories will show you what to look for and what to avoid in your next team whether your building it or being courted.
</td>
</tr>
<tr>
<td>
<strong>Open Hours</strong>
</td>
<td>5 PM to 6 PM</td>
<td> </td>
</tr>
<tr>
<td>
<strong>Party!</strong>
</td>
<td>6.30 PM onwards</td>
<td> </td>
</tr>
<tr>
<td>
<div class="talks-wrap">
<h2>7th August - Workshops</h2>
</div>
</td>
<td></td>
<td></td>
</tr>
<tr>
<td>
<div class="talks-wrap">
<strong>Architecture Matters! A Trailblazer workshop</strong>
by <br/>
<strong>Nick Sutterer</strong>
</div>
</td>
<td>10 AM to 4 PM</td>
<td>7th Floor, SICSR Atur Centre, Gokhale Cross Road, Model Colony, Pune, 411016</td>
</tr>
<tr>
<td style="text-align:left">
Trailblazer adds new abstraction layers to Rails. It introduces operations, form objects, policies and, of course, more. Why this is a good thing, and how additional abstractions help to master complex web applications you will learn in this full-day workshop.
</td>
</tr>
<tr>
<td>
<div class="talks-wrap">
<strong>Automate your Infrastructure with Chef</strong>
by <br/>
<strong>Mohit Thatte, Sahil Muthoo</strong>
</div>
</td>
<td>10 AM to 4 PM</td>
<td>7th Floor, SICSR Atur Centre, Gokhale Cross Road, Model Colony, Pune</td>
</tr>
<tr>
<td style="text-align:left">
This workshop will be a gentle introduction to the concepts of infrastructure automation with Chef. We will work on writing as much code as we can, so that attendees can get comfortable with the practical aspects of using Chef. The goal at the end of the workshop would be to be able to deploy a Rails app to AWS using your own Chef recipes and community cookbooks.
</td>
</tr>
</table>
</section>
</section>
<section class="row sec-default sec-sponsors" id="sponsors">
<article class="col-sm-3 side-panel red">
<h1>Sponsors</h1>
<img src="/assets/images/thankyou.png" alt="We Are Grateful"
class="pati thankyou-pati"/>
</article>
<section class="col-sm-9 main-content">
<a href="drbc_2016_sponsorship.pdf" class="download-link" download>Download
Prospectus</a>
<h2>Gold</h2>
<a href="http://www.joshsoftware.com/" target="_blank">
<img src="/assets/images/sponsors/joshsoftware.jpg" alt="Josh Software"
class="sponsors-logo img-responsive"/>
</a>
<a href="http://www.go-jek.com/" target="_blank">
<img src="/assets/images/sponsors/gojek.jpg" alt="Go Jek"
class="sponsors-logo img-responsive"/>
</a>
<h2>Media</h2>
<a href="http://bigbinary.com/" target="_blank">
<img src="/assets/images/sponsors/bigbinary.jpg" alt="BigBinary"
class="sponsors-logo-media img-responsive"/>
</a>
<h2>Silver</h2>
<a href="http://redpanthers.co/" target="_blank">
<img src="/assets/images/sponsors/redpanthers.png" alt="Red Panthers"
class="sponsors-logo-silver img-responsive"/>
</a>
<h2> Workshop sponsors </h2>
<a href="http://decomplect.io" target="_blank">
<img src="/assets/images/sponsors/decomplect.png" alt="Decomplect"
class="sponsors-logo-workshop img-responsive"/>
</a>
<h2> Student sponsors </h2>
<a href="https://www.digitalocean.com/" target="_blank">
<img src="/assets/images/sponsors/digitalocean.png" alt="Digital Ocean"
class="sponsors-logo-student img-responsive"/>
</a>
<a href="http://oogway.in/" target="_blank">
<img src="/assets/images/sponsors/oogway.png" alt="Ooogway"
class="sponsors-logo-student img-responsive"/>
</a>
<a href="http://nelkinda.com/" target="_blank">
<img src="/assets/images/sponsors/nelkinda.png" alt="Nelkinda"
class="sponsors-logo-student img-responsive"/>
</a>
<h2>Partners</h2>
<div class="partners-wrap clearfix">
<div class="partners">
<a href="https://www.townscript.com/" target="_blank">
<img
src="/assets/images/townscript.png" alt="Townscript"
class="img-responsive partners-logo partner1"/>
</a>
<p>Ticketing Sponsor</p>
</div>
<!-- <div class="partners">
<a href="http://redpanthers.co/" target="_blank"><img
src="/assets/redpanthers.png" alt="Red Panthers"
class="img-responsive partners-logo partner1"/></a>
<p>T-Shirt Sponsor</p>
</div> -->
</div>
<!-- <div class="partners-wrap clearfix">
<div class="partners">
<a href="http://codeignition.co" target="_blank"><img
src="/assets/sponsors/codeignition.png" alt="CodeIgnition"
class="img-responsive partners-logo partner1 codeignition"/></a>