home.social

Search

30 results for “shawnhooper”

  1. @shawnhooper Acounts that he had blocked (due to #WPdrama) are / will unblocked.

    He posted this yesterday on X:

    x.com/photomatt/status/1914107

  2. @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

  3. If you use my WPML REST API 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.

    github.com/shawnhooper/wpml-re

  4. New Blog Post:

    Played around with the LAMS linting tool for LookML, the markup language for Looker.

    shawnhooper.ca/2023/09/15/lint

  5. @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!

  6. Joining the Board

    Last night was as elected to the Board the Russell Association for the Performing Arts.

    shawnhooper.ca/2026/02/26/join #RAPA
  7. That's a wrap for "A Year in the Death of Eddie Jester".

    Had a great time working with this cast and crew.

  8. For those of you who work in live production.

    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.

  9. For those of you who work in live production.

    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.

    #Events #AV #StageCrew #ProAudio #ConferenceLife

  10. For those of you who work in live production.

    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.

    #Events #AV #StageCrew #ProAudio #ConferenceLife

  11. For those of you who work in live production.

    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.

    #Events #AV #StageCrew #ProAudio #ConferenceLife

  12. For those of you who work in live production.

    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.

    #Events #AV #StageCrew #ProAudio #ConferenceLife

  13. 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!!!

  14. Showering at the hotel.

    Have never noticed in French that conditioner is “Après-Shampoing”

    (After shampooing)

  15. I thought today’s show was going really fast.

    The clock on the mixer hasn’t been adjusted for DST.

  16. Ah crap. I was just introduced to a new software protocol that would allow me to solve a lot of problems in the theatre.

    en.wikipedia.org/wiki/Open_Sou

    Down the rabbit hole I go....

  17. 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.

  18. Thank you to the panelists for your session this afternoon. Glad you’re part of this camp, and the community.

    blackpresswp.com/

  19. 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.

    porchfestndg.com/

  20. Mixing on the Midas again today. Getting much better at moving around this console quickly.

  21. 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 Data

    Now 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 --force flag to the delete command,

    wp post delete $(wp post list --meta_key="_mykey" --fields="ID" --format=ids --post_type=page --meta_value="value1") --force

    Bonus

    If you want to delete the posts that contain the “_mykey” meta_key, regardless of what the value is in meta_value,

    wp post delete $(wp post list --meta_key="_mykey" --fields="ID" --format=ids --post_type=page) --force

    #WPCLI