Skip to main content

10 Keyboard Shortcuts You Might Not Know!

 

10 Keyboard Shortcuts You Might Not Know!

In this post I will talk about the keyboard shortcuts, every coder needs to master!

1. Clipboard History

Without wasting much of time I will start with the first shortcut key which is the clipboard history. You can access your clipboard history by pressing Windows + V key on your keyboard. this opens your clipboard history which can be accessed and navigated using the arrow keys on your keyboard.

2. Windows + arrow keys and dragging a window to right

You can open two windows side by side by selecting a window and dragging it to the extereme right side of you monitor. This will give you an option to open two windows side by side. 
You can also use your Windows + Left, Windows + Up or Windows + Down arrow keys to move this window 

3. Windows + 1, 2, 3, 4

Did you know that you can use Windows + 1, Windows + 2 etc keys to open your first, second and third windows respectively? Well if not, you need to start integrating this shortcut in your workflow

.

4. Windows + D to minimize all the opened software 

If you want to minimize all the opened applications in your windows computer, you can do so by pressing windows + D key on your keyboard. A quick one but yet very effective keyboard shortcut you should be using!

5. Control + BackSpace and Control + Delete 

If you wish to delete a word towards the left, you can use Control + BackSpace
Similarly, If you wish to delete a word towards the left, you can use Control + Delete key on your keyboard

6. Alt Tab and Windows Tab 

You can use Alt + Tab to navigate through all the opened application on your windows as shown in the animation below:

7. Shift + End and Shift + Home

8. Windows + P 

Windows + P is used to open the projector preferences on your windows. You can control the monitor layout of your pc. You can choose to either turn on one, two or duplicate both of your monitors! 

9. Windows + L 

This is a very handy shortcut used to lock your pc so that noone can access it without your windows pin/password. You should try to make it a habit to lock your windows computer when you are not around!

10. Bonus: Mouse Wheel  

You can use the Mouse Wheel click to close a tab in Google Chrome and Open a link in a new tab. This saves a lot of time if you are hunting a bug and trying to find solution of your problem everywhere on the internet!

Comments

Popular posts from this blog

Connect and Configure MongoDB in Django Project

  Django, a high-level Python web framework, is well-known for its robustness and versatility. While Django natively supports popular databases like PostgreSQL and MySQL, you may want to integrate a NoSQL database like MongoDB for specific use cases. MongoDB’s flexibility and scalability make it an excellent choice for handling unstructured data. In this blog, we will walk you through the process of connecting MongoDB to a Django project, enabling you to harness the power of NoSQL in your web applications. Prerequisites: Before we begin, ensure you have the following prerequisites in place: Django installed on your system. MongoDB database server installed and running. Basic familiarity with Django project structure and database concepts. Virtual Environment, this is optional but recommended. You check our blog  here . Note:  For this tutorial, we are using our basic  skeleton project  for Django. You can also download the project from  here . Step 1: Insta...

How to host Django Application in AWS using gunicorn & nginx in Production

in this post, we will see how to use    nginx  with    gunicorn  to serve    django     applications  in production.  Django is a very powerful web framework and ships with a server which is able to facilitate development. This development server is not scalable and is not suited for production. Hence we need to configure gunicorn to get better scalability and nginx can be used as a reverse proxy and as a web server to serve static files. Let's get started  Step 1 - Installing python and nginx Let's update the server's package index using the command below: sudo apt update Copy sudo apt install python3-pip python3-dev nginx Copy This will install python, pip and nginx server Step 2 - Creating a python virtual environment  sudo pip3 install virtualenv Copy This will install a virtual environment package in python. Let's create a project directory to host our Django application and create a virtual environment inside th...

Mongodb-CheatSheet

  All MongoDb commands you will ever need (MongoDb Cheatsheet) In this post, we will see a comprehensive list of all the    MongoDB  commands you will ever need as a MongoDB beginner. This list covers almost all the most used commands in MongoDB. I will assume that you are working inside a collection named 'comments' on a MongoDB    database  of your choice 1. Database Commands View all databases show dbs Copy Create a new or switch databases  use dbName Copy View current Database db Copy Delete Database  db . dropDatabase ( ) Copy 2. Collection Commands Show Collections show collections Copy Create a collection named 'comments' db . createCollection ( 'comments' ) Copy Drop a collection named 'comments' db . comments . drop ( ) Copy 3. Row(Document) Commands Show all Rows in a Collection  db . comments . find ( ) Copy Show all Rows in a Collection (Prettified) db . comments . find ( ) . pretty ( ) Copy Find the first row matching the ob...