ContentPosts from @dawnalvarez494..
Link
@faun shared a link, 3 years ago
FAUN.dev()

If Python is too slow for you, Crystal could be your savior

Learn a new programming language like you would learn a new human language, tap into the culture and community of its speakers. Crystal is a statically typed language that is similar in style to Ruby, but faster. It has the advantage of macros but requires specifying variable types, which may be le.. read more  

If Python is too slow for you, Crystal could be your savior
Link
@faun shared a link, 3 years ago
FAUN.dev()

How to monitor and query IAM resources at scale

In this two-part blog post, the author recommends using AWS Identity and Access Management (IAM) APIs effectively to architect scalable and secure cloud services. The post covers creating IAM resources, IAM role session policies, and monitoring and responding to IAM resource changes across accounts.. read more  

How to monitor and query IAM resources at scale
Link
@faun shared a link, 3 years ago
FAUN.dev()

Amazon CloudFront supports S3 Object Lambda Access Point origin

AWS announced new updates that allow customers to use Lambda functions to modify and process data before returning it in response to requests. The updates include support for Object Lambda and Lambda@Edge, which can be used to transform/filter data, resize images, and redact confidential informatio.. read more  

Amazon CloudFront supports S3 Object Lambda Access Point origin
Link
@faun shared a link, 3 years ago
FAUN.dev()

AWS Supply Chain is now generally available

AWS Supply Chain helps improve supply chain resilience AWS Supply Chain is now generally available. It unifies supply chain data to provide ML-powered actionable insights and offer built-in contextual collaboration design to mitigate risks, increase resilience and reduce costs. AWS Supply Chain sup.. read more  

AWS Supply Chain is now generally available
Link
@faun shared a link, 3 years ago
FAUN.dev()

Announcing CSV Export for AWS Resource Explorer Search Results

Title: Tips for better resource organization using AWS tags and CSV exports In this tutorial, learn how to use AWS tags and CSV exports to organize your resources better. Export CSV files including the resource identifier, service, resource type, region, and AWS account ID. Use the resulting CSV fi.. read more  

Announcing CSV Export for AWS Resource Explorer Search Results
Link
@faun shared a link, 3 years ago
FAUN.dev()

AWS Controllers for Kubernetes (ACK) for Amazon MemoryDB is now generally available

Amazon launches MemoryDB: a Redis-compatible in-memory database service designed for modern microservice architecture, with ultrafast performance, high availability, and security features. It is perfectly suited for containerized workloads and Kubernetes users can manage MemoryDB resources directly.. read more  

AWS Controllers for Kubernetes (ACK) for Amazon MemoryDB is now generally available
Link
@faun shared a link, 3 years ago
FAUN.dev()

Github Actions and Go

This post discusses building a re-usable CI system for Go development using Github Actions. It suggests using dependabot to manage dependencies, versioning, and caching. It also proposes adding parameters to the workflow such as verbose output, cache management, running tests in different orders, a.. read more  

Github Actions and Go
Link
@faun shared a link, 3 years ago
FAUN.dev()

Speeding up a Go cli application with concurrency

A backend online multiplayer game requires a dedicated server uploader with a Go CLI to upload thousands of files and directories. Using an AWS API and implementing Go's concurrency feature, the process is optimized for speed and efficiency, allowing files to be uploaded in batches and shorten the .. read more  

Link
@faun shared a link, 3 years ago
FAUN.dev()

GRPC Gateway Client Generator

gRPC is a high-performance binary protocol and API framework. By converting REST to gRPC, it improves API performance and leverages code generation, but can be challenging to consume as a browser-built external API. gRPC Gateway Client eliminates the middleman by generating high-quality Golang cli.. read more  

GRPC Gateway Client Generator
Link
@faun shared a link, 3 years ago
FAUN.dev()

A Comprehensive Guide to Structured Logging in Go

Go has built-in features for simple logging but third-party tools also exist for this purpose. How do you know which one to pick? The author starts by discussing the limitations of the standard library log package, such as lack of log levels, support for structured logging, and context-aware loggin.. read more  

A Comprehensive Guide to Structured Logging in Go