Difference Visual Studio Code and IntelliJ’s

Summary The main difference between Visual Studio Code and IntelliJ lies in their background and primary use cases. While both are popular Integrated Development Environments (IDEs), they cater to different needs and offer distinct features. Visual Studio Code is a lightweight, open-source code editor that supports a wide range of programming languages, including Java, HTML, … Read more

Ubuntu terminal – how to open

Summary The issue of being unable to open the default Terminal in Ubuntu running inside a Virtual Machine can be frustrating. Key takeaways include understanding the environment, permissions, and alternative methods for opening the Terminal. Root Cause The root cause of this issue can be attributed to several factors, including: Incorrect navigation to the Terminal … Read more

How to print or log from Groovy policy in Boomi API Gateway (Gravitee underlying gateway)?

Summary The problem at hand is logging or printing debug values from a Groovy policy in Boomi API Gateway, which uses Gravitee APIM Gateway 3.3.13 as its underlying gateway. The goal is to find a supported method to log to Boomi Gateway logs, log to Gravitee logs, or output debug statements from within a Groovy … Read more

How to prevent SSDT/DACPAC publish with DropObjectsNotInSource=True from dropping Azure Functions az_func runtime tables

Summary The problem arises when using SSDT/DACPAC publish with DropObjectsNotInSource=True, which drops objects not present in the source. This causes issues with Azure Functions runtime tables in the az_func schema, leading to loss of runtime state. The goal is to prevent dropping objects in the az_func schema while maintaining DropObjectsNotInSource=True for other schemas. Root Cause … Read more