-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpast-editions.html
959 lines (891 loc) · 57.6 KB
/
past-editions.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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- ========== Meta Tags ========== -->
<meta charset="UTF-8">
<meta name="description" content="TEDx NITKSurathkal">
<meta name="keywords" content="TED, TEDx, TEDxNITKSurathkal, TEDx NITK, NITK, NITK Surathkal">
<meta name="author" content="TEDx NITK Surathkal">
<meta property="og:type" content="website">
<meta property="og:site_name" content="TEDxNITKSurathkal | Ideas Worth Spreading">
<meta property="og:title" content="TEDxNITKSurathkal | Ideas Worth Spreading">
<meta property="og:description"
content="TEDxNITKSurathkal is coming back for Edition 2021! See you on 20th February 2021.">
<meta property="og:url" content="http://www.tedxnitksurathkal.in/">
<meta property="og:image" content="http://www.tedxnitksurathkal.in/assets/img/favicon.png">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<!-- ========== Title ========== -->
<title> Past Editions | TEDxNITKSurathkal</title>
<!-- ========== Favicon Ico ========== -->
<link rel="icon" href="assets/img/favicon.png">
<!-- ========== STYLESHEETS ========== -->
<!-- Bootstrap 4 CSS -->
<link href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.0.0-beta/css/bootstrap.min.css"
rel="stylesheet">
<link href="https://cdnjs.cloudflare.com/ajax/libs/ionicons/2.0.1/css/ionicons.min.css" rel="stylesheet">
<link href="assets/css/main.css" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="assets/css/past-editions.css">
</head>
<body>
<div class="loader">
<div class="loader-outter"></div>
<div class="loader-inner" style="background-image: url('assets/img/loader.png');"></div>
</div>
<!--header start here -->
<header class="header navbar fixed-top navbar-expand-md">
<div class="container">
<a class="navbar-brand logo" href="#">
<img src="assets/img/tedx-white.png" alt="TedxNITK Surathkal" />
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#headernav"
aria-expanded="false" aria-label="Toggle navigation">
<i class="ion-navicon"></i>
</button>
<div class="collapse navbar-collapse flex-sm-row-reverse" id="headernav">
<ul class=" nav navbar-nav menu">
<li class="nav-item">
<a class="nav-link" href="/"><strong>Home</strong></a>
</li>
<li class="nav-item">
<a class="nav-link " href="/about"><strong>About</strong></a>
</li>
<li class="nav-item">
<a class="nav-link " href="/salon"><strong>Salon</strong></a>
</li>
<li class="nav-item">
<a class="nav-link" href="./intro-luck.html"><strong>Theme</strong></a>
</li>
<li class="nav-item">
<a class="nav-link active" href="/past-editions"><strong>Past Editions</strong></a>
</li>
<li class="nav-item">
<a class="nav-link" href="/talk-archives"><strong>Talk Archives</strong></a>
</li>
<li class="nav-item">
<a class="nav-link " href="/team"><strong>Team</strong></a>
</li>
<li class="nav-item">
<a class="nav-link " href="/partners"><strong>Partners</strong></a>
</li>
<li class="nav-item">
<a class="nav-link " href="/contact"><strong>Contact</strong></a>
</li>
</ul>
</div>
</div>
</header>
<!--header end here-->
<!--page title section-->
<section class="inner_cover parallax" style="background-image: url('assets/img/bg/team.jpg')">
<div class="overlay_dark"></div>
<div class="container">
<div class="row justify-content-center align-items-center">
<div class="col-12">
<div class="inner_cover_content">
<h3>
Past Editions
</h3>
</div>
</div>
</div>
<div class="breadcrumbs">
<ul>
<li><a href="/">Home</a> | </li>
<li><span>Past Editions</span></li>
</ul>
</div>
</div>
</section>
<!--page title section end-->
<!--about section -->
<section class="pt100 pb100">
<div class="container">
</div>
<div class="container">
<div class="row justify-content-center">
<!--sidebar section -->
<div class="col-12 col-md-4">
<div class="sidebar">
<div class="widget widget_categories">
<h4 class="widget-title">
Archives
</h4>
<div class="nav nav-pills flex-column" role="tablist">
<ul>
<li><a class="nav-link active" data-toggle="pill" href="#2022lost" role="tab">Hakuna Matata | 2024</a></li>
<!-- <li><a class="nav-link active" data-toggle="pill" href="#2022lost" role="tab">Lost
and Found | 2022</a></li> -->
<li><a class="nav-link" data-toggle="pill" href="#2021attention"
role="tab">Attention Trap | 2021</a></li>
<li><a class="nav-link" data-toggle="pill" href="#2021data" role="tab">Is Data the
New Oil? | 2021</a></li>
<li><a class="nav-link" data-toggle="pill" href="#2021" role="tab">Pause to
Play | 2021</a></li>
<li><a class="nav-link" data-toggle="pill" href="#2020trailblazer"
role="tab">Trailblazer | 2020</a></li>
<li><a class="nav-link" data-toggle="pill" href="#2020aatmanirbhar"
role="tab">Aatmanirbhar Bharat | 2020</a></li>
<li><a class="nav-link" data-toggle="pill" href="#2020" role="tab">Mirrors and
Windows | 2020</a></li>
<li><a class="nav-link" data-toggle="pill" href="#2019" role="tab">Scintillate |
2019</a></li>
<li><a class="nav-link" data-toggle="pill" href="#2018" role="tab">Perspectives |
2018</a></li>
<li><a class="nav-link" data-toggle="pill" href="#2016" role="tab">Ripples |
2016</a></li>
<li><a class="nav-link" data-toggle="pill" href="#2012" role="tab">Teasing Every
Dimension | 2012</a></li>
<li><a class="nav-link" data-toggle="pill" href="#2011" role="tab">Ideas Worth
Inspiring | 2011</a></li>
</ul>
</div>
</div>
</div>
</div>
<!--sidebar section end -->
<div class="col-12 col-md-8">
<div class="tab-content">
<!-- <div id="2022lost" class="tab-pane fade show active" role="tabpanel">
<div class="section_title">
<h3 class="title">
<div>Lost and Found | 2022</div>
<a href="/past-editions-archive/2022-lost/theme.html"
class="btn btn-primary btn-rounded" target="_blank">Theme
Reveal</a>
</h3>
</div>
<div class="row justify-content-center">
<div class="col-12 col-md-12">
<p>Who are we? Not as an isolated individual, but in a larger context over time,
with regard to a community, the past and future. With the dizzying rate at which
our lives are progressing, traditions remain an anchor to our identity, a legacy
providing us with a sense of belonging to something larger.
</p>
<p>Our peoples' culture is inextricably intertwined with the astounding amount of
art it has manifested. As priorities shift worldwide, commercialisation takes
over, and people struggle to keep up. This art can struggle to remain relevant
in the modern world of ever-shifting priorities. Regardless, there is always an
effort to ensure that heritage stands resilient against the battering of time
and changing society. It may simply change packaging and adapt to stay relevant
or find its niche catering to its passionate audience.
</p>
<p>TEDxNITKSurathkal brings you the latest edition of our Salon event, themed
<b>Lost
and Found</b>. Join us as our speakers widen our appreciation of our culture
and
discuss how our past continues to thrive in the world today.
</p>
</div>
</div>
<br>
<div class="section_title">
<h6 class="subtitle">
Speakers
</h6>
</div>
<section class="pb100">
<div class="row justify-content-center no-gutters" id="s2022lost">
</div>
</section>
</div>
<div id="2021attention" class="tab-pane fade show" role="tabpanel">
<div class="section_title">
<h3 class="title">
<div>Attention Trap | 2021</div>
<a href="/past-editions-archive/2021-attention/theme.html"
class="btn btn-primary btn-rounded" target="_blank">Theme
Reveal</a>
</h3>
</div> -->
<div id="2022lost" class="tab-pane fade show active" role="tabpanel">
<div class="section_title">
<h3 class="title">
<div>Hakuna Matata | 2024</div>
<a href="assets/hakunamatata/game/main/index.html"
class="btn btn-primary btn-rounded" target="_blank">Theme
Reveal</a>
</h3>
</div>
<div class="row justify-content-center">
<div class="col-12 col-md-12">
<p>In life's dance, let joy compose the rhythm, impulsiveness conduct the beat, and carefree moments choreograph a graceful masterpiece. Embrace the happiness of the unrehearsed, crafting a symphony of spontaneity on the canvas of existence.
</p>
<p>Embark on a captivating odyssey into the enchanting realm of "Hakuna Matata," where each syllable orchestrates a symphony of carefree living. Journey through linguistic origins and unravel the profound philosophical underpinnings, discovering how this timeless mantra has evolved into a universal symbol of positivity. Delight in the psychological dimensions of embracing a worry-free mindset, skillfully navigating life's ebbs and flows. This celebration of the symphony of existence invites you to weave "Hakuna Matata" into daily life, transforming each moment into a harmonious note. Immerse in the vibrant spirit, where joy and wisdom converge, illuminating a path adorned with carefree serenity.
</p>
<p>TEDxNITKSurathkal brings you the latest edition of our Ted event, themed
<b>Hakuna Matata</b>. Join us as our speakers widen our appreciation of our culture
and
discuss how our past continues to thrive in the world today.
</p>
</div>
</div>
<br>
<div class="section_title">
<h6 class="subtitle">
Speakers
</h6>
</div>
<section class="pb100">
<div class="row justify-content-center no-gutters" id="speakers"> </div>
</section>
</div>
<div id="2021attention" class="tab-pane fade show" role="tabpanel">
<div class="section_title">
<h3 class="title">
<div>Attention Trap | 2021</div>
<a href="/past-editions-archive/2021-attention/theme.html"
class="btn btn-primary btn-rounded" target="_blank">Theme
Reveal</a>
</h3>
</div>
<div class="row justify-content-center">
<div class="col-12 col-md-12">
<p>Ever wanted a break so you decide to scroll through Instagram reels for “a minute
or two”, only to look
up to find that hours have passed? How many times have you sat with intent,
trying to concentrate on
finishing a task, but no, it simply refuses to maintain your attention?
</p>
<p>This is the 21st Century where attention spans have become yet another profitable
commodity. Surprised?
The rise of social media and the 'attention economy' has left us with the
concentration span of a
goldfish. How is the marketing and design field achieving this impressive feat
of ensnaring our minds?
How do people in creative areas cope? Are they adapting to the new world or
losing ground? Most
importantly, what does this mean for each individual and our mental well-being?
</p>
<p>TEDxNITKSurathkal brings you the latest edition of our Salon event, themed
<b>'Attention Trap'</b>.
Join us as our speakers shed light on the various dimensions involved and answer
the elusive question:
Is the decrease in attention span the new reality we must accept or fight
against?
</p>
</div>
</div>
<br>
<div class="section_title">
<h6 class="subtitle">
Speakers
</h6>
</div>
<section class="pb100">
<div class="row justify-content-center no-gutters" id="s2021attention">
<img src="" alt="">
</div>
</section>
</div>
<div id="2021data" class="tab-pane fade show" role="tabpanel">
<div class="section_title">
<h3 class="title">
<div>Is Data the New Oil? | 2021</div>
<a href="/past-editions-archive/2021-data/theme.html"
class="btn btn-primary btn-rounded" target="_blank">Theme
Reveal</a>
</h3>
</div>
<div class="row justify-content-center">
<div class="col-12 col-md-12">
<p>Long before the global pandemic threw us into a virtual way
of living, our world was being shaped by the internet
bringing with it, a tremendous amount of data that's being
generated and exchanged at an increasing rate.
</p>
<p>From social media to international policies, the
ever-evolving interaction between big data, algorithms and
machine learning is opening up possibilities we couldn't
have fathomed before. Along with its untapped potential,
data also brings with it an assortment of worrisome
concerns. When utilizing data encroaches into people's
privacy and the internet becomes intertwined with human
liberty - a big price to pay, where do we draw the line?
</p>
<p>TEDxNITKSurathkal brings you the latest edition of our Salon
event, themed <b>Is Data the New Oil?</b>. Join us to explore the
diverse speaker perspectives. Delve into cutting-edge
technology, calculations behind framing internet policies,
and the data hurdles faced on a global scale.
</p>
</div>
</div>
<br>
<div class="section_title">
<h6 class="subtitle">
Speakers
</h6>
</div>
<section class="pb100">
<div class="row justify-content-center no-gutters" id="s2021data">
</div>
</section>
</div>
<div id="2021" class="tab-pane fade show" role="tabpanel">
<div class="section_title">
<h3 class="title">
<div>Pause to Play | 2021</div>
<a href="https://www.youtube.com/playlist?list=PLsRNoUx8w3rNuzxRnUKQ92evp7lnEIvwk"
class="btn btn-primary btn-rounded" target="_blank">Watch videos</a>
<a href="/past-editions-archive/2021/theme.html" class="btn btn-primary btn-rounded"
target="_blank">Theme
Reveal</a>
</h3>
</div>
<div class="row justify-content-center">
<div class="col-12 col-md-12">
<p>A "Pause" delivers two choices: continue along the same path or carve
out a new one. Pause to reflect on your decisions. Pause to continue playing the
game of Life. Pauses can be self-imposed or obstacles meant to teach us lessons
along the way. In these Pauses, let's strengthen our skills to adapt and evolve.
"Pause to Play" promotes the idea of pausing to walk away stronger with a new
outlook on Life.
</p>
<p>
TEDxNITKSurathkal 2021 provides a platform for
self-introspection, through narratives with the right combination of pause and
play. We hope to motivate you to continue the hustle with experience and
knowledge derived from our speakers' journeys.
</p>
</div>
</div>
<br>
<div class="section_title">
<h6 class="subtitle">
Speakers
</h6>
</div>
<section class="pb100">
<div class="row justify-content-center no-gutters" id="s2021">
</div>
</section>
</div>
<div id="2020trailblazer" class="tab-pane fade show" role="tabpanel">
<div class="section_title">
<h3 class="title">
<div>Trailblazer | 2020</div>
<a href="https://www.youtube.com/playlist?list=PLjAOyTFsPsp8IeJIOhJh9W6y7YSfLDl9_"
class="btn btn-primary btn-rounded" target="_blank">Watch videos</a>
<a href="/past-editions-archive/2020-trailblazer/theme.html"
class="btn btn-primary btn-rounded" target="_blank">Theme
Reveal</a>
</h3>
</div>
<div class="row justify-content-center">
<div class="col-12 col-md-12">
<p>We often find ourselves walking predefined trails with the
promise of what is socially defined as success.
Trails surrounded by walls of preconceived notions
and expectations that limits our perspective and muffles other inspiration.
</p>
<p>Seldom do we find the courage to demolish these walls and blaze our own trail.
To walk down roads few dare to follow, often dark and unexplored only to be
the ones who create the light at the end of the tunnel.
</p>
<p>TEDx Salon presents Trailblazer, where we shine the limelight on
students like us, but those who heard a different calling and had
the courage to listen. Join us as we light up and navigate these
unconventional trails and be part of a whole new generation of
Trailblazers, the most daring one yet.
</p>
</div>
</div>
<br>
<div class="section_title">
<h6 class="subtitle">
Speakers
</h6>
</div>
<section class="pb100">
<div class="row justify-content-center no-gutters" id="s2020trailblazer">
</div>
</section>
</div>
<div id="2020aatmanirbhar" class="tab-pane fade show" role="tabpanel">
<div class="section_title">
<h3 class="title">
<div>Aatmanirbhar Bharat | 2020</div>
<a href="https://www.youtube.com/playlist?list=PLjAOyTFsPsp__dxQUy4v5d99tEcRcc-uQ"
class="btn btn-primary btn-rounded" target="_blank">Watch videos</a>
<a href="/past-editions-archive/2020/theme.html" class="btn btn-primary btn-rounded"
target="_blank">Theme
Reveal</a>
</h3>
</div>
<div class="row justify-content-center">
<div class="col-12 col-md-12">
<p>
Aatmanirbhar or self-reliance is key to an individual's success. There is no one
there for you like yourself. This concept came into being in the form of the
'Atmanirbhar Bharat Abhiyan' or 'Self-Reliant India Mission' during the
announcement of the coronavirus pandemic related economic package on 12 May
2020. According to Prime Minister Narendra Modi, Aatmanirbhar Bharat's simplest
meaning is India should reduce its dependence on other nations to the lowest
possible levels. Self-reliant India is all about strong enterprises, generating
employment and empowering people to come out and find solutions.
</p>
<p>
TEDxNITKSurathkal presents to you our very first salon. Our theme 'Aatmanirbhar
Bharat' is committed to bringing to the spotlight individuals from a variety of
backgrounds such as top-notch journalists, budding entrepreneurs and economists,
thus bringing in a wide range of ideas and solutions. Through this salon, the
students of NITK armed with the values of self-reliance explore how they can put
their finely honed skills to use as successful entrepreneurs, developers and
designers leading India into a new age of self-reliance.
</p>
</div>
</div>
<br>
<div class="section_title">
<h6 class="subtitle">
Speakers
</h6>
</div>
<section class="pb100">
<div class="row justify-content-center no-gutters" id="s2020aatmanirbhar">
</div>
</section>
</div>
<div id="2020" class="tab-pane fade show" role="tabpanel">
<div class="section_title">
<h3 class="title">
<div>Mirrors and Windows | 2020</div>
<a href="https://www.youtube.com/watch?v=MBWoEmsrYz8&list=PLsRNoUx8w3rN0tZEzcdnD_42kWclx2pYa"
class="btn btn-primary btn-rounded" target="_blank">Watch videos</a>
</h3>
</div>
<div class="row justify-content-center">
<div class="col-12 col-md-12">
<p>
If life is seen to be an endless maze, every wall is either a mirror or a
window. As individuals, we introspect and
mould the rays of thoughts in our minds into windows of opportunities.
</p>
<p>
The theme, <strong>Mirrors and Windows</strong> highlights the necessity to see
one’s self as a reflection of another's experience and
to gain insight and perspective of an individuals choices.
</p>
<p>
In today's fast paced world, opportunities are at large and self-reflection is
seen to be the key to unlocking one’s
potential. Sharing, listening or in other words ‘mirroring’ experiences will
help us break free of our shells and find
solutions to the impending problems our world faces.
</p>
<p>
Once inspired, we learn to choose whether to be the mirror or the window. We
learn to take ideas and structure them to
form an opportunity, windows that take us beyond. Ardent individuals fighting
odds and defying norms will instill an
urge to move relentlessly. Windows of opportunities will come knocking. Will you
be prepared to answer?
</p>
</div>
</div>
<br>
<div class="section_title">
<h6 class="subtitle">
Speakers
</h6>
</div>
<section class="pb100">
<div class="row justify-content-center no-gutters" id="s2020">
</div>
</section>
</div>
<div id="2019" class="tab-pane fade show" role="tabpanel">
<div class="section_title">
<h3 class="title">
Scintillate | 2019 <a
href="https://www.youtube.com/watch?v=oUj1Wc4t6X8&list=PLsRNoUx8w3rMieWOTC_cZrvPcQCJjehKE"
class="btn btn-primary btn-rounded" target="_blank">Watch videos</a>
</h3>
</div>
<div class="row justify-content-center">
<div class="col-12 col-md-12">
<p>
Our world is progressing towards an exciting future, surpassing challenges that
were once thought to be impossible to overcome. This drives us to the promise of
coming up with new ideas and better solutions to the problems we continue to
face even today. To SCINTILLATE is to emit flashes of light; sparkles. Sometimes
a spark is all it takes to set minds on the path towards revolutionary ideas.
Come witness the fireworks, as TEDxNITKSurathkal scintillates on..
</p>
</div>
</div>
<br>
<div class="section_title">
<h6 class="subtitle">
Speakers
</h6>
</div>
<section class="pb100">
<div class="row justify-content-center no-gutters" id="s2019">
</div>
</section>
</div>
<div id="2018" class="tab-pane fade" role="tabpanel">
<div class="section_title">
<h3 class="title">
Perspectives | 2018 <a
href="https://m.youtube.com/playlist?list=PLsRNoUx8w3rPsxKVEbLIr0aEcZTCsvp-T"
class="btn btn-primary btn-rounded" target="_blank">Watch videos</a>
</h3>
</div>
<div class="row justify-content-center">
<div class="col-12 col-md-12">
<p>
Today’s youth are the citizens of the future. Their education is a determining
factor in the track of our world’s progress. Traditional education has
conditioned us to perceive problems in limited dimensions. This approach has
interpolated to how we live our lives. However, there is a need to step back and
look at everything from a fresh perspective. Incorporation of varied
perspectives allows innovation to thrive, which highlights the essence of our
theme – to change the manner in which our community perceives systems after
being exposed to new and innovative ways of thinking through our speakers.
</p>
</div>
</div>
<br>
<div class="section_title">
<h6 class="subtitle">
Speakers
</h6>
</div>
<section class="pb100">
<div class="row justify-content-center no-gutters" id="s2018">
</div>
</section>
</div>
<div id="2016" class="tab-pane fade" role="tabpanel">
<div class="section_title">
<h3 class="title">
Ripples | 2016 <a
href="2016 https://m.youtube.com/playlist?list=PLsRNoUx8w3rPM1DISGNPBYKbT9IaPFlMC"
class="btn btn-primary btn-rounded" target="_blank">Watch videos</a>
</h3>
</div>
<div class="row justify-content-center">
<div class="col-12 col-md-12">
<p>
A ripple is characterised by a small wave or a series of waves. Ideas are
synonymous to these ripples, starting at an initial point, moving outwards
incrementally. TEDxNITKSurathkal 2016 facilitated the creation of these
synchronistic thought waves through a series of eight exceptional talks
discussing everything from cutting edge technology to exotic art forms,
breakthroughs in research to education and travel, each a class apart from the
other. With a diverse speaker list consisting of talented and renowned
professionals from across the country, the event operating at the intersection
of technology, liberal arts and social entrepreneurship served the true purpose
of ideation, which is at the heart of every TEDx talk.
</p>
</div>
</div>
<br>
<div class="section_title">
<h3 class="subtitle">
Speakers
</h3>
</div>
<section class="pb100">
<div class="row justify-content-center no-gutters" id="s2016">
</div>
</section>
</div>
<div id="2012" class="tab-pane fade">
<div class="section_title">
<h3 class="title">
Teasing Every Dimension | 2012 <a
href="https://m.youtube.com/playlist?list=PLsRNoUx8w3rNtiyLoZ3vrM05lh5GG4Z3Y"
class="btn btn-primary btn-rounded" target="_blank">Watch videos</a>
</h3>
</div>
<div class="row justify-content-center">
<div class="col-12 col-md-12">
<p>
India has long been regarded as an exquisite melting pot of cultures, a fusion
of the avant-garde and the traditional, and an amalgamation of diverse thoughts,
beliefs and perspectives. TEDx NITK Surathkal 2012 set out to find voices,
thoughts and ideas worth sharing in this diverse community, with the aim of
creating an experience unlike no other. 28th October 2012 witnessed a series of
talks teasing every dimension of thought, encompassing a plethora of fields
including science and technology, entrepreneurship, empowerment, social
initiative, cinema, television and fine arts. The event boasted an impressive
speaker list catering to a primarily young audience, inspiring and ideating in
the spirit of TED.
</p>
</div>
</div>
<br>
<div class="section_title">
<h3 class="title">
Speakers
</h3>
</div>
<section class="pb100">
<div class="row justify-content-center no-gutters" id="s2012">
</div>
</section>
</div>
<div id="2011" class="tab-pane fade">
<div class="section_title">
<h3 class="title">
Ideas Worth Inspiring | 2011 <a
href="https://m.youtube.com/playlist?list=PL9BA191734442880D"
class="btn btn-primary btn-rounded" target="_blank">Watch videos</a>
</h3>
</div>
<div class="row justify-content-center">
<div class="col-12 col-md-12">
<p>
India has long been regarded as an exquisite melting pot of cultures, a fusion
of the avant-garde and the traditional, and an amalgamation of diverse thoughts,
beliefs and perspectives. TEDx NITK Surathkal 2012 set out to find voices,
thoughts and ideas worth sharing in this diverse community, with the aim of
creating an experience unlike no other. 28th October 2012 witnessed a series of
talks teasing every dimension of thought, encompassing a plethora of fields
including science and technology, entrepreneurship, empowerment, social
initiative, cinema, television and fine arts. The event boasted an impressive
speaker list catering to a primarily young audience, inspiring and ideating in
the spirit of TED.
</p>
</div>
</div>
<br>
<div class="section_title">
<h3 class="title">
Speakers
</h3>
</div>
<section class="pb100">
<div class="row justify-content-center no-gutters" id="s2011">
</div>
</section>
</div>
</div>
</div>
</div>
</div>
</section>
<!--footer start -->
<footer>
<div class="container">
<div class="row justify-content-center">
<div class="col-md-4 col-12">
<div class="footer_box">
<div class="footer_header">
<div class="footer_logo">
<img src="assets/img/tedx-white.png" alt="evento">
</div>
</div>
<div class="footer_box_body">
<p>
Fostered by the vision of serving the student community with the most innovative and
inspiring ideas.
</p>
</div>
</div>
</div>
<div class="col-12 col-md-4">
<div class="footer_box">
<div class="footer_header">
<h4 class="footer_title">
Spread the LOVE
</h4>
</div>
<div class="footer_box_body">
<p>
We're on your favourite social media networks! Follow us on:
</p>
<ul class="footer_social">
<li>
<a href="https://www.facebook.com/tedxnitksurathkal2018/"><i
class="ion-social-facebook"></i></a>
</li>
<li>
<a href="https://www.instagram.com/tedxnitksurathkal/?hl=en"><i
class="ion-social-instagram"></i></a>
</li>
</ul>
</div>
</div>
</div>
<div class="col-12 col-md-4">
<div class="footer_box">
<div class="footer_header">
<h4 class="footer_title">
gallery
</h4>
</div>
<div class="footer_box_body">
<ul class="instagram_list">
<li>
<a href="assets/img/footer/1.jpg">
<img src="assets/img/footer/1.jpg" alt="TedXNITK">
</a>
</li>
<li>
<a href="assets/img/footer/2.jpg">
<img src="assets/img/footer/2.jpg" alt="TedXNITK">
</a>
</li>
<li>
<a href="assets/img/footer/3.jpg">
<img src="assets/img/footer/3.jpg" alt="TedXNITK">
</a>
</li>
<li>
<a href="assets/img/footer/4.jpg">
<img src="assets/img/footer/4.jpg" alt="TedXNITK">
</a>
</li>
<li>
<a href="assets/img/footer/5.jpg">
<img src="assets/img/footer/5.jpg" alt="TedXNITK">
</a>
</li>
<li>
<a href="assets/img/footer/6.jpg">
<img src="assets/img/footer/6.jpg" alt="TedXNITK">
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</footer>
<div class="copyright_footer">
<div class="container">
<div class="row justify-content-center">
<div class="col-md-6 col-12">
<p>
Copyright ©
<script>document.write(new Date().getFullYear());</script> All rights reserved
|
Made with <i class="ion-heart" aria-hidden="true"></i> by TEDxNITKSurathkal & <a
href="https://colorlib.com" target="_blank">Colorlib</a>
|
This independent TEDx event is operated under license from <a href="https://www.ted.com"
target="_blank">TED</a>.
</p>
</div>
<div class="col-12 col-md-6 ">
<p style="text-align: right;">
<a href="#" onclick="backtotop()">Back to Top <i class="ion-arrow-up-c"
aria-hidden="true"></i></a>
</p>
</div>
</div>
</div>
</div>
<!--footer end -->
<!-- ========== SCRIPTS ========== -->
<!-- jquery -->
<script src="https://code.jquery.com/jquery-3.5.1.min.js"
integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
<!-- bootstrap -->
<script src="https://unpkg.com/@popperjs/core@2"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.0.0-beta/js/bootstrap.min.js"></script>
<!-- Custom js -->
<!-- Speakers are loaded from this file -->
<script src="assets/js/past-editions.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery.lazy/1.7.9/jquery.lazy.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery.lazy/1.7.9/jquery.lazy.plugins.min.js"></script>
<script src="assets/js/main.js"></script>
<script>
for (var x = 0; x < speakers2020aatmanirbhar.length; x++) {
$("<div class=\"col-md-6 col-sm-10\"><div class=\"speaker_box\"><div class=\"speaker_img\"><img class=\"lazy\" data-src=\"" + speakers2020aatmanirbhar[x]["image"] + "\"><div class=\"info_box\"><h5 class=\"name\">" + speakers2020aatmanirbhar[x]["name"] + "</h5><p class=\"position\">" + speakers2020aatmanirbhar[x]["designation"] + "</p></div></div><div class=\"speaker_social\"><p></p></div></div></div>").appendTo("#s2020aatmanirbhar")
}
for (var x = 0; x < speakers2021.length; x++) {
$("<div class=\"col-md-6 col-sm-10\"><div class=\"speaker_box\"><div class=\"speaker_img\"><img class=\"lazy\" data-src=\"" + speakers2021[x]["image"] + "\"><div class=\"info_box\"><h5 class=\"name\">" + speakers2021[x]["name"] + "</h5><p class=\"position\">" + speakers2021[x]["designation"] + "</p></div></div><div class=\"speaker_social\"><p></p></div></div></div>").appendTo("#s2021")
}
for (var x = 0; x < speakers2020trailblazer.length; x++) {
$("<div class=\"col-md-6 col-sm-10\"><div class=\"speaker_box\"><div class=\"speaker_img\"><img class=\"lazy\" data-src=\"" + speakers2020trailblazer[x]["image"] + "\"><div class=\"info_box\"><h5 class=\"name\">" + speakers2020trailblazer[x]["name"] + "</h5><p class=\"position\">" + speakers2020trailblazer[x]["designation"] + "</p></div></div><div class=\"speaker_social\"><p></p></div></div></div>").appendTo("#s2020trailblazer")
}
for (var x = 0; x < speakers2020aatmanirbhar.length; x++) {
$("<div class=\"col-md-6 col-sm-10\"><div class=\"speaker_box\"><div class=\"speaker_img\"><img class=\"lazy\" data-src=\"" + speakers2020aatmanirbhar[x]["image"] + "\"><div class=\"info_box\"><h5 class=\"name\">" + speakers2020aatmanirbhar[x]["name"] + "</h5><p class=\"position\">" + speakers2020aatmanirbhar[x]["designation"] + "</p></div></div><div class=\"speaker_social\"><p></p></div></div></div>").appendTo("#s2020aatmanirbhar")
}
for (var x = 0; x < speakers2020.length; x++) {
$("<div class=\"col-md-6 col-sm-10\"><div class=\"speaker_box\"><div class=\"speaker_img\"><img class=\"lazy\" data-src=\"" + speakers2020[x]["image"] + "\"><div class=\"info_box\"><h5 class=\"name\">" + speakers2020[x]["name"] + "</h5><p class=\"position\">" + speakers2020[x]["designation"] + "</p></div></div><div class=\"speaker_social\"><p></p></div></div></div>").appendTo("#s2020")
}
for (var x = 0; x < speakers2019.length; x++) {
$("<div class=\"col-md-6 col-sm-10\"><div class=\"speaker_box\"><div class=\"speaker_img\"><img class=\"lazy\" data-src=\"" + speakers2019[x]["image"] + "\"><div class=\"info_box\"><h5 class=\"name\">" + speakers2019[x]["name"] + "</h5><p class=\"position\">" + speakers2019[x]["designation"] + "</p></div></div><div class=\"speaker_social\"><p></p></div></div></div>").appendTo("#s2019")
}
for (var x = 0; x < speakers2011.length; x++) {
$("<div class=\"col-md-6 col-sm-10\"><div class=\"speaker_box\"><div class=\"speaker_img\"><img class=\"lazy\" data-src=\"" + speakers2011[x]["image"] + "\"><div class=\"info_box\"><h5 class=\"name\">" + speakers2011[x]["name"] + "</h5><p class=\"position\">" + speakers2011[x]["designation"] + "</p></div></div><div class=\"speaker_social\"><p></p></div></div></div>").appendTo("#s2011")
}
for (var x = 0; x < speakers2012.length; x++) {
$("<div class=\"col-md-6 col-sm-10\"><div class=\"speaker_box\"><div class=\"speaker_img\"><img class=\"lazy\" data-src=\"" + speakers2012[x]["image"] + "\"><div class=\"info_box\"><h5 class=\"name\">" + speakers2012[x]["name"] + "</h5><p class=\"position\">" + speakers2012[x]["designation"] + "</p></div></div><div class=\"speaker_social\"><p></p></div></div></div>").appendTo("#s2012")
}
for (var x = 0; x < speakers2016.length; x++) {
$("<div class=\"col-md-6 col-sm-10\"><div class=\"speaker_box\"><div class=\"speaker_img\"><img class=\"lazy\" data-src=\"" + speakers2016[x]["image"] + "\"><div class=\"info_box\"><h5 class=\"name\">" + speakers2016[x]["name"] + "</h5><p class=\"position\">" + speakers2016[x]["designation"] + "</p></div></div><div class=\"speaker_social\"><p></p></div></div></div>").appendTo("#s2016")
}
for (var x = 0; x < speakers2018.length; x++) {
$("<div class=\"col-md-6 col-sm-10\"><div class=\"speaker_box\"><div class=\"speaker_img\"><img class=\"lazy\" data-src=\"" + speakers2018[x]["image"] + "\"><div class=\"info_box\"><h5 class=\"name\">" + speakers2018[x]["name"] + "</h5><p class=\"position\">" + speakers2018[x]["designation"] + "</p></div></div><div class=\"speaker_social\"><p></p></div></div></div>").appendTo("#s2018")
}
</script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-110715968-3"></script>
<script src="assets/js/speakers.js"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'UA-110715968-3');
function backtotop() {
event.preventDefault();
$('html, body').animate({
scrollTop: 0
}, "slow");
return false;
}
let n_speakers = speakers.length;
for(let i = 0; i < n_speakers; i++){
let spk = speakers[i];
let currentTime = new Date();
let show_time = new Date(spk.show_after);
if (currentTime.getTime() < show_time.getTime())
continue;
let modal_id = `spk-${i}`;
let html=`
<div class="col-md-4 col-sm-8">
<div class="speaker_box">
<div class="speaker_img" data-toggle="modal" data-target="#${modal_id}">
<img class="lazy" data-src="./assets/img/speakers/${spk.img_link}" alt=${spk.name}>
<!--
<div class="info_box">
<h5 class="name">${spk.name}</h5>
<p class="position">${spk.title}</p>
</div>
--->
</div>
<div class="speaker_social">
<ul></ul>
</div>
</div>
</div>`;
let description = "<p>" + spk.description.join("</p><p>") + "</p>"
let modalHtml=`
<div class="modal" id=${modal_id} style="top: 15%;">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header text-center" style="background-color: #000;">
<h3 class="modal-title text-center" style="color:#ff0000; width: 100%;">${spk.name}</h3>
<button type="button" class="close" data-dismiss="modal" style="color: #fff;">×</button>
</div>
<div class="modal-body">
<h5 style="width:100%; font-weight: 700;" class="text-center">${spk.title}</h5>
${description}
</div>
</div>
</div>
</div>`;
$('#speakers').append(html);
$('#speaker-modals').append(modalHtml);
}
</script>
</body>
</html>