-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathachievements.html
More file actions
562 lines (500 loc) · 23.3 KB
/
achievements.html
File metadata and controls
562 lines (500 loc) · 23.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
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
<!DOCTYPE html>
<html lang="en">
<style>
@media (max-width:999px) {
.drop-down-menu {
display: none;
}
}
header {
background-color: #404040;
padding: 20px;
text-align: center;
font-size: 35px;
color: white;
}
.navbar {
font-family: montserrat;
border-radius: 0;
opacity: 1;
background-color: black !important;
}
.navbar li a {
color: #d5d5d5 !important;
font-size: 17px;
padding: 18px !important;
transition: .3s;
}
.navbar-nav li a:hover {
color: white !important;
}
.navbar-nav li.active a {
color: #fff !important;
background-color: #29292c !important;
}
p {
color: black;
}
</style>
<head>
<title>Achievements | IEEE IIT Mandi</title>
<link rel="icon" href="img/Blog_Pic.jpg" type="image">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link href="https://fonts.googleapis.com/css?family=Montserrat" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Lato:300,400,500|Open+Sans" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="css/awards.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.7.2/css/all.css"
integrity="sha384-fnmOCqbTlWIlj8LyTjo7mOUStjsKC4pOpQbqyi7RrhN7udi9RwhKkMHpvLbHG9Sr" crossorigin="anonymous">
<script>
jQuery(document).ready(function () {
var $window = $(window);
var lastWindowWidth = $window.width();
$window.resize(function () {
var windowWidth = $window.width();
if (lastWindowWidth !== windowWidth) {
lastWindowWidth = windowWidth;
}
setTimeout(function () {
location.reload();
console.log("delay");
}, 100);
});
if (lastWindowWidth < 1000) {
jQuery('.carousel[data-type=""] .item').each(function () {
var next = jQuery(this).next();
if (!next.length) {
next = jQuery(this).siblings(':first');
}
next.children(':first-child').clone().appendTo(jQuery(this));
for (var i = 0; i < 2; i++) {
next = next.next();
if (!next.length) {
next = jQuery(this).siblings(':first');
}
next.children(':first-child').clone().appendTo($(this));
}
});
} else {
jQuery('.carousel[data-type="multi"] .item').each(function () {
var next = jQuery(this).next();
if (!next.length) {
next = jQuery(this).siblings(':first');
}
next.children(':first-child').clone().appendTo(jQuery(this));
for (var i = 0; i < 2; i++) {
next = next.next();
if (!next.length) {
next = jQuery(this).siblings(':first');
}
next.children(':first-child').clone().appendTo($(this));
}
});
}
});
</script>
</head>
<body style="background-color: white">
<!-- NAVBAR STARTS-->
<nav class="navbar navbar-inverse navbar-fixed-top">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#myNavbar">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="index.html">
<img src="img/ieee mb white png.png" alt="Logo"
style="height: 40px; transform: translate(5px,-10px);" id="logo">
</a>
</div>
<div class="collapse navbar-collapse" id="myNavbar">
<ul class="nav navbar-nav navbar-right">
<li><a href="index.html">Home</a></li>
<li><a href="index.html#resource">Resources</a></li>
<li><a href="achievements.html">Achievements</a></li>
<li><a href="index.html#membershere">Executive Council</a></li>
<li class="drop-down" id="events-drop-down"><a>Events  <i class="fa fa-caret-down"></i></a>
<ul id="ul-drop-down">
<li><a href="upcomingEvents.html">Upcoming Events</a></li>
<li><a href="events2022.html">Events 2022</a></li>
<li><a href="events2021.html">Events 2021</a></li>
<li><a href="events2020.html">Events 2020</a></li>
<li><a href="events2019.html">Events 2019</a></li>
</ul>
</li>
<li><a href="index.html#gallery">Gallery</a></li>
<li><a href="index.html#contact_us">Contact</a></li>
</ul>
</div>
</div>
</nav>
<script type="text/javascript">
$(document).ready(function () {
// Transition effect for navbar
$(window).scroll(function () {
// checks if window is scrolled more than 500px, adds/removes solid class
if ($(this).scrollTop() > $(window).height()) {
$('.navbar').addClass('solid');
} else {
$('.navbar').removeClass('solid');
}
});
});
if ($('.nav-menu').length) {
var $mobile_nav = $('.nav-menu').clone().prop({
class: 'mobile-nav d-lg-none'
});
$('body').append($mobile_nav);
$('body').prepend('<button type="button" class="mobile-nav-toggle d-lg-none"><i class="icofont-navigation-menu"></i></button>');
$('body').append('<div class="mobile-nav-overly"></div>');
$(document).on('click', '.mobile-nav-toggle', function (e) {
$('body').toggleClass('mobile-nav-active');
$('.mobile-nav-toggle i').toggleClass('icofont-navigation-menu icofont-close');
$('.mobile-nav-overly').toggle();
});
$(document).on('click', '.mobile-nav .drop-down > a', function (e) {
e.preventDefault();
$(this).next().slideToggle(300);
$(this).parent().toggleClass('active');
});
$(document).click(function (e) {
var container = $(".mobile-nav, .mobile-nav-toggle");
if (!container.is(e.target) && container.has(e.target).length === 0) {
if ($('body').hasClass('mobile-nav-active')) {
$('body').removeClass('mobile-nav-active');
$('.mobile-nav-toggle i').toggleClass('icofont-navigation-menu icofont-close');
$('.mobile-nav-overly').fadeOut();
}
}
});
} else if ($(".mobile-nav, .mobile-nav-toggle").length) {
$(".mobile-nav, .mobile-nav-toggle").hide();
}
</script>
<!-- NAVBAR ENDS -->
<br><br>
<div class="jumbotron" id="vanta-bg">
<h1 style="color: rgb(255, 255, 255); text-align: center; font-family: 'Vidaloka', serif;">Achievements</h1>
</div>
<br><br>
<div class="container" style="padding-top: 40px;">
<div class="row">
<div class="col-lg-4 col-md-6 col-xs-12 col-sm-6">
<div class="blog-item">
<div class="descr">
<div class="icon">
<i class="fas fa-award"></i>
</div>
<h3 class="title">
Outstanding Student Volunteer Award 2021
</h3>
<p>Mr. Rajesh M. Pindoriya was honoured with Outstanding Student Volunteer Award 2021 for his
diligent and remarkable efforts on behalf of the IEEE Student Branch at IIT Mandi. </p>
</div>
<div class="meta-tags">
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-xs-12 col-sm-6">
<div class="blog-item">
<div class="descr">
<div class="icon">
<i class="fas fa-award"></i>
</div>
<h3 class="title">
IAS CMD Humanitarian Contest 2021
</h3>
<p>For their project "Autotuned Ventilator: A Contactless Treatment Machine, particularly for
COVID-19 patients," Rishi Kant Thakur, Dr. Rajesh Pindoriya, and Dr. Rajeev Kumar bagged
second position.</p>
</div>
<div class="meta-tags">
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-xs-12 col-sm-6">
<div class="blog-item">
<div class="descr">
<div class="icon">
<i class="fas fa-award"></i>
</div>
<h3 class="title">
IAS CMD Outstanding Chapter Award, 2021
</h3>
<p>Under the guidance of Sachin Chauhan, the Indian Institute of Technology Mandi (IITM) Joint
IAS and PES Student Branch Chapter achieved the Outstanding Joint IAS Chapter award.</p>
</div>
<div class="meta-tags">
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-xs-12 col-sm-6">
<div class="blog-item">
<div class="descr">
<div class="icon">
<i class="fas fa-award"></i>
</div>
<h3 class="title">
Project Proposal rewarded by IEEE SIGHT Projects 2021
</h3>
<p>The project proposal captioned "Design & Development of Auto-tuned Ventilator: A contactless
treatment specifically for COVID-19 patients" by Rishi Kant Thakur, Dr. Rajeev Kumar
(Project Mentor), and Dr. Rajesh Pindoriya was acknowledged and honoured with 5000 USD in
the 2021 IEEE HAC/SIGHT Projects- Centered on COVID-19 Response Call for Proposals.</p>
</div>
<div class="meta-tags">
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-xs-12 col-sm-6">
<div class="blog-item">
<div class="descr">
<div class="icon">
<i class="fas fa-award"></i>
</div>
<h3 class="title">
Rishi Thakur's M.S. Thesis awarded with multiple grants in 2021
</h3>
<p>The M.S. thesis proposal of Mr Rishi Kant Thakur's (S19004), under the guidance of Dr. Rajeev
Kumar, and another team member, Dr. Rajesh Pindoriya, bagged two more IEEE awards. One from
"IEEE Region 10 & IEEE HAC" captioned "Neoteric Ventilation (NEO) and a second from "IEEE
Region 10 SAC" captioned "Auto-tuned Ventilator and honoured with a prize money of $500 USD.
</p>
</div>
<div class="meta-tags">
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-xs-12 col-sm-6">
<div class="blog-item">
<div class="descr">
<div class="icon">
<i class="fas fa-award"></i>
</div>
<h3 class="title">
IEEE IAS-PES Joint SB best Thesis Awards 2021
</h3>
<p>Under the Non-Phd category Mr. Ajeet Kumar Yadav bagged 3 rd Position for best Thesis award
captioned “Design and Implementation of High Performance Sensorless PMSM Drive”,with the
guidance of Prof. Bharat Singh Rajpurohit and under Ph.D. Category Mr. Adil Usman bagged 3
rd position for thesis captioned, “Fault Diagnosis in Brushless Permanent Magnet Synchronous
Motor Drive”, under the supervision of Prof. Bharat Singh Rajpurohit.
</p>
</div>
<div class="meta-tags">
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-xs-12 col-sm-6">
<div class="blog-item">
<div class="descr">
<div class="icon">
<i class="fas fa-award"></i>
</div>
<h3 class="title">
1st Rank in Data Analytics Hackathon
</h3>
<p>Harnaman Kaur, Kratika Gupta, Niveditha N and Madhumita Vadlamannati from IEEE IIT Mandi won
the hackathon organised by NIT Hamirpur, under the organisational problem statement category
by Suitable AI for developing a web application based on data sourcing and analytics.</p>
</div>
<div class="meta-tags">
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-xs-12 col-sm-6">
<div class="blog-item">
<div class="descr">
<div class="icon">
<i class="fas fa-award"></i>
</div>
<h3 class="title">
Secured first rank in IEEE Day Photo Contest held at ITI 2021
</h3>
<p>To increase awareness among the young student community, a workshop on renewable energy
resources was organized at the Industrial Training Institute (ITI) in Mandi, India. This
was a two-week workshop in which students learned and created a scaled-down prototype of the
many
project ideas that they proposed based on the theme renewable energy.</p>
</div>
<div class="meta-tags">
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-xs-12 col-sm-6">
<div class="blog-item">
<div class="descr">
<div class="icon">
<i class="fas fa-award"></i>
</div>
<h3 class="title">
Darrel Chong Student Activity Award in 2020 (from IEEE MGA Student Activity Committee, USA)
</h3>
<p>Mr. Rajesh M. Pindoriya organised a series of outreach activities (such as a One Day
Workshop for School Kids: Do It Yourself Solar Study Lamp and others). IEEE Student Branch
IIT Mandi received "The Darrel Chong Student Activity Award" for outreach initiatives.</p>
</div>
<div class="meta-tags">
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-xs-12 col-sm-6">
<div class="blog-item">
<div class="descr">
<div class="icon">
<i class="fas fa-award"></i>
</div>
<h3 class="title">
2nd Rank in Chapter Web Contest Award in 2019 and 2020
</h3>
<p>Volunteers of IEEE SB IIT Mandi designed fist time Website on 2019 and participated in The
Best Website Contest 2019 and 2020. We got 2nd Position across the Globe and awards given by
IEEE IAS CMD, USA.</p>
</div>
<div class="meta-tags">
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-xs-12 col-sm-6">
<div class="blog-item">
<div class="descr">
<div class="icon">
<i class="fas fa-award"></i>
</div>
<h3 class="title">
Continued outstanding performance Student Branch Chapter Award 2019
</h3>
<p>IEEE IAS SB Chapter IIT Mandi won the Continued outstanding performance student branch
chapter award for 2019 for serving their members and technical community and establishing
good will for the Industry Applications Society.
</p>
</div>
<div class="meta-tags">
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-xs-12 col-sm-6">
<div class="blog-item">
<div class="descr">
<div class="icon">
<i class="fas fa-award"></i>
</div>
<h3 class="title">
Dr. J. K. Pal Award 2019- IEEE Delhi Section
</h3>
<p>IEEE SB Chapter IIT Mandi receieved the Dr. J. K. Pal Award in 2019 to appreciate and
recognise young, experienced and talented student members volunteering for the Student
Branch.</p>
</div>
<div class="meta-tags">
</div>
</div>
</div>
</div>
</div>
<br><br>
<!--------------- Footer------------------- -->
<div class="container-fluid footer">
<div class=row>
<div class="col-xs-12 col-sm-12 col-md-8 col-lg-9">
<p id="util" style="padding-bottom:10px;"><a href="http://www.ieee.org/index.html" id="u-home">Home</a>
 |  <a href="http://www.ieee.org/sitemap.html" id="u-home">Sitemap/More Sites</a>
 |  <a href="http://www.ieee.org/about/contact_center/index.html"
