bude-global-tech-presentations

πŸš€ Bude Global Tech Presentations πŸš€

![Bude Global Banner](/bude-global-tech-presentations/legacy/assets/images/budeglobal_logo.png) **A Dynamic, Interactive Platform for Technical Knowledge Sharing** πŸ’š **[Join our WhatsApp Community](https://chat.whatsapp.com/BIrcLvcEAJrB23WlUUbkuC)** πŸ’š [![License: GPL v3](https://img.shields.io/badge/License-GPLv3-blue.svg)](LICENSE) [![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg)](CONTRIBUTING.md) [![GitHub Stars](https://img.shields.io/github/stars/BUDEGlobalEnterprise/bude-global-tech-presentations?style=social)](https://github.com/BUDEGlobalEnterprise/bude-global-tech-presentations) [View Demo](https://budeglobalenterprise.github.io/bude-global-tech-presentations) β€’ [Report Bug](https://github.com/BUDEGlobalEnterprise/bude-global-tech-presentations/issues) β€’ [Request Feature](https://github.com/BUDEGlobalEnterprise/bude-global-tech-presentations/issues)

Scan the QR to support the project πŸ‘‡

### Sponsors Become a sponsor and get your logo on our README on GitHub with a link to your site.

🌟 Overview

Welcome to the official repository for Bude Global Tech Presentations β€” a cutting-edge platform designed to democratize technical knowledge through engaging, interactive presentations. Built by developers, for developers, this platform serves as a centralized hub where the Bude Global community can discover, share, and learn from expertly crafted technical content.

Important: By using this service, you agree to our Terms and Conditions and Privacy Policy.

🎯 Mission

Our mission is to foster a culture of continuous learning and knowledge sharing by providing an accessible, modern platform for technical presentations that covers everything from programming languages and frameworks to DevOps tools and best practices.


πŸ“ Table of Contents


✨ Features

🎨 Core Functionality

πŸŽ“ Presentation Features

πŸ”§ Developer Experience


🎬 Demo & Screenshots

🏠 Home Page - Presentation Selector

Home Page Smart search and autocomplete for quick presentation discovery

πŸ‘€ Author/Presenter Page

Author Page Professional presenter introduction with social links

πŸ“Š React Presentation Example

React Presentation Clean, modern slide design with code examples


πŸ› οΈ Technologies Used

This project leverages modern web technologies for optimal performance and developer experience:

Technology Purpose Version
HTML5 Structure and semantic markup Latest
CSS3 Styling, animations, and responsive design Latest
JavaScript (ES6+) Dynamic behavior and presentation logic ES2020+
Reveal.js Presentation framework 4.6.0
Remixicon Icon system 4.3.0
Google Fonts Custom typography (Molot) -

Why These Technologies?

⚑ Performance Optimizations

This project includes several performance optimizations:

Optimization Benefit
Preconnect hints Faster CDN resource loading
DNS prefetch Early DNS resolution
Deferred scripts Non-blocking page render
SRI hashes Secure CDN resources
Lazy animations Animations start after page load
Adaptive quality Auto-adjusts for mobile devices

🧩 Modular Architecture

The codebase is organized into modular files in src/ for easier maintenance:

src/
β”œβ”€β”€ js/
β”‚   β”œβ”€β”€ config.js           # Global configuration
β”‚   β”œβ”€β”€ main.js             # Entry point
β”‚   β”œβ”€β”€ animations/         # 8 animation modes
β”‚   β”œβ”€β”€ ui/                 # UI components
β”‚   └── utils/              # Utility functions
└── css/
    β”œβ”€β”€ base/               # Variables, reset
    β”œβ”€β”€ components/         # Header, cards, footer, etc.
    └── utilities/          # Responsive styles

πŸ—οΈ Project Structure

bude-global-tech-presentations/
β”‚
β”œβ”€β”€ πŸ“ assets/                          # Static assets
β”‚   β”œβ”€β”€ πŸ“ fonts/                       # Custom fonts (Molot)
β”‚   β”‚   └── Molot.otf
β”‚   β”œβ”€β”€ πŸ“ icons/                       # Custom icons
β”‚   └── πŸ“ images/                      # Images and logos
β”‚       β”œβ”€β”€ budeglobal_logo.png
β”‚       └── πŸ“ Readme/                  # README screenshots
β”‚           β”œβ”€β”€ home.png
β”‚           β”œβ”€β”€ author.png
β”‚           └── intro-react.png
β”‚
β”œβ”€β”€ πŸ“ presentations/                   # Presentation JSON files
β”‚   β”œβ”€β”€ intro-oss.json                  # Open Source Software
β”‚   β”œβ”€β”€ intro-python.json               # Python Programming
β”‚   β”œβ”€β”€ intro-csharp.json               # C# Programming
β”‚   └── ... (40+ presentations)
β”‚
β”œβ”€β”€ πŸ“ src/                             # Modular source code (for bundlers)
β”‚   β”œβ”€β”€ πŸ“ js/                          # JavaScript modules
β”‚   β”‚   β”œβ”€β”€ config.js                   # Animation configuration
β”‚   β”‚   β”œβ”€β”€ main.js                     # Entry point
β”‚   β”‚   β”œβ”€β”€ πŸ“ animations/              # 8 animation modes
β”‚   β”‚   β”œβ”€β”€ πŸ“ ui/                      # UI components
β”‚   β”‚   └── πŸ“ utils/                   # Utility functions
β”‚   └── πŸ“ css/                         # CSS modules
β”‚       β”œβ”€β”€ πŸ“ base/                    # Variables, reset
β”‚       β”œβ”€β”€ πŸ“ components/              # Header, cards, footer
β”‚       └── πŸ“ utilities/               # Responsive styles
β”‚
β”œβ”€β”€ πŸ“ templates/                       # Template files
β”‚   └── sample-presentation.json        # Template for new presentations
β”‚
β”œβ”€β”€ πŸ“„ index.html                       # Main entry point
β”œβ”€β”€ πŸ“„ presentations.js                 # Presentation configuration
β”œβ”€β”€ πŸ“„ presenter.js                     # Animation & slide rendering
β”œβ”€β”€ πŸ“„ loader.js                        # Dynamic loading logic
β”œβ”€β”€ πŸ“„ style.css                        # Custom styles
β”œβ”€β”€ πŸ“„ github-live.js                   # GitHub API integration
β”œβ”€β”€ πŸ“„ theme-switcher.js                # Dark/Light theme toggle
β”œβ”€β”€ πŸ“„ orientation-handler.js           # Mobile orientation handler
β”œβ”€β”€ πŸ“„ README.md                        # This file
β”œβ”€β”€ πŸ“„ CONTRIBUTING.md                  # Contribution guidelines
└── πŸ“„ LICENSE                          # GNU GENERAL PUBLIC LICENSE


πŸš€ Quick Start

Get up and running in under 2 minutes!

Prerequisites

Installation

Option 1: Clone the Repository

# Clone the repository
git clone https://github.com/BUDEGlobalEnterprise/bude-global-tech-presentations.git

# Navigate to the project directory
cd bude-global-tech-presentations

# Open in browser
open index.html
# Or on Windows: start index.html
# Or on Linux: xdg-open index.html

Option 2: Download ZIP

  1. Download the latest release
  2. Extract the ZIP file
  3. Open index.html in your browser

Option 3: GitHub Pages (Live Demo)

Simply visit: https://budeglobalenterprise.github.io/bude-global-tech-presentations


πŸ‘€ How to View Presentations

Browser Experience

  1. Open the Platform: Launch index.html in your browser
  2. Browse Presentations: View all available presentations in the selector modal
  3. Search: Type keywords to filter presentations instantly
  4. Select: Click on any presentation to begin viewing
  5. Navigate: Use arrow keys or on-screen controls to move between slides
  6. Return Home: Press H to return to the presentation selector
Action Keyboard Mouse/Touch
Next Slide β†’ or ↓ or Space Click right arrow
Previous Slide ← or ↑ Click left arrow
Scroll Slide ↓ / ↑ (if content overflows) Mouse wheel
First Slide Home -
Last Slide End -
Slide Overview Esc or O -
Fullscreen F -
Return to Selector H -

βž• How to Add a New Presentation

Adding a new presentation is straightforward and takes just 3 steps!

Step 1: Create Your JSON File

Create a new .json file in the presentations/ directory:

touch presentations/my-awesome-tech-talk.json

Use the template structure (see Presentation JSON Schema) or copy from templates/sample-presentation.json.

Step 2: Update Configuration

Open index.html and locate the PRESENTATIONS_CONFIG array. Add your presentation:

const PRESENTATIONS_CONFIG = [
    // ... existing presentations ...
    {
        file: 'presentations/my-awesome-tech-talk.json',
        title: 'My Awesome Tech Talk',
        description: 'A comprehensive guide to an amazing technology',
        keywords: ['awesome', 'tech', 'innovation', 'tutorial']
    }
];

Step 3: Test & Commit

# Test locally
open index.html

# Commit your changes
git add presentations/my-awesome-tech-talk.json index.html
git commit -m "Add: My Awesome Tech Talk presentation"
git push origin main

That’s it! Your presentation is now live and searchable! πŸŽ‰


πŸ“‹ Presentation JSON Schema

Basic Structure

{
  "presentation": {
    "topics": [
      {
        "id": "unique-topic-id",
        "title": "Topic Title",
        "slides": [
          {
            "type": "title|presenter|topic-title|content|qa|thank-you",
            "title": "Slide Title",
            "emoji": "πŸš€",
            "box": {
              "title": "Box Title",
              "content": "Box content with <strong>HTML</strong>",
              "code": "const example = 'code block';",
              "list": [
                { "emoji": "βœ…", "text": "List item with emoji" },
                { "emoji": "❌", "text": "Another item" }
              ]
            },
            "list": [
              { "emoji": "πŸ“Œ", "text": "Top-level list item" }
            ],
            "note": {
              "text": "Additional note or tip"
            }
          }
        ]
      }
    ]
  }
}

Slide Types

1. Title Slide

{
  "type": "title",
  "title": "Presentation Title",
  "subtitle": "Subtitle or tagline"
}

2. Presenter Slide

{
  "type": "presenter",
  "name": "Your Name",
  "title": "Your Title",
  "experience": "Years of experience",
  "oss_experience": "OSS contribution details",
  "github": "https://github.com/username",
  "website": "https://yoursite.com"
}

3. Topic Title Slide

{
  "type": "topic-title",
  "title": "Section Title",
  "box": {
    "content": "Section introduction"
  }
}

4. Content Slide

{
  "type": "content",
  "emoji": "πŸ’‘",
  "title": "Slide Title",
  "box": {
    "title": "Optional box title",
    "content": "Main content",
    "code": "// Code example\nfunction hello() {\n  console.log('Hello');\n}",
    "list": [
      { "emoji": "βœ…", "text": "Feature one" },
      { "emoji": "βœ…", "text": "Feature two" }
    ]
  },
  "list": [
    { "emoji": "πŸ“Œ", "text": "Additional point" }
  ],
  "note": {
    "text": "Pro tip or note"
  }
}

5. Q&A Slide

{
  "type": "qa",
  "title": "Questions? πŸ’¬",
  "content": "Your questions are welcome!"
}

6. Thank You Slide

{
  "type": "thank-you",
  "title": "Thank You! πŸŽ‰",
  "box": {
    "content": "Closing message",
    "note": "Final thoughts"
  },
  "footer": {
    "org": "Organization Name",
    "tagline": "Your tagline"
  }
}

HTML Support

You can use HTML tags in content:


⌨️ Keyboard Shortcuts

Presentation Navigation

Key Action
β†’ ↓ Space PgDn Next slide
← ↑ PgUp Previous slide
Home First slide
End Last slide
Esc O Slide overview mode
F Fullscreen mode
S Speaker notes (if available)
B . Blackout/pause
H Return to presentation selector

Slide Scrolling (Long Content)

Key Action
↓ Scroll down (if slide has overflow)
↑ Scroll up (if slide has overflow)

Animation Controls

Key Animation Mode
1 Floating Shapes
2 Gradient Blobs
3 Neon Waves
4 Animated Grid
5 Particle Field
6 Pulse Rings
7 Parallax Layers
8 Cosmic Dust

🀝 Contributing

We warmly welcome contributions from developers of all skill levels! Whether you’re fixing typos, adding presentations, or building new features, your contribution matters.

Ways to Contribute

  1. πŸ“š Add Presentations: Share your knowledge on any tech topic
  2. πŸ› Report Bugs: Found an issue? Open an issue
  3. πŸ’‘ Suggest Features: Have ideas? We’d love to hear them
  4. πŸ“– Improve Documentation: Help make our docs clearer
  5. 🎨 Design Enhancements: Improve UI/UX
  6. πŸ”§ Code Improvements: Refactor, optimize, or add features

Contribution Workflow

  1. Fork the repository
  2. Create a feature branch (git checkout -b feature/amazing-feature)
  3. Make your changes
  4. Test thoroughly
  5. Commit with clear messages (git commit -m 'Add: Amazing feature')
  6. Push to your fork (git push origin feature/amazing-feature)
  7. Open a Pull Request

Commit Message Convention

Type: Brief description

Types:
- Add: New feature or presentation
- Fix: Bug fix
- Update: Update existing content
- Docs: Documentation changes
- Style: Code style changes (formatting)
- Refactor: Code refactoring
- Test: Adding tests
- Chore: Maintenance tasks

Example: Add: Introduction to Kubernetes presentation

For detailed guidelines, see CONTRIBUTING.md.


πŸ“š Available Presentations

Programming Languages

Frameworks & Libraries

DevOps & Tools

Security & Identity

Analytics & BI

Open Source

More presentations are added regularly by our community!


πŸ”§ Customization

Branding

Update colors in index.html CSS variables:

:root {
    --bude-primary: #0060a0;      /* Primary brand color */
    --bude-purple: #6f42c1;       /* Secondary color */
    --bude-pink: #cb6ce6;         /* Accent color */
    --bude-dark: #2c3e50;         /* Dark text */
}

Fonts

Replace the Molot font in assets/fonts/ and update the @font-face rule:

@font-face {
    font-family: 'YourFont';
    src: url('assets/fonts/YourFont.otf') format('opentype');
}

Replace legacy/assets/images/budeglobal_logo.png with your logo (recommended size: 400x400px).

Update social links in the <footer> section of index.html.


❓ FAQ

Q: Can I use this for my own presentations?

A: Absolutely! This project is open-source under GNU GENERAL PUBLIC LICENSE. Feel free to fork and customize.

Q: Do I need a server to host this?

A: No! It’s a static site. You can host on GitHub Pages, Netlify, Vercel, or any static hosting service.

Q: Can I export presentations to PDF?

A: Yes! Use your browser’s print function (Ctrl+P) and select β€œSave as PDF”. Reveal.js handles print styling automatically.

Q: How do I add speaker notes?

A: Reveal.js supports speaker notes. Press S during presentation to open speaker view.

Q: Can I embed videos or interactive elements?

A: Yes! You can use HTML in your JSON content, including <iframe>, <video>, and interactive elements.

Q: Is there a limit to slide count?

A: No technical limit, but we recommend keeping presentations under 100 slides for optimal performance.

Q: Can I use this offline?

A: Mostly yes, but external resources (CDN fonts, icons) require internet. You can download and self-host these for full offline support.


©️ License

This project is licensed under the GNU GENERAL PUBLIC LICENSE - see the LICENSE file for details.

What This Means

βœ… You can:

❌ You cannot:

πŸ“ You must:


πŸ“œ Terms and Conditions

By accessing and using this service, you agree to be bound by our Terms and Conditions.

πŸ™ Acknowledgments

Special thanks to:


πŸ“§ Contact

Bude Global Enterprise

Support


**⭐ Star this repository if you find it helpful!** **Made with ❀️ by [Bude Global Enterprise](https://budeglobal.in)** *Empowering developers through open collaboration* [⬆ Back to Top](#-bude-global-tech-presentations-)