Let’s be honest: Python is slow. When I say Python, I mean CPython, it’s reference, C-based, implementation. This is where PyPy comes into play. This is a Python runtime, written in Python (!), which performs 4.4 times faster than CPython. How? Read ahead.
read more “Why Python Written In Python is Faster Than Regular Python”Month: July 2020
Abstract Classes and Meta Classes in Python
Abstract classes (or Interfaces) are an essential part of an Object-Oriented design. While Python is not a purely OOP language, it offers very robust solutions in terms of abstract and meta classes.
read more “Abstract Classes and Meta Classes in Python”Awesome New Features in Python 3.9
Python 3.9 is currently in the 4th iteration of its beta phase (as of July 2020). While some things may change, it is now pretty clear what the new release will look like.
read more “Awesome New Features in Python 3.9”Simple Ways To Speed Up Your React App
React is, arguably, the easiest UI library out there. But this easiness comes at a cost, which is performance. In this article, I will list some ways to improve the performance of your React app drastically.
read more “Simple Ways To Speed Up Your React App”