id="u-contact">Contact</a>
 | 
<a href="http://www.ieee.org/accessibility_statement.html" id="u-accessibility">Accessibility</a>
 |  <a href="http://www.ieee.org/p9-26.html" id="u-non">Nondiscrimination Policy</a>
 | 
<a href="http://ieee-ethics-reporting.org/" id="u-ethics-reporting">IEEE Ethics Reporting</a>
 | 
<a href="http://www.ieee.org/security_privacy.html" id="u-privacy">IEEE Privacy Policy</a>
 | 
<a href="https://www.ieee.org/about/help/site-terms-conditions.html" id="u-terms">Terms</a>
</p>
</div>
<div class="container_image" style="padding-top: 18px;">
<div class="col-xs-12 col-sm-12 col-md-4 col-lg-3">
<a id="util" href="https://www.ieee.org/" target="_blank"> <img src="img/ieee mb white png.png"
width="50%"></a>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-12">
<p id="util" style=" font-size:15px; padding-bottom: 5px; ">© Copyright
<script type="text/javascript">document.write((new Date()).getFullYear());</script> IEEE - All
rights
reserved. A not-for-profit organization, IEEE is the world's largest technical professional
organization
dedicated to advancing technology for the benefit of humanity.</span><br>
</p>
</div>
</div>
<style>
.footer {
background-color: black;
color: white;
font-family: Open Sans !important;
font-size: 15px !important;
}
#util {
color: rgb(255, 254, 254);
text-align: center;
padding: 18px;
}
#util a:link,
#util a:visited,
#util a:active {
color: rgb(255, 255, 255);
text-decoration: none;
}
#util a:hover {
color: rgb(255, 255, 255);
text-decoration: underline;
}
</style>
</div>
<!--------------- Footer Ends------------------- -->
<script src="js/jquery.min.js"></script>
<script src="js/templatemo-script.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/three.js/r121/three.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/vanta@latest/dist/vanta.net.min.js"></script>
<script>
VANTA.NET({
el: "#vanta-bg",
mouseControls: true,
touchControls: true,
gyroControls: false,
minHeight: 220.00,
minWidth: 220.00,
scale: 1.00,
scaleMobile: 1.00,
color: 0x4b8755,
backgroundColor: 0x80828,
points: 15.00
})
</script>
<script>
jQuery(document).ready(function () {
if ($(window).width() < 999) {
$('#events-drop-down').removeClass('drop-down');
}
});
</script>
<script src="https://code.jquery.com/jquery-1.11.1.min.js"></script>
<script type="text/javascript">
$(document).ready(function () {
$('li.drop-down').click(function () {
$('li.drop-down').not(this).find('ul').hide();
$(this).find('ul').toggle();
});
});
</script>
</body>
</html>