If you’re like me and trying to set up a scraping project and leveraging Selenium you may have run into the path requirement that I found to be puzzling. Luckily chromedriver-py solves that for you. However, upon install, I found that it wasn’t accepting the version of Chrome that I had installed (apparently the latest […]
Author: pezant
Things and Places in SF + Bay Area
I’ve been in the Bay Area for a while now (7 years) and put together a list for friends visiting to give them some inspiration on what to do when they visit. Hope its helpful to you! To eat Chicken sandwich at the Bird (my favourite chicken sandwich) Kin Khao (expensive but amazing Thai food) […]
How to request removal of your deleted content from Google
Have you ever deleted a post online or made a profile private and wanted it to be removed from search results? If that content is no longer available to the public, it should eventually be removed from search results but, if you want to expedite it, you can actually submit a request directly to Google […]
Resources for PMs
I’ve had quite a few folks reach out for guidance on navigating their journey as a PM. Since it’s a newer field and a lot of it has to do with softer skills it can be a bit hard to know where to start to build on your skills and become a more effective PM. […]
WoW Dungeon Reset to send you back to the start of the instance | Classic WoW
Sometimes you’re running a dungeon on repeat (say Blackrock Depths Emperor runs or a Maraudon Princess run) and don’t want to have to port back to a major city (or hearth away) and then run back to the dungeon again. There’s actually a way to reset the dungeon while keeping you in the instance and […]
Things to Do in Vancouver + Metro Vancouver
This is a list I’ve been working on for friends visiting Vancouver. If you have any suggestions or feedback please feel free to leave a comment, :). To do North Shore Where I grew up! Things to do Lonsdale Quay Ambleside Park Take the Seabus to and from Vancouver Nice ride with great views! Nature […]
Solving “Importerror no module named”
So you’re trying to get something done and you’ve found an awesome tool to install via pip. You pop open Terminal, run your pip install command (in my case, pip install google_images_download), install the module successfully, and are ready to get to work. You start working on your Python script and get an error: ImportError: […]
Running AutoHotKey as Administrator
I was having challenges where a script that used to work for sending keystrokes directly to a window based on its window title wasn’t working. I tried troubleshooting a bunch of stuff (so weird since it was working before) but nothing was sticking. I stumbled across a comment mentioning that programs being run as Adminstrator […]
Fix for BLZBNTAGT00000960 (CoD Warzone crashes on start, update, install) – December 2021
Recently had an annoying error come up where I couldn’t start Call of Duty: Warzone. I tried: Scan and repair which took forever and didn’t work Restarting my computer Un-installing and re-installing (this didn’t work and now I couldn’t even install the game) Deleting my Battle.net folder in AppData Running Battle.net as Administrator Ultimately, what […]
Fix for Xbox Game Pass Install Error (0x00000001)
If you’re like me and you wanted to download Age of Empires 4 to play with your friends on Game Pass you might have run into this error. You start the install and for some reason its not progressing. You go to check on your progress and see there’s an error. Maybe you restart the […]
Fix broken pipenv in a virtual environment (could not find a version that matches X)
I’d messed up my pipenv previously by trying to get it to install a module that just wasn’t working out for me. In using pipenv install -skip-lock I’d inadvertently put my pipenv in a state where it was constantly stuck in a loop where it was trying to install “blocks” through pipenv which just wasn’t […]
Reverting a bad commit and removing it completely from Github
Let’s say you accidentally commit and push a file full of passwords (like a .env file) that you don’t want other people to want and now it is part of your public project on Github? How do you get rid of that? Fear not, follow these two commands and you’ll be back to before you […]