What Can You Do when Your Weightlifting Shoes Are Too Tight?

Problem scenario
You bought new weightlifting shoes. They seem to tight. They are not comfortable. What should you do?

Possible Solution #1
If only one shoe feels too tight, can you see if the tongue is double-up or folded on one side? By flattening it or unravelling it, that may help.

Possible Solution #2
Can you make the velcro strap connect without as much force and tightness?

How Difficult Is It to Change a Headlight Bulb?

Problem scenario
A head lamp bulb needs to be replaced on a car. How difficult is it?

Answer
It is usually fairly easy and does not require tools. Changing blinkers (turn signal bulbs) and headlights is often straight-forward. The bulbs for headlights are smaller than you would think; normally they are much smaller than a typical household lightbulb.

What Can Go Wrong if You Try to Remove a Car Stereo?

Problem scenario
You want to remove a car stereo. Can something go wrong if so what should you look out for?

Solution
Yes. The airbags could be triggered. The car alarm could go off. Some anti-theft devices sound an alarm if the car stereo is tampered with.

You do not want the airbags to potentially inflate suddenly causing injury to you.

Should You Save Old I.T. Certification Study Guides?

Question
Given the obsolescence of information technology topics, should you hold on to study guides and books for years later as an investment?

Answer
Possibly. Sometimes one book that was published in 2010 can list for over $1,000. This book is RHCSA/RHCE Red Hat Linux Certification Study Guide (Exams EX200 & EX300) 6th (sixth) edition Text Only Paperback by Michael Jang.

How Do You Write a Python Program to Parse a Log File and Return Lines with the Word “Failed”?

Problem scenario
You want to retrieve lines from a log file with the word “failed”. How do you do this with Python?

Solution

Assuming the log file is named “auth.log”, this will work:

log_reader = open(‘auth.log’, ‘r’)
for line in log_reader:
lower_line = line.lower()
if lower_line.find(“failed”) != -1:
print(line) …