windows was deprecated in iOS 15.0: Use UIWindowScene.windows on a relevant window scene instead

Got this warning? Here’s how to fix it with a clean one guard. guard let scenes = UIApplication.shared.connectedScenes.first as? UIWindowScene, let rootViewController = scenes.keyWindow?.rootViewController else { return } // use rootViewController and scenes as needed or simplify it even further by doing this: guard let rootViewController = (UIApplication.shared.connectedScenes.first as? UIWindowScene)?.keyWindow?.rootViewController else { return } That’s it!

June 11, 2024 · 1 min · 56 words · Cisco

Lazy Vim: Add File Icons on Mac

When you first install LazyVim, it does not come with any icons. You may notice a screen like this during the installation? There are no icons! Luckily this is a simple fix. Make sure you have Homebrew installed before proceeding. We’ll be using Nerdfont to fix this. Keep in mind this will change your font in LazyVim. There are many different fonts to choose from. To see a list run the following command:...

June 2, 2024 · 1 min · 162 words · Cisco

Why Building Affordable Homes Makes Homes Unaffordable

There’s a lot of legislation going around about building more affordable homes. States like Utah, among many others are proposing budgets to build cheaper homes. In recent years the price of homes have climbed so fast that it has priced out many Americans especially first time homer buyers. Why building more affordable homes make it worse A problem the housing market has is that many people more are treating it as an investment....

May 29, 2024 · 3 min · 503 words · Cisco

I tried WordPress.com and this is my review

When starting to create a blog website I took many options into consideration. I looked at Wix, Squarespace, and WordPress just to name a few. WordPress seemed to be a little cheaper than the others and I was looking forward to using all the plugins in its ecosystem. I was also looking to save a few bucks. Little did I realize that all the plugins are behind their Creator tier, and at the time of writing is about $40 a month or $300 a year if I prepaid the annual plan....

May 28, 2024 · 1 min · 174 words · Cisco