Posts by Category

Computer Vision

Gesture Based Calculator

13 minute read

Gesture Based Calculator Hello and welcome everyone to our last project on the #7DaysOfComputerVisionProjects series where we did some cool computer vision p...

Game: Kill a Fly

12 minute read

Kill The Fly Hello surfer, if you were following our series #7DaysOfComputerVisionProjects then this is the 6th project and this is going to be different and...

Gesture Based Visually Writing System

10 minute read

Gesture Based Writing Method Introduction Hello surfer, welcome to this blog where I will be writing a Python code to write something in canvas by moving fin...

Playing Chrome Trex Game with Gestures

5 minute read

Play Trex Game on Chrome By Gesture Using OpenCV and Mediapipe Hello there surfer! Since few days, I am thinking about some cool projects that can be done w...

Realtime Background Changing in Python

9 minute read

Real Time Background Changing With OpenCV and Python This blog is the part of the series #7DaysOfComputerVisionProjects. Links to the blogs and videos of eac...

Crowd Counting Made Easy

7 minute read

Contents Experience Of Being Udacity Scholar: As a scholar of Udacity’s Secure and Private AI Challenge course by Facebook, I have not only learned abo...

Back to Top ↑

Programming

Back to Top ↑

Project

Text Analysis with WordCloud in Python

5 minute read

WordCloud in Python can be done in different ways but one of the most popular and easier ones is using the package wordcloud. We can install it using the fol...

Gesture Based Calculator

13 minute read

Gesture Based Calculator Hello and welcome everyone to our last project on the #7DaysOfComputerVisionProjects series where we did some cool computer vision p...

Game: Kill a Fly

12 minute read

Kill The Fly Hello surfer, if you were following our series #7DaysOfComputerVisionProjects then this is the 6th project and this is going to be different and...

Gesture Based Visually Writing System

10 minute read

Gesture Based Writing Method Introduction Hello surfer, welcome to this blog where I will be writing a Python code to write something in canvas by moving fin...

Playing Chrome Trex Game with Gestures

5 minute read

Play Trex Game on Chrome By Gesture Using OpenCV and Mediapipe Hello there surfer! Since few days, I am thinking about some cool projects that can be done w...

Realtime Background Changing in Python

9 minute read

Real Time Background Changing With OpenCV and Python This blog is the part of the series #7DaysOfComputerVisionProjects. Links to the blogs and videos of eac...

Back to Top ↑

Image Processing

Auto-encoders from Scratch in Python

6 minute read

Auto-encoders from scratch will be done over the concept of Neural Network from Scratch that I already did. You can find it on my following blogs. Feed Fo...

Deploying Image Manipulation Tool in Heroku

1 minute read

In this part, we explore Deploying Image Manipulation tool in Heroku because it is a cloud application platform which gives us the flexibility to deploy our ...

Building Image Merger Web Tool In Python

4 minute read

Image Merger tool is also useful just like the image size reducer tool. Lets take an example where is it needed, suppose we are about to fill some applicatio...

Building Image Size Reducer In Python

6 minute read

Image size reducer is much needed tool these days because most site wants us to upload various documents in the form of image but with the size limit. Modern...

Gesture Based Calculator

13 minute read

Gesture Based Calculator Hello and welcome everyone to our last project on the #7DaysOfComputerVisionProjects series where we did some cool computer vision p...

Game: Kill a Fly

12 minute read

Kill The Fly Hello surfer, if you were following our series #7DaysOfComputerVisionProjects then this is the 6th project and this is going to be different and...

Gesture Based Visually Writing System

10 minute read

Gesture Based Writing Method Introduction Hello surfer, welcome to this blog where I will be writing a Python code to write something in canvas by moving fin...

Playing Chrome Trex Game with Gestures

5 minute read

Play Trex Game on Chrome By Gesture Using OpenCV and Mediapipe Hello there surfer! Since few days, I am thinking about some cool projects that can be done w...

Realtime Background Changing in Python

9 minute read

Real Time Background Changing With OpenCV and Python This blog is the part of the series #7DaysOfComputerVisionProjects. Links to the blogs and videos of eac...

Back to Top ↑

Data Analysis

Central Tendency vs Dispersion

6 minute read

Hello everyone, welcome back! In this blog we will again focus into the some of widely used central tendency techniques and then measure of spread in the Sta...

Back to Top ↑

Python

Advent of Code 2022 with Python

4 minute read

The advent of Code is a yearly festival for programmers like me where we try to solve different stories to gain stars. I love these challenge because its fun...

Finding DateTime in Text Using Python

6 minute read

Why do we need to find DateTime in the text? In the field of data science, we often have to deal with various kinds of data and one of the common is Text dat...

Basics of Stock Backtesting in Python

17 minute read

