Skip to content

Commit f4221d0

Browse files
committed
Add Harvard CS50 course to the courses list and increase shuffle interval
1 parent 0cb9534 commit f4221d0

1 file changed

Lines changed: 12 additions & 1 deletion

File tree

src/Page/ResoucesHub/Courseslist.jsx

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,17 @@ const shareContent = (url) => {
2121
// List of Best Tech Courses on the Internet
2222

2323
const courses = [
24+
// Computer science courses by Harvard
25+
{
26+
platform: 'YouTube',
27+
title: 'Harvard CS50 - Full Computer Science University Course - English',
28+
instructor: 'David Jay Malan',
29+
duration: '24 Hour',
30+
level: 'Beginner',
31+
domain: ['Computer Science', 'CS50', 'CS', 'Free'],
32+
courseLink: 'https://youtu.be/8mAITcNt710?si=zPApnq2wlCSZACJd',
33+
shareLink: '#harvardcs50',
34+
},
2435
// HTML and CSS Courses by Prashant Jain, Love Babbar, FreeCodeCamp, Dave Gray, Simon Bao, Kevin Powell
2536
{
2637
platform: 'YouTube',
@@ -576,7 +587,7 @@ const CoursesList = () => {
576587

577588
const interval = setInterval(() => {
578589
setShuffledCourses(shuffleArray(courses));
579-
}, 5000);
590+
}, 9000);
580591

581592
// Cleanup interval on component unmount
582593
return () => clearInterval(interval);

0 commit comments

Comments
 (0)