git-switch Documentation
"NAME git-switch - Switch branches"
read »
I used instructions found in the PHPStorm docs with the xdebug3 set of code. I’m just going to mention some specifics that aren’t listed in the PHPStorm docs or that I found particularly key. Setting up an SSH tunnel https://www.jetbrains.com/help/phpstorm/remote-debugging-via-ssh-tunnel.html#set-up-an-ssh-tunnel-to-the-remote-machine This sets up a way for your remote server to talk to your local computer. … Continued
Edited 06-28-2022 with updated script. Tampermonkey is s superscript manager that allows you to write and run javascript code on specific domains/pages/paths. It’s pretty handy to alter a site you use with your niche wants. Here’s the GitHub repo which may get updates sooner than this blog post: https://github.com/thisbailiwick/jira-release-table-filtering-and-sorting Needed https://www.tampermonkey.net/ Installation Add Tampermonkey to … Continued
Sometimes I need to run a long query. Or sometimes when running one using TablePlus and it is taking a long time the kill process doesn’t always work. You can set a timeout with this syntax in your select /*+ MAX_EXECUTION_TIME(2000) */. The time is in milliseconds. This is a part of the mysql optimizer … Continued
/xmlrpc.php
file. This plugin can help you get around that.php-xmlrpc
is not installed. sudo apt-get install php-xmlrpc
. Then sudo service apache2 restart
. Not my issue, but kept on looking.php-xml
not installed. sudo apt-get install php-xml
. Then sudo service apache2 restart
. This was my issue!