Syeda Maham FahimforfreeCodeCampfreecodecamp.org·Oct 24, 2024What is a Floating-Point Arithmetic Problem?Have you ever worked with numbers like 1/3, where the result is 0.33333… and continues forever? As humans, we naturally round off such numbers, but have you ever wondered how computers handle them? In this article, you’ll explore how computers manage...DiscussJavaScript
KartavayforKARTAVAYkartavay.hashnode.dev·Oct 10, 2024IntroductionWHICH SOURCE I AM USING Mathematics is essential for machine learning without it you won’t be able to do much. For learning Math I will be using MIT OCW. MIT offers very decent lectures with great problems which come with practice problems to enhance...DiscussMATHS FOR MACHINE LEARNINGMachine Learning
Mixed Dumpmixedump.hashnode.dev·Aug 26, 2024Understanding MathematicsA study guide by Peter Alfeld. I wrote this page for students at the University of Utah. You may find it useful whoever you are, and you are welcome to use it, but I'm going to assume that you are such a student (probably an undergraduate), and I'll ...DiscussMathematics
Mixed Dumpmixedump.hashnode.dev·Aug 21, 2024G. Polya, How to Solve ItUNDERSTANDING THE PROBLEM First. You have to understand the problem. What is the unknown? What are the data? What is the condition? Is it possible to satisfy the condition? Is the condition sufficient to determine the unknown? Or is it insufficien...DiscussPeter Alfeld
ByteScrum TechnologiesforByteScrum Technologiesblog.bytescrum.com·Jul 22, 2024How to Master Machine Learning in 2024: A Complete GuideMachine Learning (ML) is not just a buzzword; it's a transformative force that’s redefining industries and everyday life. From personalized recommendations on your favorite streaming platforms to the sophistication of self-driving cars, ML is at the ...Discuss·51 likes·78 readsMachine LearningML 2024
Chris Dourisdigitalcreations.hashnode.dev·Jun 12, 2024Jumping Ball ProgressI finally figured out how to fix the font path crash. Using const wasn't enough, as many crashes suddenly appeared. Using a char array fixed the font path problem and also resolved a random segmentation fault I was experiencing. Also, I discovered a ...DiscussJumping BallC
Naymul Islamainaymul.hashnode.dev·Jun 5, 2024Unveiling the Power of Statistics: Mastering Data Science - Part 05Margin Of Error - ME👇 When the population variance is known, the margin of error is equal to his expression - When the population variance is unknown the expression is - The confidence interval could be summarized as follows - The true population ...Discuss·1 likeUnveiling the Power of Statistics: Mastering Data Sciencestatistics
Chris Dourisdigitalcreations.hashnode.dev·Jun 2, 2024Jumping Ball ProgressIt took me quite a bit to figure out how to handle the ball's behaviour. Using print statements and studying how a ball should work, I managed to write some logic for it. I added new attributes to the ball struct and used them to manage the calculati...DiscussJumping BallC
Chris Dourisdigitalcreations.hashnode.dev·May 24, 2024Day 97/100 100 Days of CodeBack to working on the results of the mini-app. I had trouble getting the results because strtod always output a value of 0.0. I tried atof, but the same problem occurred. I then tried creating my own functions for char* to double conversion and acci...Discuss100 Days of CodeC
Chris Dourisdigitalcreations.hashnode.dev·May 19, 2024Day 93/100 100 Days of CodeI worked on fixing some very strange issues with strings. Similar to the TTF_OpenFont command, using miniApplication.location changed it, which resulted in using the wrong directory path. This is very strange behaviour. To fix it, I created a new con...Discuss100 Days of CodeC