Skip to content
This repository was archived by the owner on Mar 7, 2024. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added public/static/home/avatars/Anuj_garg.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/static/home/avatars/Gaurav_Beriwal.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/static/home/avatars/kunal_kush.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/static/images/backs/cta.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/static/images/projects/p1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/static/reviews/high.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/static/reviews/low.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/static/reviews/students/AayushKumar.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/static/reviews/students/ShantanuGupta.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/static/reviews/students/Sunidhi.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/static/reviews/students/kunal.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/static/reviews/top.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
68 changes: 64 additions & 4 deletions src/Routes.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,12 @@ import HomeView from 'src/views/pages/HomeView';
import CAView from 'src/views/pages/CLView';
import EventsView from 'src/views/pages/EventsView';
import LoadingScreen from 'src/components/LoadingScreen';
import machineLearningView from 'src/views/pages/Courses/MachineLearningView'
import MachineLearningView from 'src/views/pages/Courses/MachineLearningView'
import AlgoJavaView from 'src/views/pages/Courses/AlgoJavaView'
import AlgoPythonView from 'src/views/pages/Courses/AlgoPythonView'
import WebFullStakView from 'src/views/pages/Courses/WebFullStakView'
import CompetitiveJavaView from 'src/views/pages/Courses/CompetitiveJavaView'
import PythonDevelopmentView from 'src/views/pages/Courses/PythonDevelopmentView'

const routesConfig = [
{
Expand Down Expand Up @@ -89,13 +94,68 @@ const routesConfig = [
]
},
{
path: '/machineLearning',
path: '/machine-learning-using-python',
layout: MainLayout,
routes: [
{
exact: true,
path: '/machineLearning',
component: machineLearningView
path: '/machine-learning-using-python',
component: MachineLearningView
}
]
},
{
path: '/ds-algo-with-java',
layout: MainLayout,
routes: [
{
exact: true,
path: '/ds-algo-with-java',
component: AlgoJavaView
}
]
},
{
path: '/ds-algo-with-python',
layout: MainLayout,
routes: [
{
exact: true,
path: '/ds-algo-with-python',
component: AlgoPythonView
}
]
},
{
path: '/fullstack-webdev-with-js',
layout: MainLayout,
routes: [
{
exact: true,
path: '/fullstack-webdev-with-js',
component: WebFullStakView
}
]
},
{
path: '/competitive-programming-using-java',
layout: MainLayout,
routes: [
{
exact: true,
path: '/competitive-programming-using-java',
component: CompetitiveJavaView
}
]
},
{
path: '/application-dev-using-python',
layout: MainLayout,
routes: [
{
exact: true,
path: '/application-dev-using-python',
component: PythonDevelopmentView
}
]
},
Expand Down
41 changes: 0 additions & 41 deletions src/data/courses/advanced/Ar.js

This file was deleted.

143 changes: 143 additions & 0 deletions src/data/courses/advanced/CompetitiveJava.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,143 @@
export const competitiveJava = {
difficulty: 'Intermediate',
duration: '30 Lectures',
level: 'Level 2',
link: '/competitive-programming-using-java',
domain: 'Interview Prepration',
title: 'Competitve Programming using Java',
upcoming: 'Oct 1st',
projects: [
{
title: 'Mobile App Development',
img: '/static/images/projects/p1.png'
},
{
title: 'Mobile App Development',
img: '/static/images/projects/p1.png'
},
{
title: 'Mobile App Development',
img: '/static/images/projects/p1.png'
},
{
title: 'Mobile App Development',
img: '/static/images/projects/p1.png'
},
{
title: 'Mobile App Development',
img: '/static/images/projects/p1.png'
}
],
topics: [
{
title: 'Revising Python Fundamentals',
classes: 'Classes 1-4',
subtopics: [
'In-built Data Structures',
'Control Flow Statements ',
'Underatanding OOPS and Modules',
'Various File operations'
]
},
{
title: 'Data Discovery and Visualiation',
classes: 'Classes 5-8',
subtopics: [
'Numpy and array computation',
'Processing Images with Numpy',
'Data Acquisition - Web Scrapping, Web APIs',
'Data Analysis using Pandas',
'Importing and Exporting Data '
]
},
{
title: 'Classical Machine Learning Algorithms',
classes: 'Classes 9-13',
subtopics: [
'K-Nearest Neighbour search',
'K-means clustering',
'Linear Regression',
'Logistic Regression',
'Decision trees and Ensembling Learning',
'Random Forest Classifiers',
'Support Vector Machines'
]
},
{
title: 'Natural Language Processing',
classes: 'Classes 14-18',
subtopics: [
'Text generation using Markov Chain',
'Text classification using Naive Bayes',
'Deploy ML model with flask on heroku',
'Create a facebook chatbot with flask'
]
},
{
title: 'Deep Neural Networks',
classes: 'Classes 19-22',
subtopics: [
'Neural Architectures and Training',
'Deep Learning with Keras',
'Convolutions and the GoogLe Net',
'Transfer Learning with ResNet and AlexNet',
'Dimensionality Reduction using Auto-encoders'
]
},
{
title: 'Advanced Deep Learning',
classes: 'Classes 23-27',
subtopics: [
'Recurrent Neural Network',
'Long Short Term Memory',
'Music Generation using LSTM',
'Predict Gender from name with LSTM',
'Generative Adversarial Nets'
]
},
{
title: 'Reinforcemnt Learning',
classes: 'Classes 27-30',
subtopics: [
'Foundational Reinforcemnt Learning',
'Evolutionary Algorithms and Genetic Algorithms',
'Deep Q-learning and training',
'Training on OpenAI Gym Simulaters'
]
}
],
slides: [
{
heading: 'Create Facebook Chatbot',
subheading: 'Using Natural Language Processing',
image: '/static/swipes/bot.png'
},
{
heading: 'Dedect and recognize Faces',
subheading: 'Using Deep Learning',
image: '/static/swipes/cup.png'
},
{
heading: 'Generate machine made music',
subheading: 'Using Deep Learning',
image: '/static/swipes/cup.png'
},
{
heading: 'Learn To make Snapchat Filters',
subheading: 'Using Image Processing',
image: '/static/swipes/ar.png'
}
],
tags: [
'ML',
'Image Processing',
'Deep Learning',
'Neural Network',
'CNN',
'Python'
],
overview: [
"While VR is all about taking people into virtual worlds, AR is about bringing virtual elements into your real world. Imagine learning about dinosaurs by having life-sized ones walk in front of you. See how a particular dress fits you just by having it be augmented onto your body using your phone's camera. Want a virtual pet to roam around in your house? AR can make that possible.",
"We’ve been teaching VR for over 12 months but this AR course is BRAND NEW! You’ll learn to design and code Augmented Reality apps using Camp K12's very own HatchXR platform."
]
};
Loading