Skip to content

Commit 83721a2

Browse files
committed
added new content
1 parent 2934d6e commit 83721a2

File tree

6 files changed

+64
-28
lines changed

6 files changed

+64
-28
lines changed

Learn.md

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,13 @@ Visit our website [CodeHarbourHub](https://www.codeharborhub.live/)
33

44
## Table of Contents
55

6-
- [Introduction](#introduction)
7-
- [Features](#features)
8-
- [Contributing Guidelines](#contributing-guidelines)
9-
- [Code of Conduct](#code-of-conduct)
10-
- [Socials](#socials)
6+
- [CodeHarbourHub](#codeharbourhub)
7+
- [Table of Contents](#table-of-contents)
8+
- [Introduction](#introduction)
9+
- [Features](#features)
10+
- [Contributing Guidelines](#contributing-guidelines)
11+
- [Code of Conduct](#code-of-conduct)
12+
- [Socials](#socials)
1113

1214
## Introduction
1315

@@ -16,16 +18,16 @@ We're the exclusive platform offering a comprehensive tech curriculum, taught by
1618

1719
## Features
1820
- **In-Depth Tutorials**: Dive into comprehensive tutorials covering a wide range of programming languages like C++, Java, Python, JavaScript and Typescript and frameworks like ReactJS along with Data Structures and Algorithms.
19-
![](/assets/Tutorials.png)
21+
<!-- ![](/assets/Tutorials.png) -->
2022

2123
- **Courses for Mastery**: Enroll in structured courses designed to take your skills to the next level. They range from learning a particular language and implementing them hands-on as projects to enhance learning.
22-
![](/assets/Courses.png)
24+
<!-- ![](/assets/Courses.png) -->
2325

2426
- **Inspiring Showcases**: Explore inspiring showcases of real-world projects and innovative web solutions.
25-
![](/assets/Showcase.png)
27+
<!-- ![](/assets/Showcase.png) -->
2628

2729
- **Engaging Community**: Connect with a vibrant community of developers, share knowledge, and collaborate on projects.
28-
![](/assets/Community.png)
30+
<!-- ![](/assets/Community.png) -->
2931

3032
## Contributing Guidelines
3133

community/Learn.md

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
---
2+
id: learn
3+
title: Welcome to CodeHarbourHub
4+
sidebar_label: Learn
5+
sidebar_position: 6
6+
---
7+
8+
Visit our website [CodeHarbourHub](https://codeharborhub.github.io/)
9+
10+
## Introduction
11+
12+
Welcome to "CodeHarbourHub" - Our mission at CodeHarbourHub to provide accessible and comprehensive educational resources to learners of all levels, from Beginners learners to Advanced professionals.
13+
We're the exclusive platform offering a comprehensive tech curriculum, taught by industry masters, completely free. Join our vibrant community, master in-demand skills, and launch your dream tech career.
14+
15+
## Features
16+
- **In-Depth Tutorials**: Dive into comprehensive tutorials covering a wide range of programming languages like C++, Java, Python, JavaScript and Typescript and frameworks like ReactJS along with Data Structures and Algorithms.
17+
<!-- ![](/assets/Tutorials.png) -->
18+
19+
- **Courses for Mastery**: Enroll in structured courses designed to take your skills to the next level. They range from learning a particular language and implementing them hands-on as projects to enhance learning.
20+
<!-- ![](/assets/Courses.png) -->
21+
22+
- **Inspiring Showcases**: Explore inspiring showcases of real-world projects and innovative web solutions.
23+
<!-- ![](/assets/Showcase.png) -->
24+
25+
- **Engaging Community**: Connect with a vibrant community of developers, share knowledge, and collaborate on projects.
26+
<!-- ![](/assets/Community.png) -->
27+
28+
## Contributing Guidelines
29+
30+
For the enthusiasts who want to contribute to CodeHarbourHub, please refer to our [Contributing Guildelines](https://github.com/CodeHarborHub/codeharborhub/blob/main/CONTRIBUTING.md)
31+
32+
## Code of Conduct
33+
34+
For all the enthusiastic contributers, please refer to the [Code of Conduct](https://github.com/CodeHarborHub/codeharborhub/blob/main/CODE_OF_CONDUCT.md)
35+
36+
## Socials
37+
Stay updated with the latest news and announcements:
38+
- [LinkedIn](https://www.linkedin.com/groups/14232119/)
39+
- [Twitter](https://twitter.com/CodesWithAjay)

courses/index.md

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,16 @@ Our courses are designed to help you learn new skills and advance your career. W
2424

2525
Explore our courses to find the one that suits your interests and goals. Whether you are looking to learn a new programming language, build a web application, analyze data, or improve your project management skills, we have a course for you. Start your learning journey today!
2626

27-
import courses from '@site/src/data/courses';
27+
<!-- import courses from '@site/src/data/courses'; -->
2828

29-
<Courses courses={courses} />
29+
<!-- <Courses courses={courses} /> -->
30+
31+
<!-- ====== OR ============= -->
32+
33+
<!--
34+
import courses from '@site/src/database/courses';
35+
36+
<Courses courses={courses} /> -->
3037

3138
To get started, select a course from the list above or explore our recommended courses below. If you have any questions or need help, feel free to reach out to us.
3239

courses/recommend.md

Lines changed: 0 additions & 15 deletions
This file was deleted.

docs/web-socket/Introduction.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ description: WebSocket is a communication protocol that provides full-duplex com
1010
WebSocket is a communication protocol that provides full-duplex communication channels over a single TCP connection. It is designed to be a more efficient and real-time alternative to traditional HTTP polling mechanisms for web applications.
1111

1212
### Introduction:
13+
1314
In WebSocket, web applications typically used HTTP for communication between the client (browser) and the server. HTTP, however, is a request-response protocol, which means the client sends a request to the server and the server responds with the requested data. This model is not suitable for scenarios where real-time, bidirectional communication is required because:
1415

1516
1. **Polling:** Clients need to continuously poll the server for updates, which can be inefficient and result in latency.
@@ -19,6 +20,7 @@ In WebSocket, web applications typically used HTTP for communication between the
1920
WebSocket addresses these limitations by establishing a persistent connection between the client and the server, allowing both parties to initiate data exchange at any time, asynchronously. This connection is established through an initial handshake between the client and the server during which the protocol details are negotiated.
2021

2122
### Explanation:
23+
2224
WebSocket operates on top of TCP and provides a full-duplex communication channel between a client (typically a web browser) and a server. Here's how it works:
2325

2426
1. **Handshake:** The client and server establish a WebSocket connection through a handshake mechanism. The client sends an HTTP request with specific headers indicating its intent to upgrade to WebSocket. If the server supports WebSocket and agrees to the upgrade, it responds with an HTTP 101 status code (Switching Protocols) and WebSocket-specific headers.
@@ -32,6 +34,7 @@ WebSocket operates on top of TCP and provides a full-duplex communication channe
3234
5. **Compatibility:** WebSocket is supported by all modern web browsers and is widely used in web applications that require real-time communication.
3335

3436
### Use Cases:
37+
3538
WebSocket is particularly useful in applications requiring real-time updates or interaction, such as:
3639

3740
- **Chat applications:** Enables instant messaging and group chats.

src/css/custom.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -390,9 +390,9 @@ th {
390390
border-radius: 8px;
391391
}
392392

393-
[data-theme="dark"] #__docusaurus_skipToContent_fallback {
393+
/* [data-theme="dark"] #__docusaurus_skipToContent_fallback {
394394
background: linear-gradient(rgba(15, 23, 42, 0.796), rgba(15, 23, 42, 0.23));
395-
}
395+
} */
396396
[data-theme="dark"] .navbar {
397397
background: rgba(15, 23, 42, 0.862);
398398
border-bottom: 1px solid #4e8da0db;

0 commit comments

Comments
 (0)