home.social

Search

265 results for “shawnhooper”

  1. Turning Off the AI Features in WordPress 7.0

    WordPress 7.0 shipped this month, with a focus on adding AI features into the core of the platform.

    If you don’t want these features, here are some ways to turn them off:

    Method 1: wp-config constant

    You can add the WP_AI_SUPPORT constant to your wp-config.php file:

    define( ‘WP_AI_SUPPORT’, false );

    This is the most secure option.

    Method 2: Using a plugin

    Install and activate the Turn […]

    shawnhooper.ca/2026/05/28/disa #AI #privacy #security
  2. @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!

  3. 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
  4. Customizing the New Admin Email Confirmation in WordPress

    How to use WordPress filters to modify the contents of the email that is sent out when the site’s admin email is changed in the WordPress admin dashboard.

    https://shawnhooper.ca/2024/04/02/wordpress-customizing-new-admin-email/

    #filters #wpAdmin

  5. @WinstonSmith @shawnhooper @wisearts has anyone mentioned #audacious already? It has been my favorite music player for #linux since the #xmms deprecation

  6. @WinstonSmith @shawnhooper @wisearts has anyone mentioned #audacious already? It has been my favorite music player for #linux since the #xmms deprecation

  7. @WinstonSmith @shawnhooper @wisearts has anyone mentioned #audacious already? It has been my favorite music player for #linux since the #xmms deprecation

  8. @WinstonSmith @shawnhooper @wisearts has anyone mentioned #audacious already? It has been my favorite music player for #linux since the #xmms deprecation

  9. @WinstonSmith @shawnhooper @wisearts has anyone mentioned already? It has been my favorite music player for since the deprecation

  10. Okay, so anyone know a good tool for importing your #twitter archive to #Wordpress via the #wordpresss #xmlrpc or #REST api? I loved the idea of @shawnhooper's tool, but putting on #DreamHost & running it via command line times out cos my archive is too big and the format is not great for me. (haven't found a good theme that will format tweets)

    I would love a tool that allows me to run it remotely from terminal in my macos with my data local and feeds it into a remote wordpress installation.

  11. Okay, so anyone know a good tool for importing your #twitter archive to #Wordpress via the #wordpresss #xmlrpc or #REST api? I loved the idea of @shawnhooper's tool, but putting on #DreamHost & running it via command line times out cos my archive is too big and the format is not great for me. (haven't found a good theme that will format tweets)

    I would love a tool that allows me to run it remotely from terminal in my macos with my data local and feeds it into a remote wordpress installation.

  12. Okay, so anyone know a good tool for importing your #twitter archive to #Wordpress via the #wordpresss #xmlrpc or #REST api? I loved the idea of @shawnhooper's tool, but putting on #DreamHost & running it via command line times out cos my archive is too big and the format is not great for me. (haven't found a good theme that will format tweets)

    I would love a tool that allows me to run it remotely from terminal in my macos with my data local and feeds it into a remote wordpress installation.

  13. Okay, so anyone know a good tool for importing your #twitter archive to #Wordpress via the #wordpresss #xmlrpc or #REST api? I loved the idea of @shawnhooper's tool, but putting on #DreamHost & running it via command line times out cos my archive is too big and the format is not great for me. (haven't found a good theme that will format tweets)

    I would love a tool that allows me to run it remotely from terminal in my macos with my data local and feeds it into a remote wordpress installation.

  14. Okay, so anyone know a good tool for importing your #twitter archive to #Wordpress via the #wordpresss #xmlrpc or #REST api? I loved the idea of @shawnhooper's tool, but putting on #DreamHost & running it via command line times out cos my archive is too big and the format is not great for me. (haven't found a good theme that will format tweets)

    I would love a tool that allows me to run it remotely from terminal in my macos with my data local and feeds it into a remote wordpress installation.

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

  16. Showering at the hotel.

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

    (After shampooing)

  17. That's a wrap for "A Year in the Death of Eddie Jester".

    Had a great time working with this cast and crew.

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

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

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

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

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

  23. 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
  24. I thought today’s show was going really fast.

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

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