Posts

Showing posts from February, 2025

AWS Cloud Services: The key to keeping monolithic architectures competitive.

Image
Cost optimization is one of the pillars of the AWS Well-Architected Framework and is a critical pillar for monolithic architectures, in order to stay competitive. This blog post aims to provide an argument for the use of AWS services to reduce the TCO (total cost of ownership) for on-premise/hybrid environments which must maintain on-premise/hybrid infrastructure. When it comes to cloud adoption, "cloud-native" is not a reality for environments which adhere to stringent requirements for compliance purposes.  The e-book titled, "Cloud-native DevOps: A guide to implementation and best practices on AWS" takes a strong stance, when it comes to criticizing on-premise monolithic applications. In reality, this depends entirely on the use case and if it actually makes sense to have a SaaS application become "cloud native". Some software applications are so technical, complex, operating in heavily regulated industries, and require resources which demand a greater a...

C++ and AWS : Building a DevOps Monitoring and Automation Tool

Image
A Hands-On Guide to System Administration and Infrastructure as Code (IaC). The following C++ project simulates an Infrastructure as Code (IaC) Monitoring and Automation Tool  which: collects system details store configurations in JSON-like format simulates deploying infrastructure configurations Output ------------------------------------------------------------------------------------------------------------------------- Step 1 . Set up the project in Visual Studio by creating a new Console App (C++) project. Step 2: Name the project ' DevOpsTool '. Step 3: Ensure the IDE is configured to use the Developer PowerShell terminal.  This is helpful because the Developer PowerShell is more powerful than a command prompt.  Source: Visual Studio Developer Command Prompt and Developer PowerShell. https://learn.microsoft.com/en-us/visualstudio/ide/reference/command-prompt-powershell?view=vs-2022 Step 4: Add the required libraries.      #include <iostream>...