-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path2015.html
More file actions
1471 lines (1264 loc) · 68.9 KB
/
2015.html
File metadata and controls
1471 lines (1264 loc) · 68.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<title>SciPy India 2015</title>
<link href="2015/static/css/bootstrap.css" rel="stylesheet">
<link href="2015/static/css/bootstrap-social.css" rel="stylesheet">
<!-- Custom CSS -->
<link href="2015/static/css/main.css" rel="stylesheet">
<link href="2015/static/css/font-awesome.min.css" rel="stylesheet">
<link href="2015/static/css/animate-custom.css" rel="stylesheet">
<link href='http://fonts.googleapis.com/css?family=Lato:300,400,700,300italic,400italic' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Raleway:400,300,700' rel='stylesheet' type='text/css'>
<!-- Custom Fonts -->
<link href="2015/static/font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css">
<link href="http://fonts.googleapis.com/css?family=Montserrat:400,700" rel="stylesheet" type="text/css">
<link href="http://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic" rel="stylesheet" type="text/css">
<!-- JS -->
<script src="2015/static/js/jquery.min.js"></script>
<script src="2015/static/js/modernizr.custom.js"></script>
</head>
<body data-spy="scroll" data-offset="0" data-target="#navbar-main">
<div id="navbar-main">
<!-- Fixed navbar -->
<div class="navbar navbar-inverse navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse"> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </button>
<a class="navbar-brand smoothScroll" style="font-size:24px" href="2015.html#home"><b>SciPy India 2015</b> </a>
</div>
<div class="navbar-collapse collapse">
<ul class="nav navbar-nav navbar-right">
<li> <a href="2015.html#home" class="smoothScroll">Home</a></li>
<li> <a href="2015.html#about" class="smoothScroll">About</a></li>
<li> <a href="2015.html#speakers" class="smoothScroll">Speakers</a></li>
<li> <a href="2015.html#attend" class="smoothScroll">Attend</a></li>
<li class="dropdown">
<a class="dropdown-toggle" data-toggle="dropdown" href="2015.html#">Gallery<span class="caret"></span></a>
<ul class="dropdown-menu">
<li> <a href="2015.html#photos">Image Gallery</a></li>
<li> <a href="2015.html#videos">Conference Videos</a></li>
</ul>
</li>
<li> <a href="2015.html#schedule" class="smoothScroll">Schedule</a></li>
<li> <a href="2015.html#venue" class="smoothScroll">Venue</a></li>
<!-- <li><a href="http://fossee.in/data/emails/Instructions-for-SciPy-India-2015-Conference.pdf" target="_blank">Instruction Sheet</a></li>
<li class="dropdown"><a href="#"class="dropdown-toggle" data-toggle="dropdown">Instructions<b class="caret"></b></a>
<ul class="dropdown-menu">
<li><a href="http://fossee.in/data/emails/Instructions-for-SciPy-India-2015-Conference.pdf" target="_blank">Instruction Sheet</a></li>
<li><a href="http://fossee.in/data/emails/SciPy-India-2015-Installation-Instruction-for-Workshop.pdf" target="_blank">Installation Instructions for Workshop</a></li>
</ul>
</li> -->
<li> <a href="2015.html#poster" class="smoothScroll"> Poster</a></li>
<li> <a href="2015.html#sponsors" class="smoothScroll">Sponsors</a></li>
<!--<li> <a href="#contact" class="smoothScroll">Contact</a></li>-->
</ul>
</div>
<!--/.nav-collapse -->
</div>
</div>
</div>
<!-- ==== HEADERWRAP ==== -->
<div id="headerwrap" name="home">
<header class="clearfix"> <center> <img class="img-responsive" height=300 width=300 src="2015/static/img/scipy.png" alt=""></center>
<h1>SciPy India 2015</h1>
<hr>
<h3 >DECEMBER 14, 15 & 16</h3></br>
<h2 style="color:red">Sales Closed</a> </h2>
<h4 style="color:red">Spot Registrations are <b>subject to availability</b></h4>
</header>
</div>
<!-- /headerwrap -->
<!-- ==== ABOUT ==== -->
<div id="about" name="about">
<div class="container">
<div class="row white">
<h2 class="centered">About</h2>
<hr>
<div class="col-md-6">
<h3>Python for Scientific Computing</h3>
<br>
<p align="justify">SciPy India is a conference providing opportunities to spread the use of the Python programming language in the Scientific Computing community in India. It provides a unique opportunity to interact with the "Who's who" of the Python for Scientific Computing fraternity and learn, understand, participate, and contribute to Scientific Computing using Python. One of the goals of the conference is to combine education, engineering, and science with computing through the medium of Python.</p>
</div>
<div class="col-md-6">
<h3>SciPy India Conferences down the lane</h3>
<table>
<tr>
<td><a href="2014.html" target="_blank"><u>SciPy India 2014</u></a>
</tr>
<tr>
<td><a href="2013.html" target="_blank"><u>SciPy India 2013</u></a>
</tr>
<tr>
<td><a href="2012.html" target="_blank"><u>SciPy India 2012</u></a>
</tr>
</table>
<hr>
<u><h5>Few snaps from SciPy India 2014</h5></u>
<div class="col-md-4">
<a href="https://www.flickr.com/photos/111275739@N03/15973038815/in/album-72157647327666464/" target="_blank">
<img src="2015/static/img/s1.jpg" />
</a>
</div>
<div class="col-md-4">
<a href="https://www.flickr.com/photos/111275739@N03/15971073121/in/album-72157647327666464/" target="_blank">
<img src="2015/static/img/s2.jpg" />
</a>
</div>
<div class="col-md-4">
<a href="https://www.flickr.com/photos/111275739@N03/15947289216/in/album-72157647327666464/" target="_blank">
<img src="2015/static/img/s3.jpg" />
</a>
</div>
<p align="right"><a href="https://www.flickr.com/gp/111275739@N03/KiDiz4/" target="_blank">More >>></a></p>
</div>
</div>
<!-- row -->
</div>
</div>
<!-- container -->
<div id="speakers" name="speakers">
<div class="container">
<div class="row centered">
<h2 class="centered">Speakers</h2>
<hr>
<div class="col-lg-3 centered" style="margin-left:15%">
<img src="2015/static/img/andreas-circle.png" class="img img-circle" alt=""></img>
<h4><a href="http://mathema.tician.de/" target="_blank"><strong>Andreas Klöckner</strong></a></h4>
<p></p>
<a href="https://github.com/inducer" target="_blank"><img width=30 height=30 src="2015/static/img/github.png"></img></a>
<a href="http://mathema.tician.de/" target="_blank"><img width=30 height=30 src="2015/static/img/internet.png"></img></a>
</div>
<div class="col-lg-3 centered">
<img src="2015/static/img/j.png" class="img img-circle" alt=""></img>
<h4><a href="http://www.jarrodmillman.com/" target="_blank"><strong>Jarrod Millman</strong></a></h4>
<p></p>
<a href="https://github.com/jarrodmillman" target="_blank"><img width=30 height=30 src="2015/static/img/github.png"></img></a>
<a href="http://www.jarrodmillman.com/" target="_blank"><img width=30 height=30 src="2015/static/img/internet.png"></img></a>
</div>
<div class="col-lg-3 centered"> <img src="2015/static/img/ajith-circle.png" class="img img-circle" alt=""></img>
<h4><a href="http://expeyes.in/" target="_blank"><strong>Dr. Ajith Kumar</strong></a></h4>
<p></p>
<a href="https://github.com/expeyes" target="_blank"><img width=30 height=30 src="2015/static/img/github.png"></img></a>
<a href="http://expeyes.in/" target="_blank"><img width=30 height=30 src="2015/static/img/internet.png"></img></a>
</div>
</div>
</div>
<!-- row -->
</div>
<div id="photos" name="photos">
<div class="container">
<div class="row centered">
<div class="col-lg-9 col-lg-offset-2">
<h2 class="centered">Image Gallery</h2>
<hr>
<iframe src="https://www.flickr.com/photos/138717104@N02/sets/72157662643144715/player/" width="100%" height="450" frameborder="0" allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen></iframe>
</div>
</div>
</div>
<!-- row -->
</div>
</br></br>
<div id="videos" name="videos">
<div class="container">
<div class="row centered">
<div class="col-lg-9 col-lg-offset-2">
<h2 class="centered">Conference Videos</h2>
<hr>
<style type="text/css">
.title {
width: 100%;
max-width: 854px;
margin: 0 auto;
}
.caption {
width: 100%;
max-width: 854px;
margin: 0 auto;
padding: 20px 0;
}
.vidcontainer {
width: 100%;
max-width: 854px;
min-width: 740px;
background: #fff;
margin: 0 auto;
}
/* VIDEO PLAYER CONTAINER
############################### */
.vid-container {
position: relative;
padding-bottom: 52%;
padding-top: 30px;
height: 0;
}
.vid-container iframe,
.vid-container object,
.vid-container embed {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
/* VIDEOS PLAYLIST
############################### */
.vid-list-container {
width: 92%;
overflow: hidden;
margin-top: 20px;
margin-left:4%;
padding-bottom: 20px;
}
.vid-list {
width: 2369px;
position: relative;
top:0;
left: 0;
}
.vid-item {
display: block;
width: 148px;
height: 148px;
float: left;
margin: 0;
padding: 10px;
}
.thumb {
/*position: relative;*/
overflow:hidden;
height: 84px;
background-image: url("http://fossee.in/data/images/scipy2015.png");
background-size: 148px 84px;
background-repeat: no-repeat;
}
.thumb img {
width: 100%;
position: relative;
top: 3px;
}
.vid-item .desc {
color: #21A1D2;
font-size: 15px;
margin-top:5px;
}
.vid-item:hover {
background: #eee;
cursor: pointer;
}
.arrows {
position:relative;
width: 100%;
}
.arrow-left {
color: #fff;
position: absolute;
background: #777;
padding: 5px;
left: -25px;
top: -130px;
z-index: 99;
cursor: pointer;
}
.arrow-right {
color: #fff;
position: absolute;
background: #777;
padding: 5px;
right: -25px;
top: -130px;
z-index:100;
cursor: pointer;
}
.arrow-left:hover {
background: #CC181E;
}
.arrow-right:hover {
background: #CC181E;
}
@media (max-width: 624px) {
body {
margin: 15px;
}
.caption {
margin-top: 40px;
}
.vid-list-container {
padding-bottom: 20px;
}
/* reposition left/right arrows */
.arrows {
position:relative;
margin: 0 auto;
width:96px;
}
.arrow-left {
left: 0;
top: -17px;
}
.arrow-right {
right: 0;
top: -17px;
}
}
</style>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<div class="vidcontainer">
<div id="frametitle" style="padding:5px;font-weight:bold;font-size:18px;background-color:#f0f0f0"> Day 1- Introduction to Data Analysis using Pandas - Bargava Subramanian</div>
<!-- THE YOUTUBE PLAYER -->
<div class="vid-container">
<iframe id="vid_frame" src="https://www.youtube.com/embed/BLVzPymr5HQ?rel=0&showinfo=0&autohide=1" frameborder="0" width="500" height="400"></iframe>
</div>
<!-- THE PLAYLIST -->
<div class="vid-list-container">
<div class="vid-list">
<div class="vid-item" onClick="changevideo('https://www.youtube.com/embed/BLVzPymr5HQ?feature=player_detailpage?autoplay=1&rel=0&showinfo=0&autohide=1',' Day 1- Introduction to Data Analysis using Pandas - Bargava Subramanian')">
<div class="thumb"></div>
<div class="desc"> Day 1- Introduction to Data Analysis using Pandas - Bargava Subramanian</div>
</div>
<div class="vid-item" onClick="changevideo('https://www.youtube.com/embed/HLm7il37wtA?feature=player_detailpage?autoplay=1&rel=0&showinfo=0&autohide=1','Day 2 - Workshop on Domain-specific languages and high performance by Dr. Andreas Kloeckner (Part 1) ')">
<div class="thumb"></div>
<div class="desc">Day 2 - Workshop on Domain-specific languages and high performance by Dr. Andreas Kloeckner (Part 1) </div>
</div>
<div class="vid-item" onclick="changevideo('https://www.youtube.com/embed/FS3gRUz2S3s?autoplay=1&rel=0&showinfo=0&autohide=1','Day 2 - Workshop on Domain-specific languages and high performance by Dr. Andreas Kloeckner (Part 2) ')">
<div class="thumb"> </div>
<div class="desc">Day 2 - Workshop on Domain-specific languages and high performance by Dr. Andreas Kloeckner (Part 2) </div>
</div>
<div class="vid-item" onclick="changevideo('https://www.youtube.com/embed/ezdw8jCRlp4?autoplay=1&rel=0&showinfo=0&autohide=1',' Day 2 - Python in Schools')">
<div class="thumb"> </div>
<div class="desc"> Day 2 - Python in Schools </div>
</div>
<div class="vid-item" onclick="changevideo('https://www.youtube.com/embed/KqYu2Hu5YHM?autoplay=1&rel=0&showinfo=0&autohide=1','Day 2 - Panel Discussion on Python in Schools')">
<div class="thumb"> </div>
<div class="desc">Day 2 - Panel Discussion on Python in Schools </div>
</div>
<div class="vid-item" onclick="changevideo('https://www.youtube.com/embed/e2QAYsqNVDo?autoplay=1&rel=0&showinfo=0&autohide=1','Day 3 -Conference inaugration - Prof. Prabhu Ramachandran ')">
<div class="thumb"> </div>
<div class="desc">Day 3 -Conference inaugration - Prof. Prabhu Ramachandran </div>
</div>
<div class="vid-item" onclick="changevideo('https://www.youtube.com/embed/P3XOMWdE3Xs?autoplay=1&rel=0&showinfo=0&autohide=1',' Day 3 - Keynote Address - Prof. Andreas Klöckner')">
<div class="thumb"> </div>
<div class="desc"> Day 3 - Keynote Address - Prof. Andreas Klöckner </div>
</div>
<div class="vid-item" onclick="changevideo('https://www.youtube.com/embed/bILMMIfRh9s?autoplay=1&rel=0&showinfo=0&autohide=1',' Day 3 - Python for Statisticians - Jarrod Millman')">
<div class="thumb"> </div>
<div class="desc"> Day 3 - Python for Statisticians - Jarrod Millman </div>
</div>
<div class="vid-item" onclick="changevideo('https://www.youtube.com/embed/tl04QsWWNJM?autoplay=1&rel=0&showinfo=0&autohide=1',' Day 3 - Concept of a Python based Laboratory - Dr. Ajith Kumar ')">
<div class="thumb"> </div>
<div class="desc">Day 3 - Concept of a Python based Laboratory - Dr. Ajith Kumar </div>
</div>
<div class="vid-item" onclick="changevideo('https://www.youtube.com/embed/B6TXZWJfxdY?autoplay=1&rel=0&showinfo=0&autohide=1',' Day 3 - SymPy, SymEngine and the interface! - Sumith')">
<div class="thumb"> </div>
<div class="desc"> Day 3 - SymPy, SymEngine and the interface! - Sumith</div>
</div>
<div class="vid-item" onclick="changevideo('https://www.youtube.com/embed/He83aUcz3gI?autoplay=1&rel=0&showinfo=0&autohide=1','Day 3 - Sandhi - Visual Programming Editor - Ambikeshwar Srivastava ')">
<div class="thumb"> </div>
<div class="desc">Day 3 - Sandhi - Visual Programming Editor - Ambikeshwar Srivastava </div>
</div>
<div class="vid-item" onclick="changevideo('https://www.youtube.com/embed/TKh6Gk7oLYM?autoplay=1&rel=0&showinfo=0&autohide=1','Day 3 - Time Series Satellite Data Visualizer - Umang Gupta ')">
<div class="thumb"> </div>
<div class="desc">Day 3 - Time Series Satellite Data Visualizer - Umang Gupta </div>
</div>
<div class="vid-item" onclick="changevideo('https://www.youtube.com/embed/UIsddIrcjf0?autoplay=1&rel=0&showinfo=0&autohide=1','Day 3 - Python based implementation of Aqua Monitoring System using Raspberry Pi -Mohan Allam ')">
<div class="thumb"> </div>
<div class="desc">Day 3 - Python based implementation of Aqua Monitoring System using Raspberry Pi -Mohan Allam </div>
</div>
<div class="vid-item" onclick="changevideo('https://www.youtube.com/embed/ozTtLiGGFgQ?autoplay=1&rel=0&showinfo=0&autohide=1','Day 3 - 3D Scanner System Using Python - Neha Shinde ')">
<div class="thumb"> </div>
<div class="desc">Day 3 - 3D Scanner System Using Python - Neha Shinde </div>
</div>
<div class="vid-item" onclick="changevideo('https://www.youtube.com/embed/nmn_qE4sFq8?autoplay=1&rel=0&showinfo=0&autohide=1','Day 3 - Talk - Prof. Ted Ralphs ')">
<div class="thumb"> </div>
<div class="desc"> Day 3 - Talk - Prof. Ted Ralphs </div>
</div>
<div class="vid-item" onclick="changevideo('https://www.youtube.com/embed/lbCSF9GrWIM?autoplay=1&rel=0&showinfo=0&autohide=1',' Day 3 - CFD simulations using OpenFOAM and PyFOAM - Prof. Shivasubramanian Gopalakrishnan ')">
<div class="thumb"> </div>
<div class="desc"> Day 3 - CFD simulations using OpenFOAM and PyFOAM - Prof. Shivasubramanian Gopalakrishnan </div>
</div>
</div>
</div>
<!-- LEFT AND RIGHT ARROWS -->
<div class="arrows">
<div class="arrow-left"> <i class="fa fa-chevron-left fa-lg"></i></div>
<div class="arrow-right"><i class="fa fa-chevron-right fa-lg"></i></div>
</div>
</div>
<!-- JS FOR SCROLLING THE ROW OF THUMBNAILS -->
<script type="text/javascript">
$(document).ready(function () {
$(".arrow-right").bind("click", function (event) {
event.preventDefault();
$(".vid-list-container").stop().animate({
scrollLeft: "+=336"
}, 750);
});
$(".arrow-left").bind("click", function (event) {
event.preventDefault();
$(".vid-list-container").stop().animate({
scrollLeft: "-=336"
}, 750);
});
});
</script>
<script type="text/javascript">
function changevideo(url,title){
document.getElementById('vid_frame').src=url;
document.getElementById('frametitle').innerHTML=title;
}
</script>
<!-- google analytics -->
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-19095819-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</div>
</div>
</div>
<!-- row -->
</div>
<div id="attend" name="attend">
<div class="container">
<div class="row">
<h2 class="centered">Attend</h2>
<hr>
<center><u><h4>Registration Details</h4></u></center>
<div style="width:80%;margin-left:10% ">
<div class="col-md-12" >
<p align="justify"><b>Early Bird Registration<b style="color:red">(till 16 Nov 2015)</b> - Rs 1000:</b> This ticket includes conference (tutorials + talks), lunch and snacks for 3 days. It does not include Accommodation & T-Shirt. This is a non-refundable ticket.</p>
</div>
<center><div class="col-md-12">
<p align="justify"><b>Lite Registration<b style="color:red"> (till 10 Dec 2015)</b> - Rs 300:</b> This Ticket allows you to ONLY attend the conference for 3 Days. Does not include any conference amenities (Accommodation, Kit, Food & T-shirt). This is a non-refundable ticket. </p>
</div></center>
<div class="col-md-12" >
<p align="justify"><b>Regular Registration<b style="color:red"> (17 Nov 2015 - 10 Dec 2015)</b> - Rs 1200:</b> This ticket includes conference (tutorials + talks), lunch and snacks for 3 days. It does not include Accommodation & T-Shirt. This is a non-refundable ticket.</p>
</div>
<div class="col-md-12">
<p align="justify"><b>On Spot Registration - Rs 2000:</b> This ticket includes conference (tutorials + talks), lunch and snacks for 3 days. It does not include Accommodation & T-Shirt. This is a non-refundable ticket.<b>(subject to availability)</b> </p>
</div>
<div class="col-md-12">
<p align="justify"><b>On Spot Lite Registration - Rs 500:</b> This Ticket allows you to ONLY attend the conference for 3 Days. Does not include any conference amenities (Accommodation, Kit, Food & T-shirt). This is a non-refundable ticket.<b>(subject to availability)</b> </p>
</div>
<center><u><h4>Add On Details</h4></u></center>
<div style="width:100%; ">
<div class="col-md-12" >
<p align="justify"><b>Accommodation - Rs 750:</b> Accommodation is provided on a shared basis (twin sharing) inside IIT-B campus (Boys/Girls hostel).
Accommodation will be provided for 3 days, i.e, 13-14, 14-15 and 15-16 December.
Accommodation does not include other amenities like dinner, etc.
Extension of period of stay is not available.
This is a non-refundable ticket. </p>
</div>
<center><div class="col-md-12">
<p align="justify"><b>T- Shirts - Rs 250: </b>Change of size, exchange at the venue is not available.
This is a non-refundable ticket. </p>
</div>
</center>
<p>NOTE: Add-ons can be purchased during the time of registration. However, if you have already booked your tickets and want to buy an add-on, please <a href="https://scipyindia2015.doattend.com/get_addons" class="btn btn-info" role="button" target="_blank">Click here</a> </p>
<!-- <center><a href="http://scipyindia2015.doattend.com/" target="_blank" class="btn btn-info" role="button">Buy Tickets</a></center> -->
</div>
</div>
</div>
</div>
<div id="schedule" name="schedule">
<div class="container">
<div class="row">
<h2 class="centered">Schedule</h2>
<hr>
<div class="col-lg-9 col-lg-offset-2">
<center>
<ul class="nav nav-tabs">
<li class="active"><a data-toggle="tab" href="2015.html#day1">Day 1</a></li>
<li><a data-toggle="tab" href="2015.html#day2">Day 2</a></li>
<li><a data-toggle="tab"href="2015.html#day3">Day 3</a></li>
<li><a data-toggle="tab"href="2015.html#paper">Workshop Resources</a></li> <li><a data-toggle="tab"href="2015.html#workshop">Workshop Instructions</a></li>
</ul>
<div class="tab-content">
<!--<div id="sectionA" class="tab-pane fade in active">
<p>Section A content…</p>
</div>
<div id="sectionB" class="tab-pane fade">
<p>Section B content…</p>
</div>-->
<div id="day1" class="tab-pane fade in active">
<p>
<center><h4>14 Dec 2015: Day 1</h4></center>
<table class="table table-bordered">
<tr style="background-color:#f0f0f0"><td>08:30 AM - 09:00 AM</td><td>Registration and Breakfast</td><td></td>
</tr>
<tr><td>09:00 AM - 10:00 AM</td><td>Inauguration and Setup</td>
</tr>
<tr><td width="25%"> 10:00 AM - 12:00 PM</td><td width="45%"><a href="2015.html#" data-toggle="modal" data-target="#work1"> Workshop: IPython, NumPy, SciPy, MPL Introduction</a></td>
<td width="30%"> by Jarrod Millman & Prof. Prabhu Ramachandran</td>
</tr>
<tr><td>12:00 PM - 01:00 PM</td><td><a href="2015.html#" data-toggle="modal" data-target="#work2">Workshop: Introduction to BioPython</a></td>
<td> by Sourav Singh</td>
</tr>
<tr style="background-color:#f0f0f0"><td>01:00 PM - 02:00 PM</td><td>Lunch</td> <td></td>
</tr>
<tr><td>02:00 PM - 04:00 PM</td><td><a href="2015.html#" data-toggle="modal" data-target="#work3">Workshop: Symbolic computation with Python, SymPy</a> </td>
<td> by Sumith</td>
</tr>
<tr><td> 04:00 PM - 06:00 PM</td><td><a href="2015.html#" data-toggle="modal" data-target="#work4">Workshop: Introduction to Data Analysis using Pandas</a></td>
<td>by Bargava Subramanian</td>
</tr>
</table>
</p>
</div>
<div id="day2" class="tab-pane fade">
<p>
<center><h4>15 Dec 2015: Day 2</h4></center>
<table class="table table-bordered">
<tr style="background-color:#f0f0f0"><td>08:30 AM - 09:00 AM</td><td>Breakfast</td> <td></td>
</tr>
<tr><td width="25%">09:00 AM - 11:00 AM</td><td width="45%"><a href="2015.html#" data-toggle="modal" data-target="#work5">Workshop: Complex Network analysis using NetworkX</a></td>
<td width="40%">by Mridul Seth & Himanshu Mishra</td>
</tr>
<tr><td>11:00 AM - 01:00 PM</td><td><a href="2015.html#" data-toggle="modal" data-target="#work6">Workshop: Domain-specific languages and high performance:<br />
Generating high-performance code in Python</a></td>
<td>by Dr. Andreas Kloeckner</td>
</tr>
<tr style="background-color:#f0f0f0">
<td>01:00 PM - 02:00 PM</td><td>Lunch</td><td></td>
</tr><td>02:00 PM - 03:00 PM</td><td><a href="2015.html#" data-toggle="modal" data-target="#work8">Workshop: Application of Pandas for some allocation problems</a> </td>
<td>by Prof. Madhu Belur, Saurabh Kumar & Shana Moothedath</td>
</tr>
<tr><td>03:00 PM - 04:00 PM</td><td><a href="2015.html#" data-toggle="modal" data-target="#work7">Workshop: Modeling and solving mathematical optimization problems with Pyomo</a> </td>
<td>by Prof. Ashutosh Mahajan, Prof. Jayendran Venkateswaran & Mr. Atul Kumar</td>
</tr>
<tr><td>04:00 PM - 06:00 PM</td><td>Python in Schools Track: Details TBA</td>
</tr>
</table>
</p>
</div>
<div id="day3" class="tab-pane fade">
<p>
<center><h4>16 Dec 2015: Day 3</h4></center>
<table class="table table-bordered">
<tr style="background-color:#f0f0f0"><td>08:30 AM - 09:00 AM</td><td>Breakfast</td>
</tr>
<tr><td width="25%">09:00 AM - 09:15 AM</td><td width="45%">Conference inauguration</td>
</tr>
<tr><td>09:15 AM - 10:15 AM</td><td>Keynote Address - Prof. Andreas Klöckner</td>
</tr>
<tr><td>10:15 AM - 11:00 AM</td><td>Python for Statisticians - Jarrod Millman</td>
</tr>
<tr style="background-color:#f0f0f0">
<td>11:00 AM - 11:15 AM</td><td>Tea</td>
</tr><td>11:15 AM - 11:45 PM</td><td>Concept of a Python based Laboratory - Dr. Ajith Kumar</td>
</tr>
<tr><td>11:45 AM - 12:10 PM</td><td>SymPy, SymEngine and the interface! - Sumith</td>
</tr>
<tr><td>12:10 PM - 12:35 PM</td><td>Sandhi - Visual Programming Editor - Ambikeshwar Srivastava</td>
</tr>
<tr><td>12:35 PM - 12:50PM</td><td>Time Series Satellite Data Visualizer - Umang Gupta</td>
</tr>
<tr style="background-color:#f0f0f0"><td>12:50 PM - 02:00 PM</td><td> Lunch</td>
</tr>
<tr><td>2:00PM - 2:20 PM</td><td>Python based implementation of Aqua Monitoring System using Raspberry Pi - Mohan Allam</td>
</tr>
<tr><td>2:20PM - 2:40 PM</td><td>3D Scanner System Using Python - Neha Shinde</td>
</tr>
<tr><td>02:40 PM - 03:10 PM</td><td>Talk - Prof. Ted Ralphs</td>
</tr>
<tr><td>03:10 PM - 03:40 PM</td><td>CFD simulations using OpenFOAM and PyFOAM - Prof. Shivasubramanian Gopalakrishnan</td>
</tr>
<tr style="background-color:#f0f0f0"><td>3:40 PM - 4:00 PM</td><td> Tea</td>
</tr>
<tr><td>4:00 PM - 4:25 PM</td><td>Osdag: A python-based open source steel design and graphics software - Deepa</td>
</tr>
<tr><td>4:25 PM - 5:00 PM</td><td>Python for Microcontrollers - Srikant Patnaik</td>
</tr>
<tr><td>5:00 PM - 5:30 PM</td><td> Lightning Talks</td>
</tr>
<tr><td>5:30 PM - 5:45 PM</td><td> Vote of thanks and closing</td>
</table>
</p>
</div>
<div id="workshop" class="tab-pane fade">
<p>
<center><h4>Click on each title for more details</h4></center><br>
<h5 align="right"><a href ="http://fossee.in/data/emails/SciPy-India-2015-Installation-Instruction-for-Workshop.pdf">SciPy 2015: Installation Instructions for Workshop</a></h5>
<table class="table table-bordered">
<colgroup>
<col width="220" />
<col width="720" />
</colgroup>
<th>Speaker</th>
<th>Title</th>
<tr><td>Jarrod Millman & Prof. Prabhu Ramachandran</td><td><a href="2015.html#" data-toggle="modal" data-target="#work1">IPython, NumPy, SciPy, MPL Introduction</a></td></tr>
<tr><td>Sourav Singh</td><td><a href="2015.html#" data-toggle="modal" data-target="#work2">Introduction to BioPython</a></td></tr>
<tr><td>Sumith</td><td><a href="2015.html#" data-toggle="modal" data-target="#work3">Symbolic computation with Python, SymPy</a></td></tr>
<tr><td>Mr. Bargava Subramanian</td><td><a href="2015.html#" data-toggle="modal" data-target="#work4">Introduction to Data Analysis using Pandas</a></td></tr>
<tr><td>Mridul Seth & Himanshu Mishra</td><td><a href="2015.html#" data-toggle="modal" data-target="#work5">Complex Network analysis using NetworkX</a></td></tr>
<tr><td>Dr. Andreas Kloeckner</td><td><a href="2015.html#" data-toggle="modal" data-target="#work6">Domain-specific languages to high performance: Code generation and transformation in Python</a></td></tr>
<tr><td>Prof. Ashutosh Mahajan, Prof. Jayendran Venkateswaran
& Mr. Atul Kumar</td><td><a href="2015.html#" data-toggle="modal" data-target="#work7">Modeling and solving mathematical optimization problems with Pyomo</a></td></tr>
<tr><td>Prof. Madhu Belur, Saurabh Kumar & Shana Moothedath</td><td><a href="2015.html#" data-toggle="modal" data-target="#work8">Application of Pandas for some allocation problems</a></td>
</table>
</p>
</div>
<!-- <div id="paper" class="tab-pane fade">
<p>
<table class="table table-bordered">
<td>1</td>
<td>Sumith</td>
<td>SymPy, SymEngine and the interface!</td>
</tr>
<tr>
<td>2</td>
<td>Nathan Epstien</td>
<td>The Missing Link in scikit-learn: Reinforcement Learning in Python</td>
</tr>
<tr>
<td>3</td>
<td>Deepa Chaudhari</td>
<td>Osdag: A python-based open source steel design and graphics software</td>
</tr>
<tr>
<td>4</td>
<td>Ambikeshwar Srivastava</td>
<td>Sandhi - Visual Programming Editor</td>
</tr>
<tr>
<td>5</td>
<td>Ronojoy Adhikari</td>
<td>Reasoning under uncertainty with Python</td>
</tr>
<tr>
<td>6</td>
<td>Umang Gupta</td>
<td>Time Series Satellite Data Visualizer</td>
</tr>
<tr>
<td>7</td>
<td>Mohan Allam</td>
<td>Python based implementation of Aqua Monitoring System using Raspberry Pi.</td>
</tr>
<tr>
<td>8</td>
<td>Neha Shinde</td>
<td>3D Scanner System Using Python</td>
</tr>
</table>
</p>
</div> -->
<div id="paper" class="tab-pane fade">
<p>
<table class="table table-bordered" >
<tr>
<th>Speaker</th>
<th>Workshop Title</th>
<th width="20%">Link </th>
</tr>
<!--
<tr> <td>Sumith</td>
<td>SymPy, SymEngine and the interface!</td>
</tr>
<tr>
<td>Nathan Epstien</td>
<td>The Missing Link in scikit-learn: Reinforcement Learning in Python</td>
</tr>
<tr>
<td>Deepa Chaudhari</td>
<td>Osdag: A python-based open source steel design and graphics software</td>
</tr>
<tr>
<td>Ambikeshwar Srivastava</td>
<td>Sandhi - Visual Programming Editor</td>
</tr>
<tr>
<td>Ronojoy Adhikari</td>
<td>Reasoning under uncertainty with Python</td>
</tr>
<tr>
<td>Umang Gupta</td>
<td>Time Series Satellite Data Visualizer</td>
</tr>
<tr>
<td>Mohan Allam</td>
<td>Python based implementation of Aqua Monitoring System using Raspberry Pi.</td>
</tr>
<tr>
<td>Neha Shinde</td>
<td>3D Scanner System Using Python</td>
</tr>-->
<tr>
<td>Jarrod Millman & Prof. Prabhu Ramachandran</td>
<td>IPython, NumPy, SciPy, MPL Introduction</td>
<td><a href="http://fossee.in/data/scipy_2015/workshop_material/intro_tutorials.zip"> Click here</a></td>
</tr>
<tr>
<td>Dr. Andreas Kloeckner</td>
<td>Domain-specific languages and high performance:
Generating high-performance code in Python</td>
<td><a href="http://fossee.in/data/scipy_2015/workshop_material/dsl-tutorial-materials-dist.zip"> Click here</a></td>
</tr>
<tr>
<td>Sumith</td>
<td><ol><li>Symbolic computation with Python, SymPy</li>
<li>SymPy, SymEngine and the interface!</li></ol</td>
<td><a href="http://fossee.in/data/scipy_2015/workshop_material/sympy-sumith.zip"> Click here</a></br><a href="http://slides.com/sumith1896/deck-3-5#/" target="_blank"> Click here</a></td>
</tr>
<tr>
<td>Mr. Bargava Subramanian</td>
<td>Introduction to Data Analysis using Pandas</td>
<td><a href="https://github.com/amitkaps/weed" target="_blank" > Click here</a></td>
</tr>
<tr>
<td>Sourav Singh</td>
<td> Introduction to BioPython</td>
<td><a href="https://github.com/souravsingh/learning_biopython" target="_blank" > Click here</a></td>
</tr>
<tr>
<td>Prof. Madhu Belur, Saurabh Kumar & Shana Moothedath</td>
<td>Application of Pandas for some allocation problems</td>
<td><a href="http://fossee.in/data/scipy_2015/workshop_material/prof_madhu_slides.pdf"target="_blank"> Click here</a></td>
</tr>
<tr>
<td>Prof. Ashutosh Mahajan, Prof. Jayendran Venkateswaran & Mr. Atul Kumar</td>
<td>Modeling and solving mathematical optimization problems with Pyomo</td>
<td><a href="http://fossee.in/data/scipy_2015/workshop_material/prof_Ashutosh_Mahajan.pdf"target="_blank"> Click here</a></td>
</tr>
<tr>
<td>Srikant Patnaik</td>
<td>Python for Microcontrollers</td>
<td><a href="https://github.com/srikantpatnaik/python-for-microcontrollers" target="_blank"> Click here</a></td>
</tr>
<tr>
<td>Mridul Seth & Himanshu Mishra</td>
<td>Complex Network analysis using NetworkX</td>
<td><a href="http://fossee.in/data/scipy_2015/workshop_material/SciPy_India_2015_NetworkX.zip" target="_blank"> Click here</a></td>
</tr>
<tr>
<td>Neha Shinde</td>
<td>3D Scanner System Using Python</td>
<td><a href="http://fossee.in/data/scipy_2015/workshop_material/presentation_scipy.pdf" target="_blank"> Click here</a></td>
</tr>
<tr>
<td>Mohan Allam</td>
<td>Python based implementation of Aqua Monitoring System using Raspberry Pi</td>
<td><a href="http://fossee.in/data/scipy_2015/workshop_material/Python_Raspberry_pi.pdf" target="_blank"> Click here</a></td>
</tr>
<tr>
<td>Ambikeshwar Srivastava</td>
<td>Sandhi - Visual Programming Editor</td>
<td><a href="http://fossee.in/data/scipy_2015/workshop_material/sandhi.pdf" target="_blank"> Click here</a></td>
</tr>
</table>
</p>
</div>
<!-- StartModal-->
<!-- work1-->
<div class="modal fade" id="work1" tabindex="-1" role="dialog" aria-labelledby="myModalLabel">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
<h4 class="modal-title" id="myModalLabel">Workshop Details</h4>
</div>
<div class="modal-body">
<table class="table table-bordered">
<tr><td>Workshop Title</td><td>“IPython, NumPy, SciPy, MPL Introduction”</td>
</tr>
<tr><td>Abstract</td><td> Will be updated soon</td>
</tr>
<tr><td>Pre-requisites</td><td> Will be updated soon</td>
</tr>
<tr><td>Speaker(s)</td><td><ol>
<li><b>Prof. Prabhu Ramachandran </b></br> He is a faculty at the department of aerospace engineering, IIT Bombay. His interests include vortex methods, particle methods for computational fluid dynamics, scientific computing and applied scientific data visualization. He is an advocate of Free and Open Source software and in his spare time develop some free/open software. In 2011, he helped start Enthought India. Currently he is a director of the company.</li>
<li><b>Mr. Jarrod Millman</b></br> He is currently doing his PhD in Biostatistics in University of California, Berkeley. His area of interests include statistics, scientific computing, neuroinformatics.</li>
</ol></td>
</tr>
</table>
</div>
<div class="modal-footer">
</div>
</div>
</div>
</div>
<!-- ############################## -->
<!-- work2 -->
<div class="modal fade" id="work2" tabindex="-1" role="dialog" aria-labelledby="myModalLabel">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
<h4 class="modal-title" id="myModalLabel">Workshop Details</h4>
</div>
<div class="modal-body">
<table class="table table-bordered">
<tr><td>Workshop Title</td><td> “Introduction to BioPython”</td>
</tr>
<tr><td>Abstract</td><td> BioPython is a Python Package used for Bioinformatics Research. The workshop will aim to introduce attendees to BioPython and how it works, how to do basic operations like finding the species using the given genome to doing complex operations like parsing Swiss-Prot Records. The workshop will be good for people who have knowledge of Python upto intermediate level, but some basic knowledge of Genomics will be a great plus.</td>
</tr>
<tr><td>Pre-requisites</td><td> The attendees will require Biopython installed in the systems. The link to download Biopython can be found here <a href="http://biopython.org/wiki/Download">http://biopython.org/wiki/Download</a>.<br>
Also ensure to use latest download link,since some features like slicing SeqRecord will only work for version 1.52 or later.<br>
NumPy is a strongly recommended dependency for running Biopython. Other dependencies like ReportLab, matplotlib are optional.<br>
The attendees can check the installation information here <a href="http://biopython.org/DIST/docs/install/Installation.html#sec32">http://biopython.org/DIST/docs/install/Installation.html#sec32</a>.</td>
</tr>
<tr><td>Speaker(s)</td><td>
<b> Mr. Sourav Singh </b></br> He is a student and a polyglot. He works mainly in the fields of Bioinformatics and Neuroinformatics and have contributed to SunPy, AstroPy, SymPy, nipype and a few other projects. He has also worked as a coach during Django Girls event in Pune which was held on 12th September, 2015 and have also presented a talk at PyCon India 2015 and currently working with INCF on a project.<br>
Github Profile: github.com/souravsingh
</td>
</tr>
</table>
</div>
<div class="modal-footer">
</div>
</div>
</div>
</div>
<!-- ######################## -->
<!-- work3 -->
<div class="modal fade" id="work3" tabindex="-1" role="dialog" aria-labelledby="myModalLabel">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
<h4 class="modal-title" id="myModalLabel">Workshop Details</h4>
</div>
<div class="modal-body">
<table class="table table-bordered">
<tr><td>Workshop Title</td><td> "Symbolic computation with Python, SymPy"</td>
</tr>
<tr><td>Abstract</td><td> In this workshop we will introduce attendees to SymPy, a computer aided algebra system (CAS) written in Python. The workshop will show basics of constructing and manipulating mathematical expressions in SymPy, the most common issues and differences from other computer algebra systems, and how to deal with them. In the last part of this tutorial, the workshop will show<br>
how to solve practical problems with SymPy. This will include showing how to interface SymPy with popular numeric libraries like NumPy.<br>
Attendees will take home an introductory level understanding of SymPy. This knowledge should be enough for attendees to start using SymPy for solving mathematical problems and hacking SymPy's internals (though hacking core modules may require additional expertise). SymPy is a pure Python library for symbolic mathematics. It aims to become a full-featured computer algebra system (CAS) while keeping the code as simple as possible in order to be comprehensible and easily extensible. SymPy is written entirely in Python and does not require any external libraries. The workshop will cover the following topics and more.</br> <br>
<TABLE BORDER="3" CELLPADDING="3" CELLSPACING="3">
<tr>
</TR>
</TABLE>
<TABLE BORDER="3" CELLPADDING="3" CELLSPACING="3">
<TR>
<td>Introduction<ol>
<li>What is Symbolic Computation?
</li>
<li> A More Interesting Example
</li>
<li>The Power of Symbolic Computation
</li>
<li> Why SymPy?
</li>
</ol></td>
<td>Gotchas<ol>
<li> Symbols
</li>
<li> Equals signs
</li>
<li> Two Final Notes: ^ and /
</li>
</ol></td>
</TR>
<TR>
<td>Basic Operations<ol>
<li>Substitution</li>
<li>Converting Strings to SymPy Expressions</li>