-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathevents.html
619 lines (589 loc) · 21.6 KB
/
events.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<meta http-equiv="x-ua-compatible" content="ie=edge" />
<title>Events | GDG on Campus | DA-IICT</title>
<link rel="icon" href="/assets/images/dsc_symbol_notext.png" />
<!-- Font Awesome -->
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.8.2/css/all.css"
/>
<!-- Bootstrap core CSS -->
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-+0n0xVW2eSR5OomGNYDnhzAbDsOXxcvSN1TPprVMTNDbiYZCxYbOOl7+AMvyTG2x"
crossorigin="anonymous"
/>
<!-- Google Sans fonts -->
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link
href="https://fonts.googleapis.com/css2?family=Google+Sans:wght@400;500&display=swap"
rel="stylesheet"
type="text/css"
/>
<!-- Custom style -->
<link href="/css/style.css" rel="stylesheet" />
<!-- Events page style -->
<link href="/css/events.css" rel="stylesheet" />
</head>
<body>
<!-- Start your project here -->
<!-- **** Navbar **** -->
<nav class="navbar fixed-top navbar-expand-lg navbar-light">
<div class="container">
<a class="navbar-brand me-1" href="/" aria-label="Go to homepage">
<img
class="img-fluid dsc-logo"
src="/assets/images/gdg-on-campus-horizontal.png"
alt="DSC DA-IICT logo"
/>
</a>
<!--Collapse Button-->
<button
class="navbar-toggler border-0"
type="button"
data-bs-toggle="collapse"
data-bs-target="#navbar-collapsible"
aria-controls="#navbar-collapsible"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span class="navbar-toggler-icon"></span>
</button>
<!--Collapse Button Ends-->
<!--Collapsible Content-->
<div class="collapse navbar-collapse" id="navbar-collapsible">
<ul class="navbar-nav ms-auto">
<li class="dropdown nav-item">
<a href="/" class="nav-link lg-item"> Home </a>
</li>
<li class="nav-item">
<a href="./events.html" class="nav-link lg-item"> Events </a>
</li>
<li class="nav-item">
<a href="./team.html" class="nav-link lg-item"> Team </a>
</li>
</ul>
</div>
<!--Collapsible Content Ends-->
</div>
</nav>
<section class="teamsbody">
<div class="cardcontainer">
<div class="hover-section">
<div class="front">
<img
src="assets/images/events/card/GSoC-icon.svg"
alt="GSoC Logo"
\
/>
<h3 class="card-heading">GSoC Intro</h3>
<h4 class="card-text">Intra College Session</h4>
<p class="card-text">
<small class="technical-stack">14th November 2024</small>
</p>
</div>
<div class="back">
<h4 class="back-card-heading">GSoC Intro</h4>
<p class="back-card-details">
The GSoC Intro event served as an orientation for students
interested in participating in Google Summer of Code (GSoC). It
provided insights into open-source contributions, tips for
selecting the right projects and organizations, and strategies for
crafting strong proposals to increase their chances of selection.
</p>
</div>
</div>
</div>
<div class="cardcontainer">
<div class="hover-section">
<div class="front">
<img
src="assets/images/events/card/slop4.png"
alt="SLoP 4.0 Logo"
\
/>
<h3 class="card-heading">SLoP 4.0</h3>
<h4 class="card-text">National Event</h4>
<p class="card-text">
<small class="technical-stack"
>25th September - 10th December 2024</small
>
</p>
</div>
<div class="back">
<h4 class="back-card-heading">SLoP 4.0</h4>
<p class="back-card-details">
Slop 4.0 was organized as part of Hacktoberfest, celebrating
open-source contributions through a collaborative hackathon.
Participants worked on real-world projects, submitted pull
requests, and gained hands-on experience with version control,
fostering a culture of collaboration and learning in the
open-source community.
</p>
</div>
</div>
</div>
<div class="cardcontainer">
<div class="hover-section">
<div class="front">
<img src="assets/images/events/card/js.png" alt="JS Logo" \ />
<h3 class="card-heading">CodeLabs</h3>
<h4 class="card-text">Intra College Session</h4>
<p class="card-text">
<small class="technical-stack">23rd September 2024</small>
</p>
</div>
<div class="back">
<h4 class="back-card-heading">CodeLabs</h4>
<p class="back-card-details">
Codelabs was an event centered around JavaScript, designed to
deepen participants' understanding of the language through guided
coding sessions and projects. It covered core concepts, modern
frameworks, and real-world use cases, making it ideal for both
beginners and those looking to strengthen their JavaScript skills.
</p>
</div>
</div>
</div>
<div class="cardcontainer">
<div class="hover-section">
<div class="front">
<img
src="assets/images/events/card/techloop.png"
alt="Techloop Logo"
\
/>
<h3 class="card-heading">TechLoop</h3>
<h4 class="card-text">Intra College Session</h4>
<p class="card-text">
<small class="technical-stack">21st August 2024</small>
</p>
</div>
<div class="back">
<h4 class="back-card-heading">TechLoop</h4>
<p class="back-card-details">
Techloop was a comprehensive event focused on exploring various
domains of technology, providing participants with an overview of
fields like web development, AI, blockchain, cybersecurity, and
more. It featured interactive sessions, hands-on workshops, and
live demos to help attendees discover their interests and gain
foundational knowledge in diverse tech areas.
</p>
</div>
</div>
</div>
<div class="cardcontainer">
<div class="hover-section">
<div class="front">
<img
src="assets/images/events/card/goLang.webp"
alt="GoLang Logo"
\
/>
<h3 class="card-heading">GoLang</h3>
<h4 class="card-text">Intra College Session</h4>
<p class="card-text">
<small class="technical-stack">16th January 2024</small>
</p>
</div>
<div class="back">
<h4 class="back-card-heading">GoLang</h4>
<p class="back-card-details">
The GoLang session introduced participants to the language's
basics, including syntax, control structures, and concurrency.
Through a hands-on project, attendees built a command-line tool,
gaining practical experience and a strong foundation in Go for
future projects.
</p>
</div>
</div>
</div>
<div class="cardcontainer">
<div class="hover-section">
<div class="front">
<img
src="assets/images/events/card/git_and_github.png"
alt="Git and GitHub Logo"
\
/>
<h3 class="card-heading">Git and GitHub</h3>
<h4 class="card-text">Intra College Session</h4>
<p class="card-text">
<small class="technical-stack">5th October 2023</small>
</p>
</div>
<div class="back">
<h4 class="back-card-heading">Git and GitHub</h4>
<p class="back-card-details">
An introductory session on Git and GitHub, covering version
control basics, branching, merging, and remote repository
management. Participants engaged in hands-on activities, learning
essential Git commands and collaboration techniques for
open-source contributions.
</p>
</div>
</div>
</div>
<div class="cardcontainer">
<div class="hover-section">
<div class="front">
<img
src="assets/images/events/card/GSoC-icon.svg"
alt="GSoC logo"
\
/>
<h3 class="card-heading">GSoC and OSS</h3>
<h4 class="card-text">Intra College Session</h4>
<p class="card-text">
<small class="technical-stack">23rd January 2021</small>
</p>
</div>
<div class="back">
<h4 class="back-card-heading">GSoC and OSS</h4>
<p class="back-card-details">
Introduction to the Open Source Software community of DA-IICT
alongside a brief introduction to GSoC, Outreachy, Hacktoberfest
and other Open Source programs.
</p>
</div>
</div>
</div>
<div class="cardcontainer">
<div class="hover-section">
<div class="front">
<img
src="assets/images/events/card/web dev.svg"
alt="Web Dev pic"
\
/>
<h3 class="card-heading">Web Development Road Map</h3>
<h4 class="card-text">Intra College Session</h4>
<p class="card-text">
<small class="technical-stack">3rd February 2021</small>
</p>
</div>
<div class="back">
<h4 class="back-card-heading">Web Devlopment</h4>
<p class="back-card-details">
A session on web technologies and terms related to web development
and how to get started in web development with a concrete plan
that you can follow to start creating your own web apps, We start
with the very basics and explain to you the various paths you can
take towards your web development career and the things you need
to learn.
</p>
</div>
</div>
</div>
<div class="cardcontainer">
<div class="hover-section">
<div class="front">
<img
src="assets/images/events/card/oppia.webp"
alt="Oppia Logo"
\
/>
<h3 class="card-heading">Oppia With Rajat Talesra</h3>
<h4 class="card-text">Intra College Session</h4>
<p class="card-text">
<small class="technical-stack">11th February 2021</small>
</p>
</div>
<div class="back">
<h4 class="back-card-heading">Oppia Session</h4>
<p class="back-card-details">
This was a GSoC information and awareness session arranged by DSC.
The student community got in conversation with Mr Rajat Talesra
and were introduced on how to contribute to the Open Source
community. The speaker gave information regarding GSoC application
process and guided on contributing to Oppia Foundation.
</p>
</div>
</div>
</div>
<div class="cardcontainer">
<div class="hover-section">
<div class="front">
<img
src="assets/images/events/card/android.jpg"
alt="Android Studio logo"
\
/>
<h3 class="card-heading">Android Development</h3>
<h4 class="card-text">Intra College Session</h4>
<p class="card-text">
<small class="technical-stack">19th March 2021</small>
</p>
</div>
<div class="back">
<h4 class="back-card-heading">Android Development</h4>
<p class="back-card-details">
The session on Android Development is conducted for students
interested in starting their Android Development journey. The
session covers introductory Android concepts like layouts,
activities, manifests, intents and activity life-cycle. The
students develop a two-screen app from the learnings of the
session.
</p>
</div>
</div>
</div>
<div class="cardcontainer">
<div class="hover-section">
<div class="front">
<img
src="assets/images/events/card/rest.png"
alt="REST API logo"
\
/>
<h3 class="card-heading">REST APIs</h3>
<h4 class="card-text">Intra College Session</h4>
<p class="card-text">
<small class="technical-stack">13th April 2021</small>
</p>
</div>
<div class="back">
<h4 class="back-card-heading">REST APIs</h4>
<p class="back-card-details">
This session explains the different terminologies related to REST
APIs and detailed explanations on handling different request types
such as GET, POST, PUT and DELETE. The students build an API with
CRUD functionalities using Flask framework.
</p>
</div>
</div>
</div>
<div class="cardcontainer">
<div class="hover-section">
<div class="front">
<img
src="assets/images/events/card/github.png"
alt="GitHub Logo"
\
/>
<h3 class="card-heading">Session on Git</h3>
<h4 class="card-text">Intra College Session</h4>
<p class="card-text">
<small class="technical-stack">8th December 2020</small>
</p>
</div>
<div class="back">
<h4 class="back-card-heading">Git Session</h4>
<p class="back-card-details">
Full house session on Git and Github. Students learnt about basics
of Git using Command Line Interface. Open Source Software
development was introduced and many participants made their first
pull request in the interactive session.
</p>
</div>
</div>
</div>
<div class="cardcontainer">
<div class="hover-section">
<div class="front">
<img src="assets/images/events/card/slop.svg" alt="Profile Pic" \ />
<h3 class="card-heading">SLoP</h3>
<h4 class="card-text">National Event</h4>
<p class="card-text">
<small class="technical-stack"
>28th August - 23rd November 2020</small
>
</p>
</div>
<div class="back">
<h4 class="back-card-heading">SLoP</h4>
<p class="back-card-details">
The Semester Long Projects (SLoP) initiative is a long-term event
celebrating Open Source culture with students. The 2-month long
virtual event allowed students to contribute to open source
projects of their choice under the guidance of mentors.
</p>
</div>
</div>
</div>
</section>
<!--END YOUR CONTENT HERE-->
<!-- **** Footer **** -->
<footer class="container pt-5">
<div class="row justify-content-center">
<img
class="dsc-logo"
src="/assets/images/gdg-on-campus-horizontal.png"
alt="DSC DA-IICT logo"
/>
</div>
<!-- Footer content -->
<div class="row text-md-left py-5">
<!-- Grid column 1 -->
<div class="col-lg-4 col-md-3 col-sm-6">
<!-- Content -->
<h5>Important Links</h5>
<ul class="list-unstyled">
<li>
<a class="link-dark p-2" href="/">Home</a>
</li>
<li>
<a class="link-dark p-2" href="/events.html">Events</a>
</li>
<li>
<a class="link-dark p-2" href="/team.html">Team</a>
</li>
</ul>
</div>
<!-- Grid column 2 -->
<div class="col-md-4 col-sm-6">
<!-- Links -->
<h5>Connect with Us</h5>
<ul class="list-unstyled">
<li><i class="far fa-envelope p-2"></i> [email protected]</li>
<li>
<i class="fas fa-map-marker-alt p-2"></i> Gandhinagar, Gujarat,
India
</li>
</ul>
<div class="container px-0 mb-4 float-left">
<a
class="link-dark p-2 text-decoration-none"
href="https://github.com/ossdaiict"
target="_blank"
rel="noopener"
aria-label="GitHub profile link"
>
<i class="fab fa-github fa-2x"></i>
</a>
<a
class="link-dark p-2 text-decoration-none"
href="https://x.com/gdgdaiict"
target="_blank"
rel="noopener"
aria-label="Twitter profile link"
>
<i class="fab fa-twitter fa-2x"></i>
</a>
<a
class="link-dark p-2 text-decoration-none"
href="https://medium.com/code-dementia"
target="_blank"
rel="noopener"
aria-label="Medium profile link"
>
<i class="fab fa-medium fa-2x"></i>
</a>
<a
class="link-dark p-2 text-decoration-none"
href="https://www.instagram.com/gdg.daiict/"
target="_blank"
rel="noopener"
aria-label="Instagram profile link"
>
<i class="fab fa-instagram fa-2x"></i>
</a>
</div>
</div>
<!-- Grid column 3 -->
<div class="col-lg-4 col-md-5">
<h5>Contact Us</h5>
<form
class="text-center py-2"
action="https://form2channel.com?form=contact"
method="POST"
enctype="multipart/form-data"
>
<!-- form2channel setup -->
<input
type="hidden"
name="formto_googlesheets"
value="[email protected]"
/>
<input
type="email"
id="SenderEmail"
name="Email"
class="form-control mb-3 h-3r"
placeholder="Your e-mail"
required
/>
<input
type="text"
id="SenderName"
name="Name"
class="form-control mb-3 h-3r"
placeholder="Your Name"
required
/>
<textarea
id="SenderMessage"
name="Message"
class="form-control h-6r"
placeholder="Your message"
required
></textarea>
<button class="btn btn-outline-dark btn-block my-4" type="submit">
Submit
</button>
</form>
<!-- hidden toasts -->
<div
class="toast hide align-items-center text-white bg-success border-0"
id="successToast"
role="alert"
aria-live="assertive"
aria-atomic="true"
>
<div class="d-flex">
<div class="toast-body">Thank you for reaching out to us.</div>
<button
type="button"
class="btn-close btn-close-white me-2 m-auto"
data-bs-dismiss="toast"
aria-label="Close"
></button>
</div>
</div>
<div
class="toast hide align-items-center text-white bg-danger border-0"
id="alertToast"
role="alert"
aria-live="assertive"
aria-atomic="true"
>
<div class="d-flex">
<div class="toast-body">
<!-- available error status will be added here by the script -->
Oops! looks like your request encountered some error.
</div>
<button
type="button"
class="btn-close btn-close-white me-2 m-auto"
data-bs-dismiss="toast"
aria-label="Close"
></button>
</div>
</div>
</div>
</div>
<hr />
<!-- Copyright -->
<p class="mt-4 text-center">
<small>© 2021 Developer Student Club, DA-IICT</small>
</p>
</footer>
<!-- Project Ends Here -->
<!-- Bootstrap JS bundle -->
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-gtEjrD/SeCtmISkJkNUaaKMoLD0//ElJ19smozuHV6z3Iehds+3Ulb9Bn9Plx0x4"
crossorigin="anonymous"
></script>
<script type="text/javascript" src="/js/navbar.js"></script>
<script type="text/javascript" src="/js/footer.js"></script>
</body>
</html>