├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── documentation-update.yml │ └── feature_request.yml ├── pull_request_template.md └── workflows │ ├── autocomment-wait.yml │ ├── pr_merge.yaml │ └── pr_raise.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LEARN.md ├── LICENSE ├── README.md ├── SECURITY.md ├── blog ├── 2019-05-28-first-blog-post.md ├── 2019-05-29-long-blog-post.md ├── 2021-08-01-mdx-blog-post.mdx ├── 2021-08-26-welcome │ ├── docusaurus-plushie-banner.jpeg │ └── index.md ├── authors.yml └── tags.yml ├── docs ├── AI │ └── aiml │ │ ├── _category_.json │ │ ├── aiml-0.md │ │ ├── aiml-1.md │ │ ├── aiml-2.md │ │ ├── aiml-3.md │ │ └── aiml-project.md ├── blockchain-development │ ├── _category_.json │ ├── blockchain-basics │ │ ├── _category_.json │ │ ├── blockchain-0.md │ │ └── quiz.json │ └── blockchain-projects.md ├── code-playground-demo.md ├── data-structure-algorithms │ ├── _category_.json │ ├── basic-concepts │ │ ├── _category_.json │ │ ├── dsa-0.md │ │ └── quiz.json │ └── dsa-prepsheet.md ├── devops │ ├── _category_.json │ ├── devops-0.md │ ├── devops-1.md │ ├── devops-2.md │ ├── devops-3.md │ └── quiz.json ├── generative-ai │ ├── _category_.json │ └── ai-fundamentals │ │ ├── _category_.json │ │ ├── ai-0.md │ │ └── quiz.json ├── intro.md ├── notes │ ├── blockchain.md │ ├── devops.md │ ├── dsa.md │ ├── gen-ai.md │ ├── intro1.md │ └── web-dev.md └── web-developement │ ├── _category_.json │ ├── css │ ├── _category_.json │ ├── css-0.md │ ├── css-projects.md │ └── quiz.json │ ├── database │ ├── _category_.json │ ├── database-0.md │ ├── database-1.md │ ├── database-2.md │ └── quiz.json │ ├── html │ ├── _category_.json │ ├── html-0.md │ ├── html-1.md │ ├── html-2.md │ ├── html-3.md │ ├── html-4.md │ ├── html-5.md │ ├── html-6.md │ ├── html-7.md │ ├── html-project.md │ └── quiz.json │ ├── javascript │ ├── JavaScript-Project.md │ ├── _category_.json │ ├── js-0.md │ └── quiz.json │ ├── nodejs │ ├── _category_.json │ ├── node-0.md │ ├── node-1.md │ └── quiz.json │ ├── python │ ├── _category_.json │ ├── python-0.md │ ├── python-1.md │ ├── python-2.md │ ├── python-3.md │ └── python-4.md │ └── reactjs │ ├── _category_.json │ ├── quiz.js │ ├── quiz.json │ ├── react-0.md │ ├── react-1.md │ ├── react-2.md │ ├── react-3.md │ ├── react-4.md │ └── reactjs-Project.md ├── docusaurus.config.ts ├── lectures └── Videolectures.js ├── package.json ├── sidebars.ts ├── src ├── components │ ├── CodePlayground │ │ ├── CodePlayground.css │ │ ├── README.md │ │ ├── Template.tsx │ │ └── index.tsx │ ├── CourseProgress.module.css │ ├── CourseProgress.tsx │ ├── HomepageFeatures │ │ ├── index.tsx │ │ ├── styles.module.css │ │ └── techNews.tsx │ ├── Quiz.tsx │ ├── ScrollProgressBar.css │ ├── ScrollProgressBar.tsx │ └── ScrollToTopButton.tsx ├── css │ └── custom.css ├── pages │ ├── Index.tsx │ ├── index.module.css │ ├── lectures.tsx │ ├── markdown-page.md │ └── news.tsx └── theme │ ├── Footer │ ├── index.tsx │ └── styles.module.css │ ├── Navbar │ └── Content │ │ ├── index.tsx │ │ └── styles.module.css │ └── Root.tsx ├── static ├── .nojekyll ├── img │ ├── docusaurus-social-card.jpg │ ├── favicon.ico │ ├── learnhub.png │ └── logo.svg └── videos │ ├── lec1.mp4 │ ├── lec2.mp4 │ ├── lec3.mp4 │ ├── lec4.mp4 │ ├── lec5.mp4 │ └── lec6.mp4 └── tsconfig.json /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souvikpramanikgit/LearnHub/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/documentation-update.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souvikpramanikgit/LearnHub/HEAD/.github/ISSUE_TEMPLATE/documentation-update.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souvikpramanikgit/LearnHub/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souvikpramanikgit/LearnHub/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/autocomment-wait.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souvikpramanikgit/LearnHub/HEAD/.github/workflows/autocomment-wait.yml -------------------------------------------------------------------------------- /.github/workflows/pr_merge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souvikpramanikgit/LearnHub/HEAD/.github/workflows/pr_merge.yaml -------------------------------------------------------------------------------- /.github/workflows/pr_raise.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souvikpramanikgit/LearnHub/HEAD/.github/workflows/pr_raise.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souvikpramanikgit/LearnHub/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souvikpramanikgit/LearnHub/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souvikpramanikgit/LearnHub/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LEARN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souvikpramanikgit/LearnHub/HEAD/LEARN.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souvikpramanikgit/LearnHub/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souvikpramanikgit/LearnHub/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souvikpramanikgit/LearnHub/HEAD/SECURITY.md -------------------------------------------------------------------------------- /blog/2019-05-28-first-blog-post.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souvikpramanikgit/LearnHub/HEAD/blog/2019-05-28-first-blog-post.md -------------------------------------------------------------------------------- /blog/2019-05-29-long-blog-post.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souvikpramanikgit/LearnHub/HEAD/blog/2019-05-29-long-blog-post.md -------------------------------------------------------------------------------- /blog/2021-08-01-mdx-blog-post.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souvikpramanikgit/LearnHub/HEAD/blog/2021-08-01-mdx-blog-post.mdx -------------------------------------------------------------------------------- /blog/2021-08-26-welcome/docusaurus-plushie-banner.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souvikpramanikgit/LearnHub/HEAD/blog/2021-08-26-welcome/docusaurus-plushie-banner.jpeg -------------------------------------------------------------------------------- /blog/2021-08-26-welcome/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souvikpramanikgit/LearnHub/HEAD/blog/2021-08-26-welcome/index.md -------------------------------------------------------------------------------- /blog/authors.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souvikpramanikgit/LearnHub/HEAD/blog/authors.yml -------------------------------------------------------------------------------- /blog/tags.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souvikpramanikgit/LearnHub/HEAD/blog/tags.yml -------------------------------------------------------------------------------- /docs/AI/aiml/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souvikpramanikgit/LearnHub/HEAD/docs/AI/aiml/_category_.json -------------------------------------------------------------------------------- /docs/AI/aiml/aiml-0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souvikpramanikgit/LearnHub/HEAD/docs/AI/aiml/aiml-0.md -------------------------------------------------------------------------------- /docs/AI/aiml/aiml-1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souvikpramanikgit/LearnHub/HEAD/docs/AI/aiml/aiml-1.md -------------------------------------------------------------------------------- /docs/AI/aiml/aiml-2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souvikpramanikgit/LearnHub/HEAD/docs/AI/aiml/aiml-2.md -------------------------------------------------------------------------------- /docs/AI/aiml/aiml-3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souvikpramanikgit/LearnHub/HEAD/docs/AI/aiml/aiml-3.md -------------------------------------------------------------------------------- /docs/AI/aiml/aiml-project.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souvikpramanikgit/LearnHub/HEAD/docs/AI/aiml/aiml-project.md -------------------------------------------------------------------------------- /docs/blockchain-development/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souvikpramanikgit/LearnHub/HEAD/docs/blockchain-development/_category_.json -------------------------------------------------------------------------------- /docs/blockchain-development/blockchain-basics/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souvikpramanikgit/LearnHub/HEAD/docs/blockchain-development/blockchain-basics/_category_.json -------------------------------------------------------------------------------- /docs/blockchain-development/blockchain-basics/blockchain-0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souvikpramanikgit/LearnHub/HEAD/docs/blockchain-development/blockchain-basics/blockchain-0.md -------------------------------------------------------------------------------- /docs/blockchain-development/blockchain-basics/quiz.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souvikpramanikgit/LearnHub/HEAD/docs/blockchain-development/blockchain-basics/quiz.json -------------------------------------------------------------------------------- /docs/blockchain-development/blockchain-projects.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souvikpramanikgit/LearnHub/HEAD/docs/blockchain-development/blockchain-projects.md -------------------------------------------------------------------------------- /docs/code-playground-demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souvikpramanikgit/LearnHub/HEAD/docs/code-playground-demo.md -------------------------------------------------------------------------------- /docs/data-structure-algorithms/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souvikpramanikgit/LearnHub/HEAD/docs/data-structure-algorithms/_category_.json -------------------------------------------------------------------------------- /docs/data-structure-algorithms/basic-concepts/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souvikpramanikgit/LearnHub/HEAD/docs/data-structure-algorithms/basic-concepts/_category_.json -------------------------------------------------------------------------------- /docs/data-structure-algorithms/basic-concepts/dsa-0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souvikpramanikgit/LearnHub/HEAD/docs/data-structure-algorithms/basic-concepts/dsa-0.md -------------------------------------------------------------------------------- /docs/data-structure-algorithms/basic-concepts/quiz.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souvikpramanikgit/LearnHub/HEAD/docs/data-structure-algorithms/basic-concepts/quiz.json -------------------------------------------------------------------------------- /docs/data-structure-algorithms/dsa-prepsheet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souvikpramanikgit/LearnHub/HEAD/docs/data-structure-algorithms/dsa-prepsheet.md -------------------------------------------------------------------------------- /docs/devops/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souvikpramanikgit/LearnHub/HEAD/docs/devops/_category_.json -------------------------------------------------------------------------------- /docs/devops/devops-0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souvikpramanikgit/LearnHub/HEAD/docs/devops/devops-0.md -------------------------------------------------------------------------------- /docs/devops/devops-1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souvikpramanikgit/LearnHub/HEAD/docs/devops/devops-1.md -------------------------------------------------------------------------------- /docs/devops/devops-2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souvikpramanikgit/LearnHub/HEAD/docs/devops/devops-2.md -------------------------------------------------------------------------------- /docs/devops/devops-3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souvikpramanikgit/LearnHub/HEAD/docs/devops/devops-3.md -------------------------------------------------------------------------------- /docs/devops/quiz.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souvikpramanikgit/LearnHub/HEAD/docs/devops/quiz.json -------------------------------------------------------------------------------- /docs/generative-ai/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souvikpramanikgit/LearnHub/HEAD/docs/generative-ai/_category_.json -------------------------------------------------------------------------------- /docs/generative-ai/ai-fundamentals/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souvikpramanikgit/LearnHub/HEAD/docs/generative-ai/ai-fundamentals/_category_.json -------------------------------------------------------------------------------- /docs/generative-ai/ai-fundamentals/ai-0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souvikpramanikgit/LearnHub/HEAD/docs/generative-ai/ai-fundamentals/ai-0.md -------------------------------------------------------------------------------- /docs/generative-ai/ai-fundamentals/quiz.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souvikpramanikgit/LearnHub/HEAD/docs/generative-ai/ai-fundamentals/quiz.json -------------------------------------------------------------------------------- /docs/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souvikpramanikgit/LearnHub/HEAD/docs/intro.md -------------------------------------------------------------------------------- /docs/notes/blockchain.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souvikpramanikgit/LearnHub/HEAD/docs/notes/blockchain.md -------------------------------------------------------------------------------- /docs/notes/devops.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souvikpramanikgit/LearnHub/HEAD/docs/notes/devops.md -------------------------------------------------------------------------------- /docs/notes/dsa.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souvikpramanikgit/LearnHub/HEAD/docs/notes/dsa.md -------------------------------------------------------------------------------- /docs/notes/gen-ai.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souvikpramanikgit/LearnHub/HEAD/docs/notes/gen-ai.md -------------------------------------------------------------------------------- /docs/notes/intro1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souvikpramanikgit/LearnHub/HEAD/docs/notes/intro1.md -------------------------------------------------------------------------------- /docs/notes/web-dev.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souvikpramanikgit/LearnHub/HEAD/docs/notes/web-dev.md -------------------------------------------------------------------------------- /docs/web-developement/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souvikpramanikgit/LearnHub/HEAD/docs/web-developement/_category_.json -------------------------------------------------------------------------------- /docs/web-developement/css/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souvikpramanikgit/LearnHub/HEAD/docs/web-developement/css/_category_.json -------------------------------------------------------------------------------- /docs/web-developement/css/css-0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souvikpramanikgit/LearnHub/HEAD/docs/web-developement/css/css-0.md -------------------------------------------------------------------------------- /docs/web-developement/css/css-projects.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souvikpramanikgit/LearnHub/HEAD/docs/web-developement/css/css-projects.md -------------------------------------------------------------------------------- /docs/web-developement/css/quiz.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souvikpramanikgit/LearnHub/HEAD/docs/web-developement/css/quiz.json -------------------------------------------------------------------------------- /docs/web-developement/database/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souvikpramanikgit/LearnHub/HEAD/docs/web-developement/database/_category_.json -------------------------------------------------------------------------------- /docs/web-developement/database/database-0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souvikpramanikgit/LearnHub/HEAD/docs/web-developement/database/database-0.md -------------------------------------------------------------------------------- /docs/web-developement/database/database-1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souvikpramanikgit/LearnHub/HEAD/docs/web-developement/database/database-1.md -------------------------------------------------------------------------------- /docs/web-developement/database/database-2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souvikpramanikgit/LearnHub/HEAD/docs/web-developement/database/database-2.md -------------------------------------------------------------------------------- /docs/web-developement/database/quiz.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souvikpramanikgit/LearnHub/HEAD/docs/web-developement/database/quiz.json -------------------------------------------------------------------------------- /docs/web-developement/html/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souvikpramanikgit/LearnHub/HEAD/docs/web-developement/html/_category_.json -------------------------------------------------------------------------------- /docs/web-developement/html/html-0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souvikpramanikgit/LearnHub/HEAD/docs/web-developement/html/html-0.md -------------------------------------------------------------------------------- /docs/web-developement/html/html-1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souvikpramanikgit/LearnHub/HEAD/docs/web-developement/html/html-1.md -------------------------------------------------------------------------------- /docs/web-developement/html/html-2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souvikpramanikgit/LearnHub/HEAD/docs/web-developement/html/html-2.md -------------------------------------------------------------------------------- /docs/web-developement/html/html-3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souvikpramanikgit/LearnHub/HEAD/docs/web-developement/html/html-3.md -------------------------------------------------------------------------------- /docs/web-developement/html/html-4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souvikpramanikgit/LearnHub/HEAD/docs/web-developement/html/html-4.md -------------------------------------------------------------------------------- /docs/web-developement/html/html-5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souvikpramanikgit/LearnHub/HEAD/docs/web-developement/html/html-5.md -------------------------------------------------------------------------------- /docs/web-developement/html/html-6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souvikpramanikgit/LearnHub/HEAD/docs/web-developement/html/html-6.md -------------------------------------------------------------------------------- /docs/web-developement/html/html-7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souvikpramanikgit/LearnHub/HEAD/docs/web-developement/html/html-7.md -------------------------------------------------------------------------------- /docs/web-developement/html/html-project.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souvikpramanikgit/LearnHub/HEAD/docs/web-developement/html/html-project.md -------------------------------------------------------------------------------- /docs/web-developement/html/quiz.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souvikpramanikgit/LearnHub/HEAD/docs/web-developement/html/quiz.json -------------------------------------------------------------------------------- /docs/web-developement/javascript/JavaScript-Project.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souvikpramanikgit/LearnHub/HEAD/docs/web-developement/javascript/JavaScript-Project.md -------------------------------------------------------------------------------- /docs/web-developement/javascript/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souvikpramanikgit/LearnHub/HEAD/docs/web-developement/javascript/_category_.json -------------------------------------------------------------------------------- /docs/web-developement/javascript/js-0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souvikpramanikgit/LearnHub/HEAD/docs/web-developement/javascript/js-0.md -------------------------------------------------------------------------------- /docs/web-developement/javascript/quiz.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souvikpramanikgit/LearnHub/HEAD/docs/web-developement/javascript/quiz.json -------------------------------------------------------------------------------- /docs/web-developement/nodejs/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souvikpramanikgit/LearnHub/HEAD/docs/web-developement/nodejs/_category_.json -------------------------------------------------------------------------------- /docs/web-developement/nodejs/node-0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souvikpramanikgit/LearnHub/HEAD/docs/web-developement/nodejs/node-0.md -------------------------------------------------------------------------------- /docs/web-developement/nodejs/node-1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souvikpramanikgit/LearnHub/HEAD/docs/web-developement/nodejs/node-1.md -------------------------------------------------------------------------------- /docs/web-developement/nodejs/quiz.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souvikpramanikgit/LearnHub/HEAD/docs/web-developement/nodejs/quiz.json -------------------------------------------------------------------------------- /docs/web-developement/python/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souvikpramanikgit/LearnHub/HEAD/docs/web-developement/python/_category_.json -------------------------------------------------------------------------------- /docs/web-developement/python/python-0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souvikpramanikgit/LearnHub/HEAD/docs/web-developement/python/python-0.md -------------------------------------------------------------------------------- /docs/web-developement/python/python-1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souvikpramanikgit/LearnHub/HEAD/docs/web-developement/python/python-1.md -------------------------------------------------------------------------------- /docs/web-developement/python/python-2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souvikpramanikgit/LearnHub/HEAD/docs/web-developement/python/python-2.md -------------------------------------------------------------------------------- /docs/web-developement/python/python-3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souvikpramanikgit/LearnHub/HEAD/docs/web-developement/python/python-3.md -------------------------------------------------------------------------------- /docs/web-developement/python/python-4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souvikpramanikgit/LearnHub/HEAD/docs/web-developement/python/python-4.md -------------------------------------------------------------------------------- /docs/web-developement/reactjs/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souvikpramanikgit/LearnHub/HEAD/docs/web-developement/reactjs/_category_.json -------------------------------------------------------------------------------- /docs/web-developement/reactjs/quiz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souvikpramanikgit/LearnHub/HEAD/docs/web-developement/reactjs/quiz.js -------------------------------------------------------------------------------- /docs/web-developement/reactjs/quiz.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souvikpramanikgit/LearnHub/HEAD/docs/web-developement/reactjs/quiz.json -------------------------------------------------------------------------------- /docs/web-developement/reactjs/react-0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souvikpramanikgit/LearnHub/HEAD/docs/web-developement/reactjs/react-0.md -------------------------------------------------------------------------------- /docs/web-developement/reactjs/react-1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souvikpramanikgit/LearnHub/HEAD/docs/web-developement/reactjs/react-1.md -------------------------------------------------------------------------------- /docs/web-developement/reactjs/react-2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souvikpramanikgit/LearnHub/HEAD/docs/web-developement/reactjs/react-2.md -------------------------------------------------------------------------------- /docs/web-developement/reactjs/react-3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souvikpramanikgit/LearnHub/HEAD/docs/web-developement/reactjs/react-3.md -------------------------------------------------------------------------------- /docs/web-developement/reactjs/react-4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souvikpramanikgit/LearnHub/HEAD/docs/web-developement/reactjs/react-4.md -------------------------------------------------------------------------------- /docs/web-developement/reactjs/reactjs-Project.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souvikpramanikgit/LearnHub/HEAD/docs/web-developement/reactjs/reactjs-Project.md -------------------------------------------------------------------------------- /docusaurus.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souvikpramanikgit/LearnHub/HEAD/docusaurus.config.ts -------------------------------------------------------------------------------- /lectures/Videolectures.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souvikpramanikgit/LearnHub/HEAD/lectures/Videolectures.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souvikpramanikgit/LearnHub/HEAD/package.json -------------------------------------------------------------------------------- /sidebars.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souvikpramanikgit/LearnHub/HEAD/sidebars.ts -------------------------------------------------------------------------------- /src/components/CodePlayground/CodePlayground.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souvikpramanikgit/LearnHub/HEAD/src/components/CodePlayground/CodePlayground.css -------------------------------------------------------------------------------- /src/components/CodePlayground/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souvikpramanikgit/LearnHub/HEAD/src/components/CodePlayground/README.md -------------------------------------------------------------------------------- /src/components/CodePlayground/Template.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souvikpramanikgit/LearnHub/HEAD/src/components/CodePlayground/Template.tsx -------------------------------------------------------------------------------- /src/components/CodePlayground/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souvikpramanikgit/LearnHub/HEAD/src/components/CodePlayground/index.tsx -------------------------------------------------------------------------------- /src/components/CourseProgress.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souvikpramanikgit/LearnHub/HEAD/src/components/CourseProgress.module.css -------------------------------------------------------------------------------- /src/components/CourseProgress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souvikpramanikgit/LearnHub/HEAD/src/components/CourseProgress.tsx -------------------------------------------------------------------------------- /src/components/HomepageFeatures/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souvikpramanikgit/LearnHub/HEAD/src/components/HomepageFeatures/index.tsx -------------------------------------------------------------------------------- /src/components/HomepageFeatures/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souvikpramanikgit/LearnHub/HEAD/src/components/HomepageFeatures/styles.module.css -------------------------------------------------------------------------------- /src/components/HomepageFeatures/techNews.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souvikpramanikgit/LearnHub/HEAD/src/components/HomepageFeatures/techNews.tsx -------------------------------------------------------------------------------- /src/components/Quiz.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souvikpramanikgit/LearnHub/HEAD/src/components/Quiz.tsx -------------------------------------------------------------------------------- /src/components/ScrollProgressBar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souvikpramanikgit/LearnHub/HEAD/src/components/ScrollProgressBar.css -------------------------------------------------------------------------------- /src/components/ScrollProgressBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souvikpramanikgit/LearnHub/HEAD/src/components/ScrollProgressBar.tsx -------------------------------------------------------------------------------- /src/components/ScrollToTopButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souvikpramanikgit/LearnHub/HEAD/src/components/ScrollToTopButton.tsx -------------------------------------------------------------------------------- /src/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souvikpramanikgit/LearnHub/HEAD/src/css/custom.css -------------------------------------------------------------------------------- /src/pages/Index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souvikpramanikgit/LearnHub/HEAD/src/pages/Index.tsx -------------------------------------------------------------------------------- /src/pages/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souvikpramanikgit/LearnHub/HEAD/src/pages/index.module.css -------------------------------------------------------------------------------- /src/pages/lectures.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souvikpramanikgit/LearnHub/HEAD/src/pages/lectures.tsx -------------------------------------------------------------------------------- /src/pages/markdown-page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souvikpramanikgit/LearnHub/HEAD/src/pages/markdown-page.md -------------------------------------------------------------------------------- /src/pages/news.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souvikpramanikgit/LearnHub/HEAD/src/pages/news.tsx -------------------------------------------------------------------------------- /src/theme/Footer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souvikpramanikgit/LearnHub/HEAD/src/theme/Footer/index.tsx -------------------------------------------------------------------------------- /src/theme/Footer/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souvikpramanikgit/LearnHub/HEAD/src/theme/Footer/styles.module.css -------------------------------------------------------------------------------- /src/theme/Navbar/Content/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souvikpramanikgit/LearnHub/HEAD/src/theme/Navbar/Content/index.tsx -------------------------------------------------------------------------------- /src/theme/Navbar/Content/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souvikpramanikgit/LearnHub/HEAD/src/theme/Navbar/Content/styles.module.css -------------------------------------------------------------------------------- /src/theme/Root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souvikpramanikgit/LearnHub/HEAD/src/theme/Root.tsx -------------------------------------------------------------------------------- /static/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/img/docusaurus-social-card.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souvikpramanikgit/LearnHub/HEAD/static/img/docusaurus-social-card.jpg -------------------------------------------------------------------------------- /static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souvikpramanikgit/LearnHub/HEAD/static/img/favicon.ico -------------------------------------------------------------------------------- /static/img/learnhub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souvikpramanikgit/LearnHub/HEAD/static/img/learnhub.png -------------------------------------------------------------------------------- /static/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souvikpramanikgit/LearnHub/HEAD/static/img/logo.svg -------------------------------------------------------------------------------- /static/videos/lec1.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souvikpramanikgit/LearnHub/HEAD/static/videos/lec1.mp4 -------------------------------------------------------------------------------- /static/videos/lec2.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souvikpramanikgit/LearnHub/HEAD/static/videos/lec2.mp4 -------------------------------------------------------------------------------- /static/videos/lec3.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souvikpramanikgit/LearnHub/HEAD/static/videos/lec3.mp4 -------------------------------------------------------------------------------- /static/videos/lec4.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souvikpramanikgit/LearnHub/HEAD/static/videos/lec4.mp4 -------------------------------------------------------------------------------- /static/videos/lec5.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souvikpramanikgit/LearnHub/HEAD/static/videos/lec5.mp4 -------------------------------------------------------------------------------- /static/videos/lec6.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souvikpramanikgit/LearnHub/HEAD/static/videos/lec6.mp4 -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souvikpramanikgit/LearnHub/HEAD/tsconfig.json --------------------------------------------------------------------------------