We’re hiring. Write for Howchoo
We’re hiring. Write for Howchoo
We’re hiring. Write for Howchoo
We’re hiring. Write for Howchoo
This guide will show you how to auto-hide your dock using a keyboard shortcut – without having to open up System Preferences.
You can change this option in System Preferences or you can simply type cmd + option + d from anywhere. This shortcut will toggle your dock between permanently displayed and hidden.
Want to support Howchoo? When you buy a tool or material through one of our Amazon links, we earn a small commission as an Amazon Associate.
When I turned my computer on this morning, it seems that the menu bar was blocking me from dragging a Google Chrome window from my laptop display to my external display. After much trial and error, I found that I simply needed to drag the window further.
Drag a window from your primary display onto the secondary display until your cursor is at least 75% of the way across the external display. You’ll see the window suddenly jump onto this second display.
Want to support Howchoo? When you buy a tool or material through one of our Amazon links, we earn a small commission as an Amazon Associate.
There are some fundamental git commands that you will use frequently that are hard to work into a “how-to” guide. Here are some basic git commands and how to use them. These are in no specific order.
git branch -v will show you all of your local branches, their commit messages, and which branch is checked out.
git status will show you the status of the branch you currently have checked out. Before you switch branches, merge, pull or push you want to make sure you have a clean working directory and you can check with git status.
git checkout -b branch_name will create a branch from the branch you currently have checked out, and it will be called “branch_name” or whatever you’d like to call it.
git add . is a useful command that will version control any new files and remove from version control any files that you’ve deleted. If you have a file that has been added to git that you have deleted from your repository, it won’t be deleted from git until you use git add ..
Want to support Howchoo? When you buy a tool or material through one of our Amazon links, we earn a small commission as an Amazon Associate.
Want to support Howchoo? When you buy a tool or material through one of our Amazon links, we earn a small commission as an Amazon Associate.
Want to support Howchoo? When you buy a tool or material through one of our Amazon links, we earn a small commission as an Amazon Associate.