Skip to main content

Why we built MYMICROAPPS?

Why we built MYMICROAPPS?

We have been working in the development enviroment for many years. Although writing code is fun, the build, deployment and running of the code was always difficult and time consuming.
Even working with our major cloud providers was not easy also. There is always the initial setup that needs to be done for networking, security and access controls.
Then we need to setup the VM's which was easy but the ops of it became to much. Even using the cloud providers app deployments setup was also not so easy and expensive.
And then off course is the dreaded pricing stuctures. It was too complex and too expensive and you pay for everything.... but all we wanted to do was write code.

Comments

Post a Comment

Popular posts from this blog

Data pipelines in Python

  Data pipelines in Python play a crucial role in efficiently processing, transforming, and transporting data from various sources to destinations. Python provides a rich ecosystem of libraries and tools for building robust and scalable data pipelines. Here's a guide on creating data pipelines in Python: 1. Define Pipeline Components: Identify the different stages of your data pipeline. Common components include data extraction, transformation, loading (ETL), and data storage. Break down the pipeline into modular components for better maintainability. 2. Choose a Pipeline Orchestration Framework: Consider using a pipeline orchestration framework to manage the workflow of your pipeline. Popular choices include Apache Airflow, Luigi, and Prefect. These tools help schedule, monitor, and execute tasks in a defined sequence. 3. Use Data Processing Libraries: Leverage Python libraries for data processing, such as: Pandas: Ideal for data manipulation and analysis. NumPy: Essential fo...

Optimizing Energy Efficiency in Linux: A Green Approach to Computing

  Introduction: In the era of increasing environmental awareness and concerns about energy consumption, the quest for energy efficiency extends to every facet of technology, including operating systems. Linux, being an open-source and highly customizable operating system, provides a fertile ground for researchers and developers to explore and implement strategies for optimizing energy efficiency. This article delves into the importance of energy efficiency in computing, the current state of energy consumption in Linux systems, and potential strategies for making Linux more environmentally friendly The Significance of Energy Efficiency: Energy efficiency in computing is not just about reducing electricity bills; it also plays a crucial role in mitigating the environmental impact of data centers and electronic devices. As the demand for computing power continues to rise, the carbon footprint associated with data centers and large-scale computing infrastructures becomes a growing ...

How to send custom metrics with OpenTelemetry in java

  OpenTelemetry is an observability framework that allows you to collect, process, and export telemetry data such as traces and metrics from your applications. In Java, sending custom metrics with OpenTelemetry involves a few key steps. The following steps assume that you have already set up OpenTelemetry in your Java project. 1. Dependency Setup: Make sure you have the necessary dependencies in your project. Add the OpenTelemetry API, SDK, and the metrics module to your pom.xml (if you are using Maven): <dependencies> <!-- OpenTelemetry API and SDK --> <dependency> <groupId>io.opentelemetry</groupId> <artifactId>opentelemetry-api</artifactId> <version>1.7.0</version> <!-- Use the latest version --> </dependency> <dependency> <groupId>io.opentelemetry</groupId> <artifactId>opentelemetry-sdk</artifactId> <vers...