-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
824 lines (741 loc) · 31.4 KB
/
Copy pathindex.html
File metadata and controls
824 lines (741 loc) · 31.4 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Git vs GitHub Introduction | BUDE</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/reveal.js/4.6.0/reveal.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/reveal.js/4.6.0/theme/black.min.css">
<link href="https://cdn.jsdelivr.net/npm/remixicon@4.3.0/fonts/remixicon.css" rel="stylesheet">
<style>
/* BUDE Brand Font */
@font-face {
font-family: 'Molot';
src: url('assets/fonts/Molot.otf') format('opentype');
font-weight: normal;
font-style: normal;
}
:root {
/* BUDE Brand Colors */
--bude-primary: #0060a0;
--bude-purple: #6f42c1;
--bude-pink: #cb6ce6;
--bude-dark: #2c3e50;
--bude-light: #ffffff;
--bude-bg-light: #f8f9fa;
--bude-text-dark: #2c3e50;
/* Reveal.js Theme Variables */
--r-background-color: #ffffff;
--r-main-color: #2c3e50;
--r-heading-color: #0060a0;
--r-link-color: #0060a0;
--r-selection-background-color: #0060a0;
--r-heading-font: 'Molot', sans-serif;
}
body {
background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}
/* Watermark background logo fixed to body */
body::before {
content: '';
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 400px;
height: 400px;
background-image: url('assets/images/budeglobal_logo.png');
background-size: contain;
background-repeat: no-repeat;
background-position: center;
opacity: 0.05;
z-index: 0;
pointer-events: none;
}
.reveal {
position: relative;
z-index: 1;
}
.reveal {
color: var(--bude-text-dark);
font-size: 28px;
}
.reveal h1,
.reveal h2,
.reveal h3 {
text-transform: none;
font-weight: 700;
font-family: 'Molot', sans-serif;
}
.reveal h1 {
background: linear-gradient(135deg, var(--bude-primary) 0%, var(--bude-purple) 50%, var(--bude-pink) 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
font-size: 2.5em;
}
.reveal h2 {
color: var(--bude-primary);
font-size: 2em;
}
.reveal h3 {
color: var(--bude-purple);
font-size: 1.5em;
}
.reveal p {
font-size: 0.9em;
}
.reveal .slides section {
text-align: left;
padding-bottom: 100px !important;
}
.reveal .slides section.center {
text-align: center;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
/* Hide watermark on title/center slides */
body.hide-watermark::before {
display: none;
}
/* Enable scrolling for overflowing content */
.reveal .slides section.present {
overflow-y: auto !important;
max-height: 720px !important;
}
.reveal .slides {
overflow: visible !important;
}
.reveal ul {
margin-left: 0;
}
.reveal li {
margin-bottom: 0.5em;
font-size: 0.85em;
}
.highlight {
color: var(--bude-primary);
font-weight: bold;
}
.emoji {
font-style: normal;
}
.two-column {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 2em;
}
.box {
background: linear-gradient(135deg, rgba(0, 96, 160, 0.08) 0%, rgba(111, 66, 193, 0.05) 100%);
border-left: 4px solid var(--bude-primary);
padding: 1em;
margin: 1em 0;
border-radius: 4px;
font-size: 0.9em;
}
.small-text {
font-size: 0.7em;
}
code {
background: rgba(0, 96, 160, 0.1);
padding: 0.2em 0.4em;
border-radius: 3px;
color: var(--bude-purple);
}
.footer {
position: absolute;
bottom: 1em;
left: 1em;
font-size: 0.6em;
color: #6c757d;
}
/* BUDE Logo */
.bude-logo {
width: 200px;
height: auto;
margin: 0 auto 1.5em auto;
display: block;
}
.bude-logo-small {
width: 80px;
height: auto;
}
/* Logo on all slides */
.slide-logo {
position: absolute;
bottom: 20px;
right: 20px;
width: 60px;
height: auto;
opacity: 0.6;
z-index: 10;
}
/* Presenter Info */
.presenter-info {
margin-top: 3em;
padding: 0.8em;
font-size: 0.75em;
color: #6c757d;
opacity: 0.85;
}
.presenter-info p {
margin: 0.3em 0;
}
.presenter-info a {
color: var(--bude-purple);
text-decoration: none;
}
.presenter-info a:hover {
color: var(--bude-pink);
}
/* Fun elements matching brand voice */
.fun-accent {
background: linear-gradient(90deg, var(--bude-purple), var(--bude-pink));
padding: 0.2em 0.6em;
border-radius: 4px;
display: inline-block;
color: white;
}
/* Gradient backgrounds for special slides */
.gradient-bg {
background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%) !important;
}
.gradient-accent {
background: linear-gradient(135deg, var(--bude-purple) 0%, var(--bude-pink) 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
font-weight: bold;
}
/* Section divider for better light theme visibility */
.section-divider {
background: linear-gradient(135deg, rgba(0, 96, 160, 0.15), rgba(111, 66, 193, 0.15));
padding: 2em;
border-radius: 8px;
margin: 1em 0;
}
/* Sticky footer */
footer {
position: fixed;
bottom: 0;
left: 0;
width: 100%;
background: rgba(115, 105, 255, 0.7);
backdrop-filter: blur(8px);
color: white;
padding: 18px 10px;
text-align: center;
font-family: 'Segoe UI', sans-serif;
z-index: 1000;
}
footer .social-links {
margin-bottom: 8px;
}
footer a {
color: white;
margin: 0 8px;
text-decoration: none;
font-size: 1.4rem;
vertical-align: middle;
transition: color 0.3s ease, transform 0.2s ease;
}
footer a:hover {
color: #90caf9;
transform: scale(1.1);
}
/* Brand link avatar */
footer .brand-link {
display: inline-flex;
align-items: center;
gap: 6px;
}
.brand-avatar {
height: 26px;
width: 26px;
border-radius: 50%;
vertical-align: middle;
border: 2px solid #90caf9;
object-fit: cover;
}
footer p {
font-size: 0.9rem;
color: #cfd8dc;
margin-top: 5px;
}
/* Git/GitHub specific styling */
.git-box {
background: linear-gradient(135deg, rgba(240, 80, 48, 0.08) 0%, rgba(255, 77, 0, 0.05) 100%);
border-left: 4px solid #f05033;
}
.github-box {
background: linear-gradient(135deg, rgba(36, 41, 46, 0.08) 0%, rgba(47, 54, 61, 0.05) 100%);
border-left: 4px solid #24292e;
}
.command {
background: #2c3e50;
color: white;
padding: 0.5em 1em;
border-radius: 4px;
font-family: monospace;
font-size: 0.8em;
margin: 0.5em 0;
}
.comparison-table {
width: 100%;
border-collapse: collapse;
margin: 1em 0;
font-size: 0.8em;
}
.comparison-table th {
background: var(--bude-primary);
color: white;
padding: 0.8em;
}
.comparison-table td {
padding: 0.8em;
border-bottom: 1px solid #e0e0e0;
}
.comparison-table tr:nth-child(even) {
background: rgba(0, 96, 160, 0.05);
}
</style>
</head>
<body>
<div class="reveal">
<div class="slides">
<!-- Title Slide -->
<section class="center gradient-bg">
<center><img src="assets/images/budeglobal_logo.png" alt="BUDE Logo" class="bude-logo"></center>
<h1 style="font-size: 3em; margin: 0.5em 0;">Git vs GitHub</h1>
<h3 style="color: var(--bude-primary); font-size: 1.4em; margin: 0.5em 0;">Understanding Version Control & Collaboration</h3>
<p style="margin-top: 2em; font-size: 1.3em; color: var(--bude-text-dark);">
<span class="gradient-accent">Demystifying the developer's toolkit</span> 🔧
</p>
</section>
<!-- Presenter Slide -->
<section class="center gradient-bg">
<div style="display: flex; align-items: center; gap: 3em; max-width: 900px;">
<div style="flex-shrink: 0;">
<div
style="width: 250px; height: 250px; border-radius: 50%; background: linear-gradient(135deg, var(--bude-primary), var(--bude-purple)); display: flex; align-items: center; justify-content: center; color: white; font-size: 4em; font-weight: bold; border: 5px solid white; box-shadow: 0 4px 20px rgba(0,0,0,0.15);">
APG
</div>
</div>
<div style="text-align: left;">
<h2 style="margin: 0 0 0.5em 0; font-size: 2.5em;">Aravind Govindhasamy</h2>
<div style="font-size: 1.1em; line-height: 1.8;">
<p style="margin: 0.5em 0;">
<span class="emoji">👔</span> Founder of BUDE
</p>
<p style="margin: 0.5em 0;">
<span class="emoji">💻</span> Software Developer for 3 years
</p>
<p style="margin: 0.5em 0;">
<span class="emoji">📚</span> Git user since 2020
</p>
<p style="margin: 1em 0 0.3em 0;">
<span class="emoji">🔗</span> <a href="https://github.com/aravind-govindhasamy"
target="_blank"
style="color: var(--bude-purple);">github.com/aravind-govindhasamy</a>
</p>
<p style="margin: 0.3em 0;">
<span class="emoji">🌐</span> <a href="https://aravind-govindhasamy.github.io"
target="_blank"
style="color: var(--bude-purple);">aravind-govindhasamy.github.io</a>
</p>
</div>
</div>
</div>
</section>
<!-- What is Version Control? -->
<section>
<h2>What is Version Control? 📝</h2>
<div class="box">
<p>Version control is a system that records changes to a file or set of files over time so that you can recall specific versions later.</p>
</div>
<p style="margin-top: 1.5em; text-align: center;" class="small-text">Think of it as a time machine for your projects!</p>
</section>
<section>
<h3>💡 Why Version Control?</h3>
<ul>
<li><span class="emoji">🕒</span> Track changes and history</li>
<li><span class="emoji">🔀</span> Branch and merge code</li>
<li><span class="emoji">👥</span> Collaborate with others</li>
<li><span class="emoji">🚑</span> Revert to previous states</li>
<li><span class="emoji">🔍</span> See who made what changes</li>
</ul>
</section>
<!-- What is Git? -->
<section>
<h2>What is Git? 🗂️</h2>
<div class="box git-box">
<p><strong>Git</strong> is a free and open source distributed version control system designed to handle everything from small to very large projects with speed and efficiency.</p>
</div>
<p class="small-text" style="margin-top: 1.5em;">Created by Linus Torvalds in 2005 for Linux kernel development</p>
</section>
<section>
<h3>⚡ Key Git Features</h3>
<div class="two-column">
<div>
<h4>Distributed</h4>
<p>Every developer has a full copy of the repository</p>
</div>
<div>
<h4>Fast & Efficient</h4>
<p>Operations are local, no network needed</p>
</div>
</div>
<div class="two-column" style="margin-top: 1em;">
<div>
<h4>Branching & Merging</h4>
<p>Easy to create and merge branches</p>
</div>
<div>
<h4>Data Integrity</h4>
<p>Uses SHA-1 hashes to ensure data integrity</p>
</div>
</div>
</section>
<!-- What is GitHub? -->
<section>
<h2>What is GitHub? 🌐</h2>
<div class="box github-box">
<p><strong>GitHub</strong> is a web-based hosting service for version control using Git. It provides a graphical interface, access control, and several collaboration features.</p>
</div>
<p class="small-text" style="margin-top: 1.5em;">Think of it as "social media for developers"</p>
</section>
<section>
<h3>🚀 What Can You Do on GitHub?</h3>
<ul>
<li><span class="emoji">📁</span> Host repositories in the cloud</li>
<li><span class="emoji">👥</span> Collaborate with teams</li>
<li><span class="emoji">🔍</span> Review code with pull requests</li>
<li><span class="emoji">🐛</span> Track issues and bugs</li>
<li><span class="emoji">🌍</span> Showcase your projects</li>
<li><span class="emoji">🔄</span> Automate workflows with Actions</li>
</ul>
</section>
<!-- Git vs GitHub: The Difference -->
<section>
<h2>Git vs GitHub: The Difference 🤔</h2>
<div class="box">
<p><strong>Git</strong> is the tool, <strong>GitHub</strong> is the service for projects using Git.</p>
</div>
<table class="comparison-table">
<thead>
<tr>
<th>Aspect</th>
<th>Git</th>
<th>GitHub</th>
</tr>
</thead>
<tbody>
<tr>
<td><strong>Type</strong></td>
<td>Version Control System</td>
<td>Web-based Hosting Service</td>
</tr>
<tr>
<td><strong>Installation</strong></td>
<td>Installed locally on computer</td>
<td>Cloud-based (no installation)</td>
</tr>
<tr>
<td><strong>Created By</strong></td>
<td>Linus Torvalds</td>
<td>Chris Wanstrath, PJ Hyett, Tom Preston-Werner</td>
</tr>
<tr>
<td><strong>Ownership</strong></td>
<td>Open Source</td>
<td>Microsoft (acquired in 2018)</td>
</tr>
<tr>
<td><strong>User Management</strong></td>
<td>No built-in user management</td>
<td>Built-in user management</td>
</tr>
</tbody>
</table>
</section>
<section>
<h3>🔍 Analogy Time!</h3>
<div class="two-column">
<div>
<h4>Git</h4>
<p>Like Microsoft Word on your computer</p>
<ul>
<li>You install it locally</li>
<li>You can create documents</li>
<li>You can save versions</li>
<li>Works offline</li>
</ul>
</div>
<div>
<h4>GitHub</h4>
<p>Like Google Docs</p>
<ul>
<li>It's in the cloud</li>
<li>You can share documents</li>
<li>Multiple people can collaborate</li>
<li>Has commenting features</li>
</ul>
</div>
</div>
</section>
<!-- Why Use Both? -->
<section>
<h2>Why Use Both? 💪</h2>
<div class="two-column">
<div>
<h4>Git (Local Power)</h4>
<ul>
<li><span class="emoji">⚡</span> Fast operations</li>
<li><span class="emoji">🔒</span> Work offline</li>
<li><span class="emoji">🛡️</span> Full control over your data</li>
<li><span class="emoji">🔄</span> Flexible workflows</li>
</ul>
</div>
<div>
<h4>GitHub (Collaboration Power)</h4>
<ul>
<li><span class="emoji">👥</span> Team collaboration</li>
<li><span class="emoji">🌍</span> Remote backup</li>
<li><span class="emoji">🔍</span> Code review tools</li>
<li><span class="emoji">🚀</span> Project visibility</li>
</ul>
</div>
</div>
</section>
<!-- Basic Git Commands -->
<section>
<h2>Basic Git Commands 🛠️</h2>
<div class="command">git init</div>
<p class="small-text">Initialize a new Git repository</p>
<div class="command">git add .</div>
<p class="small-text">Stage all changes for commit</p>
<div class="command">git commit -m "Your message"</div>
<p class="small-text">Commit changes with a message</p>
<div class="command">git status</div>
<p class="small-text">Check the status of your repository</p>
</section>
<section>
<h3>More Essential Commands</h3>
<div class="command">git log</div>
<p class="small-text">View commit history</p>
<div class="command">git branch</div>
<p class="small-text">List, create, or delete branches</p>
<div class="command">git checkout -b new-feature</div>
<p class="small-text">Create and switch to a new branch</p>
<div class="command">git merge branch-name</div>
<p class="small-text">Merge a branch into current branch</p>
</section>
<!-- GitHub Workflow -->
<section>
<h2>GitHub Workflow 🔄</h2>
<ol>
<li><span class="emoji">📥</span> Fork a repository</li>
<li><span class="emoji">💻</span> Clone to your machine</li>
<li><span class="emoji">🌿</span> Create a branch for your feature</li>
<li><span class="emoji">💾</span> Make changes and commit them</li>
<li><span class="emoji">📤</span> Push your branch to GitHub</li>
<li><span class="emoji">🔍</span> Open a Pull Request</li>
<li><span class="emoji">✅</span> Discuss and review changes</li>
<li><span class="emoji">🎉</span> Merge and deploy!</li>
</ol>
</section>
<!-- Getting Started -->
<section>
<h2>Getting Started 🚀</h2>
<div class="two-column">
<div>
<h4>Install Git</h4>
<ul>
<li>Download from <a href="https://git-scm.com/">git-scm.com</a></li>
<li>Available for Windows, macOS, Linux</li>
<li>Configure your username and email</li>
</ul>
</div>
<div>
<h4>Create GitHub Account</h4>
<ul>
<li>Sign up at <a href="https://github.com/">github.com</a></li>
<li>It's free for public repositories</li>
<li>Verify your email address</li>
</ul>
</div>
</div>
<div class="box" style="margin-top: 1em;">
<p><strong>Pro Tip:</strong> Set up SSH keys for secure, password-free authentication</p>
</div>
</section>
<!-- Alternatives to GitHub -->
<section>
<h2>Other Git Hosting Services 🌟</h2>
<div class="two-column">
<div>
<h4>GitLab</h4>
<p>Open source alternative with CI/CD built-in</p>
</div>
<div>
<h4>Bitbucket</h4>
<p>Good integration with other Atlassian tools</p>
</div>
</div>
<div class="two-column" style="margin-top: 1em;">
<div>
<h4>Azure DevOps</h4>
<p>Microsoft's solution with project management</p>
</div>
<div>
<h4>SourceForge</h4>
<p>One of the original open source hosting sites</p>
</div>
</div>
<div class="box" style="margin-top: 1em;">
<p><strong>Remember:</strong> All these services use Git underneath!</p>
</div>
</section>
<!-- Best Practices -->
<section>
<h2>Best Practices ✅</h2>
<div class="two-column">
<div>
<h4>Commit Often</h4>
<p>Small, focused commits are easier to understand</p>
</div>
<div>
<h4>Write Good Commit Messages</h4>
<p>Explain <strong>why</strong> you made changes</p>
</div>
</div>
<div class="two-column" style="margin-top: 1em;">
<div>
<h4>Use Branches</h4>
<p>Keep main/master branch stable</p>
</div>
<div>
<h4>Review Code</h4>
<p>Use pull requests for team collaboration</p>
</div>
</div>
</section>
<!-- Common Mistakes -->
<section>
<h2>Common Mistakes to Avoid ⚠️</h2>
<ul>
<li><span class="emoji">📝</span> Committing directly to main/master</li>
<li><span class="emoji">💬</span> Vague commit messages like "fixed stuff"</li>
<li><span class="emoji">📦</span> Committing large binary files</li>
<li><span class="emoji">🔑</span> Committing passwords or API keys</li>
<li><span class="emoji">🔄</span> Not pulling before pushing</li>
<li><span class="emoji">🌿</span> Long-lived feature branches</li>
</ul>
</section>
<!-- Q&A Slide -->
<section class="center gradient-bg">
<h1>Let's Chat! 💬</h1>
<p style="margin-top: 1.5em; font-size: 1.2em; color: var(--bude-text-dark);">
Got questions? Confused about something?<br>
<span class="gradient-accent">No question is too basic!</span>
</p>
</section>
<!-- Thank You Slide -->
<section class="center gradient-bg">
<h1>Thanks for hanging out! 🎉</h1>
<div class="box" style="margin-top: 2em; max-width: 800px; margin-left: auto; margin-right: auto;">
<p style="font-size: 1.1em; margin-bottom: 1em;">
<span class="emoji">🚀</span> Ready to start using Git and GitHub?<br>
<span class="gradient-accent">The developer world awaits!</span>
</p>
<p class="small-text" style="margin-top: 1em;">
Fork • Clone • Commit • Push • Collaborate
</p>
</div>
<div style="margin-top: 2em;">
<p style="font-size: 1.2em;">
<span class="emoji"></span> <strong style="color: var(--bude-primary);">Bude Global Enterprise -
India</strong>
</p>
<p style="margin-top: 0.5em; color: var(--bude-purple);">
Empowering developers through open source
</p>
</div>
</section>
</div>
</div>
<footer>
<div class="social-links">
<a href="https://budeglobal.in" target="_blank" class="brand-link">
<img src="https://github.com/BUDEGlobalEnterprise.png" alt="Bude Global Avatar" class="brand-avatar">
</a> |
<a href="https://blog.budeglobal.in" title="Bude Global Blog"><i class="ri-earth-line"></i></a>
<a href="https://github.com/budeglobalenterprise" title="GitHub"><i class="ri-git-repository-fill"></i></a>
<a href="https://github.com/budeglobalenterprise" title="GitHub"><i class="ri-github-fill"></i></a>
<a href="https://linkedin.com/company/budeglobal" title="LinkedIn"><i class="ri-linkedin-box-fill"></i></a>
<a href="https://www.youtube.com/@BudeGlobalEnterprise" title="YouTube"><i class="ri-youtube-fill"></i></a>
<a href="https://x.com/budeglobalerp" title="Twitter/X"><i class="ri-twitter-x-line"></i></a>
<a href="https://www.instagram.com/budeglobal" title="Instagram"><i class="ri-instagram-line"></i></a>
</div>
<p>© 2025 Bude Global Enterprise — Built with ❤️ for Open Collaboration</p>
</footer>
<script src="https://cdnjs.cloudflare.com/ajax/libs/reveal.js/4.6.0/reveal.min.js"></script>
<script>
// Initialize Reveal.js
Reveal.initialize({
hash: true,
slideNumber: true,
transition: 'slide',
backgroundTransition: 'fade',
controls: true,
progress: true,
center: true,
width: 1280,
height: 720,
margin: 0.1,
minScale: 0.2,
maxScale: 2.0,
overflow: 'scroll',
keyboard: {
40: () => { // Down arrow
const currentSlide = document.querySelector('.reveal .slides section.present');
if (currentSlide && currentSlide.scrollHeight > currentSlide.clientHeight) {
const isAtBottom = currentSlide.scrollTop + currentSlide.clientHeight >= currentSlide.scrollHeight - 5;
if (!isAtBottom) {
currentSlide.scrollTop += 50;
return false; // Prevent default navigation
}
}
Reveal.down(); // Navigate to next slide if at bottom
},
38: () => { // Up arrow
const currentSlide = document.querySelector('.reveal .slides section.present');
if (currentSlide && currentSlide.scrollHeight > currentSlide.clientHeight) {
const isAtTop = currentSlide.scrollTop <= 5;
if (!isAtTop) {
currentSlide.scrollTop -= 50;
return false; // Prevent default navigation
}
}
Reveal.up(); // Navigate to previous slide if at top
}
}
});
// Hide watermark on title slides
Reveal.on('slidechanged', event => {
if (event.currentSlide.classList.contains('center')) {
document.body.classList.add('hide-watermark');
} else {
document.body.classList.remove('hide-watermark');
}
});
// Check initial slide
const initialSlide = document.querySelector('.reveal .slides section.present');
if (initialSlide && initialSlide.classList.contains('center')) {
document.body.classList.add('hide-watermark');
}
</script>
</body>
</html>