AWS
Python S3 Multipart File Upload with Metadata and Progress Indicator
Recently I was working on implementation of a Python tool that uploads hundreds of large files to AWS S3.
The tool requirements are:
Ability to upload very large filesSet metadata for each uploaded...
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...