This repository contains comprehensive guides and notes on various programming languages, technologies, and concepts.
- Python
- Java
- C#
- Software Engineering
- Database Management Systems
- Internet & Web
- Computer Networks
- OSI Model
- System Design
- Linux
To run this project locally:
- Clone the repository
- Navigate to the project directory
- Start a local server:
python -m http.server 8000
- Open your browser and go to
http://localhost:8000
This project is configured to automatically deploy to GitHub Pages when changes are pushed to the main branch.
- Push your changes to the main branch:
git add.
git commit -m "Your commit message"
git push origin main
- GitHub Actions will automatically build and deploy the site to GitHub Pages.
The deployment is configured in the .github/workflows/deploy.yml file. This workflow:
- Triggers on pushes to the main branch
- Builds the site using Jekyll
- Deploys the built site to GitHub Pages