Powered by Blogger.

Social Icons

Featured Posts

Open PDF File in Full Screen View in Google Chrome Browser

Saturday, February 17, 2024

Open the PDF file in Google Chrome Browser

Click Three-dot icon

Select Present 

Press Esc key to exit full screen mode



Right-to-Left Text Alignment in Notepad

Tuesday, January 09, 2024

Right-to-Left: Ctrl + Right-Shift

Left-to-Right: Ctrl + Left-Shift

or

Right click in Notepad 

Click Right-to-left reading order





Add Date / Time stamp to photos on Android Mobile Phone

Friday, September 15, 2023

Open Camera application

Tap Settings 



Tap Watermark




Tap On
Tap Date and time




How to completely remove Firefox Browser

Tuesday, August 22, 2023

Uninstall Mozilla from Add or remove programs

Now search %appdata% and it will open Windows Explorer

Delete folder Mozilla

Create Executable Applications in Python

Wednesday, April 05, 2023

Install package pyinstaller and run the following command

 pyinstaller --onefile <filename>.py

Error #204: It seems UI.Vision RPA is not installed yet - or you need to turn on Allow access to file URLs for UI.Vision RPA in your browser extension settings.

Monday, April 03, 2023

 Follow the steps to enable Allow access to file URLs:

Click Extensions icon

Click 3 dots (...) next to UI Vision RPA

Click Manage Extension



Scroll down and enable Allow access to file URLs



List all files in a Directory in Python

Wednesday, February 22, 2023

import os

directory_path = "/path/to/directory"

#For windows
directory_path = "C:\\path\\to\\directory"

file_list = os.listdir(directory_path)

print("List of files in directory:")
for file_name in file_list:
    print(file_name)
 

Translate

Popular Posts