-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
960 lines (819 loc) · 34.9 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
---
layout: 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 2017</h1>
<p class="conf-date">12th Aug. 2017 Conference at Sheraton Grand Pune
</p>
<p class="conf-tagline">
A Single-Track Conference + Workshops
</p>
<a href="https://www.townscript.com/e/drc17" class="btn btn-primary"
target="_blank">Register for Conf</a>
<!-- <a href="https://papercall.io/drc17" class="btn btn-primary"
target="_blank">Submit talk</a> -->
<p class="get-sponsors">Get in on the action, <a href="sponsorship_prospectus.pdf">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>
<img src="assets/images/watching-you.png" alt="We Are Watching"
class="pati thankyou-pati"/>
</article>
<section class="col-sm-9 main-content">
<div 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">
<a href="#" data-toggle="modal" data-target="#tim-modal">
<img src="assets/images/speakers/200x200/tim_riley.jpg" alt="Tim Riley"
class="speakers img-responsive">
</a>
<div class="caption">
<h4>Tim Riley</h4>
<div class="socialmedia-link">
<a href="https://twitter.com/timriley" class="icon-twitter"
target="_blank"></a>
</div>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="thumbnail">
<a href="#" data-toggle="modal" data-target="#ajey-modal">
<img src="assets/images/speakers/ajey.jpg" alt="Ajey Gore"
class="speakers img-responsive">
</a>
<div class="caption">
<h4>Ajey Gore</h4>
<div class="socialmedia-link">
<a href="https://twitter.com/AjeyGore" class="icon-twitter"
target="_blank"></a>
</div>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="thumbnail">
<a href="#" data-toggle="modal" data-target="#shaunak-modal">
<img src="assets/images/speakers/shaunak.jpg" alt="Shaunak Pagnis"
class="speakers img-responsive">
</a>
<div class="caption">
<h4>Shaunak Pagnis</h4>
<div class="socialmedia-link">
<a href="https://twitter.com/_kanuahs" class="icon-twitter"
target="_blank"></a>
</div>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="thumbnail">
<a href="#" data-toggle="modal" data-target="#aboobacker-modal">
<img src="assets/images/speakers/aboobacker.jpg" alt="Aboobacker MK"
class="speakers img-responsive">
</a>
<div class="caption">
<h4>Aboobacker MK</h4>
<div class="socialmedia-link">
<a href="https://twitter.com/_tachyons" class="icon-twitter"
target="_blank"></a>
</div>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="thumbnail">
<a href="#" data-toggle="modal" data-target="#douglas-modal">
<img src="assets/images/speakers/douglas.jpg" alt="Douglas Vaz"
class="speakers img-responsive">
</a>
<div class="caption">
<h4>Douglas Vaz</h4>
<div class="socialmedia-link">
<a href="https://twitter.com/Mistcrafter" class="icon-twitter"
target="_blank"></a>
</div>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="thumbnail">
<a href="#" data-toggle="modal" data-target="#michael-modal">
<img src="assets/images/speakers/michael.jpg" alt="Michael Kohl"
class="speakers img-responsive">
</a>
<div class="caption">
<h4>Michael Kohl</h4>
<div class="socialmedia-link">
<a href="https://twitter.com/citizen428" class="icon-twitter"
target="_blank"></a>
</div>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="thumbnail">
<a href="#" data-toggle="modal" data-target="#harisankar-modal">
<img src="assets/images/speakers/harisankar.jpg" alt=" Harisankar P S"
class="speakers img-responsive">
</a>
<div class="caption">
<h4> Harisankar P S</h4>
<div class="socialmedia-link">
<a href="https://twitter.com/coderhs" class="icon-twitter"
target="_blank"></a>
</div>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="thumbnail">
<a href="#" data-toggle="modal" data-target="#shaiju-modal">
<img src="assets/images/speakers/shaiju.jpg" alt=" Shaiju E"
class="speakers img-responsive">
</a>
<div class="caption">
<h4> Shaiju E</h4>
<div class="socialmedia-link">
<a href="https://twitter.com/eshaiju" class="icon-twitter"
target="_blank"></a>
</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/tim_riley.jpg" alt="Tim Riley"
class="speakers img-responsive">
<div class="caption">
<h4>Tim Riley</h4>
<p>Tim is a partner at Australian design agency Icelab, and a core
developer of dry-rb. He’s excited by small libraries, first-class
functions, and pushing forward web app development with Ruby.</p>
<div class="socialmedia-link">
<a href="https://twitter.com/timriley" class="icon-twitter"
target="_blank"></a>
</div>
</div>
</div>
<div class="thumbnail">
<img src="assets/images/speakers/ajey.jpg" alt="Ajey Gore"
class="speakers img-responsive">
<div class="caption">
<h4>Ajey Gore</h4>
<p>Ajey is the Group CTO of Go-Jek. With 17 years of experience in building core technology strategy
across diverse domains, Ajey has helped several businesses through technology transformations at
ThoughtWorks and CodeIgnition. Ajey is the founder of CodeIgnition and an active influencer in the
technology community.</p>
<div class="socialmedia-link">
<a href="https://twitter.com/AjeyGore" class="icon-twitter"
target="_blank"></a>
</div>
</div>
</div>
<div class="thumbnail">
<img src="assets/images/speakers/shaunak.jpg" alt="Shaunak Pagnis"
class="speakers img-responsive">
<div class="caption">
<h4>Shaunak Pagnis</h4>
<p>Shaunak is a core team member of Amura's product division, Sell.Do, where he contributes to large
scale Rails based products. Introduced to Ruby 4 years ago, it has since been his go-to language. When
not working, you'll probably find him listening to Metallica or exploring complex magic systems of
Brandon Sanderson's Cosmere.</p>
<div class="socialmedia-link">
<a href="https://twitter.com/_kanuahs" class="icon-twitter"
target="_blank"></a>
</div>
</div>
</div>
<div class="thumbnail">
<img src="assets/images/speakers/aboobacker.jpg" alt="Aboobacker MK"
class="speakers img-responsive">
<div class="caption">
<h4>Aboobacker MK</h4>
<p>Aboobacker is a Ruby on rails developer at Red Panthers. He is an Open source
enthusiast and volunteer at Swathanthra Malayalam Computing.</p>
<div class="socialmedia-link">
<a href="https://twitter.com/_tachyons" class="icon-twitter"
target="_blank"></a>
</div>
</div>
</div>
<div class="thumbnail">
<img src="assets/images/speakers/douglas.jpg" alt="Douglas Vaz"
class="speakers img-responsive">
<div class="caption">
<h4>Douglas Vaz</h4>
<p>Douglas has been a software engineer/consultant for about 3 years but have been coding for a lot
longer. Love open source and solving problems with varied stacks (Python, Java, Scala, Node to name a
few). Currently exploring distributed systems and helping people scale on large projects.</p>
<div class="socialmedia-link">
<a href="https://twitter.com/Mistcrafter" class="icon-twitter"
target="_blank"></a>
</div>
</div>
</div>
<div class="thumbnail">
<img src="assets/images/speakers/michael.jpg" alt="Michael Kohl"
class="speakers img-responsive">
<div class="caption">
<h4>Michael Kohl</h4>
<p>Michael Kohl got interested in computers at the young age of 12. Since then, he has worked in systems
administration, systems engineering/devops, Linux consulting, IT security and software development.
He's a programming language enthusiast who's especially enamored with functional programming
languages, but also has a long-standing love affair with Ruby which started around 2003. Michael
currently serves as CTO of Lockstap Labs and is based in Bangkok, Thailand.</p>
<div class="socialmedia-link">
<a href="https://twitter.com/citizen428" class="icon-twitter"
target="_blank"></a>
</div>
</div>
</div>
<div class="thumbnail">
<img src="assets/images/speakers/harisankar.jpg" alt="Harisankar P S"
class="speakers img-responsive">
<div class="caption">
<h4>Harisankar P S</h4>
<p>Harisankar P S has been building SaaS application and API's using Ruby and Rails for the past 5
years. He is also the founder of Red Panthers, a Ruby on Rails dev shop based out in Kochi, India. He
is interested in open source and organizes Open Source Saturdays and Ruby Meetup in Kochi. He also
contributes to open source as well.</p>
<div class="socialmedia-link">
<a href="https://twitter.com/coderhs" class="icon-twitter"
target="_blank"></a>
</div>
</div>
</div>
<div class="thumbnail">
<img src="assets/images/speakers/shaiju.jpg" alt="Shaiju E"
class="speakers img-responsive">
<div class="caption">
<h4>Shaiju E</h4>
<p>Shaiju E has been building SaaS application and API's using Ruby and Rails framework for past 5
years. He started working on GraphQL and React JS six months ago. Presently serving as Senior Software
Engineer at Rubyians Pvt. Ltd. Rubyians is a Ruby / Rails consulting company based out of Trivandrum,
Kerala. He is also an active blogger, he writes posts about Rails and related technologies also
maintaining a blog for his Malayalam scribblings.</p>
<div class="socialmedia-link">
<a href="https://twitter.com/eshaiju" class="icon-twitter"
target="_blank"></a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
</section>
<section class="row sec-default sec-speakers red" 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 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">
<a href="#" data-toggle="modal" data-target="#tim-modal">
<img src="assets/images/speakers/200x200/tim_riley.jpg" alt="Tim Riley"
class="speakers img-responsive">
</a>
<div class="caption">
<h4>Tim Riley</h4>
<div class="socialmedia-link">
<a href="https://twitter.com/tim_riley" class="icon-twitter"
target="_blank"></a>
</div>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="thumbnail">
<a href="#" data-toggle="modal" data-target="#aditya-modal">
<img src="assets/images/speakers/aditya.png" alt="Aditya Godbole"
class="speakers img-responsive"></a>
<div class="caption">
<h4>Aditya Godbole</h4>
<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">
<a href="#" data-toggle="modal" data-target="#swanand-modal">
<img src="assets/images/speakers/swanand.png" alt="Swanand Pagnis"
class="speakers img-responsive"></a>
<div class="caption">
<h4>Swanand Pagnis</h4>
<div class="socialmedia-link">
<a href="http://twitter.com/_swanand" class="icon-twitter"
target="_blank"></a>
</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/tim_riley.jpg" alt="Tim Riley"
class="speakers img-responsive">
<div class="caption">
<h4>Tim Riley</h4>
<p>Tim is a partner at Australian design agency Icelab, and a core
developer of dry-rb. He’s excited by small libraries, first-class
functions, and pushing forward web app development with Ruby.</p>
<div class="socialmedia-link">
<a href="https://twitter.com/timriley" class="icon-twitter"
target="_blank"></a>
</div>
</div>
</div>
</div>
<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="https://twitter.com/aagdbl" class="icon-twitter"
target="_blank"></a>
</div>
</div>
</div>
<div class="thumbnail">
<img src="assets/images/speakers/swanand.png" alt="Swanand Pagnis"
class="speakers img-responsive">
<div class="caption">
<h4>Swanand Pagnis</h4>
<p>Swanand is a Principal Engineer at First.io and an organiser at Garden City RubyConf.
He is a software engineer who spent the last decade writing some bad code, and some
good code, and shipping software to users. He loves writing software, building communities,
and ranting on Twitter. </p>
<div class="socialmedia-link">
<a href="https://twitter.com/_swanand" class="icon-twitter"
target="_blank"></a>
</div>
</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 and the Where</h1>
<h1>12th August - Conference talks at Grand Sheraton</h1>
<table class="table schedule-table">
<colgroup>
<col width="80%">
<col width="20%">
</colgroup>
<tr>
<td>
<strong>Registration</strong>
</td>
<td>8.30 AM to 9.15 AM</td>
</tr>
<tr>
<td>
<strong>Kickoff</strong>
</td>
<td>9.15 AM to 9.30 AM</td>
</tr>
<tr>
<td>
<strong>Keynote by Tim Riley</strong>
<br>
As our community matures, and technology evolves around us, how can we ensure Ruby remains vital?
</td>
<td>9.30 AM to 10.15 AM</td>
</tr>
<tr>
<td>
<strong>Using databases to pull your application weight by Harisankar P S</strong>
<br>
Most application in the world deals with the manipulation and
presentation of data. So speed of an application depends on how fast
we work with data. My talk is about leveraging the hidden powers
of a database to make Rails, the swiss army knife of web development, manipulate and present data faster
</td>
<td>10.15 AM to 10.45 AM</td>
</tr>
<tr>
<td>
<strong>Tea break</strong>
</td>
<td>10.45 AM to 11.15 AM</td>
</tr>
<tr>
<td>
<strong>Garbage collector in Ruby, why should I care ? by Aboobacker MK</strong>
<br>
Ruby is designed for programmer’s happiness. The primary aim of the
ruby is to make developers productive without worrying about the
machine level things like memory management.But having a high level understanding about what is happening
inside memory management will
help us to write better code
</td>
<td>11.15 AM to 11.45 AM</td>
</tr>
<tr>
<td>
<strong>Give REST a rest, use GraphQL for your next Ruby API by Shaiju E</strong>
<br>
GraphQL is a query language for APIs. While typical REST APIs
require loading from multiple URLs, GraphQL APIs get all the data
your app needs in a single request which makes Apps using GraphQL
can be quick and stable. So my talk would be about implementing
GraphQL API in a Ruby application.
</td>
<td>11.45 AM to 12.15 PM</td>
</tr>
<tr>
<td>
<strong>To Active record and beyond by Shaunak Pagnis</strong>
<br>
Active Record is the mother-of-all patterns when it comes to ORMs.
But there are new kids(read ORMs) on the block, and they promise
elegance, immutability and a separation of concerns. In this talk,
we’ll shed light on these techniques and discuss a different
approach to mapping data.
</td>
<td>12.15 PM to 12.45 PM</td>
</tr>
<tr>
<td>
<strong>Lunch break</strong>
</td>
<td>12.45 PM to 2 PM</td>
</tr>
<tr>
<td>
<strong>Sanity on Rails — How to write maintainable Rails applications in 2017 by Michael Kohl</strong>
<br>
Rails is not your application! Don’t overcomplicate your development
life by trying to make everything fit within its MVC structure.
A framework provides tools and abstractions, use them to build your
business logic, don’t force your business logic to fit into them.
</td>
<td>2 PM to 2.30 PM</td>
</tr>
<tr>
<td>
<strong>Panel Discussion</strong>
</td>
<td>2.30 PM to 3 PM</td>
</tr>
<tr>
<td>
<strong>Tea break</strong>
</td>
<td>3 PM to 3.30 PM</td>
</tr>
<tr>
<td>
<strong>⚡️ Flash talks ⚡️</strong>
</td>
<td>3.30 PM to 4 PM</td>
</tr>
<tr>
<td>
<strong>In a HTTP/2 World by Douglas Vaz</strong>
<br>
With the onset of HTTP/2 adoption, we need to rethink conventional
views of servers and clients. Binary protocols and features like
server push open up a whole new aspect of how we can design services
and web apps on a modern software stack by taking advantage of new
standards.
</td>
<td>4 PM to 4.30 PM</td>
</tr>
<tr>
<td>
<strong>Keynote by Ajey Gore</strong>
<br>
The guiding principles become rules in 2 generations, you forget
why do you do something, I hate the way people see others when
they don't use appropriate tools and community turns you off
in terms of not being that acceptable, this happened with me
very early on around tests and why testing it important, this
talk talks about what clicked and hopefully it will do that for
you as well
</td>
<td>4.30 PM to 5.15 PM</td>
</tr>
<tr>
<td>
<strong>Open hours</strong>
</td>
<td>5.15 PM to 6.30 PM</td>
</tr>
<tr>
<td>
<strong>Party</strong>
</td>
<td>6.30 PM onwards</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="sponsorship_prospectus.pdf" class="download-link" download>Download Prospectus</a>
<br/>
<h1 class="sponsors-heading" align=center>Platinum</h1>
<br>
<div class="row">
<div class="col-md-4">
</div>
<div class="col-md-4">
<a href="http://www.go-jek.com/" target="_blank">
<img src="assets/images/sponsors/gojek.png" alt="Go Jek"
class="img-responsive"/>
</a>
</div>
</div>
<h1 class="sponsors-heading" align=center>Gold</h1>
<br>
<div class="row">
<div class="col-md-4">
<a href="http://bigbinary.com/" target="_blank">
<img src="assets/images/sponsors/bigbinary.png" alt="BigBinary"
class="img-responsive"/>
</a>
</div>
<div class="col-md-4"></div>
<div class="col-md-4">
<a href="http://www.joshsoftware.com/" target="_blank">
<img src="assets/images/sponsors/joshsoftware.jpg" alt="Josh Software"
class="img-responsive"/>
</a>
</div>
</div>
<h1 class="sponsors-heading" align="center">Digital</h1>
<div class="row">
<div class="col-md-4"></div>
<div class="col-md-4">
<a href="http://amuratech.com/" target="_blank">
<img src="assets/images/sponsors/amura.png" alt="Amura"
class="sponsors-logo-silver img-responsive white-image-bg"/>
</a>
</div>
</div>
<h1 class="sponsors-heading" align="center">Friends</h1>
<div class="partners-wrap">
<div class="row">
<div class="col-md-4">
<a href="https://pragprog.com/" target="_blank">
<img
src="assets/images/Bookshelf_4in.png" alt="The Pragmatic Bookshelf"
class="img-responsive white-image-bg sponsors-logo-silver"/>
</a>
</div>
<div class="col-md-4"></div>
<div class=" col-md-4">
<a href="https://www.townscript.com/" target="_blank">
<img
src="assets/images/townscript.png" alt="Townscript"
class="img-responsive sponsors-logo-silver partner1 white-image-bg"/>
</a>
</div>
</div>
<div class="row">
<div class="col-md-5"></div>
<a href="https://www.jetbrains.com" target="_blank">
<img
src="assets/images/jetbrains-variant-4.png" alt="JetBrains"
class="img-responsive white-image-bg sponsors-logo-friends"/>
</a>
</div>
<!-- <p>Ticketing Partner</p> -->
</div>
</section>
</section>
<!-- Modals -->
<div id="tim-modal" class="fade modal" role="dialog">
<div class="modal-dialog">
<!-- Modal content-->
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h2 class="modal-title">Tim Riley</h2>
<h4 class="modal-title-small">@tim_riley</h4>
</div>
<div class="modal-body">
<p>Tim is a partner at Australian design agency Icelab, and a core
developer of dry-rb. He’s excited by small libraries, first-class
functions, and pushing forward web app development with Ruby.</p>
</div>
</div>
</div>
</div>
<div id="aditya-modal" class="fade modal" role="dialog">
<div class="modal-dialog">
<!-- Modal content-->
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h2 class="modal-title">Aditya Godbole</h2>
<h4 class="modal-title-small">@aagdbl</h4>
</div>
<div class="modal-body">
<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>
</div>
</div>
</div>
<div id="ajey-modal" class="fade modal" role="dialog">
<div class="modal-dialog">
<!-- Modal content-->
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h2 class="modal-title">Ajey Gore</h2>
<h4 class="modal-title-small">@AjeyGore</h4>
</div>
<div class="modal-body">
<p>Ajey is the Group CTO of Go-Jek. With 17 years of experience in building core technology strategy across
diverse domains, Ajey has helped several businesses through technology transformations at ThoughtWorks and
CodeIgnition. Ajey is the founder of CodeIgnition and an active influencer in the technology community.</p>
</div>
</div>
</div>
</div>
<div id="swanand-modal" class="fade modal" role="dialog">
<div class="modal-dialog">
<!-- Modal content-->
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h2 class="modal-title">Swanand Pagnis</h2>
<h4 class="modal-title-small">@_swanand</h4>
</div>
<div class="modal-body">
<p>Swanand is a Principal Engineer at First.io and an organiser at Garden City RubyConf. He
is a software engineer who spent the last decade writing some bad code, and some good code,
and shipping software to users. He loves writing software, building communities, and
ranting on Twitter. </p>
</div>
</div>
</div>
</div>
<div id="shaunak-modal" class="fade modal" role="dialog">
<div class="modal-dialog">
<!-- Modal content-->
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h2 class="modal-title">Shaunak Pagnis</h2>
<h4 class="modal-title-small">@_kanuahs</h4>
</div>
<div class="modal-body">
<p>Shaunak is a core team member of Amura's product division, Sell.Do, where he contributes to large scale Rails
based products. Introduced to Ruby 4 years ago, it has since been his go-to language. When not working, you'll
probably find him listening to Metallica or exploring complex magic systems of Brandon Sanderson's
Cosmere. </p>
</div>
</div>
</div>
</div>
<div id="aboobacker-modal" class="fade modal" role="dialog">
<div class="modal-dialog">
<!-- Modal content-->
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h2 class="modal-title">Aboobacker MK</h2>
<h4 class="modal-title-small">@_tachyons</h4>
</div>
<div class="modal-body">
<p>Aboobacker is a Ruby on rails developer at Red Panthers.
He is an Open source enthusiast and volunteer at Swathanthra Malayalam Computing. </p>
</div>
</div>
</div>
</div>
<div id="douglas-modal" class="fade modal" role="dialog">
<div class="modal-dialog">
<!-- Modal content-->
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h2 class="modal-title">Douglas Vaz</h2>
<h4 class="modal-title-small">@Mistcrafter</h4>
</div>
<div class="modal-body">
<p>Douglas has been a software engineer/consultant for about 3 years but have been coding for a lot longer. Love
open source and solving problems with varied stacks (Python, Java, Scala, Node to name a few). Currently
exploring distributed systems and helping people scale on large projects. </p>
</div>
</div>
</div>
</div>
<div id="michael-modal" class="fade modal" role="dialog">
<div class="modal-dialog">
<!-- Modal content-->
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h2 class="modal-title">Michael Kohl</h2>
<h4 class="modal-title-small">@citizen428</h4>
</div>
<div class="modal-body">
<p>Michael Kohl got interested in computers at the young age of 12. Since then, he has worked in systems
administration, systems engineering/devops, Linux consulting, IT security and software development. He's a
programming language enthusiast who's especially enamored with functional programming languages, but also has
a long-standing love affair with Ruby which started around 2003. Michael currently serves as CTO of Lockstap
Labs and is based in Bangkok, Thailand. </p>
</div>
</div>
</div>
</div>
<div id="harisankar-modal" class="fade modal" role="dialog">
<div class="modal-dialog">
<!-- Modal content-->
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h2 class="modal-title">Harisankar P S</h2>
<h4 class="modal-title-small">@coderhs</h4>
</div>
<div class="modal-body">
<p>Harisankar P S has been building SaaS application and API's using
Ruby and Rails for the past 5 years. He is also the founder of Red
Panthers, a Ruby on Rails dev shop based out in Kochi, India. He is
interested in open source and organizes Open Source Saturdays and Ruby
Meetup in Kochi. He also contributes to open source as well.</p>
</div>
</div>
</div>
</div>
<div id="shaiju-modal" class="fade modal" role="dialog">
<div class="modal-dialog">
<!-- Modal content-->
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h2 class="modal-title">Shaiju E</h2>
<h4 class="modal-title-small">@eshaiju</h4>
</div>
<div class="modal-body">
<p>Shaiju E has been building SaaS application and API's using Ruby and Rails framework for past 5 years. He
started working on GraphQL and React JS six months ago. Presently serving as Senior Software Engineer at
Rubyians Pvt. Ltd. Rubyians is a Ruby / Rails consulting company based out of Trivandrum, Kerala. He is also
an active blogger, he writes posts about Rails and related technologies also maintaining a blog for his
Malayalam scribblings.</p>
</div>
</div>
</div>
</div>