Category: Software Development

14
Sep
2022

Design Pattern: Singleton

Early instantiation: Ref https://www.youtube.com/watch?v=sH_f6LxVhPw&list=PLW7fU_8SZVrtz-riKwgnx6u6U0QvYtVOk&index=5 Lazy Instantiation: https://www.youtube.com/watch?v=4lzKgUl7Cjk&list=PLW7fU_8SZVrtz-riKwgnx6u6U0QvYtVOk&index=6

22
Aug
2022

Git Advanced Learning:

Course link: https://www.linkedin.com/learning/git-branches-merges-and-remotes/format-the-commit-log?u=103775466 #Navigate the commit tree Tree-ish architecture SHA-1 hash HEAD pointer reference .git/HEAD .git/refs/heads/master Branch…

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()…

22
Jan
2022

git 2022

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…