Google Java Style Guide

https://google.github.io/styleguide/javaguide.html 1 Introduction This document serves as the complete definition of Google’s coding standards for source code in the Java™ Programming Language. A Java source file is described as being in Google Style if and only if it adheres to the rules herein. Like other programming style guides, the issues covered span not only aesthetic issues of formatting, but other types … Read more

Working with IntelliJ in a Zscaler Environment

Our organization uses Zscaler for internet security. While this provides strong protection, it can cause issues when using development tools like JetBrains IntelliJ IDEA, especially related to secure connections and certificates. In this post, I’ll share the steps I took to configure IntelliJ in a Zscaler-protected environment. 📌 References 🛠️ Configuring IntelliJ with Zscaler To … Read more

Why You Can’t Create a Tablespace in Oracle Autonomous Database (ORA-01031 Error)

While working with Oracle Autonomous Database in Oracle Cloud, I hit a roadblock trying to do something that seemed pretty basic: creating a tablespace. This is something I’ve done before in AWS RDS for Oracle without any issues, so I assumed it would work the same way here. Well… it didn’t. 😅 🤔 What I … Read more