Is Cybersecurity recession proof? R. Eric Kiser Is cybersecurity recession proof? The impact of a recession on the cybersecurity industry is not straightforward and can be elastic. While it’s true that some organizations may experience budget constraints and cut back on their spending on cybersecurity measures during a recession, it does not mean that the demand for cybersecurity professionals will decrease across the board. In fact, the opposite may be true in some cases. If you work for an organization the probability of a recession causing a lay off will depend on how you add value to the organization. Is there something that you specialize in that is required for business to function? In other words how do you affect the bottom line. Do your efforts increase profits? Have you been vocal in providing those metrics? If not I highly recommend that you begin to look at the ways you make the company money. Difficulties finding a cybersecurity job during a recession Du...
Python Script to search for YouTube Data trends R. Eric Kiser As a subject matter expert, I wanted to gain insight into the topics that my readers and students are interested in. Given the increasing popularity of video platforms such as YouTube, I decided to use a Python script to pull data from Google Trends on a specific topic of interest, “hacking.” This script allows me to understand the current trends and popular search queries in the field, and tailor my content to align with the needs and interests of my audience. Below is the simple script that I created. I tend to do more with the project but that is for another day. import requests from pytrends.request import TrendReq # create a new instance of the pytrends class pytrend = TrendReq() # prompt for keyword keyword = input ( "Enter a keyword to search for data trends: " ) # set the parameters for the trend search kw_list = [keyword] timeframe = "today 1-m" # get the trends pytrend.build_payloa...