How Do You Get Your Resume Passed Resume Scanning Programs for an Interview?

Problem scenario
You know of automated software that screens resumes without human oversight. You know your resume could be in a database and later retrieved if key words are matched. You want to customize your resume for the perfect job. The ladders.com says that humans often do not read resumes but robots do. What do you to to tailor your resume for the processes that affect getting an interview?

How Do You Write a Python Program to Create New Processes with the multiprocessing Library?

Problem scenario
You want to create new processes with the multiprocessing library in Python. What should you do?

Solution
Run this program:

“”” In a duplicate terminal window, run this command before, during and after you run the pyhon script: sudo ps -ef | grep python | wc -l

The integer that returns will go up by two showing a new processes have been created when the program is still running. …

How Can You Change the cgroups Settings for Docker Containers while Bypassing Docker?

Problem scenario
You want to bypass Docker and configure the cgroups directly. You want new Docker containers to be governed by these customized settings. What should you do?

Solution
You may not want to bypass Docker for your cgroup modifications. You should read about the libcontainers. By default Docker uses libcontainers for granular configuration changes along the lines of modifying cgroups settings. You could potentially use LXC,

How Do You Write a Tic-Tac-Toe Program in Golang?

Problem scenario
You want to play TicTacToe. You have a Golang compiler installed. What should you do?

Solution
Prerequisites
This assumes that you have installed Go. If you need assistance, see this posting.

Procedures
1. Name this program tictactoe.go.

package main

import (
“strings”
“bufio”
“fmt”
“os”
)

func mapper(letter string) int{
if strings.TrimRight(letter, …

How Do You Scale Out the Nodes of an AKS Cluster?

Problem scenario
You are using AKS (Azure Kubernetes Service). You have a cluster that you want to have more nodes. (Please do not confuse nodes with pods; see this posting if you are not sure about the difference.) What should you do?

Solution
You need to know the name of the cluster and the resource group it is in. Draft a command like this:

az aks scale –name foocluster –node-count 5 –resource-group barrg

-Replace “5” with the number of nodes you want to scale up.

Why is Docker Popular with Jenkins?

Question
You have noticed that Docker and Jenkins are regularly used together. Why is this?

Answer
1. The docker build command produces one artifact. Jenkins lends itself to well-defined tasks.

2. The logic and dependencies of the build can usually be completely contained in the Dockerfile (page 20 of Docker Up and Running). Simple lines of text can standardize many aspects of a given build (e.g.,

What is Cargo Cult Systems Engineering?

Question
What is cargo cult systems engineering?

Answer
Cargo cult systems engineering: vestige stanzas are included in a given configuration file for no functional benefit. Such irrelevant, or environment-inappropriate, stanzas exist either because the systems engineer was not given sufficient time to analyze every line of configuration or because the systems engineer failed to understand why the lines were included in the template (or working system) he/she copied from.

How Do You Create a Build Pipeline in Azure?

Problem scenario
You want to use an Azure pipeline. You want it to perform a build. What should you do?

Solution
Prerequisites
i. You must have a supported code versioning system with certain files. As of 10/7/19 the options are Azure Repos Git, Bitbucket Cloud, GitHub, GitHub Enterprise Server, other Git repositories or Subversion. If you follow steps 1 through 4 of How Do You Build a Java Program with Maven?

How Do You Write a Python Program to Test If Two Words Are Anagrams?

Problem scenario
You want a program to test if two words are anagramous with each other. You want the test to be case insensitive. How do you write a program that will interactively prompt the user for two different words and test if they are anagrams?

Solution
Use this Python 3 program (and it will interactively prompt you to enter two words):

word1 = input(“Enter one word: “).lower()
word2 = input(“Enter a second word: “).lower()

wL1 = list(word1)
wL2 = list(word2)

wL1.sort()
wL2.sort()

if (wL1 == wL2):
print(“The two programs are anagrams!”)
else:
print(“The two words are NOT anagrams!”)

It will not work with Python 2.