fullstackmachinelearning.hashnode.devIntroduction to Machine Learning Part 1An example To introduce machine learning let us introduce a simple example. Suppose we are running a Car classified website where we let people sell or buy used cars. So suppose a person wishes to sell his car and post a picture of car in our websit...Jan 28, 2024Β·3 min read
fullstackblockchain.hashnode.devBlockchain Introduction SimplifiedHistory The idea of blockchain originated in 1991 from a paper titled βHow to time-stamp a digital documentβ by Stuart Haber and W Scott Stornetta which conveys the idea of a system by which digital documents could be timestamped securely. In 2012 th...Nov 29, 2023Β·5 min read
aayushsinha.hashnode.devRecursion in PythonRecursive functions are functions that call themselves. Recursion is often used in ways similar to iteration, and many calculations can often be computed using either process. However, iteration and recursion have their own pros and cons that can var...Jun 3, 2023Β·4 min read
aayushsinha.hashnode.devFunctions in PythonIn programming, abstraction refers to the idea of not necessarily knowing (exactly) how something works but knowing how to properly use it instead. For example, you may not know what a module of code consists of or how it was built, but you can still...May 27, 2023Β·7 min read
aayushsinha.hashnode.devSimple Numerical Programs in PythonNow that we have covered the basics of Python in our Pythonic Way Series, it is time to start thinking about how we can combine those learnings to write some simple programs. Exhaustive Enumeration The following code prints the integer cube root, if ...May 25, 2023Β·5 min read