Oracle APEX: Responding to Region Display Selector Tab Changes

As of Oracle APEX 23 there still isn’t a built-in framework event for working with the Region Display Selector (RDS)—something I recently bumped into while trying to show a specific region only when the ‘Show All’ tab was active. When other tabs were selected, that region should be hidden. In this post, I’ll walk through […]

How to Standardise Your Git Commits with GitHub Copilot

VS Code’s Copilot-powered commit message generator is a powerful tool. In this post, I’ll walk through how to enhance its output to better reflect your team’s conventions and make your commits more consistent. The commit message before I have just added a new Unit Test to my Go project and select the “Generate Commit Messages […]

Go: Storing Database Credentials in Environment Variables

A sensible default is not to hard code Database credentials in your source code. One alternative is to use Environment Variables which provide a low-friction method for managing sensitive data. In this post I will walk through the process of creating Environment Variables to store Postgres Database connection details and accessing them from Go. Version […]