To learn more about Python, see this site https://jobtensor.com/Python-Introduction.
…
A Technical I.T./DevOps Blog
To learn more about Python, see this site https://jobtensor.com/Python-Introduction.
…
Problem scenario
You want to floss, but it can hurt your fingers. You do not want to strangle or cut off the blood circulation to your fingers. What should you do to floss without pain?
Possible Solution #1
Floss your teeth the way dental hygienists floss patients’ teeth. Use latex or vinyl gloves. (To help with overall visibility as even skin-tight gloves may take up some space,
…
Continue reading “How Do You Floss without Hurting Your Fingers?”
Problem scenario
You want to test some Python scripting or write a basic program to warm up before a coding interview. You only have access to a Windows machine (e.g., at a hotel “business center”). You cannot install Python on the laptop. How do you do some Python coding?
Solution
As long as you have access to the internet, browse to this site: https://www.onlinegdb.com/
(For a more serious development project,
…
Continue reading “How Do You Quickly Do Some Python Coding?”
Problem scenario
You want to pass the var-file flag in a Terraform command. You have a different configuration/variables file (from the default one) that you want the Terraform command to use. The resulting error indicates that there is insuffient configuration data; the behavior is consistent with no variables files being readable.
How do you get a terraform plan command to look at a different folder location or directory?
…
Problem scenario
You are running Windows Server 2019. You want to install Windows DSC. What do you do?
Solution
…
Continue reading “How Do You Install Windows DSC on Windows Server 2019?”
Problem scenario
You need to make a Linux server very secure. How do you harden a Linux server?
Answer
…
Continue reading “How Do You Secure or Harden a Linux Server?”
Problem Scenario
Rotating a list can make it appear circular (wherein an iteration from the last element brings you to the first element in the list). You do not want to import any modules. You have a list called foobar. You want to keep the content the same, but adjust the index by 1 on each value. How do you rotate a list in Python?
Solution
foobar = foobar[-1:] + foobar[:-1] …
Problem scenario
You have an ultra-violet water filter from AquaSana. It is leaking water. What should you do?
Possible Solutions
Never have the electrical plug in an outlet when making changes! The UV light could blind you if you look at it when it is on.
Make sure the O-rings on the top and bottom are in good condition.
…
Continue reading “Why Is You AquaSana UV Water Filter Leaking?”
Problem scenario
You want an EC-2 flavor that has two vCPUs that is fairly affordable too. What should you use?
Solution
Use the t3.micro instance size (for x86_64). This has only 1 GB of memory. If you are using ARM architecture, try the t4g.micro instance size; it also has only 1 GB of memory with two vCPUs.
…
Continue reading “What Is an Affordable EC-2 Instance Type with Two vCPUs?”
Question
What should you do to learn more about GitHub Actions?
Answer
GitHub Actions empower automation and customization for the software development lifecycle. To learn more, see this informative 3.5 minute video.
…
Continue reading “How Do You Learn More About GitHub Actions?”