You might be losing more than 66 hours a year just on basic operations

  • 04 December 2021
Post image

What do you think you should start learning about programming, like Java, variables, for, if? You can start with that stuff later. Where I think you should start is cutting down on future time costs during programming tasks!
Programming is mostly about imagining the implementation in your mind and then googling and reading materials to realize that image. Of course, this “imagining in your head” is the hard part, but it also includes shuffling the keyboard and shaking the mouse.

This means that programming is done primarily at the following time costs

  1. Time to imagine and design
  2. Time to research for implementation
  3. Time to operate computer

Overwhelmingly, it often takes time for 1 or 2, but it depends a lot on experience and knowledge. However, for beginners, 3 is actually quite costly, and this is something that can be easily improved, so you should be aware of it and improve it to some extent from the very beginning.

You lose more time than you think when you’re slacking off

Let’s take web development as an example. I know this because I have taught people to program, but the behavior of a super beginner would be the following operation.

  1. Type something in the editor.
  2. Recognize the arrow cursor by shaking the mouse to open Chrome
    • Someone with poor cognitive ability will take more than two seconds here.
  3. Move the arrow to the Chrome icon on the bottom menu bar.
    • If Chrome is not open in the menu, go to the trouble of clicking on the Windows icon to find the Chrome icon and roll the mouse over it.
    • Sometimes he/she miss the click position of the mask and it launches another application.
  4. Look something up in the browser and return to the editor with the same sluggish behavior.

This is an example of switching between an editor and a browser, but for a beginner, it takes more than 5 seconds to switch back and forth. And if you are a web engineer (especially front-end), you probably do this about 100 times a day. You’ll also notice that you do a lot of other things on your PC that you don’t even think about, such as opening Chrome’s Inspector, opening terminal apps, refreshing the browser, moving tabs, and so on.

If a beginner performs these movements about 500 times a day, once a minute, what if they could speed up their movements by an average of two seconds for all of their movements?
500 times x 2 seconds x 20 days ≒ 5.5 hours (in one month)
5.55 hours x 12 months ≒ 66.66 hours (in one year)

A novice PC user wastes 5.5 hours a month, or 66 hours a year. And that’s just for basic PC operations. And that’s just the basic operations of the PC, not including the techniques of using the editor, Vim, and so on.
Of course, there is no end to the pursuit of efficiency in operation, but for beginners, there are many operations that need to be improved first.

Basic PC commands to learn first.

It is not possible to write about every efficient way to operate. It depends on each environment. For now, I’ll try to write down the operations that almost all engineers would use (not including editor operations). (Editor operations are not included.) There may be more efficient operations than the ones below, but they are only for beginners, so please pursue your own efficiency.

Moving Applications

A shortcut for moving between the editor and Chrome, as in the previous example.

alt + tab

Press once to go to the app that was open just before, so you can switch with one touch

command + tab

Press once to go to the app that was open just before, so you can switch with one touch


OR

command + Space

Enter an acronym to launch the desired app. spotlight can be applied to a variety of actions

Launching Applications

When launching an application that has not been launched yet.

Windows and "acronym input" enter

For example, to run "vscode", in my environment, "v", "s", and "c" will come up.

command + Space and "acronym input" enter

For example, to launch "chrome", use "c" and "h".

The Windows button and Mac spotlight learn from the user's actions and come up with suggestions, so it depends on your environment what you type to bring up the desired application.

Chrome shortcuts

At the very least, you should memorize and use the following shortcuts in chrome.

New Tabs
ctrlt
Close tabs
ctrlw
Move to the next tab
ctrltab
New Windows
ctrln
New secret Windows
ctrlshiftn
Inspector
ctrlshifti
Reload
ctrlr
Cache clear reload
ctrlshiftr
New Tabs
commandt
Close tabs
commandw
Move to the next tab
commandtab
New Windows
commandn
New secret Windows
commandshiftn
Inspector
commandoptioni
Reload
commandr
Cache clear reload
commandshiftr

Other basic operations

The following is a basic command that I don’t need to write, but I will. The following are basic commands that are not necessary to write, but I will write them down.

Copy
ctrlc
paste
ctrlv
Cut
ctrlx
Select All
ctrla
Save
ctrls
Search
ctrlf
Copy
commandc
paste
commandv
Cut
commandx
Select All
commanda
Save
commands
Search
commandf

It can save you dozens of hours of unproductive time in the future.

The basic operations listed above are just a few. But you must learn them at least. Congratulations! As a beginner, you now have 66 hours of your time over the next year to spend on other things.

If you notice that some other action is slowing you down, you should make a habit of checking for shortcuts to that action. This will save you tens of hours of time in the future by speeding up your operations. Moreover, in my experience, people seem to feel stressed when they go back and forth between the keyboard and mouse, or when they make a mistake with the mouse. But many of the key commands are easy to undo even if you make a mistake, and since there is less back and forth between the keyboard and the mouse, your hand movements are reduced and your stress is reduced.

It’s really the basics of the basics, but if you are going to be an intermediate or higher level programmer, you can avoid a huge amount of wasted time and also reduce the stress of operation. I wanted to learn such an important thing in the early years of my career. I probably didn’t know about it (or even think about it) for the first two years or so. At least do the above commands for sure. Keep the mouse as far away from you as possible!

You May Also Like