Programming ParadigmsA programming paradigm refers to the pattern which a program code follows. It can be thought of as a style of programming. Some languages will enforce a paradigm onto the programmers using it while others allow you to program in whichever paradigm yo...Jun 22, 2022·6 min read·13
eval() and Function() - JavaScriptHey, in today's blog, we are going to briefly discuss eval() and Function() in JavaScript. Let us begin. Brief eval() and Function() are two powerful tools in JavaScript that both allow you to evaluate any JavaScript expression passed to either of th...Jun 23, 2021·4 min read·185
Abstract Base Class in PythonAbstract Base Class - Python An abstract base class is a class defined as a blueprint for other classes. Abstract base classes are a powerful feature in python since they help you define a blueprint for other classes that may have something in common...May 1, 2021·4 min read·285
Create and serve a simple machine learning modelIn this tutorial, we are going to create and deploy a simple machine learning model. We are going to create the model using Python and the tensorflow library. We will finish up by serving the model in a flask application as an API (Application Progr...Mar 27, 2021·7 min read·161
The difference between String and string in TypescriptTypeScript is a good advancement in the javascript ecosystem. Today we are going to talk about the difference between the String and string types in Typescript. Type error: Type 'String' is not assignable to type 'string'. Let's take a look at the ...Feb 9, 2021·2 min read·189
Scooter: Write and publish short code snippetsScooter Scooter is a simple web app that allows you to create bit-sized code snippets and share it with the world. The Idea Last week, i decided i was going to do an interesting challenge which was to build a functional app in a small amount of time ...Feb 7, 2021·3 min read·114
Create your own HTML element.Have you ever thought about creating your own HTMl element ? If you have ever used a frontend framework like React or Vue or even Angular, you might have been amazed by the fact that you could create literally any component and have reused it through...Jan 17, 2021·7 min read·238