-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathteam.html
More file actions
410 lines (381 loc) · 17.5 KB
/
team.html
File metadata and controls
410 lines (381 loc) · 17.5 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
<!DOCTYPE html>
<!--[if IE 8]>
<html lang="en" class="ie8">
<![endif]-->
<!--[if IE 9]>
<html lang="en" class="ie9">
<![endif]-->
<!--[if !IE]>
<!-->
<html lang="en">
<!--
<![endif]-->
<head>
<title>
PyCon India 2015 in Bangalore | October 2nd to 4th
</title>
<!-- Meta -->
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="PyCon India, the premier conference in India on using and developing the Python programming language is conducted annually by the Python developer community and it attracts the best Python programmers from across the country and abroad.">
<meta name="author" content="Pycon India">
<link rel="shortcut icon" href="favicon.png">
<link href='https://fonts.googleapis.com/css?family=Lato:300,400,300italic,400italic' rel='stylesheet' type='text/css'>
<!-- Global CSS -->
<link rel="stylesheet" href="css/bootstrap.min.css">
<!-- Plugins CSS -->
<link rel="stylesheet" href="css/font-awesome.css">
<!-- Site CSS -->
<link id="theme-style" rel="stylesheet" href="css/styles.css">
<link rel="stylesheet" href="css/animate.css">
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js">
</script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js">
</script>
<![endif]-->
</head>
<body data-spy="scroll">
<!-- ******HEADER****** -->
<div class="headertop">
</div>
<header id="header" class="header">
<div class="container">
<h1 class="logo pull-left">
<a class="scrollto" href="#home">
<span class="logo-title">
<img src="images/logo_sm.png" height="50" width="190"/>
</span>
</a>
</h1>
<!--//logo-->
<nav id="main-nav" class="main-nav navbar-right" role="navigation">
<div class="navbar-header">
<button class="navbar-toggle" type="button" data-toggle="collapse" data-target="#navbar-collapse">
<span class="sr-only">
Toggle navigation
</span>
<span class="icon-bar">
</span>
<span class="icon-bar">
</span>
<span class="icon-bar">
</span>
</button>
<!--//nav-toggle-->
</div>
<!--//navbar-header-->
<div class="navbar-collapse collapse" id="navbar-collapse">
<ul class="nav navbar-nav">
<li class="nav-item">
<a href="index.html#home">
Home
</a>
</li>
<li class="nav-item">
<a href="index.html#speakers">
Speakers
</a>
</li>
<!-- <li class="nav-item">
<a href="index.html#schedule">
Schedule
</a>
</li> -->
<li class="nav-item">
<a href="index.html#venue">
Venue
</a>
</li>
<li class="nav-item">
<a href="index.html#sponsors">
Sponsors
</a>
</li>
<li class="nav-item">
<a href="https://in.pycon.org/blog/">
Blog
</a>
</li>
<li class="nav-item">
<a href="sponsorship.html">
Sponsorship
</a>
</li>
<li class="nav-item">
<a href="faq.html">
FAQ
</a>
</li>
<li class="active nav-item">
<a href="team.html">
Team
</a>
</li>
<li class="nav-item">
<a href="codeofconduct.html">CoC</a>
</li>
</ul>
<!--//nav-->
</div>
<!--//navabr-collapse-->
</nav>
<!--//main-nav-->
</div>
<!--//container-->
</header>
<!--//header-->
<!-- ******home****** -->
<section id="home" class="home section offset-header">
<div class="container" style="margin-top:-25px;">
<div class="col-md-12 sponsorship">
<h2 class="text-center">
<img src="images/sponsor.png" height="75" width="75"/>
<br/>
PyCon India 2015 Team</h2>
<br/>
<p>
PyCon India is run behind the scenes by many volunteers who invest a lot of time and effort into making the event a success. We dedicate this page to those core people who connect the dots together.
</p>
<br/>
<h3>Panel Members</h3>
<br>
<div class="col-md-3 text-center">
<p> <img src="images/team/Anand-B-Pillai-400x400.jpg" height="200" width="200" />
<br/><b>Anand B Pillai</b>
<br/><i>Software Engineer, Python Hacker, Original Python Community Member/Founder</i>
</p>
</div>
<div class="col-md-3 text-center">
<p> <img src="images/team/Arun-Ravindran-400x400.jpg" height="200" width="200" />
<br/><b>Arun Ravindran</b>
<br/><i>Author of "Django Design Patterns and Best Practices" and a developer member of the Django Software Foundation</i>
</p>
</div>
<div class="col-md-3 text-center">
<p> <img src="images/team/Chetan-Giridhar-400x400.jpeg" height="200" width="200" />
<br/><b>Chetan Giridhar</b>
<br/><i>Python Developer, Open Source Enthusiast, Previous speaker at PyCon India, APAC & SciPy</i>
</p>
</div>
<div class="col-md-3 text-center">
<p> <img src="images/team/Dhruv-Baldawa-400x400.jpg" height="200" width="200" />
<br/><b>Dhruv Baldawa</b>
<br/><i>4+ years of Python experience working with backend and infrastructure. Previously worked at Enthought, Inc. Currently, transforming homes to smart homes</i>
</p>
</div>
<div class="col-md-3 text-center">
<p> <img src="images/team/Jaidev-Deshpande-400x400.jpg" height="200" width="200" />
<br/><b>Jaidev Deshpande</b>
<br/><i>Data Scientist at DataCulture Analytics, Regular contributor to the Scientific Python stack</i>
</p>
</div>
<div class="col-md-3 text-center">
<p> <img src="images/team/Piyush-Kumar-400x400.jpg" height="200" width="200" />
<br/><b>Piyush Kumar</b>
<br/><i>Co-Founder of Advisor Healthcare, Open source enthusiast with over 9 years of professional experience in Website Operations and building data products</i>
</p>
</div>
<div class="col-md-3 text-center">
<p> <img src="images/team/Prabhu-Ramachandran-400x400.jpg" height="200" width="200" />
<br/><b>Prabhu Ramachandran</b>
<br/><i>Co-founded the Chennai LUG in 1998, Author and lead developer of the award winning Mayavi and TVTK Python packages, Member of Board at Python Software Foundation since 2010</i>
</p>
</div>
<div class="col-md-3 text-center">
<p> <img src="images/team/Praveen-Patil-400x400.jpeg" height="200" width="200" />
<br/><b>Praveen Patil</b>
<br/><i>Python Programmer, Physics Enthusiast. Contributed to a FOSSASIA-sponsored project during the 2014 Google Summer of Code. Took part in GCI and helped pre-university students dive into the world of free and open source software.</i>
</p>
</div>
<div class="col-md-3 text-center">
<p> <img src="images/team/Puneeth-Chaganti-400x400.jpg" height="200" width="200" />
<br/><b>Puneeth Chaganti</b>
<br/><i>Programming in & teaching Python for the past 6 years, helping
build tools for Engineers and Scientists. Interested in machine learning and it's application to photos and videos</i>
</p>
</div>
<div class="col-md-3 text-center">
<p> <img src="images/team/Saurabh-Kumar-400x400.jpg" height="200" width="200" />
<br/><b>Saurabh Kumar</b>
<br/><i>Travel Photographer and Web hacker. Currently working with backend technologies that power startups at fueled.com</i>
</p>
</div>
<div class="col-md-3 text-center">
<p> <img src="images/team/Vijay-Kumar-400x400.jpg" height="200" width="200" />
<br/><b>Vijay Kumar</b>
<br/><i>Open Source and Free software enthusiast. Currently
working for Zilogic Systems as an embedded software developer and trainer. Also a co-organizer of ChennaiPy</i>
</p>
</div>
<div class="clearfix"></div>
<br>
<br>
<!--h3>Core Volunteers</h3>
<p>
The following list contains the primary points of contact for PyCon India 2015.
</p>
<ul>
<li>Vijay Bang (<a href="https://twitter.com/vnbang2003">@vnbang2003</a>)</li>
<li>Kracekumar Ramaraju (<a href="https://twitter.com/kracetheking">@kracetheking</a>)</li>
<li>Sreekanth Rameshaiah (<a href="https://twitter.com/mukruthi">@mukruthi</a>)</li>
<li>Chandan Kumar (<a href="https://twitter.com/ciypro">@ciypro</a>)</li>
<li>Vanitha Shanmugam (<a href="https://twitter.com/shanmalliga">@shanmalliga</a>)</li>
<li>Haris Ibrahim (<a href="https://twitter.com/harisibrahimkv">@harisibrahimkv</a>)</li>
<li>Sayan Chowdhury (<a href="https://twitter.com/chowdhury_sayan">@chowdhury_sayan</a>)</li>
<li>Chandan Kumar (<a href="https://twitter.com/ciypro">@ciypro</a>)</li>
</ul>
<br/>
<br/ -->
<h3>Staff Information</h3>
<p>
The following list contains the volunteers handling various responsibilities for PyCon India 2015.
</p>
<ul>
<li><b>Chair</b> - Vijay Bang (<a href="https://twitter.com/vnbang2003">@vnbang2003</a>)</li>
<li><b>Co-chair</b> - Kracekumar Ramaraju (<a href="https://twitter.com/kracetheking">@kracetheking</a>)</li>
<li><b>Sponsorship</b> - Sreekanth Rameshaiah (<a href="https://twitter.com/mukruthi">@mukruthi</a>)</li>
<li><b>Volunteer Co-ordinator</b> - Chandan Kumar (<a href="https://twitter.com/ciypro">@ciypro</a>)</li>
<li><b>Selection Panel Co-ordinator</b> - Vanitha Shanmugam (<a href="https://twitter.com/shanmalliga">@shanmalliga</a>)</li>
<li><b>Registration Lead</b> - Haris Ibrahim K V (<a href="https://twitter.com/harisibrahimkv">@harisibrahimkv</a>)</li>
<li><b>Dev Sprint Co-ordinators</b> - Sayan Chowdhury (<a href="https://twitter.com/chowdhury_sayan">@chowdhury_sayan</a>) & Chandan Kumar (<a href="https://twitter.com/ciypro">@ciypro</a>)</li>
<li><b>Social Media Co-ordinators</b> - Mudit Sethia (<a href="https://twitter.com/pymudit">@pymudit</a>) & Rashid Khan (<a href="https://twitter.com/WorkaholicKhan">@WorkaholicKhan</a>)</li>
<li><b>Website</b>
<ul>
<li>Vijay Bang (<a href="https://twitter.com/vnbang2003">@vnbang2003</a>)</li>
<li>Kiran Gangadharan (<a href="https://twitter.com/kirang89">@kirang89</a>)</li>
<li>Sivasubramanyam A (<a href="https://twitter.com/astronomersiva">@astronomersiva</a>)</li>
<li>Saurabh Kumar (<a href="https://twitter.com/_theskumar">@_theskumar</a>)</li>
<li>Shrayas Rajagopal (<a href="https://twitter.com/shrayasr">@shrayasr</a>)</li>
<li>Mahanthesh Shadakshari</li>
</ul>
</li>
<li><b>Software Development</b>
<ul>
<li>Sivasubramaniam Arunachalam (<a href="https://twitter.com/sivaa_in">@sivaa_in</a>)</li>
<li>Saurabh Kumar (<a href="https://twitter.com/_theskumar">@_theskumar</a>)</li>
<li>Kracekumar Ramaraju (<a href="https://twitter.com/kracetheking">@kracetheking</a>)</li>
<li>Vijay Bang (<a href="https://twitter.com/vnbang2003">@vnbang2003</a>)</li>
<li>Kishor Bhat</li>
<li>Ganeshkumar S</li>
<li>Mudassir Ali</li>
<li>Vignesh Sarma K</li>
<li>Anand Reddy Pandikunta (<a href="https://twitter.com/ChillarAnand">@ChillarAnand</a>)</li>
<li>Anuvrat Parashar (<a href="https://twitter.com/bhanuvrat">@bhanuvrat</a>)</li>
<li>Aayush Kasurde</li>
<li>Arjoonn Sharma</li>
<li>Haris Ibrahim K V (<a href="https://twitter.com/harisibrahimkv">@harisibrahimkv</a>)</li>
<li>Dhilipsiva (<a href="https://twitter.com/dhilipsiva">@dhilipsiva</a>)</li>
<li>Parth Oberoi</li>
<li>Abhishek Banerjee (<a href="https://twitter.com/Abhishek_1992">@Abhishek_1992</a>)</li>
<li>Rishi Mukherjee(<a href="https://twitter.com/rishimukherjee2">@rishimukherjee2</a>)</li>
</ul>
</li>
<li><b>Blog</b>
<ul>
<li>Content Editor</b> - Haris Ibrahim K V(<a href="https://twitter.com/harisibrahimkv">@harisibrahimkv</a>)</li>
</ul>
</li>
<li><b>Poster Presentation</b>
<ul>
<li>Suprith Gangawar (<a href="https://twitter.com/suprithG">@suprithG</a>)</li>
<li>Aishwarya K M (<a href="https://twitter.com/Aishwarya_KM">@Aishwarya_KM</a>)</li>
<li>Devyani Kota (<a href="https://twitter.com/Devyani_kush">@Devyani_kush</a>)</li>
<li>Abhaya Agarwal (<a href="https://twitter.com/abhaga">@abhaga</a>)</li>
<li>Yash Sherry </li>
</ul>
</li>
<li><b>Workshop & Conference Co-ordination</b>
<ul>
<li>Tenzin Kunkyab (<a href="https://twitter.com/tenzkunkyab">@tenzkunkyab</a>)</li>
<li>Prathamesh Chavan (<a href="https://twitter.com/pathfinderpc">@pathfinderpc</a>)</li>
<li>Saikeo Kavhanxay (<a href="https://twitter.com/kavhanxay">@kavhanxay</a>)</li>
</ul>
</li>
</ul>
</ul>
<p>
</p>
</div>
</div>
</div>
<div class="clearfix">
</div>
<br/>
</div>
<!--//container-->
</section>
<!--//home-->
<footer class="footer">
<div class="container text-center">
<img src="images/footerlogo.png" height="150" width="150" />
<p> Copyright © 2015 <a href="pssi.org.in" target="_blank">Python Software Society of India.</a> </p>
</div>
<!--//container-->
</footer>
<!--//footer-->
<div class="row col-md-12 wc-footer">
<p><a href="http://webchirpy.com" target="_blank" class="" /> Design with <img class="pulse2" src="images/heart.png" style="vertical-align:middle;margin-top:-5px;" /> by Webchirpy</a>
</p>
</div>
<!-- Javascript -->
<script type="text/javascript" src="js/jquery-1.11.1.min.js">
</script>
<script type="text/javascript" src="js/jquery.easing.1.3.js">
</script>
<script type="text/javascript" src="js/bootstrap.min.js">
</script>
<script type="text/javascript" src="js/jquery.scrollTo.min.js">
</script>
<script type="text/javascript" src="js/main.js">
</script>
<script type="text/javascript" src="js/responsive-tabs.js">
</script>
<script>
$(window).scroll(function() {
$('#whybox2').each(function() {
var imagePos = $(this).offset().top;
var topOfWindow = $(window).scrollTop();
if (imagePos < topOfWindow + 400) {
$(this).addClass("slideLeft");
}
});
$('#whybox1').each(function() {
var imagePos = $(this).offset().top;
var topOfWindow = $(window).scrollTop();
if (imagePos < topOfWindow + 400) {
$(this).addClass("slideRight");
}
});
$('#plan3').each(function() {
var imagePos = $(this).offset().top;
var topOfWindow = $(window).scrollTop();
if (imagePos < topOfWindow + 400) {
$(this).addClass("slideLeft");
}
});
$('#plan2').each(function() {
var imagePos = $(this).offset().top;
var topOfWindow = $(window).scrollTop();
if (imagePos < topOfWindow + 400) {
$(this).addClass("slideUp");
}
});
$('#plan1').each(function() {
var imagePos = $(this).offset().top;
var topOfWindow = $(window).scrollTop();
if (imagePos < topOfWindow + 400) {
$(this).addClass("slideRight");
}
});
});
</script>
<script type="text/javascript">
(function($) {
fakewaffle.responsiveTabs(['xs', 'sm']);
})(jQuery);
</script>
</body>
</html>