ContentPosts from @mudit009..
Link
@faun shared a link, 2 years, 8 months ago
FAUN.dev()

New headless Chrome has been released and has a near-perfect browser fingerprint

The new headless Chrome browser fingerprint is way more realistic than the first/old version of headless Chrome. Depending on the sophistication of your detection engine, it’s going to make it easier for bot developers to bypass detection, particularly detection based on browser fingerprinting signa.. read more  

New headless Chrome has been released and has a near-perfect browser fingerprint
Link
@faun shared a link, 2 years, 8 months ago
FAUN.dev()

Content Delivery Network (CDN): Explained in simple words

Engineer's curiosity leads to discovering the reason behind a slow-performing e-commerce website. By analyzing Google's developer tool, the engineer realizes the website doesn't use a content delivery network (CDN), which is crucial for accelerating content delivery. This article explains what a Co.. read more  

Content Delivery Network (CDN): Explained in simple words
Link
@faun shared a link, 2 years, 8 months ago
FAUN.dev()

Create Your Lead Generation Tool with AI (GPT-3)

This case study explores the potential of using OpenAI's GPT-3 to build cost-effective lead generation tools. The article highlights the benefits of creating free-to-use tools that harness the power of AI, such as increased availability and brand awareness, cost-effectiveness, improved SEO, and vir.. read more  

Create Your Lead Generation Tool with AI (GPT-3)
Link
@faun shared a link, 2 years, 8 months ago
FAUN.dev()

Keep Calm And Panic

The article discusses how panic/recover workflows can improve performance and code organization for an engine's validation rules. The authors benchmarked thego-mysql-servervalidation rules with error passing compared to a panic/recover workflow and found that panicking is 20-40% faster for small we.. read more  

Link
@faun shared a link, 2 years, 8 months ago
FAUN.dev()

Amazon DynamoDB now supports up to 50 concurrent table restores

Amazon DynamoDB now supports up to 50 concurrent table restores per AWS account. The default service quota for table restores increased from 4 to 50, and is applicable to restores performed using point-in-time recovery and on-demand backups managed by DynamoDB and AWS Backup... read more  

Amazon DynamoDB now supports up to 50 concurrent table restores
Link
@faun shared a link, 2 years, 8 months ago
FAUN.dev()

AWS Snowball Edge Compute Optimized now supports Amazon S3 compatible storage

AWS has introduced Amazon S3 compatible storage on Snowball Edge Compute Optimized devices. - This enables customers to store data and run highly available applications on the Snowball Edge devices in disconnected or limited network environments. - The expanded S3 API features and increased cluster .. read more  

AWS Snowball Edge Compute Optimized now supports Amazon S3 compatible storage
Link
@faun shared a link, 2 years, 8 months ago
FAUN.dev()

20 Terraform Best Practices to Improve your TF workflow

This article focuses on best practices for managing Infrastructure as Code (IaC) with Terraform. It suggests: - Using remote state, - Using existing shared and community modules, - Avoiding hardcoded variables, - Consistently formatting and validating code, - Using a naming convention, - Tagging re.. read more  

20 Terraform Best Practices to Improve your TF workflow
Link
@faun shared a link, 2 years, 8 months ago
FAUN.dev()

Monitoring DynamoDB with SkyWalking

Skywalkingis an open source APM system that offers a user-friendly UI to collect, aggregate, and display logs, traces, and metrics. This article shows how to use Skywalking to monitor DynamoDB via a CloudWatch metric stream. It also covers how to useAWS Firehose Receiverto receive and calculate dat.. read more  

Monitoring DynamoDB with SkyWalking
Link
@faun shared a link, 2 years, 8 months ago
FAUN.dev()

Automate the CloudWatch Agent configuration upon instance size change

Hetul Sheth outlines how to set upCloudWatch Agentfor disk and memory monitoring and use custom metrics to avoid false alarms in scenarios where instance size might change due to intentional or unintentional actions. They provide detailed guidance on setting up automation and event trigger to updat.. read more  

Automate the CloudWatch Agent configuration upon instance size change
Link
@faun shared a link, 2 years, 8 months ago
FAUN.dev()

Dependency Injection Pattern In Practice

Dependency injection is a powerful pattern to handle different data sources and interactions in applications. It allows the decoupling of the source data from the actual implementation of interacting with the data service. A quick tutorial on implementing dependency injection in a Go application is.. read more  

Dependency Injection Pattern In Practice