How to Generate a Random AlphNumeric String in Linux/MacOS
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 →
26 articles about mac development, tools, and best practices
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 …