Shah Abul Kalam A Kiamshah.hashnode.dev·Sep 25, 2024My CS50 Learning Experience ✨Introduction I learnt about CS50 through an Instagram reel I saw back in 2022, I was surprised that Harvard University offers free Computer Science courses for the public that explains almost everything you need to know about programming and how the ...Discuss·1 like·29 readscs50
Vishesh Guptavisheshg.hashnode.dev·Sep 24, 2024CS50 Fall 2024 - Lecture 0 - Scratch | SummaryHow Computers Handle Text, Colors, Images, Videos, and Sound In this lecture, we explored the things from fundamentals including how computers handle various types of data, including text, colors, images, videos, and sound and many more things. Here’...Discuss·1 likedavid malan
Shaibal Haqueshaibalpersonalblog.hashnode.dev·Jul 3, 2024CS50P: how the way of the duck changed me.I started learning how to program for a very academic reason, to pass O-level CSC I needed to learn basic html and css. Soon afterwards I looked up CS50x through a reference from one of my peers from my schools CS club and watched a few lectures and ...Discusscs50
Onyewuchi Esther chikamsoestherkamso.hashnode.dev·Jun 20, 2024My Journey Through CS50 2023: What I Learned from Harvard's Renowned Computer Science CourseINTRODUCTION As a techie who has been so afraid of writing code, I was quite surprised when I came across the CS50 course from Harvard University on YouTube. I am going to tell you though, I did not just stumble upon it outta the blues; the course is...Discuss#cs50 #CS #cs50 2023
ashish nagmotiashish-nagmoti.hashnode.dev·Jun 19, 2024Learning to Code: My CS50 StoryA few months ago, I was completely clueless about what to do in my programming journey. Then, due to advice from some YouTubers and friends, I embarked on my CS50 journey. I must say—what an experience it was! I completed my CS50 course a few weeks a...Swati Sarangi and 1 other are discussing this2 people are discussing thisDiscuss·18 likes·309 readscs50
Karabo Molefikarabomolefi.hashnode.dev·May 10, 2024Solving CS50P - Problem Set 7In this problem set we explore the use of regexes (regular expressions) to examine patterns within our code. Regular expressions enable us to examine expressions in patterns, for a example that of an email address. ℹ Disclaimer: The following code s...Discusscs50
Karabo Molefikarabomolefi.hashnode.dev·May 3, 2024Solving CS50P - Problem Set 6In this Problem Set we explore File I/O (input/output), which is the ability of a program to take a file as input or create a file as output. ℹ Disclaimer: The following code solutions are for educational purposes only and are not intended to be use...Discusscs50p
Aadhithya Bharadwaj BMaadhithya.hashnode.dev·Apr 29, 2024Matching strings in an arrayProblem Statement In this code we are matching the strings in the array with words you type, basically making sure that the word you typed in is there in the array, it is like a bool code. User Story As a Developer, i want to match words with the wor...Discuss·10 likesminimalistic projects
Karabo Molefikarabomolefi.hashnode.dev·Apr 26, 2024Solving CS50P - Problem Set 5In this Problem set we revisited some of our older problems and wrote test code to check that the code is working as expected. With the help of the pytest library we were able to test our code in the terminal, by calling pytest (filename). Pytest is ...Discusscs50p
Karabo Molefikarabomolefi.hashnode.dev·Apr 12, 2024Solving CS50P - Problem Set 3Exceptions are errors that occur within our coding. We will discuss how to handle exceptions in Python using try and except, which are ways of testing out user input before something goes wrong. ℹ Disclaimer: The following code solutions are for edu...Discuss·1 like·83 readsPython