Execution Protocol console.log(“[%s] Init GViz data extraction sequence”, “SheetExtract”);(async () => {try {const match = window.location.href.match(/\/d\/([a-zA-Z0-9-_]+)/);const gidMatch = window.location.href.match(/gid=([0-9]+)/); } catch (e) {console.error(“[%s] Execution failure: %s”, “SheetExtract”, e.message, e);}})();
Category: Uncategorized
Chime on Replit Completion
A tool for importing from Google Docs that doesn’t suck (Mammoth .docx converter)
I was tired of WordPress’s crappy editor so I decided to write a post in Google Docs instead. However, when copying the content back in. All the images I carefully added did not carry back over. After trying several terrible options (Seraphinite Post .DOCX Source, WordPress.com for Google Docs, docswrite.com — this didn’t work when […]
Japan Recommendations
A quick note on the below content. All of the things I’ve included I personally enjoyed greatly and would enjoy to anyone who shares my tastes. Have fun in Japan! Tokyo Tokyo food L’Effervescence Oniku Karyu Cokuun (Coffee Omakase) I’m Donut ? Pizza Bar Cycle IPPUKU&MATCHA Blue Bottle Cafe (surprisingly good Matcha Latte) Parklet Bakery […]
ChatGPT Chime on Chat Completion (Tampermonkey Script)
Tampermonkey script
Go actual full screen on Simplepractice.com video calls
When I’m on calls with my therapist it has bugged me that I can’t actually go fullscreen with the video so I gave CGPT the code for the page and wrote up a script that expands the fullscreen video to actually be fullscreen. Use either the console script or Tampermonkey script and try it out […]
Fix for audio cutting out for 1-3 seconds randomly with MSI B650-S Wifi Motherboard
If your sound keeps cutting out seemingly randomly for your wirelessly headset with this motherboard then try plugging it into the other USB slots (not the blue ones, the red ones). It seems to have fixed my issue. Seems the other ones may not have enough power to support the power draw. Found the fix […]
My Favourite Podcasts!
Podcasts are one of my favourite ways to learn and entertain myself. Here are some of my faves from over the years.
How to get Tablepress tables to show in full width
2. Add in this CSS block modification .content-area__wrapper {–go–max-width: 100rem;} 3. Now your tables will show at full width on your site! If you want it to only apply to a specific page, publish your page, go to that page, right click to inspect and find out the page ID (it shows at the very […]
How to build & check to see if your ads.txt file is correct for Google Ads (Adsense)
Your ads.txt file is composed of the following parts For example: google.com, pub-XXXXXXXXXXXXXXXX, DIRECT, f08c47fec0942fa0 Where: So to create your own ads.txt, all you need to do is go to your account information page (Account information – Settings – Account – Google AdSense) and pull your publisher ID and slot it in. Once you’ve got […]
Updating your wordpress PW without being able to password reset via email (GCP hosted WordPress instance)
Steps: ~$ cd /var/www/html/var/www/html$ wp user update [username] –user_pass=[new_password] Here’s an example if your user name was “admin” and you wanted the password to be “new_pass” you would enter the following after navigating to the right directory. wp user update admin –user_pass=new_pass Here’s the SSH button if you don’t know where to find it
Getting iframes to appear centered for WordPress pages/posts
I recently set up a few iframes and they were stubbornly left aligned despite all the other content being center aligned. Here’s how I was able to fix the issue. iframe {display: block;margin: 0 auto;} 3. Hit publish and you should be good!