Getting Started with Matplotlib: What You Should KnowEasy Guide for Beginners to Learn MatplotlibJun 9, 2025路4 min read
Colon Equals Operator aka Walrus Operator in PythonPython 3.8 introduced the 'colon equals' operator := which is the same as the equals operator = in any of the programming languages. Both are used for assignments of any value. '=' operator operator = "equals operator" # assigning 'operator' variable...Jan 29, 2023路1 min read
How to use map() and filter() methods on the same array in JavaScript?All about map, filter and reduce methods with examples!Jan 21, 2023路4 min read
Make your GitHub Profile stand out using GPRM!If you've seen GitHub profiles with impressive tools and features and want to add those to your profile as well then this is the right place to know how to do it. I've seen many outstanding GitHub profiles and used to think about how they do it. Do ...Sep 11, 2022路2 min read
Networking: DNS - Domain Name SystemOver a network, all network devices (like computers) are identified by IP addresses to communicate with each other. But how can we identify or communicate with a device in a network? Using these IP addresses? Isn't it hard to remember those numbers? ...Sep 4, 2022路3 min read
Named Export & Default Export - JavaScriptExporting and importing is one of the features that ES6 provides. In Javascript, export is used to export values whether it's a function or a variable, or other so that we can use them in other JavaScript modules. There are two ways to export: Named ...Aug 7, 2022路1 min read
Tips & Tricks: How to find a JSON object size in Python?In this blog, you will learn how to find a JSON string object size in bytes using encode() or bytes() method in Python. We can also use these methods to find REST API JSON payloads size in Python. To calculate the size, we first need to convert pytho...Jul 31, 2022路1 min read