-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathwiki.html
More file actions
738 lines (671 loc) · 39.2 KB
/
wiki.html
File metadata and controls
738 lines (671 loc) · 39.2 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>oU1TS Wiki & Repository Showcase</title>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<script src="https://cdn.tailwindcss.com"></script>
<style>
body {
font-family: 'Inter', sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
/* Custom scrollbar for better aesthetics */
::-webkit-scrollbar {
width: 8px;
height: 8px;
}
::-webkit-scrollbar-track {
background: #2d3748;
/* Dark gray for track */
border-radius: 10px;
}
::-webkit-scrollbar-thumb {
background: #4a5568;
/* Slightly lighter gray for thumb */
border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
background: #6b7280;
/* Even lighter gray on hover */
}
/* Specific styling for details/summary to ensure consistent appearance */
details summary {
cursor: pointer;
list-style: none;
/* Remove default arrow */
position: relative;
padding-left: 1.5rem;
/* Space for custom arrow */
}
details summary::before {
content: '▶';
/* Right arrow for closed state */
position: absolute;
left: 0;
top: 50%;
transform: translateY(-50%) rotate(0deg);
transition: transform 0.2s ease-in-out;
color: #9ca3af;
/* Light gray arrow */
}
details[open] summary::before {
content: '▼';
/* Down arrow for open state */
transform: translateY(-50%) rotate(0deg);
/* No rotation needed for down arrow */
}
/* Adjusting nested details summary padding */
details details summary {
padding-left: 1.5rem;
}
details details summary::before {
left: 0;
}
/* Mobile menu button fixed positioning */
@media (max-width: 1023px) {
/* Applies only to screens smaller than 'lg' breakpoint */
#menu-button {
position: fixed;
top: 1.5rem;
/* Adjust as needed */
right: 1.5rem;
/* Adjust as needed */
z-index: 70;
/* Ensure it's above everything else */
}
/* Overlay for closing menu by clicking outside */
.overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.5);
/* Semi-transparent black */
z-index: 45;
/* Below sidebar, above main content */
display: none;
/* Hidden by default */
}
.overlay.visible {
display: block;
}
/* Mobile sidebar fixed positioning and dropdown behavior */
aside {
position: fixed;
top: 0;
/* Start at the top */
left: 0;
/* Align to the left */
right: 0;
/* Align to the right */
width: calc(100% - 3rem);
/* Full width minus horizontal padding, or specific width if desired */
max-height: 0;
/* Hidden by default, expands downwards */
overflow: hidden;
/* Hide content that overflows max-height */
transition: max-height 0.3s ease-in-out, padding 0.3s ease-in-out;
/* Smooth expansion */
z-index: 50;
/* Ensure it's above main content and below menu button */
background-color: #2d3748;
/* Match sidebar background */
padding: 0 1.5rem;
/* No padding when closed, will expand */
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
/* Optional shadow */
}
/* When the sidebar is visible, apply specific styles */
aside:not(.hidden) {
max-height: 100vh;
/* Expands to full height */
padding: 1.5rem;
/* Apply padding when open */
overflow-y: auto;
/* Allow scrolling within the sidebar if content is long */
}
/* Ensure internal sidebar components adjust */
aside .flex.items-center.justify-between {
margin-bottom: 0;
/* Adjust spacing when expanding from top */
}
aside .flex.items-center.justify-between h1 {
margin-bottom: 0;
/* Ensure title also moves correctly */
}
}
/* Desktop sidebar fixed positioning */
@media (min-width: 1024px) {
/* Applies only to screens 'lg' breakpoint and larger */
aside {
position: fixed;
top: 0;
left: 0;
height: 100vh;
/* Make it span the full viewport height */
border-radius: 0;
/* Remove bottom border-radius when fixed and full height */
box-shadow: none;
/* Remove shadow on the bottom when fixed and full height */
z-index: 40;
/* Ensure it's above main content */
transform: translateX(0) !important;
/* Force sidebar to be visible on desktop */
max-height: none !important;
/* Remove max-height constraint */
overflow-y: auto;
/* Allow scrolling */
padding: 1.5rem 2rem !important;
/* Restore original padding */
}
main {
margin-left: 16rem;
/* Push main content to the right by the sidebar's width (w-64 = 16rem) */
}
/* The mobile menu button is hidden by 'lg:hidden' on desktop, so no need to unfix it here. */
}
</style>
</head>
<body class="bg-zinc-900 text-zinc-100 min-h-screen flex flex-col lg:flex-row">
<aside
class="w-full lg:w-64 bg-zinc-800 p-6 lg:p-8 shadow-lg lg:shadow-xl flex-shrink-0 rounded-b-lg lg:rounded-r-lg lg:rounded-bl-none hidden lg:block">
<div class="flex items-center justify-between lg:justify-start mb-6">
<h1 class="text-2xl font-bold text-blue-400">oU1TS Wiki</h1>
<button id="menu-button-inside-aside"
class="lg:hidden p-2 rounded-md focus:outline-none focus:ring-2 focus:ring-blue-500">
<svg class="w-6 h-6 text-zinc-100" fill="none" stroke="currentColor" viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16m-4 6h4">
</path>
</svg>
</button>
</div>
<br>
<div class="flex items-center justify-between lg:justify-start mb-6">
<a href="index.html"
class="block text-blue-400 hover:text-blue-300 transition duration-200 ease-in-out font-medium"
style="border: #00000038; padding: 5px;border-style: dashed;background-color: rgba(0, 0, 0, 0.267);max-width: 180px;border-radius: 10px;text-align: center;">go
back to oU1TS </a>
</div>
<nav id="sidebar-nav">
<ul class="space-y-4">
<li class="mt-6 pt-4 border-t border-zinc-700">
<!-- <a href="index.html"
class="block text-blue-400 hover:text-blue-300 transition duration-200 ease-in-out font-medium"
style="border: #00000038; padding: 5px;border-style: dashed;background-color: rgba(0, 0, 0, 0.267);max-width: 180px;border-radius: 10px;text-align: center;">go
back to oU1TS </a> -->
</li>
<!-- <li>
<a href="https://ou1ts.github.io/" class="block text-blue-400 hover:text-blue-300 transition duration-200 ease-in-out font-medium">oU1TS Website</a>
</li> -->
<li>
<a href="https://github.com/oU1TS/ou1ts.github.io"
class="block text-blue-400 hover:text-blue-300 transition duration-200 ease-in-out font-medium">GitHub
Repositories</a>
</li>
<br>
<li class="mt-6 pt-4 border-t border-zinc-700">
<p class="text-zinc-400 text-sm mb-2">Join the Organization:</p>
<a href="https://forms.gle/treGsBbsE3UTFUos9"
class="block bg-blue-600 hover:bg-blue-700 text-white font-semibold py-2 px-4 rounded-md text-center transition duration-200 ease-in-out shadow-md">
Fill out this form
</a>
</li>
<li class="mt-6 pt-4 border-t border-zinc-700">
<h3 class="text-lg font-semibold text-zinc-200 mb-3">Wiki Contents</h3>
<ul class="space-y-2">
<li>
<a href="#home-section"
class="block text-zinc-300 hover:text-blue-400 transition duration-200 ease-in-out">Home</a>
</li>
<li>
<a href="#forks-by-course-section"
class="block text-zinc-300 hover:text-blue-400 transition duration-200 ease-in-out">Forks
by Course</a>
</li>
<li>
<a href="#records-section"
class="block text-zinc-300 hover:text-blue-400 transition duration-200 ease-in-out">Records</a>
<ul class="ml-4 mt-1 space-y-1">
<li><a href="#course-records"
class="block text-zinc-400 hover:text-blue-400 transition duration-200 ease-in-out text-sm">Course
Records</a></li>
<li><a href="#project-records"
class="block text-zinc-400 hover:text-blue-400 transition duration-200 ease-in-out text-sm">Project
Records</a></li>
</ul>
</li>
<li>
<a href="#ssr-projects-section"
class="block text-zinc-300 hover:text-blue-400 transition duration-200 ease-in-out">SSR
Projects</a>
<ul class="ml-4 mt-1 space-y-1">
<li><a href="#student-support-repositories"
class="block text-zinc-400 hover:text-blue-400 transition duration-200 ease-in-out text-sm">Student
Support Repositories</a></li>
</ul>
</li>
</ul>
</li>
</ul>
</nav>
</aside>
<button id="menu-button" class="lg:hidden p-2 rounded-md focus:outline-none focus:ring-2 focus:ring-blue-500">
<svg class="w-6 h-6 text-zinc-100" fill="none" stroke="currentColor" viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16m-4 6h4"></path>
</svg>
</button>
<div id="overlay" class="overlay"></div>
<main class="flex-grow p-6 lg:p-8">
<section id="home-section" class="mb-12">
<br>
<div class="flex items-center justify-between lg:justify-start mb-6">
<a href="https://github.com/oU1TS/.github/wiki" target="_blank"
class="block text-blue-400 hover:text-blue-300 transition duration-200 ease-in-out font-medium"
style="border: #00000038; padding: 5px;border-style: dashed;background-color: rgba(0, 0, 0, 0.267);max-width: 180px;border-radius: 10px;text-align: center;">view
wiki on GitHub</a>
</div>
<h2 class="text-3xl font-bold text-zinc-100 mb-6">Welcome to the oU1TS Wiki!</h2>
<p class="text-zinc-300 mb-4">Here we will be indexing our Repositories based on their categories/purpose.
</p>
<ul class="list-disc list-inside space-y-2 text-zinc-300">
<li>For Records, visit <a href="#records-section"
class="text-blue-400 hover:text-blue-300 transition duration-200 ease-in-out">Records</a></li>
<li>For Student Support, visit <a href="#student-support-repositories"
class="text-blue-400 hover:text-blue-300 transition duration-200 ease-in-out">SSR Projects</a>
</li>
<li>To browse forks, visit <a href="#forks-by-course-section"
class="text-blue-400 hover:text-blue-300 transition duration-200 ease-in-out">Forks by
Course</a></li>
</ul>
</section>
<hr class="border-zinc-700 mb-12">
<section id="forks-by-course-section" class="mb-12">
<h2 class="text-3xl font-bold text-zinc-100 mb-6">Forks by Course</h2>
<p class="text-zinc-300 mb-4">In this page, we track and organize forks owned by oU1TS. Essentially all
repositories here have been forked from outside but we intend to ease things up by more organization
(๑•﹏•) </p>
<details class="mb-6 bg-zinc-800 p-4 rounded-lg shadow-md">
<summary class="text-xl font-semibold text-zinc-200 py-2">CSE208-IP-Lab</summary>
<div class="mt-4 pl-4 border-l border-zinc-700">
<ul class="list-disc list-inside space-y-2 text-zinc-400">
<li><a href="https://github.com/oU1TS/php-project"
class="text-blue-400 hover:text-blue-300 transition duration-200 ease-in-out"
target="_blank">php-project</a>
</li>
<li><a href="https://github.com/oU1TS/The-Begging-From-The-Beginning"
class="text-blue-400 hover:text-blue-300 transition duration-200 ease-in-out"
target="_blank">The-Begging-From-The-Beginning</a>
</li>
</ul>
</div>
</details>
<details class="mb-6 bg-zinc-800 p-4 rounded-lg shadow-md">
<summary class="text-xl font-semibold text-zinc-200 py-2">CSE063212-DSA-1-Lab</summary>
<div class="mt-4 pl-4 border-l border-zinc-700">
<ul class="list-disc list-inside space-y-2 text-zinc-400">
<li><a href="https://github.com/oU1TS/DSA-project-55-3B-088"
class="text-blue-400 hover:text-blue-300 transition duration-200 ease-in-out"
target="_blank">DSA-project-55-3B-088</a>
</li>
</ul>
</div>
</details>
<details class="mb-6 bg-zinc-800 p-4 rounded-lg shadow-md">
<summary class="text-xl font-semibold text-zinc-200 py-2">CHEM0531175-Chemistry</summary>
<div class="mt-4 pl-4 border-l border-zinc-700">
<ul class="list-disc list-inside space-y-2 text-zinc-400">
<li><a href="https://github.com/oU1TS/uitsBOT"
class="text-blue-400 hover:text-blue-300 transition duration-200 ease-in-out"
target="_blank">uitsBOT</a> (???)
</li>
</ul>
</div>
</details>
<details class="mb-6 bg-zinc-800 p-4 rounded-lg shadow-md">
<summary class="text-xl font-semibold text-zinc-200 py-2">CSE358-ComputerGraphics-Lab</summary>
<div class="mt-4 pl-4 border-l border-zinc-700">
<ul class="list-disc list-inside space-y-2 text-zinc-400">
<li><a href="https://github.com/oU1TS/CSE358-ComputerGraphics-Lab.Monotheist0.cse54"
class="text-blue-400 hover:text-blue-300 transition duration-200 ease-in-out"
target="_blank">CSE358-ComputerGraphics-Lab--0432320005101064</a>
</li>
</ul>
</div>
</details>
</section>
<hr class="border-zinc-700 mb-12">
<section id="records-section" class="mb-12">
<h2 class="text-3xl font-bold text-zinc-100 mb-6">Records</h2>
<section id="course-records" class="mb-12">
<h3 class="text-2xl font-bold text-zinc-100 mb-6">Course Records</h3>
<ul class="space-y-3">
<li><a href="https://github.com/oU1TS/CSE0613112-SPL-Lab"
class="text-blue-400 hover:text-blue-300 transition duration-200 ease-in-out">CSE0613112-SPL-Lab</a>
</li>
<li><a href="https://github.com/oU1TS/CSE0613122-OOP-Lab"
class="text-blue-400 hover:text-blue-300 transition duration-200 ease-in-out">CSE0613122-OOP-Lab</a>
</li>
<li><a href="https://github.com/oU1TS/CSE0613124-WAD-Lab"
class="text-blue-400 hover:text-blue-300 transition duration-200 ease-in-out">CSE0613124-WAD-Lab</a>
</li>
<li><a href="https://github.com/oU1TS/CSE0612223-DSA-1-Lab"
class="text-blue-400 hover:text-blue-300 transition duration-200 ease-in-out">CSE0612223-DSA-1-Lab</a>
</li>
<li><a href="https://github.com/oU1TS/CSE0612216-DBMS-Lab"
class="text-blue-400 hover:text-blue-300 transition duration-200 ease-in-out">CSE0612216-DBMS-Lab</a>
</li>
<li><a href="https://github.com/oU1TS/CSE252-DSA-2-Lab"
class="text-blue-400 hover:text-blue-300 transition duration-200 ease-in-out">CSE252-DSA-2-Lab</a>
</li>
<li><a href="https://github.com/oU1TS/CSE208-IP-Lab"
class="text-blue-400 hover:text-blue-300 transition duration-200 ease-in-out">CSE208-IP-Lab</a>
</li>
</ul>
</section>
<hr class="border-zinc-700 mb-12">
<section id="project-records" class="mb-12">
<h3 class="text-2xl font-bold text-zinc-100 mb-6">Project Records</h3>
<details class="mb-6 bg-zinc-800 p-4 rounded-lg shadow-md">
<summary class="text-xl font-semibold text-zinc-200 py-2">Batch 58</summary>
<div class="mt-4 pl-4 border-l border-zinc-700">
<details class="mb-4">
<summary class="text-lg font-medium text-zinc-300 py-1">04325205101031</summary>
<div class="mt-2 pl-4">
<a href="https://github.com/Zirconium001/"
class="text-blue-400 hover:text-blue-300 transition duration-200 ease-in-out block mb-2">Visit
GitHub Profile</a>
<ul class="list-disc list-inside space-y-1 text-zinc-400">
<li>Refer to: <a href="#student-support-repositories"
class="text-blue-400 hover:text-blue-300 transition duration-200 ease-in-out">SSR</a>
</li>
</ul>
</div>
</details>
</div>
</details>
<details class="mb-6 bg-zinc-800 p-4 rounded-lg shadow-md">
<summary class="text-xl font-semibold text-zinc-200 py-2">Batch 55</summary>
<div class="mt-4 pl-4 border-l border-zinc-700">
<details class="mb-4">
<summary class="text-lg font-medium text-zinc-300 py-1">0432410005101088</summary>
<div class="mt-2 pl-4">
<a href="https://github.com/b1tranger"
class="text-blue-400 hover:text-blue-300 transition duration-200 ease-in-out block mb-2">Visit
GitHub Profile</a>
<ul class="list-disc list-inside space-y-1 text-zinc-400">
<li>CSE0613226-SESA-Lab: <a
href="https://github.com/b1tranger/Support-Hero_SESA-Lab-Project"
class="text-blue-400 hover:text-blue-300 transition duration-200 ease-in-out">(group) Project</a>
→ <a href="group-07.infinityfreeapp.com/"
class="text-blue-400 hover:text-blue-300 transition duration-200 ease-in-out">Website</a>
</li>
<li>CSE0613208-IP-Lab: <a href="https://github.com/b1tranger/IP_Lab_Project_2D_Game"
class="text-blue-400 hover:text-blue-300 transition duration-200 ease-in-out">Project</a>
→ <a href="https://ip-project-008.infinityfreeapp.com/"
class="text-blue-400 hover:text-blue-300 transition duration-200 ease-in-out">Website</a>
</li>
<li>CSE0612223-DSA-1-Lab: <a href="https://github.com/b1tranger/DSA-project"
class="text-blue-400 hover:text-blue-300 transition duration-200 ease-in-out">Project</a>
</li>
<li>CSE0613124-WAD-Lab: <a
href="https://github.com/b1tranger/oUITS-Scheduler-offline"
class="text-blue-400 hover:text-blue-300 transition duration-200 ease-in-out">Project</a>
→ <a href="https://b1tranger.github.io/oUITS-Scheduler-offline/"
class="text-blue-400 hover:text-blue-300 transition duration-200 ease-in-out">Website</a>
</li>
</ul>
</div>
</details>
</div>
</details>
<details class="mb-6 bg-zinc-800 p-4 rounded-lg shadow-md">
<summary class="text-xl font-semibold text-zinc-200 py-2">Batch 54</summary>
<div class="mt-4 pl-4 border-l border-zinc-700">
<details class="mb-4">
<summary class="text-lg font-medium text-zinc-300 py-1">0432320005101085</summary>
<div class="mt-2 pl-4">
<a href="https://github.com/FahimHossain1085"
class="text-blue-400 hover:text-blue-300 transition duration-200 ease-in-out block mb-2">Visit
GitHub Profile</a>
<ul class="list-disc list-inside space-y-1 text-zinc-400">
<li>CSE208-IP-Lab: <a href="https://github.com/oU1TS/php-project"
class="text-blue-400 hover:text-blue-300 transition duration-200 ease-in-out">Project</a>
(forked from <a href="https://github.com/FahimHossain1085/php-project"
class="text-blue-400 hover:text-blue-300 transition duration-200 ease-in-out">source</a>)
→ <a href="https://codecraftstudios.great-site.net/"
class="text-blue-400 hover:text-blue-300 transition duration-200 ease-in-out">Website</a>
</li>
<li>CSE0613124-WAD-Lab: <a
href="https://github.com/FahimHossain1085/web-application-design-project"
class="text-blue-400 hover:text-blue-300 transition duration-200 ease-in-out">Project</a>
→ <a
href="https://fahimhossain1085.github.io/web-application-design-project/"
class="text-blue-400 hover:text-blue-300 transition duration-200 ease-in-out">Website</a>
</li>
</ul>
</div>
</details>
<details class="mb-4">
<summary class="text-lg font-medium text-zinc-300 py-1">0432320005101064 (Md. Masud Rahman)</summary>
<div class="mt-2 pl-4">
<a href="https://github.com/shoytanbaba99"
class="text-blue-400 hover:text-blue-300 transition duration-200 ease-in-out block mb-2">Visit
GitHub Profile</a>
<ul class="list-disc list-inside space-y-1 text-zinc-400">
<li>CSE208-IP-Lab: <a
href="https://github.com/shoytanbaba99/The-Begging-From-The-Beginning"
class="text-blue-400 hover:text-blue-300 transition duration-200 ease-in-out">Project</a>
+ <a href="https://github.com/cristal-node/The-Begging-From-The-Beginning"
class="text-blue-400 hover:text-blue-300 transition duration-200 ease-in-out">Mod</a>
→ <a href="https://begging.cristal-node.workers.dev/welcome.html"
class="text-blue-400 hover:text-blue-300 transition duration-200 ease-in-out">Website</a>
</li>
<li>CSE252-DSA-2-Lab: <span class="text-zinc-500">No project link available</span>
</li>
<li>CSE358-ComputerGraphics-Lab: <a href="https://github.com/Monotheist0/CSE358-ComputerGraphics-Lab--0432320005101064-"
class="text-blue-400 hover:text-blue-300 transition duration-200 ease-in-out">Project</a>
</li>
</ul>
</div>
</details>
</div>
</details>
<details class="mb-6 bg-zinc-800 p-4 rounded-lg shadow-md">
<summary class="text-xl font-semibold text-zinc-200 py-2">Batch 53</summary>
<div class="mt-4 pl-4 border-l border-zinc-700">
<details class="mb-4">
<summary class="text-lg font-medium text-zinc-300 py-1">0432310005101037</summary>
<div class="mt-2 pl-4">
<a href="https://github.com/Reaper-X003"
class="text-blue-400 hover:text-blue-300 transition duration-200 ease-in-out block mb-2">Visit
GitHub Profile</a>
<ul class="list-disc list-inside space-y-1 text-zinc-400">
<li>CSE256-WAD-Lab: <a href="https://github.com/Reaper-X003/JOBPRESS-Website-Design"
class="text-blue-400 hover:text-blue-300 transition duration-200 ease-in-out">Project</a>
(Team)
</li>
<li>CSE208-IP-Lab: <a href="https://github.com/Reaper-X003/JS_Lab_Tasks"
class="text-blue-400 hover:text-blue-300 transition duration-200 ease-in-out">Project</a>
</li>
</ul>
</div>
</details>
</div>
<div class="mt-4 pl-4 border-l border-zinc-700">
<details class="mb-4">
<summary class="text-lg font-medium text-zinc-300 py-1">0432310005101080</summary>
<div class="mt-2 pl-4">
<a href="https://github.com/safridbhueyan"
class="text-blue-400 hover:text-blue-300 transition duration-200 ease-in-out block mb-2">Visit
GitHub Profile</a>
<ul class="list-disc list-inside space-y-1 text-zinc-400">
<li>CSE208-IP-Lab: <a href="https://github.com/safridbhueyan/Task-Room"
class="text-blue-400 hover:text-blue-300 transition duration-200 ease-in-out">Project</a>
</li>
</ul>
</div>
</details>
</div>
</details>
<details class="mb-6 bg-zinc-800 p-4 rounded-lg shadow-md">
<summary class="text-xl font-semibold text-zinc-200 py-2">Batch 52</summary>
<div class="mt-4 pl-4 border-l border-zinc-700">
<details class="mb-4">
<summary class="text-lg font-medium text-zinc-300 py-1">0432220005101061</summary>
<div class="mt-2 pl-4">
<a href="https://github.com/AkibReza"
class="text-blue-400 hover:text-blue-300 transition duration-200 ease-in-out block mb-2">Visit
GitHub Profile</a>
<ul class="list-disc list-inside space-y-1 text-zinc-400">
<li>CSE356-Software-Engineering-SESA: <a
href="https://github.com/AkibReza/TerraNova"
class="text-blue-400 hover:text-blue-300 transition duration-200 ease-in-out">Project</a>
→ <a href="http://TerraNovaAI.netlify.app"
class="text-blue-400 hover:text-blue-300 transition duration-200 ease-in-out">Website</a>
</li>
</ul>
</div>
</details>
</div>
</details>
<details class="mb-6 bg-zinc-800 p-4 rounded-lg shadow-md">
<summary class="text-xl font-semibold text-zinc-200 py-2">Batch 43</summary>
<div class="mt-4 pl-4 border-l border-zinc-700">
<details class="mb-4">
<summary class="text-lg font-medium text-zinc-300 py-1">Muhammad Kamruzzaman Shishir
</summary>
<div class="mt-2 pl-4">
<a href="https://github.com/MuhammadShishir"
class="text-blue-400 hover:text-blue-300 transition duration-200 ease-in-out block mb-2">Visit
GitHub Profile</a>
<ul class="list-disc list-inside space-y-1 text-zinc-400">
<li>IT06133102-Software Testing & Quality Assurance: <a
href="https://github.com/MuhammadShishir/Result-Management-System"
class="text-blue-400 hover:text-blue-300 transition duration-200 ease-in-out">Project</a>
/ <a href="https://github.com/oU1TS/Result-Management-System"
class="text-blue-400 hover:text-blue-300 transition duration-200 ease-in-out">Fork</a>
</li>
</ul>
</div>
</details>
</div>
</details>
</section>
</section>
<hr class="border-zinc-700 mb-12">
<section id="student-support-repositories" class="mb-12">
<h2 class="text-3xl font-bold text-zinc-100 mb-6">Student Support Repositories</h2>
<p class="text-zinc-300 mb-4">Repositories intended to aid in the academics of students.<br><br>refer to the
portal <a href="https://ouits-res.netlify.app/" target="_blank"
class="text-blue-400 hover:text-blue-300 transition duration-200 ease-in-out">here</a><br><br></p>
<div class="bg-zinc-800 p-4 rounded-lg shadow-md mb-6">
<h3 class="text-xl font-semibold text-zinc-200 mb-3">From 04325205101031 (Zirconium001)</h3>
<ul class="list-disc list-inside space-y-2 text-zinc-400">
<li><a href="https://github.com/Zirconium001/echoes_of_the_past"
class="text-blue-400 hover:text-blue-300 transition duration-200 ease-in-out">Question
bank</a>
→ <a href="https://echoes-of-the-past.netlify.app/"
class="text-blue-400 hover:text-blue-300 transition duration-200 ease-in-out">Website</a>
</li>
</ul>
</div>
<div class="bg-zinc-800 p-4 rounded-lg shadow-md mb-6">
<h3 class="text-xl font-semibold text-zinc-200 mb-3">From 0432410005101088 (b1tranger)</h3>
<ul class="list-disc list-inside space-y-2 text-zinc-400">
<li><a href="https://github.com/oU1TS/Resources"
class="text-blue-400 hover:text-blue-300 transition duration-200 ease-in-out">Resources</a>
→ <a href="https://b1tacad.netlify.app/"
class="text-blue-400 hover:text-blue-300 transition duration-200 ease-in-out">Website</a>
</li>
<li><a href="https://github.com/oU1TS/Scheduler"
class="text-blue-400 hover:text-blue-300 transition duration-200 ease-in-out">Scheduler</a>
→ <a href="https://b1tsched.netlify.app/"
class="text-blue-400 hover:text-blue-300 transition duration-200 ease-in-out">Website</a>
</li>
</ul>
</div>
<div class="bg-zinc-800 p-4 rounded-lg shadow-md mb-6">
<!-- <div class="bg-zinc-800 p-4 rounded-lg shadow-md"> -->
<h3 class="text-xl font-semibold text-zinc-200 mb-3">From 0432220005101061 (AkibReza)</h3>
<ul class="list-disc list-inside space-y-2 text-zinc-400">
<li><a href="https://github.com/AkibReza/uitsBOT"
class="text-blue-400 hover:text-blue-300 transition duration-200 ease-in-out">uitsBOT</a>
→ <a href="https://akibreza.github.io/uitsBOT/"
class="text-blue-400 hover:text-blue-300 transition duration-200 ease-in-out">Website</a>
</li>
</ul>
</div>
</section>
</main>
<script>
const menuButton = document.getElementById('menu-button');
const sidebar = document.querySelector('aside');
const overlay = document.getElementById('overlay');
// Function to open the sidebar
function openSidebar() {
sidebar.classList.remove('hidden');
overlay.classList.add('visible');
document.body.style.overflow = 'hidden'; // Prevent body scrolling
}
// Function to close the sidebar
function closeSidebar() {
sidebar.classList.add('hidden');
overlay.classList.remove('visible');
document.body.style.overflow = ''; // Restore body scrolling
}
// Toggle sidebar on menu button click
menuButton.addEventListener('click', () => {
if (sidebar.classList.contains('hidden')) {
openSidebar();
} else {
closeSidebar();
}
});
// Close sidebar when clicking on a link inside it (mobile view)
sidebar.querySelectorAll('a').forEach(link => {
link.addEventListener('click', () => {
if (window.innerWidth < 1024) { // Only on mobile
closeSidebar();
}
});
});
// Close sidebar when clicking on the overlay
overlay.addEventListener('click', () => {
closeSidebar();
});
// Handle window resize to ensure correct sidebar state
window.addEventListener('resize', () => {
if (window.innerWidth >= 1024) {
// Desktop view: ensure sidebar is visible and overlay is hidden
sidebar.classList.remove('hidden');
overlay.classList.remove('visible');
document.body.style.overflow = ''; // Restore body scrolling
} else {
// Mobile view: if currently open, keep it open and overlay visible
if (!sidebar.classList.contains('hidden')) {
overlay.classList.add('visible');
document.body.style.overflow = 'hidden';
} else {
// If sidebar is hidden, ensure overlay is hidden too
overlay.classList.remove('visible');
document.body.style.overflow = '';
}
}
});
// Initialize sidebar state on page load based on screen width
window.addEventListener('load', () => {
if (window.innerWidth < 1024) {
sidebar.classList.add('hidden'); // Start hidden on mobile
} else {
sidebar.classList.remove('hidden'); // Start visible on desktop
}
});
</script>
</body>
</html>