-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmentors.html
594 lines (512 loc) · 33.7 KB
/
mentors.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
<!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="Science Hack Day is a two-day event where anyone excited about making weird, silly or serious things with science comes together in the same physical space to see what they can prototype within 30 consecutive hours.">
<meta name="keywords" content="Science Hack, Science Hack India, Maker, Hacking, Science Workshops, Student Workshops, Hack Day Belgaum, Science Belagavi, SHD, Hackathon">
<meta name="author" content="">
<title>Science Hack Day India 2017</title>
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet">
<!-- Bootstrap Core CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Pangolin" rel="stylesheet">
<!-- Custom CSS -->
<link href="css/business-frontpage.css" rel="stylesheet">
<link href="css/custom.css" rel="stylesheet">
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[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>
<!-- Navigation -->
<nav class="navbar navbar-inverse navbar-fixed-top" role="navigation">
<div class="container">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="index.html">SHD 2017</a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav">
<li>
<a href="mentors.html">Projects and Mentors</a>
</li>
<li>
<a href="workshops.html">Workshops</a>
</li>
<li>
<a href="travel.html">Travel</a>
</li>
<li>
<a href="coc.html">Code of Conduct</a>
</li>
<li>
<a href="team.html">Team</a>
</li>
<li>
<a href="in_progress.html">Sponsors</a>
</li>
<li class="dropdown">
<a class="dropdown-toggle" data-toggle="dropdown" href="#">Schedule
<span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a href="schedule.html">SHD Schedule</a></li>
<li><a href="scheduleworkshops.html">Workshops Schedule</a></li>
</ul>
</li>
<li>
<a href="http://sciencehackday.org/">Global SHD</a>
</li>
<li class="dropdown">
<a class="dropdown-toggle" data-toggle="dropdown" href="http://sciencehackday.org/">Previous SHD
<span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a href="2016/index.html">SHD 2016</a></li>
</ul>
</li>
</ul>
</div>
<!-- /.container -->
</nav>
<!-- Page Content -->
<!-- Page Content -->
<div class="container">
<!-- Page Heading -->
<div class="row">
<div class="col-lg-12">
<h1 class="page-header"> <font color="#c34d0f">SHD Belgaum</font>
<small>Science Hack Ideas</small>
</h1>
<ul>
<li><a href="#nodemcu">Hacking with NodeMCU and Temperature Sensors</a></li>
<li><a href="#crashnburn">Crash and Burn</a></li>
<li><a href="#autoui">Auto UI</a></li>
<li><a href="#spider">Mechanical Spider</a></li>
<li><a href="#seelablet">Velocity Measurement with Photosensors using SeeLablet</a></li>
<li><a href="#solar">Solar Garden Lamp as a Sensor/Detector</a></li>
<li><a href="#laser">Physics of Dazzling Patterns with Laser Light and Sound</a></li>
<li><a href="#visualizer">Building a Sound Visualizer </a></li>
<li><a href="#esp12">Hacking with ESP12 Module</a></li>
<li><a href="https://goo.gl/BtPNwy" target="blank">Propose your idea here...</a></li>
</ul>
</div>
</div>
<div class="row">
<div class="col-lg-12">
<h1 class="page-header">
<small><font color="#c34d0f"> Got an idea for a science hack?</font></small>
</h1>
<p>Our focus is mainly on creating tools/programs/software/hardware framework to help science students learn better. It can be anything which promotes learning by exploring and experimenting.</p>
<p><b>Got a different idea?</b> Related to Science, Technology, Maths, Engineering, Arts or Design? Go ahead and add it <a href="https://goo.gl/BtPNwy" target="blank">HERE</a>. If you see an idea you'd like to hack/collaborate on, add your name to it! <b>Wish to be a mentor?</b> Write to us in detail about yourself and the proposed science hack idea at shdbelgaum[AT]gmail.com</p>
<p><b>Need more ideas?</b> Browse some of the ideas from <a href="http://sciencehackday.pbworks.com/w/page/24555649/Ideas" target="blank">London's Science Hack Day </a>. To submit your science hack idea fill <a href="https://goo.gl/BtPNwy" target="blank"><b>Science Hack Submission Form.</b></a> </p>
<!-- /.row -->
<div class="row">
<div class="col-lg-12">
<h1 class="page-header"> <font color="#c34d0f">SHD Mentors</font>
<a><small>Curious Brains</small></a>
</h1>
</div>
</div>
<!-- /.row -->
<!-- Mentor One -->
<div class="row">
<div class="col-lg-4 col-sm-6 text-center">
<img class="img-circle img-responsive img-center" src="2016/img/kushal1.jpg" alt="">
<h3 >
<small><a href="https://kushaldas.in/">kushaldas.in/</a></small>
</h3>
</div>
<div class="col-lg-8">
<h3 id="kushal">Kushal Das</h3>
<h4>Red Hat, Python Software Foundation</h4>
<p>A well known name in the Python community of India. CPython core developer, currently working as Fedora Cloud Engineer at Red Hat.</p>
<p>Kushal has been elected as a Director at the Python Software Foundation. He has been a mentor and an Ambassador at The Fedora Project. Along side his contributions to CPython, Kushal has also been contributing to a wide variety of upstream projects.</p>
<p>He started <a href="https://dgplug.org/">'dgplug'</a> - Linux Users Group of Durgapur and wrote a book titled <a href="https://kushaldas.in/details/pym.pdf">"Python for you and me"</a>. Kushal has been coordinating the DGPLUG summer training program for many years to help new participants take their first steps in contributing to Free and Open Source Software.</p>
<a class="btn btn-primary" href="#nodemcu">Hack Idea : NodeMCU and Sensors <span class="glyphicon glyphicon-chevron-right"></span></a>
</div>
</div>
<!-- /.row -->
<hr>
<!-- Mentor Two -->
<div class="row">
<div class="col-lg-4 col-sm-6 text-center">
<img class="img-circle img-responsive img-center" src="2016/img/hitesh.jpg" alt="">
<h3 >
<small><a href="http://hitesh.xyz">hitesh.xyz</a></small>
</h3>
</div>
<div class="col-lg-8">
<h3 id="hitesh">Hitesh Dharamdasani</h3>
<h4>Informant Networks</h4>
<p>Hitesh is MS in Science in Information Security and Assurance from George Mason University, Fairfax, Virginia. His interests lie in the intersection of Computer Security, Economics of Cyber crime and Machine Learning. He is also a part of the Center for Evidence-based Security Research (CESR). Founder Informant Networks, a company that focuses on solving problems in Network Security particularly against insider theft.</p>
<a class="btn btn-primary" href="#crashnburn">Hack Idea : Crash and Burn <span class="glyphicon glyphicon-chevron-right"></span></a>
</div>
</div>
<!-- /.row -->
<hr>
<!-- Mentor Three -->
<div class="row">
<div class="col-lg-4 col-sm-6 text-center">
<img class="img-circle img-responsive img-center" src="2016/img/saptak.jpg" alt="">
<h3>
<small><a href="http://fossasia.org/">FOSSASIA</a></small>
</h3>
</div>
<div class="col-lg-8">
<h3 id="saptak">Saptak Sengupta</h3>
<h4>Student Developer at FOSSASIA</h4>
<p>Open Source enthusiast and full stack developer who loves anything in Python or JavaScript</p>
<p>Saptak was a GSoCer in year 2016 with FOSSASIA. He has also been a mentor in Google Code-in 2015. He is an organizer in Google Developer's Group, Allahabad and has been an active contributor in many open source organisations.</p>
<p>He is presently an undergrad in Information Technology doing his final years in IIIT Allahabad. Apart from development he is hugely interested in research topics like Natural Language Processing and Cognitive Science using EDA signal.</p>
<a class="btn btn-primary" href="#autoui">Hack Idea : Auto UI<span class="glyphicon glyphicon-chevron-right"></span></a>
</div>
</div>
<!-- /.row -->
<hr>
<!-- Mentor Four -->
<div class="row">
<div class="col-lg-4 col-sm-6 text-center">
<img class="img-circle img-responsive img-center" src="http://placehold.it/200x200" alt="">
<h3>
<small><a href="">amazing mentor</a></small>
</h3>
</div>
<div class="col-lg-8">
<h3 id="suryadeep">Suryadeep Pal</h3>
<h4></h4>
<p></p>
<a class="btn btn-primary" href="#visualassistor">Hack Idea : Visual Assistor<span class="glyphicon glyphicon-chevron-right"></span></a>
</div>
</div>
<!-- /.row -->
<hr>
<!-- Mentor Five -->
<div class="row">
<div class="col-lg-4 col-sm-6 text-center">
<img class="img-circle img-responsive img-center" src="http://placehold.it/200x200" alt="">
<h3>
<small><a href="">amazing mentor</a></small>
</h3>
</div>
<div class="col-lg-8">
<h3 id="neel">Neel Shah</h3>
<h4></h4>
<p></p>
<a class="btn btn-primary" href="#spider">Hack Idea : Mechanical Spider<span class="glyphicon glyphicon-chevron-right"></span></a>
</div>
</div>
<!-- /.row -->
<hr>
<!-- Mentor six -->
<div class="row">
<div class="col-lg-4 col-sm-6 text-center">
<img class="img-circle img-responsive img-center" src="2016/img/jithin.jpg" alt="">
<h3>
<small><a href="http://jithinbp.in/">jithinbp.in</a></small>
</h3>
</div>
<div class="col-lg-8">
<h3 id="jithin">Jithin B P</h3>
<h4><a href= "csparkresearch.in/">Cspark Research</a></h4>
<p>Young Scientist in the making. Masters in Physics from Indian Institute of Science Education and Research, Mohali. <p>Jithin is working on instrumentation for labs and has independently developed severel python powered versatile lab tools, latest one is SEELABLET - An instrumentation cluster for science and engineering experiments. </p>
<p>Jithin has been awarded Junior Science Talent Search Examination (JSTSE) Scholorship and Kishore Vaigyanik Protsahan Yojana(KVPY) Scholarship. He also has many awards in the field of robotics, football and volleyball.</p>
<p> Accomplished flautist, guitarist and Sangeet Bhushan awarded by Pracheen kala kendra for vocal classical - A multidimensional young genius, indeed! </p>
<a class="btn btn-primary" href="#seelablet">Hack Idea : SeeLablet and Solar Lantern <span class="glyphicon glyphicon-chevron-right"></span></a>
</div>
</div>
<!-- /.row -->
<hr>
<!-- Project Five -->
<div class="row">
<div class="col-lg-4 col-sm-6 text-center">
<img class="img-circle img-responsive img-center" src="2016/img/akshai.jpg" alt="">
<h3>
<small><a href-"https://www.facebook.com/Microhope-263554347125758/">Microhope Foundation</a></small>
</h3>
</div>
<div class="col-lg-8">
<h3 id="akshai">Akshai M</h3>
<h4>ICFOSS Kerala</h4>
<p>Friend , Programmer , Teacher , Amateur musician , Social entrepreneur, OSH / FOSS advocate. </p>
<p>Akshai is Research assistant at FOSSEE, IIT Bombay, Co-Founder at Microhope Foundation, Former OSH Developer at ICFOSS , Govt. of Kerala. Former Fellow at Kerala Start-Up Mission. He Studied Electronics and Communication engineering at College of Engineering Kallooppara.</p>
<a class="btn btn-primary" href="#esp">Hack Idea : ESP12 Module <span class="glyphicon glyphicon-chevron-right"></span></a>
</div>
</div>
<!-- /.row -->
<hr>
<!-- Project Three -->
<div class="row">
<div class="col-lg-4 col-sm-6 text-center">
<img class="img-circle img-responsive img-center" src="2016/img/gnovi.jpeg" alt="">
<h3>
<small><a href="http://gnovi.in">gnovi.in</a></small>
</h3>
</div>
<div class="col-lg-8">
<h3 id="praveen">Praveen Patil</h3>
<h4>For the love of Physics!</h4>
<p>A Physics Teacher who loves FOSS, Fedora, Python and believes that <font color="#2C12DA">'A Clean House is a Sign of a Wasted Life !'</font></p>
<p>Praveen has been a Fossasia-GSoC :Google Summer of Code alumnus (internship for three years,2014, 2015 and 2016). He is also mentor for Google Code-In and proud Fedora volunteer. Actively involved in ExpEYES project, teacher training programs and currently working on Pocket Science Lab along with Jithin B P. </p>
<p>He is currently pursuing PhD in Physics from VTU, Belgaum. E-content developer for National Repository of Open Educational Resources (NROER) for School Education by Central Institute of Education Technology (CIET) and a member of committee for “Development of ICT Refresher Course for students and teachers” @ CIET-NCERT, New Delhi.</p>
<a class="btn btn-primary" href="#laser">Hack Idea : Patterns using Lasers<span class="glyphicon glyphicon-chevron-right"></span></a>
</div>
</div>
<!-- /.row -->
<hr>
<!-- Project Three -->
<!-- /.row -->
<hr>
<!-- Project Three -->
<div class="row">
<div class="col-lg-4 col-sm-6 text-center">
<img class="img-circle img-responsive img-center" src="http://placehold.it/200x200" alt="">
<h3>
<small><a href="">amazing mentor</a></small>
</h3>
</div>
<div class="col-lg-8">
<h3>We wish to see you here...!</h3>
<h4>For the love of Science!</h4>
<p>Propose a hack and be a mentor. Hack Idea can be anything from science, Tech, software or an app.</p>
<a class="btn btn-primary" href="#">Science Hack Project <span class="glyphicon glyphicon-chevron-right"></span></a>
</div>
</div>
<!-- /.row -->
<hr>
<!-- Page Heading -->
<!-- Project Ideas -->
<div class="row">
<div class="col-lg-12">
<h1 class="page-header"> <font color="#c34d0f">SHD Belgaum Hack Ideas </font>
<a><small>Let's go hacking with science :) </small></a>
</h1>
</div>
</div>
<!-- /.row -->
<!-- Project One -->
<div class="row">
<div class="col-md-5">
<a href="">
<img class="img-responsive" src="2016/img/nodemcu.jpg" alt="">
</a>
</div>
<div class="col-md-7">
<h3 id="nodemcu">Project:
<font color="#2315AF">Hacking with NodeMCU and Temperature Sensors</font></h3>
<h4>Mentor : <a href="#kushal">Kushal Das</a></h4>
<p><a href="http://nodemcu.com/index_en.html"target="_blank">NodeMCU</a> is an open-source firmware and development kit that helps you to prototype your IOT product within a few script lines. Join Kushal in this hack to create amazing science tools with NodeMCU, Temperature Sensors and power of Python Programming Language.</p>
<!-- <a class="btn btn-primary" href="#">Join this project <span class="glyphicon glyphicon-chevron-right"></span></a> -->
</div>
</div>
<!-- /.row -->
<hr>
<!-- Project Two -->
<div class="row">
<div class="col-md-5">
<a href="">
<img class="img-responsive" src="http://www.ilovetech.it/local/cache-gd2/eb/721cbb542199bdac560ec8e5e3ed65.png" alt="">
</a>
</div>
<div class="col-md-7">
<h3 id="crashnburn">Project:
<font color="#2315AF">Crash and Burn</font></h3>
<h4>Mentor : <a href="#hitesh">Hitesh Dharamdasani</a></h4>
<p>We will use a BananaPi-R1 board running debian to build a small home Firewall. Utilizing various linux utilities to hack together a tiny device that can apply parental controls</p>
<p>Tools/APIs used : BananaPi-R1, Flask, iptables</p>
<!-- <a class="btn btn-primary" href="#">Join this project <span class="glyphicon glyphicon-chevron-right"></span></a> -->
</div>
</div>
<!-- /.row -->
<hr>
<!-- Project Five -->
<div class="row">
<div class="col-md-5">
<a href="">
<img class="img-responsive" src="http://www.marketingkmzero.it/sites/default/files/styles/wide__700x250_/public/blog-img/user-experience-user-interface-sorelle-diverse-inseparabili.jpg?itok=W-qjD3ud" alt="">
</a>
</div>
<div class="col-md-7">
<h3 id="autoui">Project:
<font color="#2315AF">Auto UI</font></h3>
<h4>Mentor : <a href="#saptak">Saptak Sengupta</a></h4>
<p> In today's world one of the most important thing is user interface. Everything from a website to a desktop software to a mobile application, a good user interface is very important for users to interact with your product. As much as it is important, it is equally a painful task for the creators since there is no definite formula and lot depends on trial and error. Making of a UI goes all the way from sketching down ideas of wireframe, to creating photoshop/illustrator version of that idea and finally converted to the website or application. Auto UI will help you convert the wireframe sketches to frontend websites to help understand how it is gonna look finally</p>
<!-- <a class="btn btn-primary" href="#">Join this project <span class="glyphicon glyphicon-chevron-right"></span></a> -->
</div>
</div>
<!-- Project Five -->
<div class="row">
<div class="col-md-5">
<a href="">
<img class="img-responsive" src="http://macularhope.org/wp-content/uploads/eye-34140_1280-700x300.png" alt="">
</a>
</div>
<div class="col-md-7">
<h3 id="visualassistor">Project:
<font color="#2315AF">Visual Assistor</font></h3>
<h4>Mentor : <a href="#saptak">Suryadeep Pal</a></h4>
<p>Tools used : Raspberry Pi, Web Cam Module, Microphone, Microsoft Azure Cognitive Services, Heroku, Imagebin, MongoDB</p>
<p>This device uses the power of a regular web camera, which takes pictures and then after processing describes the whole scene to the user. This utility basically describes the front scenario thus helping a visually challenged person to get the view in front without getting any additional help. </p>
<!-- <a class="btn btn-primary" href="#">Join this project <span class="glyphicon glyphicon-chevron-right"></span></a> -->
</div>
</div>
<!-- /.row -->
<hr>
<!-- Project Five -->
<div class="row">
<div class="col-md-5">
<a href="">
<img class="img-responsive" src="https://s3-us-west-2.amazonaws.com/flx-editorial-wordpress/wp-content/uploads/2010/01/22194126/The-Giant-Claw.jpg" alt="">
</a>
</div>
<div class="col-md-7">
<h3 id="spider">Project:
<font color="#2315AF">Mechanical Spider</font></h3>
<h4>Mentor : <a href="#neel">Neel Shah</a></h4>
<p>Mechanical spider by Klan mechanism which can be used as a Robert at boders and hidden camera over them which can directly inform to Delhi if anyone enters from another nation and a gun n explosive thing on them which are remote control can be used during emergency they can easily move on mountain and hilly areas. </p>
<!-- <a class="btn btn-primary" href="#">Join this project <span class="glyphicon glyphicon-chevron-right"></span></a> -->
</div>
</div>
<!-- /.row -->
<hr>
<!-- Project Five -->
<div class="row">
<div class="col-md-5">
<a href="">
<img class="img-responsive" src="2016/img/seelablet.jpg" alt="">
</a>
</div>
<div class="col-md-7">
<h3 id="seelablet">Project:
<font color="#2315AF">Velocity Measurement with Photosensors</font></h3>
<h4>Mentor : <a href="#jithin">Jithin B P</a></h4>
<p> Velocity measurement with lasers and photosensors . Jithin will be using the <a href="http://www.seelablet.jithinbp.in/"target="_blank"> SEELablet</a>, <font color="#525E95">an awesome instrumentation cluster made by our own young scientist Jithin himself</font></p>
<p> Seelablet can be used to measure time intervals between successive obstructions to a laser beam that is incident on a photo transistor. We can measure speeds of athletes , or other things like the speed of a karate chop.</p>
<!-- <a class="btn btn-primary" href="#">Join this project <span class="glyphicon glyphicon-chevron-right"></span></a> -->
</div>
</div>
<!-- /.row -->
<hr>
<!-- Project Seven -->
<div class="row">
<div class="col-md-5">
<a href="">
<img class="img-responsive" src="2016/img/solar.jpg" alt="">
</a>
</div>
<div class="col-md-7">
<h3 id="solar">Project:
<font color="#2315AF">Solar Garden Lamp as a Sensor/Detector</font></h3>
<h4>Mentor : <a href="#jithin">Jithin B P</a></h4>
<p> Hacking the solar garden lamps to automatically detect human/animal presence using Passive IR sensor </p>
<p> We are making solar lanterns as a part of 'Science Toys and Soldering' Workshops for highschool kids, to be conducted at SHD Belgaum. The concept and design of the solar lantern is by Jithin B P and Praveen Patil with support and inspiration from <a href="https://twitter.com/freaklabs?lang=en"target="_blank">Akiba @freaklabs</a></p>
<p>Lets hack these solar lanterns to make them useful as beautiful detectors lamps in the garden.</p>
<!-- <a class="btn btn-primary" href="#">Join this project <span class="glyphicon glyphicon-chevron-right"></span></a> -->
</div>
</div>
<!-- /.row -->
<hr>
<!-- Project Four -->
<div class="row">
<div class="col-md-5">
<a href="">
<img class="img-responsive" src="2016/img/laser.jpg" alt="">
</a>
</div>
<div class="col-md-7">
<h3 id="laser">Project:
<font color="#2315AF">Physics of Dazzling Patterns with Laser Light and Sound</font></h3>
<h4>Mentor : <a href="#praveen">Praveen Patil</a></h4>
<p> Let's create mesmorizing patterns with Light, Music and PSLab.</p>
<p>"Lissajous Figures, Spirographs, Harmonograms and Cymatics" - <font color="#4C47BE">Recreating the unseen into seen art and science! </font></p>
<p> Nature has been a perennial source of inspiration for many! Artists, architects, designers imitate the design patterns of nature; poets describe its beauty and scientists try to unravel the mysteries of nature. A deep look into nature unlocks imagination, and inspires creativity. Here, we will try to create few amazing patterns and mashups with Light, Sound and Physics!</p>
<!-- <a class="btn btn-primary" href="#">Join this project <span class="glyphicon glyphicon-chevron-right"></span></a> -->
</div>
</div>
<!-- /.row -->
<hr>
<!-- Project Six -->
<div class="row">
<div class="col-md-5">
<a href="">
<img class="img-responsive" src="2016/img/visualizer.jpg" alt="">
</a>
</div>
<div class="col-md-7">
<h3 id="visualizer">Project:
<font color="#2315AF">Building a Sound Visualizer </font></h3>
<h4>Mentor : <a href="#praveen">Praveen Patil</a></h4>
<p> Use your voice to transform laser light into amazing patterns..</p>
<p>By talking, humming, or singing into the Sound Visualizer, you’ll be able to see sound as vibrations (or pressure waves) and experience beautiful patterns and resonant vibration modes.</p>
<p>Lets make the device from available resources, innovate and add better safety features to enable it to be used by kids.</p>
<!-- <a class="btn btn-primary" href="#">Join this project <span class="glyphicon glyphicon-chevron-right"></span></a> -->
</div>
</div>
<!-- /.row -->
<hr>
<!-- Project Nine -->
<div class="row">
<div class="col-md-5">
<a href="">
<img class="img-responsive" src="2016/img/esp.jpg" alt="">
</a>
</div>
<div class="col-md-7">
<h3 id="esp12">Project:
<font color="#2315AF">Hacking with ESP12 Module</font></h3>
<h4>Mentor : <a href="#akshai">Akshai M</a></h4>
<p> Add Internet to your next project with an adorable, bite-sized WiFi microcontroller, at a price you like! The ESP8266 ESP12 processor from Espressif is an 80 MHz microcontroller with a full WiFi front-end (both as client and access point) and TCP/IP stack with DNS support as well.</p>
<P> Akshai is an expert in microcontroller programming. Join him to learn and hack with ESP12</P>
<!-- <a class="btn btn-primary" href="#">Join this project <span class="glyphicon glyphicon-chevron-right"></span></a> -->
</div>
</div>
<!-- /.row -->
<hr>
<!-- Project Ten -->
<div class="row">
<div class="col-md-5">
<a href="#">
<img class="img-responsive" src="http://placehold.it/700x300" alt="">
</a>
</div>
<div class="col-md-7">
<h3>Got a Brain wave? </h3>
<h4>Let's add it here !</h4>
<p>Propose your cool ideas for Science Hack Day India. Need Ideas? Browse through idea page of <a href="http://sciencehackday.pbworks.com/w/page/24555649/Ideas" target="blank" >London Science Hack Day</a> </p>
<a class="btn btn-primary" href="https://goo.gl/BtPNwy">Propose Hack Idea <span class="glyphicon glyphicon-chevron-right"></span></a>
</div>
</div>
<!-- /.row -->
<hr>
<!-- Pagination -->
</div>
</div>
<!-- Footer -->
<footer>
<div class="row">
<div class="col-lg-12">
<center>
<p>Science Hack Day Established 2010. Organized by the community.</p>
</center>
</div>
</div>
<!-- /.row -->
</footer>
</div>
<!-- /.container -->
<!-- jQuery -->
<script src="js/jquery.js"></script>
<!-- Bootstrap Core JavaScript -->
<script src="js/bootstrap.min.js"></script>
</body>
</html>