Skip to main content

cool Windows 10 shortcuts

Hello buddies, welcome returned to any other extremely good video! We always communicate about smartphones, but today we’ll communicate with approximate computers. Because our blog call isn’t  Smartphone/Mobile, it’s Road2geeks! So we’re going to make extra movies to talk about generation & its records. If you figure on computers, then these days’ video will grow your productiveness through 10 instances & save you time! I’m going to tell you approximately 10 one-of-a-kind keyboard shortcuts out of which the 6th, 8th & 9th are critical. read the full blog as all 10 keyboard shortcuts are important. But 3-4 ones are surely fantastic!

WINDOWS 10 SHOTCUTS

(1) Windows + E -

windows explorer shotcut

 It’s easy & you should be knowing it already. We don’t use the Windows key lots. But the important thing(Windows emblem) may be very essential. So pressing Windows key + E will open your ‘File explorer.And you could get admission to a document/drive. You simply want to press Windows key + E. It occurs loads whilst you’re working, all of sudden a person arrives & you don’t want to expose your paintings.

(2) Windows+","-

it will temporarily take you to the desktop if you hold them you will be on the desktop but after releasing you will be shocked to see you are or the previous directory.

(3) Windows + D -

WINDOWS 10 SHOTCUTS

With this shortcut, you may reduce all of your couple of home windows & most effectively show your desktop. Windows + Up Arrow - It’s an extension that'll maximize your window. Windows + Down Arrow - It’ll decrease your window. It’s simple & you don’t want a mouse. Only use Windows + Up/Down or D and all home windows could be minimized. I bet lots of you didn't recognize this. I pointed out the Up/Down arrow key.

(4) Windows + Left/Right Arrow - 

WINDOWS 10 SHOTCUTS

It splits your window in case you need to multitask & use 2 home windows on your desktop. It saves much time as they get resized & aligned robotically & as a result increase productivity!

(5) Control + Shift + N - 

cool Windows 10 shortcuts


You might be knowing it already, however it creates new folders quickly. You all recognize Alt + Tab for switching between Windows times. You maintain urgent Tab, in the event that they’re a couple of.

(6) Windows + Tab - 

cool Windows 10 shortcuts

If there are 6-8 instances working & you need to look at them. You’ll get the right square icons & all of your paintings might be seen on the single display screen. I use it plenty as I do specific work at the same time & it enables me on every occasion! So do strive it out.

(7) Windows + Shift + S - 

cool Windows 10 shortcuts

It’s my maximum preferred! Generally, we use a snipping tool for rectangular/freeform screenshots.

But for short superior screenshots, press Windows + Shift + S as you get control over its form(rectangular/freeform).

So Windows + Shift + S = Better screenshots!

(8) Windows + V - 

It’s a very beneficial clipboard when you operate Control + C for Copy.

You can get a clipboard history, which means you may access & paste your 4-five hour vintage texts as properly.

You can use the clipboard to choose your textual content and paste it & is beneficial for those who reproduction-paste lots!

(9) Windows + “.” OR “;” - 

cool Windows 10 shortcuts

It’s a laugh if your message/chat loads. Pressing it's going to open an emoji panel.

And you may select whichever emoji you want & you’re accomplished! You received yet need to discover a smiley to pick out an emoji.

(10) Windows + L - 

Press it if you’re working & straight away you need to fasten your PC. You may even switch to different bills on your PC with an easy Windows + L key.

I’m positive you discovered these shortcuts interesting! Do hit FOLLOW in case you enjoyed them! And do COMMENT & allow us to understand how a lot of these shortcuts you already knew? That’s fascinated about this blog, till the following one,  Stay Safe!

I have this youtube channel called Road2geeks in here you'll be seeing various tutorials along with some knowledge that I have voiceover so do also check our channel Road2geeks so that's all for this blog friends thank you very much for reading this blog, meet you in the next blog until then stay safe Jai hind.

Comments

Popular posts from this blog

LeetCode 88 Explained: Four Approaches, Mistakes, Fixes & the Final Optimal Python Solution

Evolving My Solution to “Merge Sorted Array” A practical, beginner-friendly walkthrough showing four versions of my code (from a naive approach to the optimal in-place two-pointer solution). Includes explanations, complexity and ready-to-paste code. Problem Summary You are given two sorted arrays: nums1 with size m + n (first m are valid) nums2 with size n Goal: Merge nums2 into nums1 in sorted order in-place . Version 1 — Beginner Approach (Extra List) I merged into a new list then copied back. Works, but not in-place and uses extra memory. class Solution: def merge(self, nums1, m, nums2, n): result = [] p1 = 0 p2 = 0 for _ in range(m+n): if p1 >= m: result.extend(nums2[p2:n]) break elif p2 >= n: result.extend(nums1[p1:m]) break elif nu...

Introducing CodeMad: Your Ultimate Universal IDE with Custom Shortcuts

Introducing CodeMad: Your Ultimate Multi-Language IDE with Custom Shortcuts Welcome to the world of CodeMad, your all-in-one Integrated Development Environment (IDE) that simplifies coding and boosts productivity. Developed in Python, CodeMad is designed to make your coding experience smoother and more efficient across a variety of programming languages, including C, C++, Java, Python, and HTML. Whether you're a beginner or an experienced programmer, CodeMad is your go-to tool. In this blog, we'll dive deep into the workings of CodeMad, highlighting its unique features and easy installation process. The Power of Shortcuts CodeMad's intuitive interface is built around a set of powerful keyboard shortcuts that make coding a breeze. Here are some of the key shortcuts you'll find in CodeMad: Copy (Ctrl+C) : Duplicate text with ease. Paste (Ctrl+V) : Quickly insert copied content into your code. Undo (Ctrl+Z) and Redo (Ctrl+Y) : Correct mistakes and s...

Product of Array Except Self in Python | Prefix & Suffix Explained (LeetCode 238)

Problem Overview The Product of Array Except Self is a classic problem that tests your understanding of array traversal and optimization. The task is simple to state but tricky to implement efficiently. Given an integer array nums , you need to return an array such that each element at index i is equal to the product of all the elements in nums except nums[i] . The challenge is that: Division is not allowed The solution must run in O(n) time Initial Thoughts At first glance, it feels natural to compute the total product of the array and divide it by the current element. However, this approach fails because division is forbidden and handling zeroes becomes messy. This pushed me to think differently — instead of excluding the current element, why not multiply everything around it? That’s where the prefix and suffix product pattern comes in. Key Insight: Prefix & Suffix Products For every index i : Prefix product → product of all elements to t...