-
Skip the hassle of paying for a service and understand what’s really happening. To follow this tutorial, I’d recommend a machine with these minimum specs: Have you heard about vibe coding? It’s a way to task an Artificial Intelligence Agent with doing all of the “hard stuff” of actually programming something, while you focus on…
-
“Mister, you may conquer the air, but the birds will lose their wonder and the clouds will smell of gasoline” – Inherit the Wind: Act II, scene 3 Delegating Work Nostalgia is an incredible thing. Recently I took a trip back to the town where I grew up and just drove around, soaking it all…
-
Making space for something new. A few years ago I was looking at a canvas on my wall and thought that it would look much better with a frame. I love woodworking, and it seemed like a fun weekend project. I staged the tools and cut the wood, but when I tried putting it together…
-
Putting the “trade” in “trade-off”. I think museums are best enjoyed as a solo activity. Every time I go with a group, I feel tension from an invisible rubber band that keeps us from getting too far apart. Either I’m at my limit for ancient artifacts and pushing us all forward, or I’m stubbornly reading…
-
What are the odds? As a kid I was terrified by an episode of The Simpsons where Homer is served a fugu fish, whose lethal toxins need to be expertly removed before it can be eaten. The chef gets distracted, Homer is served the wrong part of the fish, and he spends rest of the…
-
Assembling the pieces needed to turn our scripts into an efficient engine. It feels like we’re on the cusp of having something here, you know? We have a handful of scripts that can do all of our basic operations, but it still feels a little disorganized. If we wanted to re-structure our existing functions, where…
-
Now that we have a structure in place, lets see what other functions we can add. What is a website? What components make up a website? What do we do with websites? Take a moment to go back into that developer tools window in your web browser (Right click -> inspect, or F12). What type…
-
Last time we were able to make a script that searches for and opens up a webpage. Handy, but each “action” that we do takes a couple of functions. Can we change this into organized behaviors and make it more reusable? All of our code so far has been organized into a main class. This…
-
The value of having good bug-side manners. It’s not working. That button that was working last week – today it’s broken. You spent a whole day updating configuration files and setting up your computer and now, after that new build, the key feature for the next release is totally broken. It always happens to you,…
-
Adding Selenium to a Java project with Maven and automating web page interactions. So far we have a Java project using Maven running inside of Visual Studio. We know how it works, how to change it, and how to run the program. Lets get started on making it do something cool. Installing Selenium Webdriver For…