Stock Backtesting in Python is way of testing our strategy in a historical data to see if our strategy makes any money or not. Let’s start with a simple stor...

Basics of Multi-threading in Python

8 minute read

Multi-threading in Python is often used when there are tasks related to I/O bound. But before going further, let’s take a few examples where multi-threading ...

Working with datetime in Python

10 minute read

Working with DateTime in Python can be a challenging job if we do not know the right module to do the right thing. Here we will explore some of the useful mo...

Intro to CNN with Keras

3 minute read

CNN with Keras is easiest way to create CNN (Convolutional Neural Networks. But Why? Images I used in this blog are not owned by me and the full credit goes ...

Python Generators

2 minute read

Python Generators are kind of iterators which allows us to iterate through the values returned through the function using yield keyword. In simple words, gen...

SMTPlib: Send Emails with Python

3 minute read

Introduction Hello and welcome back everyone, in this blog we will be exploring how we can send emails using Python. We will be using SMTPlib.

Pyscript: Running Python in Webpages

2 minute read

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 insi...

Python Asyncio: Concurrent Programming

5 minute read

Introduction 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 Multiproce...

Back to Top ↑

Machine Learning

Crowd Counting Made Easy

7 minute read

Contents Experience Of Being Udacity Scholar: As a scholar of Udacity’s Secure and Private AI Challenge course by Facebook, I have not only learned abo...

Back to Top ↑

Artificial Intelligence

Crowd Counting Made Easy

7 minute read

Contents Experience Of Being Udacity Scholar: As a scholar of Udacity’s Secure and Private AI Challenge course by Facebook, I have not only learned abo...

Back to Top ↑

Data Science

Tweet Scraping with Tweepy

4 minute read

Tweet Scraping can be done with different ways but one of the reliable ones is using Tweepy and Tweeter’s developer API. In this blog we are going to explore...

A General Way to Perform an EDA

29 minute read

Introduction Hello everyone, welcome back to another new blog where we will explore different ideas and concept one could perform while performing an EDA. In...

Back to Top ↑

Stock Market Analysis

Back to Top ↑

Game Development

Back to Top ↑

apache airflow

Back to Top ↑

data engineering

Back to Top ↑

data pipelining

Back to Top ↑

Projects

Back to Top ↑

MySQL

MySQL Prepared Statements

4 minute read

MySQL Prepared Statements are the queries or statements they are prepared in a way that they can be used later on. They are complied while on creation and ca...

MySQL: Triggers

3 minute read

Triggers in SQL Triggers in SQL is a way to invoke something as a response to the events on the table in which Trigger is attached. The example of the event ...

Back to Top ↑

Technical Analysis

Back to Top ↑

EDA

A General Way to Perform an EDA

29 minute read

Introduction Hello everyone, welcome back to another new blog where we will explore different ideas and concept one could perform while performing an EDA. In...

Back to Top ↑

Web App

Deploying Image Manipulation Tool in Heroku

1 minute read

In this part, we explore Deploying Image Manipulation tool in Heroku because it is a cloud application platform which gives us the flexibility to deploy our ...

Building Image Merger Web Tool In Python

4 minute read

Image Merger tool is also useful just like the image size reducer tool. Lets take an example where is it needed, suppose we are about to fill some applicatio...

Building Image Size Reducer In Python

6 minute read

Image size reducer is much needed tool these days because most site wants us to upload various documents in the form of image but with the size limit. Modern...

Back to Top ↑

Games

Back to Top ↑

Streamlit

Back to Top ↑

Statistics

Central Tendency vs Dispersion

6 minute read

Hello everyone, welcome back! In this blog we will again focus into the some of widely used central tendency techniques and then measure of spread in the Sta...

Back to Top ↑

Timeseries Analysis

Back to Top ↑

Stock

Basics of Stock Backtesting in Python

17 minute read

Stock Backtesting in Python is way of testing our strategy in a historical data to see if our strategy makes any money or not. Let’s start with a simple stor...

Polygon.io for Stock Market Data

4 minute read

Introduction Hello everyone, welcome back to our new blog about getting Stock data in realtime using Polygon.io. Few blogs ago, I’ve shared how can we use Al...

Back to Top ↑

urllib3

Back to Top ↑

CNN

Auto-encoders from Scratch in Python

6 minute read

Auto-encoders from scratch will be done over the concept of Neural Network from Scratch that I already did. You can find it on my following blogs. Feed Fo...

Intro to CNN with Keras

3 minute read

CNN with Keras is easiest way to create CNN (Convolutional Neural Networks. But Why? Images I used in this blog are not owned by me and the full credit goes ...

Back to Top ↑

blog

Beginning of my blogging journey.

less than 1 minute read

Contents I thought of doing blogging since school but guess what, the internet was not that much available like these days. After years, I am about to write...

Back to Top ↑

Unity3D

Back to Top ↑

Software

Back to Top ↑

github-pages

Back to Top ↑

Agriculture

Back to Top ↑

adventofcode

Back to Top ↑

challenges

Back to Top ↑

Pandas

Back to Top ↑

data visualization

Back to Top ↑

Julia

Back to Top ↑

Clustering

Back to Top ↑

mysql

Back to Top ↑

Central Tendency vs Dispersion

6 minute read

Hello everyone, welcome back! In this blog we will again focus into the some of widely used central tendency techniques and then measure of spread in the Sta...

Back to Top ↑

Central Tendency vs Dispersion

6 minute read

Hello everyone, welcome back! In this blog we will again focus into the some of widely used central tendency techniques and then measure of spread in the Sta...

Back to Top ↑

ARIMA

Back to Top ↑

Probability

Back to Top ↑

Alpaca API

Back to Top ↑

Concurrent Programming

Python Asyncio: Concurrent Programming

5 minute read

Introduction 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 Multiproce...

Back to Top ↑

Asyncio

Python Asyncio: Concurrent Programming

5 minute read

Introduction 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 Multiproce...

Back to Top ↑

Pyscript

Pyscript: Running Python in Webpages

2 minute read

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 insi...

Back to Top ↑

Javascript

Pyscript: Running Python in Webpages

2 minute read

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 insi...

Back to Top ↑

Triggers

MySQL: Triggers

3 minute read

Triggers in SQL Triggers in SQL is a way to invoke something as a response to the events on the table in which Trigger is attached. The example of the event ...

Back to Top ↑

Tweets

Tweet Scraping with Tweepy

4 minute read

Tweet Scraping can be done with different ways but one of the reliable ones is using Tweepy and Tweeter’s developer API. In this blog we are going to explore...

Back to Top ↑

Data Visualization

Back to Top ↑

Apache Superset

Back to Top ↑

SMTPlib

SMTPlib: Send Emails with Python

3 minute read

Introduction Hello and welcome back everyone, in this blog we will be exploring how we can send emails using Python. We will be using SMTPlib.

Back to Top ↑

Polygon

Polygon.io for Stock Market Data

4 minute read

Introduction Hello everyone, welcome back to our new blog about getting Stock data in realtime using Polygon.io. Few blogs ago, I’ve shared how can we use Al...

Back to Top ↑

streamlit

Back to Top ↑

apache2

Back to Top ↑

BeautifulSoup

Back to Top ↑

weather-bot

Back to Top ↑

fractal

Making Fractal Shapes with Python

6 minute read

Fractals are the continuous and never ending patterns that can be seen in the nature. But its quite different than the classical geometry in the sense of con...

Back to Top ↑

mathematics

Making Fractal Shapes with Python

6 minute read

Fractals are the continuous and never ending patterns that can be seen in the nature. But its quite different than the classical geometry in the sense of con...

Back to Top ↑

OpenCV

Back to Top ↑

datetime

Working with datetime in Python

10 minute read

Working with DateTime in Python can be a challenging job if we do not know the right module to do the right thing. Here we will explore some of the useful mo...

Back to Top ↑

multi-threading

Basics of Multi-threading in Python

8 minute read

Multi-threading in Python is often used when there are tasks related to I/O bound. But before going further, let’s take a few examples where multi-threading ...

Back to Top ↑

Backtesting

Basics of Stock Backtesting in Python

17 minute read

Stock Backtesting in Python is way of testing our strategy in a historical data to see if our strategy makes any money or not. Let’s start with a simple stor...

Back to Top ↑

DateTime

Finding DateTime in Text Using Python

6 minute read

Why do we need to find DateTime in the text? In the field of data science, we often have to deal with various kinds of data and one of the common is Text dat...

Back to Top ↑

Text Processing

Finding DateTime in Text Using Python

6 minute read

Why do we need to find DateTime in the text? In the field of data science, we often have to deal with various kinds of data and one of the common is Text dat...

Back to Top ↑

programming

Making Money with Programming

5 minute read

How much do you know about Making money with programming in this decade? It is getting broader and more expansive. With the availability of a wide range of i...

Back to Top ↑

remote jobs

Finding Remote Jobs but How and Where?

6 minute read

Finding remote jobs might be troublesome work these days with too many jobs in the market but not finding the right one for your profile is. Here in this blo...

Back to Top ↑

cryptography

Simple Cryptography Algorithms in Python

2 minute read

Cryptography Algorithms have been around the world for more than centuries and there are still many inscriptions around various places in the world which we ...

Back to Top ↑

Challenge

Advent of Code 2022 with Python

4 minute read

The advent of Code is a yearly festival for programmers like me where we try to solve different stories to gain stars. I love these challenge because its fun...

Back to Top ↑