-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·1378 lines (1262 loc) · 63.6 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
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="apple-mobile-web-app-capable" content="yes" />
<meta name="description" content="FOSSMeet is the annual event on Free and Open source software, conducted at National Institute of Technology, Calicut.">
<meta name="keywords" content="nitc,fossmeet,fsf,gnu,icfoss,concur,NITC,CSEA,FOSSCell">
<meta name="author" content="Creative Team, FOSSCell NIT Calicut">
<meta property="og:title" content="FOSSMeet '16" />
<meta property="og:type" content="Website" />
<meta property="og:url" content="http://www.fossmeet.in"/>
<meta property="og:description" content="FOSSMeet is the annual event on Free and Open source software, conducted at National Institute of Technology, Calicut." />
<meta property="og:locale" content="en_IN" />
<meta property="og:image" content="http://fossmeet.in/img/poster.jpg" />
<meta property="fb:app_id" content="921306757944441" />
<link rel="shortcut icon" type="image/png" href="img/logo16.png" />
<title>FOSSMeet '16</title>
<link rel="stylesheet" href="css/bootstrap.min.css" type="text/css">
<link rel="stylesheet" href="css/font-awesome.min.css" type="text/css">
<link rel="stylesheet" href="css/animate.min.css" type="text/css">
<link rel="stylesheet" href="css/creative.css" type="text/css">
<link rel="stylesheet" href="css/main.css" type="text/css">
<link rel="stylesheet" type="text/css" href="css/schedule.css">
<link rel="stylesheet" type="text/css" href="css/responsive.css">
<!-- 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 id="page-top">
<nav id="mainNav" class="navbar navbar-default navbar-fixed-top">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" 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 page-scroll" href="#page-top" style="font-size: 13px;text-align:center;"></a>
</div>
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav navbar-right">
<li>
<a class="page-scroll" href="#what">About</a>
</li>
<li>
<a class="page-scroll" href="#why">Why FOSS?</a>
</li>
<li>
<a class="page-scroll" href="#speakers">Speakers</a>
</li>
<li>
<a class="page-scroll" href="#day0">Schedule</a>
</li><li>
<a class="page-scroll" href="#sponsors">Friends & Partners</a>
</li>
<li>
<a class="page-scroll" href="#contact">Contact Us</a>
</li>
</ul>
</div>
</div>
</nav>
<header>
<div class="front"></div>
<div class="overlay"></div>
<div class="logohead">
<img src="img/logo.png" width="125px" height="125px">
</div>
<h1 style="padding-bottom: 0;">FOSSMeet '16</h1>
<div align="center" style="font-size: 176%;">
February 26-28, 2016
</div>
<div class="container">
<p class="element" style="font-size: 145%;"></p>
<div class="row text-center">
<div class="col-lg-3 col-md-3 col-sm-2 col-xs-2 text-center col-ts-12"></div>
<div class="col-lg-3 col-md-3 col-sm-4 col-xs-4 text-center col-ts-12">
<a target="_blank" href="guidelines.html" class="btn btn-efault btn-xl" style="font-color:#fff;background-color:rgb(240, 95, 64);font-family:'ubuntu';">Registration Guidelines</a>
</div>
<div class="col-lg-3 col-md-3 col-sm-4 col-xs-4 text-center col-ts-12">
<a target="_blank" href="#day0" class="page-scroll btn btn-efault btn-xl" style="font-color:#fff;background-color:rgb(240, 95, 64);font-family:'ubuntu';">Schedule is up!</a>
</div>
<div class="col-lg-3 col-md-3 col-sm-2 col-xs-2 text-center col-ts-12"></div>
</div>
</div>
</header>
<section class="bg-primary" id="what">
<div class="container row">
<div class="col-md-3 col-sm-4 col-xs-3">
<ul class="nav nav-pills nav-stacked" id="myTab">
<li class="active"><a data-toggle="tab" href="#whattop" style="color:#fff;background-color:#f05f40;">What ?</a></li>
<li><a data-toggle="tab" href="#premeet" style="color:#fff;background-color:#f05f40;">Pre-FOSSMeet Events</a></li>
<li><a data-toggle="tab" href="#expectations" style="color:#fff;background-color:#f05f40;">What to expect ?</a></li>
</ul>
</div>
<div class="col-md-9 col-sm-8 col-xs-9">
<div class="tab-content">
<div class="tab-pane active" id="whattop">
<div class="col-lg-8 col-lg-offset-2">
<h2 class="section-heading text-center">What?</h2>
<hr class="light">
<p class="text-faded" style="text-align:justify;">
FOSSMeet is the annual event on Free and Open source software,
conducted at National Institute of Technology, Calicut.
Started in 2005 as FLOSS(Free/Libre Open Source Software) Meet
with a vision to create a culture of innovation, evolution and open standards,
the meet intends to support the FOSS community, open education system and dissemination of FOSS ideology.
</p>
</div>
</div>
<div class="tab-pane" id="premeet">
<div class="col-lg-8 col-lg-offset-2">
<h2 class="section-heading text-center">Pre-FOSSMeet '16</h2>
<hr class="light">
<p class="text-faded" style="text-align:justify;">
FOSSCell, NIT Calicut along with Tathva '15 teamed up with Mozilla Firefox,
one of the largest open-source communities in the world to conduct <code>the Day of Code</code>.
A 24-hour FxOS hackathon was conducted on September 19th, 2015 to mark the Software Freedom Day.
The quality apps produced at the end of the hackathon is an outstanding example of
how collaboration can lead to world-class open source products.
</p>
</div>
</div>
<div class="tab-pane" id="expectations">
<div class="col-lg-8 col-lg-offset-2">
<h2 class="section-heading text-center">What to expect ?</h2>
<hr class="light">
<p class="text-faded" style="text-align:justify;">
The event will feature a wide range of workshops, discussions and lectures by eminent personalities.
FOSSMeet will also consist of various hands-on sessions which
would help in contributing to various open source projects.
Upholding the philosophy of FOSS, the event has talks and workshops dealing with the current trends in FOSS and open hardware, hands-on sessions to develop skills and a place to meet like minded people.
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="why">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center ">
<h2 class="section-heading">Why FOSS?</h2>
<hr class="primary">
</div>
</div>
</div>
<div class="col-ts-12 container">
<div class="row">
<div class="col-lg-3 col-md-6 col-sm-6 text-center">
<div class="service-box">
<i class="fa fa-4x fa-unlock wow bounceIn text-primary"></i>
<h3>Freedom</h3>
<p class="text-muted" style="text-align:justify;">You have absolute freedom to do whatever you want with the software. No one's locking you down from taking a look at the code, making and breaking it should you feel like. No one's stopping you from being creative with the amazing piece of software that you already have.</p>
</div>
</div>
<div class="col-lg-3 col-md-6 col-sm-6 text-center">
<div class="service-box">
<i class="fa fa-4x fa-shield wow bounceIn text-primary" data-wow-delay=".1s"></i>
<h3>Security</h3>
<p class="text-muted" style="text-align:justify;">You can either work with software that you have no idea or assurance as to how it handles your data or you can work with software that is trusted by millions worldwide. Also, the fact that the source code is available makes it less prone to security vulnerabilities, because "given enough eyeballs, all bugs are shallow".</p>
</div>
</div>
<div class="col-lg-3 col-md-6 col-sm-6 text-center">
<div class="service-box">
<i class="fa fa-4x fa-database wow bounceIn text-primary" data-wow-delay=".2s"></i>
<h3>Stability</h3>
<p class="text-muted" style="text-align:justify;">Should there be a serious bug, a fix to the bug will be released within a matter of days, whereas it might take months for commercial software vendors to do the same. For the simple reason that the vulnerabilities get fixed soon, there aren't many viruses that plague OSS.</p>
</div>
</div>
<div class="col-lg-3 col-md-6 col-sm-6 text-center">
<div class="service-box">
<i class="fa fa-4x fa-cloud wow bounceIn text-primary" data-wow-delay=".3s"></i>
<h3>Reliability</h3>
<p class="text-muted" style="text-align:justify;">Free software gets the whole community involved in working together to fix problems. Users not only report bugs, they even fix bugs and send in fixes.
Free software packages do not always compete commercially, but they still compete for a good reputation, and a program which is unsatisfactory will not achieve the popularity that developers hope for. </p>
</div>
</div>
</div>
</div>
</section>
<section id="speakers" class="page-alternate">
<div class="grid container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading">Speakers</h2>
<hr class="primary">
</div>
</div>
<div class="team-container">
<div class="row">
<div class="col-xs-6 col-sm-3 col-ts-12">
<div class="team-member">
<figure>
<img src="img/sks.png" alt="Team Member">
<figcaption>
<p class="member-name">Sasi Kumar</p>
</figcaption>
</figure>
<div class="social-btn-container">
<div class="team-socail-btn">
<span class="social-btn-box facebook-btn-container">
<a href="#" class="facebook-btn">
<i class="fa fa-facebook"></i>
</a><!-- /.facebook-btn -->
</span><!-- /.social-btn-box -->
<span class="social-btn-box twitter-btn-container">
<a href="#" class="twitter-btn">
<i class="fa fa-twitter"></i>
</a><!-- /.twitter-btn -->
</span><!-- /.social-btn-box -->
<span class="social-btn-box linkedin-btn-container">
<a href="#" class="linkedin-btn">
<i class="fa fa-linkedin"></i>
</a><!-- /.linkedin-btn -->
</span><!-- /.social-btn-box -->
<span class="social-btn-box github-btn-container">
<a href="#" class="github-btn">
<i class="fa fa-github-alt"></i>
</a><!-- /.github-btn -->
</span><!-- /.social-btn-box -->
</div><!-- /.team-socail-btn -->
</div><!-- /.social-btn-container -->
</div><!-- /.team-member -->
</div><!-- /.col-sm-4 -->
<div class="col-xs-6 col-sm-3 col-ts-12">
<div class="team-member">
<figure>
<img src="img/praveen.png" alt="Team Member">
<figcaption>
<p class="member-name">
Pirate Praveen
</p><!-- /.member-name -->
</figcaption>
</figure>
<div class="social-btn-container">
<div class="team-socail-btn">
<span class="social-btn-box facebook-btn-container">
<a href="#" class="facebook-btn">
<i class="fa fa-facebook"></i>
</a><!-- /.facebook-btn -->
</span><!-- /.social-btn-box -->
<span class="social-btn-box twitter-btn-container">
<a href="#" class="twitter-btn">
<i class="fa fa-twitter"></i>
</a><!-- /.twitter-btn -->
</span><!-- /.social-btn-box -->
<span class="social-btn-box linkedin-btn-container">
<a href="#" class="linkedin-btn">
<i class="fa fa-linkedin"></i>
</a><!-- /.linkedin-btn -->
</span><!-- /.social-btn-box -->
<span class="social-btn-box github-btn-container">
<a href="https://github.com/pravi" class="github-btn">
<i class="fa fa-github-alt"></i>
</a><!-- /.github-btn -->
</span><!-- /.social-btn-box -->
</div><!-- /.team-socail-btn -->
</div><!-- /.social-btn-container -->
</div><!-- /.team-member -->
</div><!-- /.col-sm-4 -->
<div class="col-xs-6 col-sm-3 col-ts-12">
<div class="team-member">
<figure>
<img src="img/vt.png" alt="Team Member">
<figcaption>
<p class="member-name">
Vaishali Thakkar
</p><!-- /.member-name -->
</figcaption>
</figure>
<div class="social-btn-container">
<div class="team-socail-btn">
<span class="social-btn-box facebook-btn-container">
<a href="#" class="facebook-btn">
<i class="fa fa-facebook"></i>
</a><!-- /.facebook-btn -->
</span><!-- /.social-btn-box -->
<span class="social-btn-box twitter-btn-container">
<a href="#" class="twitter-btn">
<i class="fa fa-twitter"></i>
</a><!-- /.twitter-btn -->
</span><!-- /.social-btn-box -->
<span class="social-btn-box linkedin-btn-container">
<a href="https://www.linkedin.com/in/vaishali-thakkar-411b3390" class="linkedin-btn">
<i class="fa fa-linkedin"></i>
</a><!-- /.linkedin-btn -->
</span><!-- /.social-btn-box -->
<span class="social-btn-box github-btn-container">
<a href="https://github.com/vthakkar1994" class="github-btn">
<i class="fa fa-github-alt"></i>
</a><!-- /.github-btn -->
</span><!-- /.social-btn-box -->
</div><!-- /.team-socail-btn -->
</div><!-- /.social-btn-container -->
</div><!-- /.team-member -->
</div><!-- /.col-sm-4 -->
<div class="col-xs-6 col-sm-3 col-ts-12">
<div class="team-member">
<figure>
<img src="img/noufal.png" alt="Team Member">
<figcaption>
<p class="member-name">
Noufal Ibrahim
</p><!-- /.member-name -->
</figcaption>
</figure>
<div class="social-btn-container">
<div class="team-socail-btn">
<span class="social-btn-box facebook-btn-container">
<a href="#" class="facebook-btn">
<i class="fa fa-facebook"></i>
</a><!-- /.facebook-btn -->
</span><!-- /.social-btn-box -->
<span class="social-btn-box twitter-btn-container">
<a href="https://twitter.com/noufalibrahim" class="twitter-btn">
<i class="fa fa-twitter"></i>
</a><!-- /.twitter-btn -->
</span><!-- /.social-btn-box -->
<span class="social-btn-box linkedin-btn-container">
<a href="https://www.linkedin.com/in/noufalibrahim" class="linkedin-btn">
<i class="fa fa-linkedin"></i>
</a><!-- /.linkedin-btn -->
</span><!-- /.social-btn-box -->
<span class="social-btn-box github-btn-container">
<a href="https://github.com/nibrahim" class="github-btn">
<i class="fa fa-github-alt"></i>
</a><!-- /.github-btn -->
</span><!-- /.social-btn-box -->
</div><!-- /.team-socail-btn -->
</div><!-- /.social-btn-container -->
</div><!-- /.team-member -->
</div><!-- /.col-sm-4 -->
</div><!-- /.row -->
<div class="row">
<div class="col-xs-6 col-sm-3 col-ts-12">
<div class="team-member">
<figure>
<img src="img/baiju.png" alt="Team Member">
<figcaption>
<p class="member-name">
Baiju M
</p><!-- /.member-name -->
</figcaption>
</figure>
<div class="social-btn-container">
<div class="team-socail-btn">
<span class="social-btn-box facebook-btn-container">
<a href="https://www.facebook.com/baijum" class="facebook-btn">
<i class="fa fa-facebook"></i>
</a><!-- /.facebook-btn -->
</span><!-- /.social-btn-box -->
<span class="social-btn-box twitter-btn-container">
<a href="https://twitter.com/baijum" class="twitter-btn">
<i class="fa fa-twitter"></i>
</a><!-- /.twitter-btn -->
</span><!-- /.social-btn-box -->
<span class="social-btn-box linkedin-btn-container">
<a href="#" class="linkedin-btn">
<i class="fa fa-linkedin"></i>
</a><!-- /.linkedin-btn -->
</span><!-- /.social-btn-box -->
<span class="social-btn-box github-btn-container">
<a href="https://github.com/baijum" class="github-btn">
<i class="fa fa-github-alt"></i>
</a><!-- /.github-btn -->
</span><!-- /.social-btn-box -->
</div><!-- /.team-socail-btn -->
</div><!-- /.social-btn-container -->
</div><!-- /.team-member -->
</div><!-- /.col-sm-4 -->
<div class="col-xs-6 col-sm-3 col-ts-12">
<div class="team-member">
<figure>
<img src="img/bsc.png" alt="Team Member">
<figcaption>
<p class="member-name">
Balasankar C
</p><!-- /.member-name -->
</figcaption>
</figure>
<div class="social-btn-container">
<div class="team-socail-btn">
<span class="social-btn-box facebook-btn-container">
<a href="#" class="facebook-btn">
<i class="fa fa-facebook"></i>
</a><!-- /.facebook-btn -->
</span><!-- /.social-btn-box -->
<span class="social-btn-box twitter-btn-container">
<a href="#" class="twitter-btn">
<i class="fa fa-twitter"></i>
</a><!-- /.twitter-btn -->
</span><!-- /.social-btn-box -->
<span class="social-btn-box linkedin-btn-container">
<a href="https://www.linkedin.com/in/balasankarc" class="linkedin-btn">
<i class="fa fa-linkedin"></i>
</a><!-- /.linkedin-btn -->
</span><!-- /.social-btn-box -->
<span class="social-btn-box github-btn-container">
<a href="https://github.com/balasankarc" class="github-btn">
<i class="fa fa-github-alt"></i>
</a><!-- /.github-btn -->
</span><!-- /.social-btn-box -->
</div><!-- /.team-socail-btn -->
</div><!-- /.social-btn-container -->
</div><!-- /.team-member -->
</div><!-- /.col-sm-4 -->
<div class="col-xs-6 col-sm-3 col-ts-12">
<div class="team-member">
<figure>
<img src="img/steven.png" alt="Team Member">
<figcaption>
<p class="member-name">Steven Deobald</p>
</figcaption>
</figure>
<div class="social-btn-container">
<div class="team-socail-btn">
<span class="social-btn-box facebook-btn-container">
<a href="#" class="facebook-btn">
<i class="fa fa-facebook"></i>
</a><!-- /.facebook-btn -->
</span><!-- /.social-btn-box -->
<span class="social-btn-box twitter-btn-container">
<a href="https://twitter.com/deobald" class="twitter-btn">
<i class="fa fa-twitter"></i>
</a><!-- /.twitter-btn -->
</span><!-- /.social-btn-box -->
<span class="social-btn-box linkedin-btn-container">
<a href="https://www.linkedin.com/in/deobald" class="linkedin-btn">
<i class="fa fa-linkedin"></i>
</a><!-- /.linkedin-btn -->
</span><!-- /.social-btn-box -->
<span class="social-btn-box github-btn-container">
<a href="https://github.com/deobald" class="github-btn">
<i class="fa fa-github-alt"></i>
</a><!-- /.github-btn -->
</span><!-- /.social-btn-box -->
</div><!-- /.team-socail-btn -->
</div><!-- /.social-btn-container -->
</div><!-- /.team-member -->
</div><!-- /.col-sm-4 -->
<div class="col-xs-6 col-sm-3 col-ts-12">
<div class="team-member">
<figure>
<img src="img/abhas.png" alt="Team Member">
<figcaption>
<p class="member-name">
Abhas Abhinav
</p><!-- /.member-name -->
</figcaption>
</figure>
<div class="social-btn-container">
<div class="team-socail-btn">
<span class="social-btn-box facebook-btn-container">
<a href="#" class="facebook-btn">
<i class="fa fa-facebook"></i>
</a><!-- /.facebook-btn -->
</span><!-- /.social-btn-box -->
<span class="social-btn-box twitter-btn-container">
<a href="#" class="twitter-btn">
<i class="fa fa-twitter"></i>
</a><!-- /.twitter-btn -->
</span><!-- /.social-btn-box -->
<span class="social-btn-box linkedin-btn-container">
<a href="https://www.linkedin.com/in/abhasabhinav" class="linkedin-btn">
<i class="fa fa-linkedin"></i>
</a><!-- /.linkedin-btn -->
</span><!-- /.social-btn-box -->
<span class="social-btn-box github-btn-container">
<a href="https://github.com/abhas" class="github-btn">
<i class="fa fa-github-alt"></i>
</a><!-- /.github-btn -->
</span><!-- /.social-btn-box -->
</div><!-- /.team-socail-btn -->
</div><!-- /.social-btn-container -->
</div><!-- /.team-member -->
</div><!-- /.col-sm-4 -->
</div><!-- /.row -->
<!--<div class="row">
<div class="col-sm-3">
<div class="team-member">
<figure>
<img src="img/pramode.png" alt="Team Member">
<figcaption>
<p class="member-name">
Pramode C E
</p>
</figcaption>
</figure>
<div class="social-btn-container">
<div class="team-socail-btn">
<span class="social-btn-box facebook-btn-container">
<a href="#" class="facebook-btn">
<i class="fa fa-facebook"></i>
</a>
</span>
<span class="social-btn-box twitter-btn-container">
<a href="#" class="twitter-btn">
<i class="fa fa-twitter"></i>
</a>
</span>
<span class="social-btn-box linkedin-btn-container">
<a href="#" class="linkedin-btn">
<i class="fa fa-linkedin"></i>
</a>
</span>
<span class="social-btn-box github-btn-container">
<a href="#" class="github-btn">
<i class="fa fa-github-alt"></i>
</a>
</span>
</div>
</div>
</div>
</div>
</div> --><!-- /.row -->
</div><!-- /.team-container -->
</div>
</section>
<section class="ib-container" id="ib-container">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading">Schedule</h2>
<hr class="primary">
</div>
</div>
</div>
<div>
<!---Friday schedule -->
<div id="day0" class="day0">Friday</div>
<table class="tg">
<colgroup>
<col style="width: 8%">
<col style="width: 20%">
<col style="width: 20%">
<col style="width: 22%">
</colgroup>
<thead>
<tr>
<th class="first">Time</th>
<th class="sameWidth threeColumn">Software Systems Lab</th>
<th class="sameWidth threeColumn">Network Systems Lab</th>
<th class="sameWidth threeColumn">Chanakya Hall</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align: right;">15:00 - 15:15</td>
<td class="lockdown" colspan="1" rowspan="1"> </td>
<td class="lockdown" colspan="1" rowspan="1"> </td>
<td class="talkContainer bookedSlot track-0 blue" colspan="1" rowspan="7">Registration</td>
</tr>
<tr>
<td style="text-align: right;">15:15 - 15:30</td>
<td class="lockdown" colspan="1" rowspan="1"> </td>
<td class="lockdown" colspan="1" rowspan="1"> </td>
</tr>
<tr>
<td style="text-align: right;">15:30 - 15:45</td>
<td class="lockdown" colspan="1" rowspan="1"> </td>
<td class="lockdown" colspan="1" rowspan="1"> </td>
</tr>
<tr>
<td style="text-align: right;">15:45 - 16:00</td>
<td class="lockdown" colspan="1" rowspan="1"> </td>
<td class="lockdown" colspan="1" rowspan="1"> </td>
</tr>
<tr>
<td style="text-align: right;">16:00 - 16:15</td>
<td class="lockdown" colspan="1" rowspan="1"> </td>
<td class="lockdown" colspan="1" rowspan="1"> </td>
</tr>
<tr>
<td style="text-align: right;">16:15 - 16:30</td>
<td class="lockdown" colspan="1" rowspan="1"> </td>
<td class="lockdown" colspan="1" rowspan="1"> </td>
</tr>
<tr>
<td style="text-align: right;">16:30 - 16:45</td>
<td class="lockdown" colspan="1" rowspan="1"> </td>
<td class="lockdown" colspan="1" rowspan="1"> </td>
</tr>
<tr>
<td style="text-align: right;">16:45 - 17:00</td>
<td class="lockdown" colspan="1" rowspan="1"> </td>
<td class="lockdown" colspan="1" rowspan="1"> </td>
<td class="lockdown" colspan="1" rowspan="1"> </td>
</tr>
<tr>
<td style="text-align: right;">17:00 - 17:15</td>
<td class="lockdown" colspan="1" rowspan="1"> </td>
<td class="lockdown" colspan="1" rowspan="1"> </td>
<td class="talkContainer bookedSlot track-0 yellow colspan="1" rowspan="2">Inauguration</td>
</tr>
<tr>
<td style="text-align: right;">17:15 - 17:30</td>
<td class="lockdown" colspan="1" rowspan="1"> </td>
<td class="lockdown" colspan="1" rowspan="1"> </td>
</tr>
<tr>
<td style="text-align: right;">17:30 - 17:45</td>
<td class="lockdown" colspan="1" rowspan="1"> </td>
<td class="lockdown" colspan="1" rowspan="1"> </td>
<td class="talkContainer bookedSlot track-0 blue" colspan="1" rowspan="4"><emp>Keynote</emp> <br /><br /> "Free Software in Education"<br /><br /> - <a href="http://swatantryam.blogspot.in/" target="_blank">Sasi Kumar</a></td>
</tr>
<tr>
<td style="text-align: right;">17:45 - 18:00</td>
<td class="lockdown" colspan="1" rowspan="1"> </td>
<td class="lockdown" colspan="1" rowspan="1"> </td>
</tr>
<tr>
<td style="text-align: right;">18:00 - 18:15</td>
<td class="lockdown" colspan="1" rowspan="1"> </td>
<td class="lockdown" colspan="1" rowspan="1"> </td>
</tr>
<tr>
<td style="text-align: right;">18:15 - 18:30</td>
<td class="lockdown" colspan="1" rowspan="1"> </td>
<td class="lockdown" colspan="1" rowspan="1"> </td>
</tr>
<tr>
<td style="text-align: right;">18:30 - 18:45</td>
<td class="lockdown" colspan="1" rowspan="1"> </td>
<td class="lockdown" colspan="1" rowspan="1"> </td>
<td class="lockdown" colspan="1" rowspan="1"> </td>
</tr>
<tr>
<td style="text-align: right;">18:45 - 19:00</td>
<td class="lockdown" colspan="1" rowspan="1"> </td>
<td class="lockdown" colspan="1" rowspan="1"> </td>
<td class="lockdown" colspan="1" rowspan="1"> </td>
</tr>
<tr>
<td style="text-align: right;">19:00 - 19:15</td>
<td class="talkContainer bookedSlot track-0 green" colspan="1" rowspan="4">
<a href="https://fossmeet-nitc.talkfunnel.com/2016/26-the-inform-system-for-designing-interactive-fictio" target="_blank">
The inform system for designing interactive fiction
</a>
<br /><br />
-
<a href="http://nibrahim.net.in/" target="_blank">
Noufal Ibrahim
</a>
</td>
<td class="lockdown" colspan="1" rowspan="1"> </td>
<td class="lockdown" colspan="1" rowspan="1"> </td>
</tr>
<tr>
<td style="text-align: right;">19:15 - 19:30</td>
<td class="lockdown" colspan="1" rowspan="1"> </td>
<td class="lockdown" colspan="1" rowspan="1"> </td>
</tr>
<tr>
<td style="text-align: right;">19:30 - 19:45</td>
<td class="lockdown" colspan="1" rowspan="1"> </td>
<td class="lockdown" colspan="1" rowspan="1"> </td>
</tr>
<tr>
<td style="text-align: right;">19:45 - 20:00</td>
<td class="lockdown" colspan="1" rowspan="1"> </td>
<td class="lockdown" colspan="1" rowspan="1"> </td>
</tr>
<tr>
<td style="text-align: right;">20:00 - 20:15</td>
<td class="lockdown" colspan="1" rowspan="1"> </td>
<td class="lockdown" colspan="1" rowspan="1"> </td>
<td class="lockdown" colspan="1" rowspan="1"> </td>
</tr>
<tr>
<td style="text-align: right;">20:15 - 20:30</td>
<td class="lockdown" colspan="1" rowspan="1"> </td>
<td class="lockdown" colspan="1" rowspan="1"> </td>
<td class="lockdown" colspan="1" rowspan="1"> </td>
</tr>
<tr>
<td style="text-align: right;">20:30 - 20:45</td>
<td class="lockdown" colspan="1" rowspan="1"> </td>
<td class="lockdown" colspan="1" rowspan="1"> </td>
<td class="lockdown" colspan="1" rowspan="1"> </td>
</tr>
<tr>
<td style="text-align: right;">20:45 - 21:00</td>
<td class="lockdown" colspan="1" rowspan="1"> </td>
<td class="lockdown" colspan="1" rowspan="1"> </td>
<td class="lockdown" colspan="1" rowspan="1"> </td>
</tr>
</tbody>
</table>
<br>
<div id="day1" class="day1">Saturday</div>
<!-- Saturday -->
<table class="tg">
<colgroup>
<col style="width: 8%">
<col style="width: 20%">
<col style="width: 20%">
<col style="width: 22%">
</colgroup>
<thead>
<tr>
<th class="first">Time</th>
<th class="sameWidth threeColumn">Software Systems Lab</th>
<th class="sameWidth threeColumn">Network Systems Lab</th>
<th class="sameWidth threeColumn">Chanakya Hall</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align: right;">09:00 - 09:15</td>
<td class="talkContainer bookedSlot track-0 red" colspan="1" rowspan="4">
<a href="https://fossmeet-nitc.talkfunnel.com/2016/29-what-is-a-linux-distribution" target="_blank">
What is a Linux distribution?</a><br /><br /> - <a href="https://github.com/syamgk/" target="_blank">Syam G Krishnan</a></td>
<td class="talkContainer bookedSlot track-0 yellow" colspan="1" rowspan="16">
<a href="https://fossmeet-nitc.talkfunnel.com/2016/1-golang-workshop" target="_blank">
Golang Workshop</a><br /><br /> - <a href="http://muthukadan.net/" target="_blank">Baiju Muthukadan</a><br><br><a href="http://fossmeet.in/sw_spec.php?q=BMK" target="_blank"><img src="img/set.png" width="100px" height="80px"></a></td>
<td class="talkContainer bookedSlot track-0 blue" colspan="1" rowspan="4">
<a href="https://fossmeet-nitc.talkfunnel.com/2016/27-fpga-hacking-with-free-software-tools" target="_blank">
FPGA Hacking with Free Software tools</a><br /><br /> - <a href="http://pramode.net/" target="_blank">Pramode C.E</a></td>
</tr>
<tr>
<td style="text-align: right;">09:15 - 09:30</td>
</tr>
<tr>
<td style="text-align: right;">09:30 - 09:45</td>
</tr>
<tr>
<td style="text-align: right;">09:45 - 10:00</td>
</tr>
<tr>
<td style="text-align: right;">10:00 - 10:15</td>
<td class="talkContainer bookedSlot track-0 green" colspan="1" rowspan="12">
<a href="https://fossmeet-nitc.talkfunnel.com/2016/16-y-u-no-fixing-whatsapp" target="_blank">
Y U No fixing WhatsApp?</a><br /><br /> - <a href="http://www.j4v4m4n.in/" target="_blank">Pirate Praveen</a></td>
<td class="lockdown" colspan="1" rowspan="1"> </td>
</tr>
<tr>
<td style="text-align: right;">10:15 - 10:30</td>
<td class="lockdown" colspan="1" rowspan="1"> </td>
</tr>
<tr>
<td style="text-align: right;">10:30 - 10:45</td>
<td class="talkContainer bookedSlot track-0 red" colspan="1" rowspan="4"><a href="" target="_blank">
Computer Vision / Machine Learning Using Open Source Tools</a><br /><br /> - <a href="https://in.linkedin.com/in/sumod-k-mohan-3a30127" target="_blank">Sumod Mohan</a></td>
</tr>
<tr>
<td style="text-align: right;">10:45 - 11:00</td>
</tr>
<tr>
<td style="text-align: right;">11:00 - 11:15</td>
</tr>
<tr>
<td style="text-align: right;">11:15 - 11:30</td>
</tr>
<tr>
<td style="text-align: right;">11:30 - 11:45</td>
<td class="lockdown" colspan="1" rowspan="1"> </td>
</tr>
<tr>
<td style="text-align: right;">11:45 - 12:00</td>
<td class="lockdown" colspan="1" rowspan="1"> </td>
</tr>
<tr>
<td style="text-align: right;">12:00 - 12:15</td>
<td class="talkContainer bookedSlot track-0 green" colspan="1" rowspan="4">
<a href="https://fossmeet-nitc.talkfunnel.com/2016/30-evolution-of-foss-and-some-non-foss-stack-at-hacke" target="_blank">
Evolution of FOSS (and some non-FOSS) stack at HackerRank </a><br /><br /> - <a href="https://in.linkedin.com/in/abhimanyuma" target="_blank">Abhimanyu</a>
</td>
</tr>
<tr>
<td style="text-align: right;">12:15 - 12:30</td>
</tr>
<tr>
<td style="text-align: right;">12:30 - 12:45</td>
</tr>
<tr>
<td style="text-align: right;">12:45 - 13:00</td>
</tr>
<tr>
<td style="text-align: right;">13:00 - 13:15</td>
<td class="lockdown" colspan="1" rowspan="1"> </td>
<td class="lockdown" colspan="1" rowspan="1"> </td>
<td class="lockdown" colspan="1" rowspan="1"> </td>
</tr>
<tr>
<td style="text-align: right;">13:15 - 13:30</td>
<td class="lockdown" colspan="1" rowspan="1"> </td>
<td class="lockdown" colspan="1" rowspan="1"> </td>
<td class="lockdown" colspan="1" rowspan="1"> </td>
</tr>
<tr>
<td style="text-align: right;">13:30 - 13:45</td>
<td class="lockdown" colspan="1" rowspan="1"> </td>
<td class="lockdown" colspan="1" rowspan="1"> </td>
<td class="lockdown" colspan="1" rowspan="1"> </td>
</tr>
<tr>
<td style="text-align: right;">13:45 - 14:00</td>
<td class="lockdown" colspan="1" rowspan="1"> </td>
<td class="lockdown" colspan="1" rowspan="1"> </td>
<td class="lockdown" colspan="1" rowspan="1"> </td>
</tr>
<tr>
<td style="text-align: right;">14:00 - 14:15</td>
<td class="talkContainer bookedSlot track-0 blue" colspan="1" rowspan="10">
<a href="https://fossmeet-nitc.talkfunnel.com/2016/2-intro-to-debian-packaging" target="_blank">
Intro to Debian Packaging</a><br /><br /> - <a href="http://balasankarc.in/" target="_blank">Balasankar C</a><br><br><a href="http://fossmeet.in/sw_spec.php?q=DEB" target="_blank"><img src="http://www.buildwithusa.com/_images/serv_icon_install1.png" width="100px" height="80px"></a></td>
<td class="talkContainer bookedSlot track-0 green" colspan="1" rowspan="10">
<a href="https://fossmeet-nitc.talkfunnel.com/2016/11-microhope-introduction-to-the-world-of-micro-contr" target="_blank">
MicroHOPE - Introduction to the world of Micro Controllers</a><br /><br /> - <a href="http://akshaim.github.io/" target="_blank">Akshai M</a></td>
<td class="talkContainer bookedSlot track-0 blue " colspan="1" rowspan="4">
<a href="https://fossmeet-nitc.talkfunnel.com/2016/9-getting-started-with-contributing-to-open-sources" target="_blank">
Getting Started with Contributing to Open Source</a><br /><br /> - <a href="http://tapasweni-pathak.github.io/" target="_blank"> Tapasweni Pathak</a> <br /> & <br /><a href="https://vthakkar1994.wordpress.com/" target="_blank"> Vaishali Thakkar</a></td>
</tr>
<tr>
<td style="text-align: right;">14:15 - 14:30</td>
</tr>
<tr>
<td style="text-align: right;">14:30 - 14:45</td>
</tr>
<tr>
<td style="text-align: right;">14:45 - 15:00</td>
</tr>
<tr>
<td style="text-align: right;">15:00 - 15:15</td>
<td class="lockdown" colspan="1" rowspan="1"> </td>
</tr>
<tr>
<td style="text-align: right;">15:15 - 15:30</td>
<td class="lockdown" colspan="1" rowspan="1"> </td>
</tr>
<tr>
<td style="text-align: right;">15:30 - 15:45</td>
<td class="talkContainer bookedSlot track-0 yellow" colspan="1" rowspan="2">
<a href="https://fossmeet-nitc.talkfunnel.com/2016/22-rest-apis-101-introduction" target="_blank">
ReST APIs 101 : Introduction</a><br /><br /> - <a href="https://in.linkedin.com/in/beingshahul" target="_blank">Shahul Hameed</a>
</td>
</tr>
<tr>
<td style="text-align: right;">15:45 - 16:00</td>
</tr>
<tr>
<td style="text-align: right;">16:00 - 16:15</td>
<td class="lockdown" colspan="1" rowspan="1"> </td>
</tr>
<tr>
<td style="text-align: right;">16:15 - 16:30</td>
<td class="lockdown" colspan="1" rowspan="1"> </td>
</tr>
<tr>
<td style="text-align: right;">16:30 - 16:45</td>
<td class="lockdown" colspan="1" rowspan="1"> </td>
<td class="lockdown" colspan="1" rowspan="1"> </td>
<td class="lockdown" colspan="1" rowspan="1"> </td>
</tr>
<tr>
<td style="text-align: right;">16:45 - 17:00</td>
<td class="lockdown" colspan="1" rowspan="1"> </td>
<td class="lockdown" colspan="1" rowspan="1"> </td>
<td class="lockdown" colspan="1" rowspan="1"> </td>
</tr>
<tr>
<td style="text-align: right;">17:00 - 17:15</td>
<td class="talkContainer bookedSlot track-0 yellow" colspan="1" rowspan="4">
<a href="https://fossmeet-nitc.talkfunnel.com/2016/25-introduction-to-non-linear-functions-and-fractals" target="_blank">Introduction to non linear functions and fractals</a><br /><br />-<a href="http://nibrahim.net.in/" target="_blank">Noufal Ibrahim</a>
</td>
<td class="talkContainer bookedSlot track-0 red" colspan="1" rowspan="4">
<a href="" target="_blank">Getting Started with Contributing to Mozilla</a><br /><br />-<a href="http://asd.learnlearn.in/about/" target="_blank">Akshay S Dinesh</a>
</td>
<td class="lockdown" colspan="1" rowspan="1"> </td>
</tr>
<tr>
<td style="text-align: right;">17:15 - 17:30</td>
<td class="lockdown" colspan="1" rowspan="1"> </td>
</tr>
<tr>
<td style="text-align: right;">17:30 - 17:45</td>
<td class="lockdown" colspan="1" rowspan="1"> </td>
</tr>
<tr>
<td style="text-align: right;">17:45 - 18:00</td>
<td class="lockdown" colspan="1" rowspan="1"> </td>
</tr>
<tr>
<td style="text-align: right;">18:00 - 18:15</td>
<td class="lockdown" colspan="1" rowspan="1"> </td>
<td class="lockdown" colspan="1" rowspan="1"> </td>
<td class="talkContainer bookedSlot track-0 blue" colspan="1" rowspan="4">
<a href="https://fossmeet-nitc.talkfunnel.com/2016/33-the-worst-programmer-i-ever-met" target="_blank">
The Worst Programmer I Ever Met </a><br /><br /> - <a href="https://in.linkedin.com/in/deobald" target="_blank">Steven Deobald</a></td>
</tr>
<tr>
<td style="text-align: right;">18:15 - 18:30</td>
<td class="lockdown" colspan="1" rowspan="1"> </td>
<td class="lockdown" colspan="1" rowspan="1"> </td>
</tr>
<tr>
<td style="text-align: right;">18:30 - 18:45</td>
<td class="lockdown" colspan="1" rowspan="1"> </td>