There has been a lot going on since my Q1 Update! Still working hard to make my 2018 Vision be, and continue to be, a reality. How’s it going so far? Pretty great! There have been some setbacks, but much more positive forward motion than backward :). Lets go through the four vision statements… Vision: Become
Copy data from one Google Drive to another domain
Transferring data from one Google account to another is typically as easy as sharing the files with another user and making them owner. There is a caveat though, you have to be on the same domain or GSuite account. Transferring ownership from your business account to your personal account is “not possible”. I found myself
9 Critical Concepts for Leading High-Performance Teams
I just returned from WebDevStudios’ (WDS) 2018 WDS Camp, a company-wide, weeklong retreat. The annual event provides face time for a team that is distributed across the entire geographical region that is the US. As I sat on the six-hour flight home, I reflected on the past week and noticed that nine concepts continued to
The brown crusty joys of boat ownership
Cruisers have a saying, “Sailboat cruising is simply boat repair in exotic places.” That may be slightly tongue-in-cheek but boy what I wouldn’t give to be in an exotic place right now. This time last year I was reinstalling Billabong’s motor. Unfortunately the shaft seal failed shortly after and became progressively worse over the summer.
Run a wp-cli command across the network
Need to run a wp-cli command across a network of WordPress sites? Here is an example of how to add/update an option on every site on the network using wp-cli. wp site list –field=url | xargs -n1 -I % wp –url=% option update my_option my_value This is really two commands in one. Lets break them