Category: Language

07
May
2022

C++ Course: Beginning C++ Programming – From Beginner to Beyond: Udemy

Some parts from beginning are written in my wiki. 07.05.2022: Default constructor parameters Smart Pointers: Shared pointer:…

09
Feb
2022

SOLID principle implementation in Python

Here I will share about my learning on SOLID principle and implement those learning in Python. I…

22
Jan
2022

Selenium Testing with Python

  https://demo.seleniumeasy.com/basic-first-form-demo.html Python selenium commands cheat sheet from selenium import webdriver #chrome_browser=webdriver.Chrome(‘./chromedriver’) driver = webdriver.Chrome() driver.get(“https://demo.seleniumeasy.com/basic-first-form-demo.html”) driver.maximize_window()…

31
Dec
2021

Python Course Zero to Mastery from Udemy Blog Post Part-2

Part 1: Link Twitter Bot for various Activities: import time import tweepy auth=tweepy.OAuthHandler(”,” ) auth.set_access_token(”,”) api=tweepy.API(auth) #…

27
Oct
2021

Python Translator – How to make ? English to Bengali or other Translator

Here I will show how to make a python tanslator. My translate language will be Bengali/Bangla and…

14
Apr
2021

Python Course Zero to Mastery Started at Udemy Part-1

Part 2 Available in this link: Link Python usually uses an interpreter. The compiler are a little…