Code Example
Your First HTTP Server in GO
We already know why to choose GO over Python, therefore today I'll show an example of a simple GO HTTP Server project in Visual Studio Code.
VSCode is a lightweight and super...
Code Example
Why to choose GO over Python
GO (Golang) was developed by Google and it's getting popularity recently and this is why:
Go is extremely fast!
GO performance is similar to C++ because it's compiled to machine code.
Concurrency Management Mechanism
GO...
AWS
MySQL Table Migration with Pandas DataFrame
Today I'll show how to use Pandas DataFrame for transforming data from one MySQL AWS RDS to another.
Suppose situation when you have some old application that writes data to some MySQL...
Code Example
Send Message to Slack with Python
Recently Slack changed the way you publish messages via API, so it took me a while to figure out how to do it by myself and today I'll show the short...
DevOps
Jenkins Pipelines – Understanding Flyweight and Heavyweight Executors
Jenkins have two type of executors - flyweight and heavyweight.
Flyweight executor is actually a Java thread that is running on Jenkins Master node. Jenkins automatically create Flyweight executors when...
AWS
Creating S3 Bucket with KMS Encryption via CloudFormation
This is AWS CloudFormation YAML template for creation Amazon S3 bucket which restricts unsecured data (SSE-KMS).
AWSTemplateFormatVersion: '2010-09-09'
Description: Amazon S3 Bucket with
Resources:
CodeFlexS3Bucket:
Type: AWS::S3::Bucket
...