PAUL'S BLOG

Learn. Build. Share. Repeat.

Ubuntu Dev Tools

2022-11-11 3 min read Code snippets
Is this the year of the Linux desktop? I’m not sure but I have been making more of an effort to “daily drive” a Linux desktop lately. I’m currently working off of an Ubuntu 22.10 machine and here is my script for installing common tools that I work with daily. sudo apt-get update sudo apt-get upgrade # add git repository sudo add-apt-repository ppa:git-core/ppa # install some basic tools sudo apt-get update sudo apt-get install -y \ python3 \ python3-pip \ bpytop \ tree \ guvcview \ vim \ curl \ git \ gnupg2 \ jq \ sudo \ zsh \ build-essential \ cmake \ libssl-dev \ openssl \ unzip \ pkg-config # install brew tools /bin/bash -c "$(curl -fsSL https://raw. Continue reading

Fixing a NodeJS Digital Envelope Routines Error

2022-11-08 2 min read Tips and tricks
In my journey to learn Rust, I’ve decided to pick up this book called “Practical Rust Web Projects” by Shing Lyu. In the last chapter, you walk through an example of packaging a WebAssembly module using wasm-pack and using the .wasm binary in a NodeJS application. On the step where I needed to compile the application, I ran into the following error: $ npm run build > create-wasm-app@0.1.0 build > webpack --config webpack. Continue reading

Deploying ARM64 workloads to AKS

2022-11-02 6 min read Tutorial
You might have heard by now that Azure has partnered with Ampere to bring ARM-based processors for virtual machines on Azure. This is super exciting as it gives you an opportunity to deploy workloads on highly performant and power efficient virtual machines and these characteristics ultimately result in excellent price-performance (lower costs 🥳) So… are you ready to deploy your workloads to ARM64 node pools on AKS? I sure wasn’t when attempting to deploy the azure-voting-app-redis application to my cluster. Continue reading

Sharing Bicep Modules with Azure Container Registry

2022-10-11 14 min read Tutorial
One of the things I do as a Cloud Native Advocate at Microsoft is build end-to-end lab scenarios in the https://aka.ms/oss-labs repo. Most of the demo scenarios we aim to cover is in and around the container space and a majority of the labs uses Azure Bicep to declaratively provision Azure infrastructure. As more labs get spun up, there is a potential for redundant Bicep code. You might have already guessed, there’s a need for re-usable code to spin up AKS clusters. Continue reading

Autoscaling Azure Container Apps

2022-09-11 6 min read Architecture
So, what makes Azure Container Apps “serverless”? Today we are going to focus on what makes Azure Container Apps (ACA) a “serverless” offering. But what does the term “serverless” really mean? As much as we’d like to think there aren’t any servers involved, that is certainly not the case. In general, “serverless” means that most (if not all) server maintenance has been abstracted away from you. With serverless, you don’t spend any time managing and patching servers. Continue reading

Microservices Communications with Azure Container Apps

2022-09-10 7 min read Architecture
Introduction In yesterday’s #ServerlessSeptember post, we learned what the Azure Container Apps (ACA) service is and the problems it aims to solve. It is considered to be a Container-as-a-Service platform since much of the complex implementation details of running a Kubernetes cluster is managed for you. Some of the use cases for ACA include event-driven processing jobs and background tasks, but this article will focus on hosting microservices, and how they can communicate with each other within the ACA service. Continue reading
Older posts Newer posts