If you do any sort of automation, you have probably done a fair amount of work using the CLI on your computer. This is applicable regardless of the platform. If you use Python you might have asked yourself how you could start making your own command line utilities to help you in your daily …
IHQ
How to Autoscale your wordpress site on AWS
WordPress is a very popular platform for running websites. I have read reports of WordPress hosting up to 27% of websites. With WordPress powering so much of the web, you might be asking yourself how you can design your website to run on wordpress. There are many WordPress hosting sites out there that you …
What is the python requirements.txt?
If you have browsed any python projects on Github or elsewhere, you have probably noticed a file called requirements.txt This requirements.txt file is used for specifying what python packages are required to run the project you are looking at. Typically the requirements.txt file is located in the root directory of your project. If you open …