Posts

Sahari

 Aaisi Hi Kala Nahi hai Tumhari aankho Ka Kajal Kai Aashiq jale Honge Kai Aashiq jale Honge Jaruri nahi ki Sab jale Honge Kuch Honge Badnaseeb Jo Bache honge. Kar dena choti moti galtiyon ko Maaf itna bs ehsaan Kr de, Tu jo hai naraz meri saanse Na Chale Maan jaa tu jeena ye Assan kr de

Laptop

Image
 **Task Manager**  For Processor and Ram and Graphics Card etc. **Display Settings** Advance Display - Refresh Rate **Windows Update** Settings - All Updates **Graphics Card** Driver Update **ADERNALINE** AMD PROCESSOR SOFTWARE Update **BIOS UPDATE** model and bios update **LAPTOP SOFTWARE** **BLOTWARES**  **ANTI-VIRUS** UNINSTALL **STARTUPS** Start -> startup -> Turn off **MUG SWITCH** **POWER MODE** **NOTEBOOKCHECK** Website for benchmark RAW PERFORMANCE AGV ---------------------------------------------------------------- Budget: 10000 - 13000 Ryzen 3 3100    4core => 60 Core i3 13100F    4core => 100 Core i3 12100F  4core => 99 ---------------------------------------------------------------- Budget: 20000 Gaming Ryzen 5 7600/X    6C, 12T => 21K => 100 => 100 [W] Core i5 13400F 10C, 16T => 20K => 94  => 82 ---------------------------------------------------------------- Budget: 30000 Core  i5 14600K 14C,20T

Becoming like Iron Man, a fictional superhero from the Marvel Universe

 Becoming like Iron Man, a fictional superhero from the Marvel Universe, involves a combination of various skills, traits, and technologies that are not currently available in the real world. However, you can draw inspiration from Iron Man's character to enhance different aspects of your life. Here are some aspects you might consider: 1. **Intellectual Pursuits:**    - Like Tony Stark (Iron Man's alter ego), invest in your education and continuously seek to expand your knowledge. Stay curious and engaged in various fields, including science, engineering, business, and technology. 2. **Entrepreneurial Spirit:**    - Tony Stark is a successful entrepreneur. If you have a passion or a business idea, explore entrepreneurship. Develop your skills in business management, innovation, and leadership. 3. **Physical Fitness:**    - Train your body to achieve peak physical fitness. Regular exercise, strength training, and maintaining a healthy lifestyle can contribute to your overall well

WebDriver Python Selenium Problems

Problem:  TypeError: WebDriver.__init__() got an unexpected keyword argument 'service_log_path'  #1835 TypeError: WebDriver.__init__() got an unexpected keyword argument 'capabilities' Solution:    The quick fix seems to be to downgrade selenium to 4.9.0 which you can do by typing at the command prompt   pip install selenium==4.9.0 . ( I'll note that is you are either using a virtualenv or possible some IDEs like PyCharm then you will need to make sure you install the python package under the correct instance of Python) Still need time time see what is going on and check to see if Selenium 4.10.0, which I see just got released 4 hours ago, broke something that either SeleniumLibrary needs to fix or selenium possibly.

In Windows, The Startup Programs

 In Windows, the startup programs are typically managed through the Task Manager or the System Configuration utility. Here's how you can access and manage startup programs: ### Using Task Manager: 1. **Open Task Manager:**    - Right-click on the taskbar and select "Task Manager" or press `Ctrl + Shift + Esc` to open Task Manager. 2. **Navigate to the Startup Tab:**    - In Task Manager, go to the "Startup" tab. 3. **View and Disable/Enable Programs:**    - You will see a list of programs that start automatically with your computer.    - Right-click on a program to disable or enable it at startup. ### Using System Configuration (msconfig): 1. **Open System Configuration:**    - Press `Win + R` to open the Run dialog.    - Type `msconfig` and press Enter. 2. **Navigate to the Startup Tab:**    - In the System Configuration utility, go to the "Startup" tab. 3. **View and Disable/Enable Programs:**    - You will see a list of programs that start automatic

Windows Terminal

Image
  Windows Terminal is a modern terminal application for Windows that provides a more powerful, efficient, and customizable command-line interface. It supports multiple tabs, different profiles (Command Prompt, PowerShell, WSL, etc.), and customization options. Below are some basic to advanced Windows Terminal commands and features: ### Basic Commands: 1. **Navigate File System:**    - `cd`: Change directory.    - `dir`: List files and directories.    - `cd ..`: Move up one directory.    - `cd \`: Go to the root directory.    - `cd ~`: Go to the user's home directory. 2. **File Operations:**    - `copy`: Copy files.    - `del` or `rm`: Delete files.    - `ren` or `mv`: Rename or move files.    - `type` or `cat`: Display the contents of a file. 3. **System Information:**    - `systeminfo`: Display detailed configuration information about a computer.    - `ipconfig`: Display IP configuration for all network interfaces.    - `hostname`: Display the computer's hostname. 4. **User an

Linux Terminal

Image
 Certainly! The Linux terminal is a powerful tool that allows users to interact with the operating system through a command-line interface. Here's a guide to some basic to advanced Linux commands: ### Basic Commands: 1. **Navigation:**    - `pwd`: Print the current working directory.    - `ls`: List files and directories.    - `cd <directory>`: Change directory.    - `cd ..`: Move up one directory. 2. **File Operations:**    - `touch <filename>`: Create an empty file.    - `cp <source> <destination>`: Copy files or directories.    - `mv <source> <destination>`: Move/rename files or directories.    - `rm <filename>`: Remove a file.    - `rm -r <directory>`: Remove a directory and its contents. 3. **Directory Operations:**    - `mkdir <directory>`: Create a new directory.    - `rmdir <directory>`: Remove an empty directory. 4. **Viewing File Content:**    - `cat <filename>`: Display the entire file.    - `more <file