How to Find the EDID UUID of External Mac Monitors
You can issue the following command on an Apple Mac’s terminal to show the EDID UUID (unique serial number) of all attached external monitors: …
26 articles about mac development, tools, and best practices
You can issue the following command on an Apple Mac’s terminal to show the EDID UUID (unique serial number) of all attached external monitors: …
If you want to disable the Screensaver on your Mac, by using the Command Line Interface (CLI), then you can do the following:
AWS CodeCommit is a git code repository service by Amazon Web Services.
You will want to clone your repository and setup your remotes using credential …
If you need to recursively find all symbolic links in a directory tree on a Mac, then you have a couple of options.
You could be trying to find them …
Read Article →If you find yourself in a position where you need to sync all emails from one account to another, then you can use the imapsync command-line tool to …
If you need to reboot, or restart the networking interface on your Mac, by using the CLI, then you can issue the following commands:
If you have a file on your machine, and you want to change the created/modified time/date stamp, then you can use the touch command.
touch -t …
Read Article →
If you use Homebrew – and you probably should if you’re on a Mac – then you have probably installed various different applications and packages …
Read Article →If you try and run npm i and get Error: Cannot find module '../lib/cli.js', then you can easily fix the problem by running the following.
If you have recently upgraded your MacOS operating system, you may get the following error in your terminal when installing some Homebrew packages: …
Read Article →There are a few different ways to enable Syntax Highlighting in Vim.
Add syntax on to your local ~/.vimrc
echo "syntax …
Read Article →
If you need to generate a random AlphaNumeric string from the Linux/MacOS Command-Line, then you can use the following script:
dd if=/dev/random bs=8 …
Read Article →
Sometimes you will find that your Mac is running very hot, and you may want to keep track of it over time to see if it’s persistent or only a …
Read Article →This error often looks something like:
.zshrc: /usr/local/bin/aws: bad interpreter:
/usr/local/opt/python/bin/python3.6: no such file or directory …
Read Article →
If you get the following error while trying to install something via Homebrew
AttributeError: 'int' object has no attribute 'split' - make: *** …
So for some strange reason, your audio has stopped playing through the Macbook Pro speakers, but if you plug in an external audio device, it still …
Read Article →chmod alters the permissions for a file or directory, you could allow full read/write access to a file or directory by running the following command: …
I needed to find all files in a directory on Linux that ended with the file extension .php.
You …
Read Article →Perhaps you have a screen-share session coming up and you want a nice clean desktop to show everyone. Also, nobody will …
It’s amazing how many times I’ve need to find out the total size of all the files in a directory on one of our servers.
I have grown to …
Read Article →Learning Go or Golang as a Python developer, programmer or software engineer is easier than you think.
While there are quite a lot of things to learn …
Read Article →Programming languages provide the ability to remove special characters from a string quite easily.
Sometimes you need to also do this from your …
Read Article →You can use Homebrew to install MongoDB on a Mac.
For ages you were able to simply do:
brew install mongodb, but more recently, that has stopped …