Help! Where is my Sublime Context Menu optionAfter I upgraded to Windows 11, my Sublime Text right-click context menu disappeared. Putting this here for my future reference, and hope it helps the next person. Cheers! @echo off REM Add Sublime Text to Windows 11 Right-Click Context Menu REM Run ...Nov 21, 2025·1 min read
How to find out the size of your database tablesToday I needed to find out which one of my database tables was taking up all my space. Here is how to to see the size in MB Here is how to see the size in GBApr 13, 2023·1 min read
Querying rows that are 5 minutes old or moreQuerying rows that are older than 5 minutes I recently had a couple separate tasks running on the same database and I wanted to make sure that the second task did not interefere with the other task. To help with this I made sure that the second task...Apr 13, 2023·1 min read
Boy I wish there was a way to create a table from a select queryI was doing some SQL work today when I had a thought: Boy I wish there was a way to create a table from a select query I started in Navicat to see if it was possible. After find nothing I decided to google it all the while thinking in my head how ...May 23, 2020·1 min read
Adding Custom JDBC Options to your cfconfig datasourceI was getting a weird timezone error when connecting to a MySQL 8 database. The server time zone value 'EDT' is unrecognized or represents more than one time zone. You must configure either the server or JDBC driver (via the serverTimezone configurat...May 17, 2020·1 min read
Git GUI for WindowsThis past weekend I needed to upload code to github. I chose to use the GitHub for Windows which made it painless. Today I decided to research and see what other GUI clients I could find for GIT. I stumbled upon SourceTree by Atlassian Software...Nov 13, 2013·1 min read
Handy JS FunctionsConverting a string to an integer http://www.w3schools.com/jsref/jsref_parseint.asp Javascript For Loop http://www.w3schools.com/js/js_loop_for.aspJul 1, 2013·1 min read