How to change windows wallpaper using Python3

Following code can be used for changing windows wallpaper import ctypes ctypes.windll.user32.SystemParametersInfoW(20, 0, image , 0)

October 11, 2021 · 1 min · 16 words · Saqib Razzaq

How to create virtual environment on Windows

First, make sure virtualenv installed or install it by running pip install virtualenv After this you can simply run virtualenv name_of_env_to_create You can activate it by going to following directory where you ran the command ./env/Scripts/activate.bat

May 1, 2021 · 1 min · 36 words · Saqib Razzaq

Markdown Syntax Guide

This article offers a sample of basic Markdown syntax that can be used in Hugo content files, also it shows whether basic HTML elements are decorated with CSS in a Hugo theme. ...

March 11, 2019 · 3 min · 446 words · Hugo Authors

How to get saved wifi password

Following method can be used to retrieve password of a connection that you can automatically connect to because Windows remembers the password but you don’t. You need to share password with a friend or you’d like to connect from other device. Just open powershell and run following command. netsh wlan show profile name=profilename key=clear

January 13, 2019 · 1 min · 54 words · Saqib Razzaq