Your cart is currently empty!
Documenting: Researching Rebuilding Large Bloated Websites
New Day: Mon 15 Aug 2022 02:17:38 PM CDT Okay, I often come across huge sites that have been jiggered together with plugins because the people running the site don’t know how to code to create custom solutions. So what often ends up happening is … lots of plugins and lots of complicated logic. Also,…
Documenting: Paths to LocalWP assets on Linux Mint
New Day: Sat 13 Aug 2022 07:01:24 PM CDT I assume this would work in Ubuntu but not for sure. Okay, so ….. I read on their website they have paths to Mac machines listed as, ~/Library/Application Support/Local/blueprints. So my past experience says that I have seen that capitalized Local folder in the root somewhere,…
Documenting: Debugging WordPress With Custom Log Files
New Day: Sat 13 Aug 2022 02:29:10 PM CDT Alright, after trying and failing This is not going to be specific to LocalWP–even though I’m using it for this–because this should work on the same PHP/WordPress installations. After looking around I found this dope talk where the speaker discusses different uses for the console object.…
Documenting: Setting Up Xdebug + VS Code for LocalWP on Linux Mint machine
New Day: Sat 13 Aug 2022 10:35:23 AM CDT I have previously got it to work after editing the launch.json file and change the routing scheme to my LocalWP installation. I am following this YT video. I made a launch.json which worked well. Launch.json {“version”: “0.2.0”,”configurations”: [{“name”: “Listen for Xdebug 3.0 (Local)”,”type”: “php”,”request”: “launch”,”port”: 9003,”xdebugSettings”:…
Documenting: Importing Websites into LocalWP with WP CLI
The process of importing things with LocalWP is the fact that you have to have the .sql file and wp-content folder of a website in the same folder, zip it and then drop it into LocalWP. This technique is summed up perfectly in this forum thread reply. I currently able to use SSH to get…
Documenting: Setting Up and using WP CLI on LocalWP
TL;DR I didn’t have to do much work because LocalWP ships with WP CLI just click ‘Open site shell’ New Day: Thu 11 Aug 2022 11:59:00 AM CDT The WP CLI is offered kind of as an alternative to SSH but I have yet to get really familiar with it. It offers the promise of…
Quick Tips: Firefox Dev tools – how to make dev tools take a screenshot for you
In the console of devtools go in inspect mode find the element you want to screenshot right click on it and press screenshot node. If you would like it to be more narrow or more wide adjust the size of your browser and the screenshot will come out as such. This saves time over screenshotting…
Reading Notes: automating the boring things with Python
chapter 9 has piqued my interest. basically it’s a book meant to like talk to a novice and like train novice on programming. The thing is, already know all that stuff so I’m going to just like looking to novels or books rather with BASH like how to automate things with bash because not everybody’s…
My Developer Workflow on Linux Mint
I’m currently working with BASH files to automate the process that I’m in and appears that I have to source the file to do anything meaningful. Wonder if you run it is it going to be a ./ or . like it’s going to be sourced or not and I wonder if I can change…
Documenting: My Developer Workflow Setup on Linux Mint
About my workflow: I use vim and I use Linux Mint I mainly do web development as it is my main job but I enjoy C++ development as well. I would consider myself an Advanced WordPress developer. I plan to make it to the expert stage by the end of next year. I personally enjoy…