This repository has been archived by the owner on Dec 2, 2019. It is now read-only.
forked from shinenelson/HackrGirls-WoMozBootcamp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·939 lines (878 loc) · 41.2 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>HackrGirls | Developer Bootcamp for Women</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="HackrGirls : A Developer Bootcamp for Women organized by Mozilla Kerala on February 21-22, 2015. The event focuses on bringing the women folk of Kerala to the world of open-source code and bootstrap and kickstart the participants to contributing code to open-source projects.">
<meta name="author" content="Mozilla Kerala">
<meta name="keywords" content="Girls, HackrGirls, Hackr Girls, WoMoz, WoMoz Kerala, Bootcamp, Developer Bootcamp, Open-source, Code, Coding, Kerala, Mozilla Kerala">
<link rel="shortcut icon" type="image/png" href="favicon.png">
<!-- Cascade Style Sheet (CSS) linking -->
<link rel="stylesheet" type="text/css" href="css/main.css">
<link rel="stylesheet" type="text/css" href="css/animate.css">
<link rel="stylesheet" type="text/css" href="css/responsive.css">
<link rel="stylesheet" type="text/css" href="css/timeline.css">
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css"> <!-- Bootstrap -->
<!-- Fonts -->
<link rel="stylesheet" type="text/css" href="http://fonts.googleapis.com/css?family=Open Sans:300,400,600,700"> <!-- Google Fonts - Open Sans -->
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css"> <!-- Font Awesome Font Bootstrap-MaxCDN -->
<!--[if lt IE 9]>
<script src="js/html5shiv.js"></script>
<script src="js/respond.min.js"></script>
<![endif]-->
</head>
<body>
<!-- Header -->
<header id="header" role="banner">
<div class="main-nav">
<div class="container">
<div class="header-top">
<div class="pull-right social-icons">
<a href="https://twitter.com/HackrGirls" target="_blank"><span class="fa fa-twitter"></span></a>
<a href="https://facebook.com/HackrGirls" target="_blank"><span class="fa fa-facebook"></span></a>
<a href="https://plus.google.com/114831280089581546580/" target="_blank"><span class="fa fa-google-plus"></span></a>
</div>
</div>
<div class="row">
<div class="navbar-header">
<button type="button" class="navbar-toggle" 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>
<a class="navbar-brand" href="index.html">
<img class="img-responsive" src="images/logo.png" alt="logo">
</a>
</div>
<div class="collapse navbar-collapse">
<ul class="nav navbar-nav navbar-right">
<li class="scroll"><a href="#about">About</a></li>
<li class="scroll"><a href="#speakers">Speakers</a></li>
<li class="scroll"><a href="#schedule">Schedule</a></li>
<li class="scroll"><a href="#faq">FAQ</a></li>
<li class="scroll"><a href="#cheats">Cheats</a></li>
<li class="scroll"><a href="#people">Team</a></li>
<li class="scroll"><a class="btn btn-3d btn-default" href="#" data-toggle="modal" data-target="#register">Register</a></li>
</ul>
</div>
</div>
</div>
</div>
</header>
<!-- End Header-->
<!-- Home -->
<section id="home">
<div id="main-slider" class="carousel slide" data-ride="carousel">
<ol class="carousel-indicators">
<li data-target="#main-slider" data-slide-to="0" class="active"></li>
<li data-target="#main-slider" data-slide-to="1"></li>
</ol>
<div class="carousel-inner">
<div class="item active">
<img class="img-responsive" src="https://lh4.googleusercontent.com/UOwSh3k927EZHcR-xDatNlW1Qa1muNaDMf3pF0-YS40=w1600-h850-p-no" alt="slider">
</div>
<div class="item">
<img class="img-responsive" src="https://lh6.googleusercontent.com/KE1St7vNjEKTX_cqqc34t6ngPl4W5WDSXAnEu868WR0=w1600-h850-p-no" alt="slider">
</div>
<div class="carousel-caption">
<h2>FEBRUARY 21-22, 2015</h2>
<h4>FISAT, ANGAMALY</h4>
<a href="#" data-toggle="modal" data-target="#register">LIMITED SEATS AVAILABLE <br> HURRY! RESERVE YOUR SEAT NOW! <span class="glyphicon glyphicon-menu-right"></span></a>
</div>
</div>
</div>
</section>
<!-- End Home-->
<!-- About -->
<section id="about">
<div id="about-feed" class="carousel slide" data-ride="carousel" data-interval="3000">
<div class="row col-md-offset-2">
<div class="col-sm-9">
<div class="text-center carousel-inner center-block">
<div class="item active">
<h2>WOMEN IN TECHNOLOGY</h2>
<h4>
<p>Women have played a major role in computing for years as men. But it is seen that women not only lack interest in technology but they also chose not to enroll in computer field. Since computers and technology play an enormous role in the world today, more technology professionals are needed.</p>
<p>Assumptions and stereotypes that were created many decades ago are still alive today. The saying men are “technical” and women are “emotional” is only one of the many perceptions that may have an effect on women who want actually enjoy technology. For decades, people have assumed subjects such as math, science, and technology were for “men" alone. However, it has been proven that there are women who are just as good, if not better in these fields of study.</p>
</h4>
</div>
<div class="item">
<h2><a href="http://womoz.org/" target="_blank">WOMEN & MOZILLA (WoMoz)</a></h2>
<h4>
<p><a href="https://wiki.mozilla.org/WoMoz" target="_blank">Women & Mozilla ("WoMoz")</a> - a community composed of members from different open source projects. We are mainly dedicated to improving women's visibility and involvement in Free/Open Source and Mozilla, and to increase the number of women contributors. It is the part of Mozilla that works towards the empowerment of women in the field of technology, especially the web.</p>
<p>Anyone can participate in this project, regardless of sex, age, job, etc. We are united by the common goal of promoting women's visibility and involvement in open source communities.</p>
<p>In fact, we believe that the Internet, FLOSS projects and computing must remain open and participatory. This also means accessible in the same way to all - women and men alike.</p>
<p>We believe Open Source needs more women! Contribute with us 😊 </p>
</h4>
</div>
<div id="cheats" class="item">
<h2>Not sure about what you know?</h2>
<h3>Dont worry, we've got that covered for you too...</h3>
<h4>Check out our collection of cheat sheets you could use</h4>
<ul>
<li>
<figure class="col-md-3">
<img src="cheats/html5-cheat-sheet.jpg" alt="HTML5">
<figcaption>HTML5</figcaption>
<a class="btn btn-default" href="cheats/html5-cheat-sheet.jpg" download>Download</a>
</figure>
</li>
<li>
<figure class="col-md-3">
<img src="cheats/css3-cheat-sheet.png" alt="CSS3">
<figcaption>CSS3</figcaption>
<a class="btn btn-default" href="cheats/css3-cheat-sheet.png" download>Download</a>
</figure>
</li>
<li>
<figure class="col-md-3">
<img src="cheats/git-cheat-sheet.png" alt="Git">
<figcaption>git</figcaption>
<a class="btn btn-default" href="cheats/git-cheat-sheet.png" download>Download</a>
</figure>
</li>
<li>
<figure class="col-md-3">
<img src="cheats/linux-cheat-sheet.png" alt="Linux">
<figcaption>Linux</figcaption>
<a class="btn btn-default" href="cheats/linux-cheat-sheet.png" download>Download</a>
</figure>
</li>
</ul>
</div>
</div>
<a class="control-left" href="#about-feed" data-slide="prev"><span class="glyphicon glyphicon-menu-left"></span></a>
<a class="control-right" href="#about-feed" data-slide="next"><span class="glyphicon glyphicon-menu-right"></span></a>
</div>
</div>
</div>
</section>
<!-- End About -->
<!-- Cheats Modal -->
<div class="modal fade" id="cheats-modal" tabindex="-1" role="dialog" aria-labelledby="CheatsModal" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-body">
</div>
</div>
</div>
</div>
<!-- End Cheats Modal -->
<!-- Quotes -->
<section id="quotes">
<div id="quotes-feed" class="carousel slide" data-ride="carousel" data-interval="3000">
<div class="row">
<div class="col-sm-8 col-sm-offset-1">
<div class="text-center carousel-inner center-block">
<div id="GDA" class="item active">
<p>
"<strong><em>Feminism</em></strong> is not about making women stronger.
<br>Women are already strong.
<br>Its about changing the way the world perceives that strength."
</p>
<a href="#">G D Anderson</a>
</div>
<div class="item">
<div id="HR" class="col-md-8">
<p>
"If I have to, I can do anything.
<br>I am strong, I am invincible.
<br>I am Woman"
</p>
<a href="http://en.wikipedia.org/wiki/I_Am_Woman" target="_blank">Helen Reddy</a>
</div>
<img class="col-md-4" src="images/quotes/Helen_Reddy.jpg" alt="">
</div>
<div id="AE" class="item">
<div class="col-md-1"></div>
<img class="col-md-3" src="images/quotes/Albert_Einstein.jpg" alt="">
<div class="col-md-8">
<p>
"The woman who follows the crowd will usually go no further than the crowd.
<br>
The woman who walks alone is likely to find herself in places no one has ever been before."
</p>
<a href="http://en.wikipedia.org/wiki/Albert_Einstein" target="_blank">Albert Einstein</a>
</div>
</div>
</div>
<a class="control-left" href="#quotes-feed" data-slide="prev"><span class="glyphicon glyphicon-menu-left"></span></a>
<a class="control-right" href="#quotes-feed" data-slide="next"><span class="glyphicon glyphicon-menu-right"></span></a>
</div>
</div>
<div class="light">
<img class="img-responsive" src="images/light.png" alt="">
</div>
</div>
</section>
<!-- End Quotes -->
<!-- Speakers -->
<section id="speakers">
<div class="container">
<div class="row">
<div class="col-sm-12 col-md-12">
<h1 class="heading">SPEAKERS</h1>
<div class="row">
<div class="col-sm-3">
<div class="single-event">
<img class="img-responsive" src="images/speakers/Bhavana_Bajaj.jpg" alt="Bhavana Bajaj">
<h4>
<strong>BHAVANA BAJAJ</strong>
<a href="https://www.linkedin.com/pub/bhavana-bajaj/13/9b6/355" target="_blank"><span class="fa fa-linkedin-square"></span></a>
</h4>
<h5>Release Manager | <a href="https://mozilla.org/firefox/os/" target="_blank">Firefox OS</a></h5>
<h5><a href="https://mozilla.org/" target="_blank">Mozilla</a></h5>
</div>
</div>
<div class="col-sm-3">
<div class="single-event">
<img class="img-responsive" src="images/speakers/Shivani_Gupta.jpg" alt="Shivani Gupta">
<h4>
<strong>SHIVANI GUPTA</strong>
<a href="https://in.linkedin.com/pub/shivani-gupta/51/320/402" target="_blank"><span class="fa fa-linkedin-square"></span></a>
</h4>
<h5>Program Associate</h5>
<h6><a href="http://fat-net.org/" target="_blank">Feminist Approach to Technology (FAT)</a></h6>
</div>
</div>
<div class="col-sm-3">
<div class="single-event">
<img class="img-responsive" src="images/speakers/Tessy_Joseph.jpg" alt="Tessy Joseph">
<h4>
<strong>TESSY JOSEPH</strong>
<a href="http://in.linkedin.com/in/tessyj" target="_blank"><span class="fa fa-linkedin-square"></span></a>
</h4>
<h5>Mobile Web QA Intern</h5>
<h5><a href="https://mozilla.org/" target="_blank">Mozilla</a></h5>
</div>
</div>
<div class="col-sm-3">
<div class="single-event">
<img class="img-responsive" src="images/speakers/Sijo_Kuruvila.jpg" alt="Sijo Kuruvila">
<h4>
<strong>SIJO KURUVILA</strong>
<a href="https://in.linkedin.com/in/sijokuruvillageorge" target="_blank"><span class="fa fa-linkedin-square"></span></a>
</h4>
<h5>Founding CEO</h5>
<h5><a href="http://startupvillage.in/" target="_blank">Startup Village</a></h5>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End Speakers -->
<!-- Schedule -->
<section id="schedule">
<div class="container">
<h1 class="heading">SCHEDULE</h1>
<div id="sched-accord" class="panel-group text-left">
<div class="panel panel-default">
<div class="col-md-6 panel-heading">
<h2 class="panel-title">
<a data-toggle="collapse" data-parent="#sched-accord" href="#sat"><span class="glyphicon glyphicon-calendar"></span> Saturday, February 21, 2015</a>
</h2>
</div>
<div class="col-md-6 panel-heading">
<h2 class="panel-title">
<a data-toggle="collapse" data-parent="#sched-accord" href="#sun"><span class="glyphicon glyphicon-calendar"></span> Sunday, February 22, 2015</a>
</h2>
</div>
<div id="sat" class="panel-collapse collapse">
<div class="panel-body">
<div id="cd-timeline" class="cd-container">
<div class="cd-timeline-block">
<div class="cd-timeline-img cd-others bounce-in">
<span class="fa fa-2x fa-fw margin-bottom fa-legal"></span>
</div>
<div class="cd-timeline-content">
<h2>09:00AM - 10:00AM</h2>
<p>Ice breaker session</p>
</div>
</div>
<div class="cd-timeline-block">
<div class="cd-timeline-img cd-session bounce-in">
<span class="fa fa-2x fa-fw margin-bottom fa-linux"></span>
</div>
<div class="cd-timeline-content">
<h2>10:00AM - 11:30AM</h2>
<p>Open Source Programming and Version Control</p>
<p><strong><a href="https://mozillians.org/u/shine/" target="_blank">Shine Nelson</a></strong></p>
</div>
</div>
<div class="cd-timeline-block">
<div class="cd-timeline-img cd-food bounce-in">
<span class="fa fa-2x fa-fw margin-bottom fa-coffee"></span>
</div>
<div class="cd-timeline-content">
<h2>11:30AM - 11:45AM</h2>
<p>Coffee Break</p>
</div>
</div>
<div class="cd-timeline-block">
<div class="cd-timeline-img cd-others bounce-in">
<span class="fa fa-2x fa-fw margin-bottom fa-female"></span>
</div>
<div class="cd-timeline-content">
<h2>11:45AM - 12:00PM</h2>
<p><strong><em>HackrGirls</em></strong> : WoMoz Developer Bootcamp</p>
<p><strong><a href="https://mozillians.org/u/shine/" target="_blank">Shine Nelson</a></strong></p>
</div>
</div>
<div class="cd-timeline-block">
<div class="cd-timeline-img cd-code bounce-in">
<span class="fa fa-2x fa-fw margin-bottom fa-github"></span>
</div>
<div class="cd-timeline-content">
<h2>12:00Noon - 12:30PM</h2>
<p>Git Basics</p>
</div>
</div>
<div class="cd-timeline-block">
<div class="cd-timeline-img cd-session bounce-in">
<span class="fa fa-2x fa-fw margin-bottom fa-bolt"></span>
</div>
<div class="cd-timeline-content">
<h2>12:30PM - 01:30PM</h2>
<p>Imposter Syndrome & Women in Technology</p>
<p><strong><a href="https://in.linkedin.com/pub/shivani-gupta/51/320/402" target="_blank">Shivani Rekha Gupta</a></strong></p>
</div>
</div>
<div class="cd-timeline-block">
<div class="cd-timeline-img cd-food bounce-in">
<span class="fa fa-2x fa-fw margin-bottom fa-spoon"></span>
</div>
<div class="cd-timeline-content">
<h2>01:30PM - 02:00PM</h2>
<p>Lunch Break</p>
</div>
</div>
<div class="cd-timeline-block">
<div class="cd-timeline-img cd-code bounce-in">
<span class="fa fa-2x fa-fw margin-bottom fa-html5"></span>
</div>
<div class="cd-timeline-content">
<h2>02:00PM - 03:00PM</h2>
<p>HTML5</p>
</div>
</div>
<div class="cd-timeline-block">
<div class="cd-timeline-img cd-code bounce-in">
<span class="fa fa-2x fa-fw margin-bottom fa-css3"></span>
</div>
<div class="cd-timeline-content">
<h2>03:00PM - 04:00PM</h2>
<p>CSS3</p>
</div>
</div>
<div class="cd-timeline-block">
<div class="cd-timeline-img cd-food bounce-in">
<span class="fa fa-2x fa-fw margin-bottom fa-coffee"></span>
</div>
<div class="cd-timeline-content">
<h2>04:00PM - 04:30PM</h2>
<p>Tea Break / Games</p>
</div>
</div>
<div class="cd-timeline-block">
<div class="cd-timeline-img cd-code bounce-in">
<span class="fa fa-2x fa-fw margin-bottom fa-legal"></span>
</div>
<div class="cd-timeline-content">
<h2>04:30PM - 05:45PM</h2>
<p>JavaScript & WebAPI</p>
</div>
</div>
<div class="cd-timeline-block">
<div class="cd-timeline-img cd-others bounce-in">
<span class="fa fa-2x fa-fw margin-bottom fa-dollar"></span>
</div>
<div class="cd-timeline-content">
<h2>05:45PM - 06:00PM</h2>
<p>The Man behind Startup Village and the Entrepreneur trend in Kerala</p>
<p>A walk with <a href="https://in.linkedin.com/in/sijokuruvillageorge" target="_blank"><strong>Sijo Kuruvilla George</strong></a></p>
</div>
</div>
</div>
</div>
</div>
<div id="sun" class="panel-collapse collapse">
<div class="panel-body">
<div id="cd-timeline" class="cd-container">
<div class="cd-timeline-block">
<div class="cd-timeline-img cd-others bounce-in">
<span class="fa fa-2x fa-fw margin-bottom fa-legal"></span>
</div>
<div class="cd-timeline-content">
<h2>09:00AM - 10:00AM</h2>
<p>Ideation & Brainstorming</p>
</div>
</div>
<div class="cd-timeline-block">
<div class="cd-timeline-img cd-code bounce-in">
<span class="fa fa-2x fa-fw margin-bottom fa-lightbulb-o"></span>
</div>
<div class="cd-timeline-content">
<h2>10:00AM - 11:30AM</h2>
<p>Implementation of the Ideas</p>
</div>
</div>
<div class="cd-timeline-block">
<div class="cd-timeline-img cd-food bounce-in">
<span class="fa fa-2x fa-fw margin-bottom fa-coffee"></span>
</div>
<div class="cd-timeline-content">
<h2>11:30AM - 11:45AM</h2>
<p>Coffee Break</p>
</div>
</div>
<div class="cd-timeline-block">
<div class="cd-timeline-img cd-session bounce-in">
<span class="fa fa-2x fa-fw margin-bottom fa-table"></span>
</div>
<div class="cd-timeline-content">
<h2>11:45AM - 12:30PM</h2>
<p>Responsive Web Design & Webapp Design</p>
</div>
</div>
<div class="cd-timeline-block">
<div class="cd-timeline-img cd-code bounce-in">
<span class="fa fa-2x fa-fw margin-bottom fa-code"></span>
</div>
<div class="cd-timeline-content">
<h2>12:30PM - 01:30PMPM</h2>
<p> { Code On }</p>
</div>
</div>
<div class="cd-timeline-block">
<div class="cd-timeline-img cd-food bounce-in">
<span class="fa fa-2x fa-fw margin-bottom fa-spoon"></span>
</div>
<div class="cd-timeline-content">
<h2>01:30PM - 02:00PM </h2>
<p>Lunch Break</p>
</div>
</div>
<div class="cd-timeline-block">
<div class="cd-timeline-img cd-session bounce-in">
<span class="fa fa-2x fa-fw margin-bottom fa-mobile-phone"></span>
</div>
<div class="cd-timeline-content">
<h2>02:00PM - 03:00PM</h2>
<p><a href="https://www.linkedin.com/pub/bhavana-bajaj/13/9b6/355" target="_blank"><strong>Bhavna Bajaj</strong></a></p>
</div>
</div>
<div class="cd-timeline-block">
<div class="cd-timeline-img cd-code bounce-in">
<span class="fa fa-2x fa-fw margin-bottom fa-code"></span>
</div>
<div class="cd-timeline-content">
<h2>03:00PM - 03:45PM</h2>
<p>{ Code On }</p>
</div>
</div>
<div class="cd-timeline-block">
<div class="cd-timeline-img cd-others bounce-in">
<span class="fa fa-2x fa-fw margin-bottom fa-coffee"></span>
</div>
<div class="cd-timeline-content">
<h2>03:45PM - 04:00PM</h2>
<p>Break</p>
</div>
</div>
<div class="cd-timeline-block">
<div class="cd-timeline-img cd-code bounce-in">
<span class="fa fa-2x fa-fw margin-bottom fa-code"></span>
</div>
<div class="cd-timeline-content">
<h2>04:00PM - 04:30PM</h2>
<p>{ Code On }</p>
</div>
</div>
<div class="cd-timeline-block">
<div class="cd-timeline-img cd-others bounce-in">
<span class="fa fa-2x fa-fw margin-bottom fa-paperclip"></span>
</div>
<div class="cd-timeline-content">
<h2>04:30PM - 04:45PM</h2>
<p>Feedback</p>
</div>
</div>
<div class="cd-timeline-block">
<div class="cd-timeline-img cd-others bounce-in">
<span class="fa fa-2x fa-fw margin-bottom fa-camera"></span>
</div>
<div class="cd-timeline-content">
<h2>04:45PM - 05:00PM </h2>
<p>Photo Session</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End Schedule -->
<!-- FAQ -->
<section id="faq">
<div class="container">
<div class="row">
<h1 class="heading">FREQUENTLY ASKED QUESTIONS</h1>
<div id="accordion" class="panel-group text-left">
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title">
<a data-toggle="collapse" data-parent="#accordion" href="#what"><span class="glyphicon glyphicon-plus"></span> What is this about?</a>
</h4>
</div>
<div id="what" class="panel-collapse collapse">
<div class="panel-body">
<h4>
<p>This is a Mozilla event aimed at encouraging and empowering the women folk of Kerala to join the world of open-source code and contribute to open-source projects, communities and organizations</p>
<p>HackrGirls aims to empower women, in the field of technology, to explore outside the curriculum and to engage and contributing to open-source projects. The bootcamp is centered on imparting the idea of self-learning and to encourage the participants to explore and use the internet in the best possible way to create a new wave of coders and developers in Kerala / India.</p>
<p>We have created an extremely positive and relaxed environment all geared towards developing your skills whether you are an absolute beginner trying to get off the ground or an accomplished player looking to move to the next level.</p>
</h4>
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title">
<a data-toggle="collapse" data-parent="#accordion" href="#name"><span class="glyphicon glyphicon-plus"></span> What's with the name?</a>
</h4>
</div>
<div id="name" class="panel-collapse collapse">
<div class="panel-body">
<h4>The name was chosen to depict a group of enthusiastic females coming together to hack on the web.</h4>
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title">
<a data-toggle="collapse" data-parent="#accordion" href="#attend"><span class="glyphicon glyphicon-plus"></span> Can anybody attend this event?</a>
</h4>
</div>
<div id="attend" class="panel-collapse collapse">
<div class="panel-body">
<h4>No. This event is invite-only. We have a very tight capacity.</h4>
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title">
<a data-toggle="collapse" data-parent="#accordion" href="#seats"><span class="glyphicon glyphicon-plus"></span> How many seats are available?</a>
</h4>
</div>
<div id="seats" class="panel-collapse collapse">
<div class="panel-body">
<h4>To ensure maximum productivity, we have fixed a capacity of only <strong>50</strong>.
<br>So, if you're a woman and want to be a part of the elite 50, <a href="#" data-toggle="modal" data-target="#register">register</a> yourself now!</h4>
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title">
<a data-toggle="collapse" data-parent="#accordion" href="#guys"><span class="glyphicon glyphicon-plus"></span> I'm a guy, can I participate?</a>
</h4>
</div>
<div id="guys" class="panel-collapse collapse">
<div class="panel-body">
<h4>No, you certainly cannot. This is a women-exclusive event and men are not at all welcome.</h4>
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title">
<a data-toggle="collapse" data-parent="#accordion" href="#payment"><span class="glyphicon glyphicon-plus"></span> Is there a registration amount for this event?</a>
</h4>
</div>
<div id="payment" class="panel-collapse collapse">
<div class="panel-body">
<h4>No. You don't have to worry about food or accommodation either. We've got all that covered for you.</h4>
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title">
<a data-toggle="collapse" data-parent="#accordion" href="#accommodation"><span class="glyphicon glyphicon-plus"></span> The event is for 2 days. Where am I going to stay?</a>
</h4>
</div>
<div id="accommodation" class="panel-collapse collapse">
<div class="panel-body">
<h4>Don't worry. We've arranged your stay at the ladies' hostel at FISAT. Courtesy of the venue providers.</h4>
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title">
<a data-toggle="collapse" data-parent="#accordion" href="#pre-req"><span class="glyphicon glyphicon-plus"></span> Should I meet any pre-requisites to attend this event?</a>
</h4>
</div>
<div id="pre-req" class="panel-collapse collapse">
<div class="panel-body">
<h4>No. Not at all. We are focusing on helping women with no / very little coding experience to be able to contribute code to the open-source world. We'll start from scratch and move all the way to big-time coding with APIs.</h4>
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title">
<a data-toggle="collapse" data-parent="#accordion" href="#StuffToBring"><span class="glyphicon glyphicon-plus"></span> What all should I bring along?</a>
</h4>
</div>
<div id="StuffToBring" class="panel-collapse collapse">
<div class="panel-body">
<h4>
<ul>
<li>A laptop (preferably with any GNU / Linux distribution installed, but otherwise, Windows is fine too.)</li>
<li>Laptop battery charger / adaptor and converter sockets (if necessary)</li>
<li>Clothes, cosmetics, accessories (the whole make up set, if necessary) to survive for 2 days.</li>
</ul>
</h4>
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title">
<a data-toggle="collapse" data-parent="#accordion" href="#who"><span class="glyphicon glyphicon-plus"></span> Who is organizing this event?</a>
</h4>
</div>
<div id="who" class="panel-collapse collapse">
<div class="panel-body">
<h4>This is a Mozilla event, which is being organized by its <a href="http:///mozillakerala.org/" target="_blank">volunteers</a> and <a href="http://womoz.org/" target="_blank">WoMoz</a> in Kerala.</h4>
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title">
<a data-toggle="collapse" data-parent="#accordion" href="#why"><span class="glyphicon glyphicon-plus"></span> Why make this happen?</a>
</h4>
</div>
<div id="why" class="panel-collapse collapse">
<div class="panel-body">
<h4>The women of Kerala are smart in everything they do. But often they do not get the right opportunities to show their talents. We're trying to empower women to code and contribute to the open-source world. We want to build, develop and nurture an open community that contributes actively to open-source projects, communities and organizations.</h4>
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title">
<a data-toggle="collapse" data-parent="#accordion" href="#yKerala"><span class="glyphicon glyphicon-plus"></span> Why in Kerala?</a>
</h4>
</div>
<div id="yKerala" class="panel-collapse collapse">
<div class="panel-body">
<h4>Despite the level of focus given to computer education in school level, the effort to grow and complement it at higher levels are not adequate. Despite having a large number of Keralites working in multinational software companies, the number of quality software engineers is less than the requirement there is. And among the software professionals from the state, the number of female developers is much very low than we could call adequate. So we believe that Kerala is as good as any place in India to organize such a program like this that could help carry the momentum computer education has in the school level to higher levels, especially for our future Ada Lovelaces and Grace Hoppers.</h4>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End FAQ -->
<!-- Registration Modal -->
<div class="modal fade" id="register" tabindex="-1" role="dialog" aria-labelledby="basicModal" aria-hidden="true">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h1 class="modal-title heading">REGISTER</h1>
</div>
<div class="modal-body">
<iframe src="https://docs.google.com/forms/d/1EHyKNJqT-nT6qdudxk09MHPMvZ24Jnr5esrcv7NtW6A/viewform?embedded=true" width="750" height="2550" frameborder="0" marginheight="0" marginwidth="0">Loading...</iframe>
</div>
</div>
</div>
</div>
</div>
<!-- End Registration Modal -->
<!-- Map -->
<section id="where">
<iframe width="100%" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://www.openstreetmap.org/export/embed.html?bbox=76.40465497970581%2C10.228321124515093%2C76.41287326812744%2C10.234561037945715&layer=mapnik&marker=10.231441096562783%2C76.40876412391663"></iframe><br/><small><a href="http://www.openstreetmap.org/?mlat=10.23144&mlon=76.40876#map=17/10.23144/76.40876">View Larger Map</a></small>
</section>
<!-- End Map -->
<!-- Team -->
<section id="people">
<div class="container">
<div class="row">
<h1 class="heading">THE TEAM</h1>
<h3>The cool people behind the scenes</h3>
<div class="credits col-md-3">
<h1>Credits</h1>
<h2>
<p>A <a href="http://mozillakerala.org/" target="_blank">Mozilla Kerala</a> Initiative</p>
<p>in association with <a href="http://womoz.org/" target="_blank">WoMoz</a> and <a href="http://fisat.ac.in/" target="_blank">FISAT, Angamaly</a></p>
</h2>
</div>
<div class="col-md-9">
<div class="row">
<div class="col-md-4">
<img class="team img-responsive" src="images/team/nidhiya.jpg" alt="Nidhiya V Raj">
<h4>
<strong>Nidhiya V Raj</strong>
<a href="https://mozillians.org/en-US/u/Nidhiya/" target="_blank">
<img src="https://mozillians.org/static/mozillians/img/favicon.ico" />
</a>
</h4>
</div>
<div class="col-md-4">
<img class="team img-responsive" src="images/team/binoy.jpg" alt="Binoy Balu">
<h4>
<strong>Binoy Balu</strong>
<a href="https://mozillians.org/en-US/u/binoybalu1993/" target="_blank">
<img src="https://mozillians.org/static/mozillians/img/favicon.ico" />
</a>
</h4>
</div>
<div class="col-md-4">
<img class="team img-responsive" src="images/team/neethu.jpg" alt="Neethu Sajeevan">
<h4>
<strong>Neethu Sajeevan</strong>
<a href="https://mozillians.org/en-US/u/neethusajeevan94/" target="_blank">
<img src="https://mozillians.org/static/mozillians/img/favicon.ico" />
</a>
</h4>
</div>
</div>
<div class="row">
<div class="col-md-4">
<img class="team img-responsive" src="images/team/praveen.jpg" alt="Praveen Sridhar">
<h4>
<strong>Praveen Sridhar</strong>
<a href="https://mozillians.org/en-US/u/praveen13/" target="_blank">
<img src="https://mozillians.org/static/mozillians/img/favicon.ico" />
</a>
</h4>
</div>
<div class="col-md-4">
<img class="team img-responsive" src="images/team/shine.jpg" alt="Shine Nelson">
<h4>
<strong>Shine Nelson</strong>
<a href="https://mozillians.org/en-US/u/shine/" target="_blank">
<img src="https://mozillians.org/static/mozillians/img/favicon.ico" />
</a>
</h4>
</div>
<div class="col-md-4">
<img class="team img-responsive" src="images/team/siraj.jpg" alt="Sirajul Muneer">
<h4>
<strong>Sirajul Muneer</strong>
<a href="https://mozillians.org/en-US/u/siraj.mussafirr/" target="_blank">
<img src="https://mozillians.org/static/mozillians/img/favicon.ico" />
</a>
</h4>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End Team -->
<div class="back-to-top"><span class="glyphicon glyphicon-chevron-up" aria-hidden="true"></span></div>
<!-- Footer -->
<footer id="footer">
<div class="container">
<div class="design pull-left">
Built <a href="#" data-toggle="modal" data-target="#video">with ♥, Internet Style</a> <br>
using <a href="http://jquery.com/" target="_blank">jQuery</a>, <a href="http://getbootstrap.com/" target="_blank">Twitter Bootstrap</a> & <a href="https://fortawesome.github.io/FontAwesome/" target="_blank">FontAwesome</a> from <span class="fa fa-maxcdn"></span> MaxCDN's <a href="http://bootstrapcdn.com/" target="_blank">BootstrapCDN</a><br>
and hosted at <span class="fa fa-github"></span> <a href="https://github.com/MozillaKerala/HackrGirls/WoMozBootcamp/" target="_blank">Github</a> by the Fox Lovers in <a href="http://mozillakerala.org/" target="_blank">Kerala</a>
</div>
<div class="contact pull-right">
<div class="social">
<a title="Facebook Page" class="facebook" href="https://facebook.com/MozillaKerala" target="_blank">
<span class="fa-stack fa-lg">
<span class="fa fa-circle fa-stack-2x"></span>
<span class="fa fa-facebook fa-stack-1x fa-inverse"></span>
</span>
</a>
<a title="Facebook Group" class="facebook" href="https://facebook.com/groups/MozillaKerala" target="_blank">
<span class="fa-stack fa-lg">
<span class="fa fa-circle fa-stack-2x"></span>
<span class="fa fa-facebook fa-stack-1x fa-inverse"></span>
</span>
</a>
<a title="Twitter" class="twitter" href="https://twitter.com/MozillaKerala" target="_blank">
<span class="fa-stack fa-lg">
<span class="fa fa-circle fa-stack-2x"></span>
<span class="fa fa-twitter fa-stack-1x fa-inverse"></span>
</span>
</a>
<a title="Google+ Page" class="gplus" href="https://plus.google.com/114831280089581546580" target="_blank">
<span class="fa-stack fa-lg">
<span class="fa fa-circle fa-stack-2x"></span>
<span class="fa fa-google-plus fa-stack-1x fa-inverse"></span>
</span>
</a>
<a title="Google+ Community" class="gplus" href="https://plus.google.com/communities/114787248813145966099" target="_blank">
<span class="fa-stack fa-lg">
<span class="fa fa-circle fa-stack-2x"></span>
<span class="fa fa-google-plus fa-stack-1x fa-inverse"></span>
</span>
</a>
<a title="Github Organization" class="github" href="https://github.com/MozillaKerala" target="_blank">
<span class="fa-stack fa-lg">
<span class="fa fa-circle fa-stack-2x"></span>
<span class="fa fa-github fa-stack-1x fa-inverse"></span>
</span>
</a>
</div>
<br>
Say Hello • hello [at] mozillakerala [dot] org <br>
For Event related queries, write to events [at] mozillakerala [dot] org <br>
</div>
</div>
<!-- Video Modal -->
<div class="modal fade" id="video" tabindex="-1" role="dialog" aria-labelledby="basicModal" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-body">
<iframe width="420" height="315" src="//www.youtube.com/embed/Xe1TZaElTAs" frameborder="0" allowfullscreen></iframe>
</div>
</div>
</div>
</div>
</div>
<!-- End Video Modal -->
</footer>
<!-- End Footer -->
<!-- Piwik -->
<script type="text/javascript">
var _paq = _paq || [];
_paq.push(['trackPageView']);
_paq.push(['enableLinkTracking']);
(function() {
var u="//piwik.mozillakerala.org/";
_paq.push(['setTrackerUrl', u+'piwik.php']);
_paq.push(['setSiteId', 8]);
var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0];
g.type='text/javascript'; g.async=true; g.defer=true; g.src=u+'piwik.js'; s.parentNode.insertBefore(g,s);
})();
</script>
<noscript><p><img src="//piwik.mozillakerala.org/piwik.php?idsite=8" style="border:0;" alt="" /></p></noscript>
<!-- End Piwik Code -->
<!-- Script Includes -->
<script type="text/javascript" src="https://code.jquery.com/jquery-2.1.3.min.js"></script> <!-- jQuery -->
<script type="text/javascript" src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.2/js/bootstrap.min.js"></script> <!-- Bootstrap Script -->
<script type="text/javascript" src="js/scripts.js"></script>
<script type="text/javascript" src="js/smoothscroll.js"></script>
<script type="text/javascript" src="js/jquery.parallax.js"></script>
<script type="text/javascript" src="js/coundown-timer.js"></script>
<script type="text/javascript" src="js/jquery.scrollTo.js"></script>
<script type="text/javascript" src="js/jquery.nav.js"></script>
<script type="text/javascript" src="js/main.js"></script>
</body>
</html>