Search
30 results for “shawnhooper”
-
@shawnhooper just for completeness reasons and general good measures #FrankieGoesToHollywood #War #TwoTribes
https://youtu.be/xW0DzXklRKg?si=IjMYVwOsgGko42oX
(apologies for bad site)
@ckape -
@shawnhooper Acounts that he had blocked (due to #WPdrama) are / will unblocked.
He posted this yesterday on X:
-
@shawnhooper The Campbells website is slathered with #mapleWashing - seeks to appear Canadian, but not much sense of where their products are made, and with ingredients from what sources. I suspect they're worried about sparking a Heinz-Ketchup-like backlash @CdnCurmudgeon
-
If you use my WPML REST API #WordPress plugin, a new version (2.0.1) has just been released that fixes a bug when retrieving multiple posts, some of which aren't translated.
-
New Blog Post:
Played around with the LAMS linting tool for LookML, the markup language for Looker.
https://shawnhooper.ca/2023/09/15/linting-your-lookml-with-lams/
-
New blog post - Using GitHub Actions to Deploy LookML code to Looker.
https://shawnhooper.ca/2023/08/11/deploy-lookml-to-looker-with-github-actions/
-
@josephdickson @shawnhooper Just to bring an quick and unsolicited recommendation: https://wiby.me is an absolute treasure trove regarding the old web - also perfectly useable with #dillo or other rather simple browsers!
-
Joining the Board
Last night was as elected to the Board the Russell Association for the Performing Arts.
https://shawnhooper.ca/2026/02/26/joining-the-board/ #RAPA -
That's a wrap for "A Year in the Death of Eddie Jester".
Had a great time working with this cast and crew.
-
The "Nine Inch Noise" album is out!
-
For those of you who work in live production.
https://superproductionquest.com/
This is hilarious. Reminds me of all the old text-based PC games I played back when I had free time, before working in production.
-
For those of you who work in live production.
https://superproductionquest.com/
This is hilarious. Reminds me of all the old text-based PC games I played back when I had free time, before working in production.
-
For those of you who work in live production.
https://superproductionquest.com/
This is hilarious. Reminds me of all the old text-based PC games I played back when I had free time, before working in production.
-
For those of you who work in live production.
https://superproductionquest.com/
This is hilarious. Reminds me of all the old text-based PC games I played back when I had free time, before working in production.
-
For those of you who work in live production.
https://superproductionquest.com/
This is hilarious. Reminds me of all the old text-based PC games I played back when I had free time, before working in production.
-
-
I just found 20 years worth of manually tagged images! I thought the tagging had been lost to the gods of software past.
People names, places, event names, all back.
So happy!!!
-
Showering at the hotel.
Have never noticed in French that conditioner is “Après-Shampoing”
(After shampooing)
-
I thought today’s show was going really fast.
The clock on the mixer hasn’t been adjusted for DST.
-
Time to make things loud in here. #liveaudio #dance #theatre
-
I could go to bed.... or I could watch #DavidGuetta on the #Tomorrow livestream.
-
Ah crap. I was just introduced to a new software protocol that would allow me to solve a lot of problems in the theatre.
https://en.wikipedia.org/wiki/Open_Sound_Control
Down the rabbit hole I go....
-
There go the fireworks. #VictoriaDay #May24
-
It never ceases to amaze me that musicians show up to a gig and have no idea what connection their instrument takes to plug in to the PA.
-
-
Thank you to the #BlackPress panelists for your session this afternoon. Glad you’re part of this camp, and the #WordPress community.
-
This is neat. Porchfest NDG is a weekend-long festival where residents of Montreal's Notre-Dame-de-Grâce neighbourhood play 1 hour concerts on the front porches, yards, etc.
-
Mixing on the Midas again today. Getting much better at moving around this console quickly.
-
My office for the afternoon.
-
Using WP-CLI to Delete Posts Containing a Specific Metadata Value
I was doing some maintenance on a WordPress site for a client, and for very specific reasons, I had to use non-interactive WP-CLI commands to do anything on this site.
What I wanted to do
Delete all pages that contained a custom postmeta key and value.
For the sake of this example, I wanted to delete:
- Post Type: Only “page” types
- Containing the “_mykey” custom meta key with the value “value1”
Solution
Verify the posts that are going to be deleted first
It’s always advisable to double check what you’re going to delete first. The “measure twice, cut once” one database management.
wp post list --meta_key="_mykey" --fields="ID" --format=ids --post_type=page --meta_value="value1"
Delete the DataNow that you’ve confirmed what you’re going to delete is correct, you can proceed.
wp post delete $(wp post list --meta_key="_mykey" --fields="ID" --format=ids --post_type=page --meta_value="value1")For an added measure of safety, this only moves the posts into the trash. If you wanted to permanently delete them, add the
--forceflag to the delete command,wp post delete $(wp post list --meta_key="_mykey" --fields="ID" --format=ids --post_type=page --meta_value="value1") --forceBonus
If you want to delete the posts that contain the “_mykey”
meta_key, regardless of what the value is inmeta_value,
#WPCLIwp post delete $(wp post list --meta_key="_mykey" --fields="ID" --format=ids --post_type=page) --force