Apache Superset is a very useful and easy-to-use visualization and dashboard-making tool that can be an alternative to tools like Tableau and PowerBI. In this blog, we will explore how we can create awesome data dashboards using Apache superset with little to no code at all. But there are a few things one should do […]
Blogging
All about blogging.
Multilayer Perceptron: Solving XOR Problem
Multilayer Perceptron: Solving XOR Problem from Scratch in Python In this blog we are going to explore how non-linear problem like XOR can be solved using multi layer perceptron. We have already tried how to apply multi layer perceptron on majority function please have a look here. We all are familiar with single layer perceptron […]
Pyscript: Running Python in Webpages
Pyscript is a JS library that allows us to write and run Python code on HTML web pages. In this blog, we will explore PyScript for running Python codes inside our HTML files. It is quite easy to do so. How it works under the hood is not what is being focused on here but […]
Python Asyncio: Concurrent Programming
Introduction to Asyncio Async IO means Asynchronous I/O and it has been there since the Python 3.4. The main purpose of asyncio is to achieve Concurrency and Multiprocessing. In Python, we can achive async via module asyncio additionally, we can use keywords like async and await to specify async functions and wait for its execution. […]
Making a Stack Data Type in Python
Making a Stack Data Type in Python Introduction Stack is one of the primitive data structure that we have to study before diving into the Data Structure and Algorithms. It is an example of ADT (Abstract Data Type) where operations are predefined. There are some other types of ADTs some of them are Queue, List. […]
Advent of Code 2021: Python Solution
Advent of Code 2021: Python Solutions I am not good at solving problems fast but I try to do them with best I could. And here in this blog post, I try to show my solutions of all days in one post. For the Jupyter Notebook, please refer to this repository. The code will be […]
Getting Started With OpenCV in C/C++ in Windows
How to configure OpenCV for C/C++ in Windows? Installing OpenCV is very hard task because of various things like build error and Compiler Error. So in this tutorial, I will write in brief about how can one install OpenCV for C++ in Windows machine. Getting Systems Ready! First check your system if it is 64-bit […]
Getting Started with GitHub Pages
Ever thought about starting a blogging platform within few minutes? Well , GitHub pages are easy, fast and free for making a static sites.