Common Manual Testing Techniques and The Future Of Manual Testing in the age of AI
MADHUPRIYA MAHALINGAN |
Introduction
Software testing plays a critical role in ensuring that applications function correctly, meet user expectations, and maintain high quality standards.Manual testing involves human testers executing test cases without automation tools, allowing them to evaluate software from a real user... read more
🚀 How I’d Learn Go (Golang) Fast in 2026 — If I Were Starting Today
Yash Sonawane |
Go (Golang) isn’t hype anymore.
In 2026, Go is the language behind:
Cloud-native systems ☁️
DevOps & platform tooling 🛠️
High-performance backends ⚡
Kubernetes, Docker, Terraform-level infrastructure
If you’re learning Go right now and feeling confused, overwhelmed, or slow — this post is ... read more
BoldKit Now Supports Vue 3: 45+ Neubrutalism Components for Vue Developers
Aniruddha Agarwal |
Hey Vue developers! 👋
Remember BoldKit, the neubrutalism component library I introduced a few weeks ago? Well, I've got exciting news — BoldKit v2.0 is here with full Vue 3 support!
If you missed the original announcement, BoldKit brings the bold, raw aesthetic of neubrutalism to your projects w... read more
Web APIs That Replace Entire Libraries
Muhammad Usman |
Browsers have become incredibly powerful. Features that used to require heavy JavaScript libraries are now built right into the browser. And honestly, it’s about time. Let me walk you through the Web APIs that are replacing entire libraries and making your bundle sizes way smaller.
All practical e... read more
9.Prevent S3 Bucket Deletion via Terraform
Thu Kha Kyawe |
Lab Information
To ensure secure and accidental-deletion-proof storage, the DevOps team must configure an S3 bucket using Terraform with strict lifecycle protections. The goal is to create a bucket that is dynamically named and protected from being destroyed by mistake. Please complete t... read more
8.Sync Data to S3 Bucket with Terraform
Thu Kha Kyawe |
Lab Information
As part of a data migration project, the team lead has tasked the team with migrating data from an existing S3 bucket to a new S3 bucket. The existing bucket contains a substantial amount of data that must be accurately transferred to the new bucket. The team is responsib... read more
7.Stream Kinesis Data to CloudWatch Using Terraform
Thu Kha Kyawe |
Lab Information
The monitoring team wants to improve observability into the streaming infrastructure. Your task is to implement a solution using Amazon Kinesis and CloudWatch. The team wants to ensure that if write throughput exceeds provisioned limits, an alert is triggered immediately.... read more
6.Launch EC2 Instance from Custom AMI Using Terraform
Thu Kha Kyawe |
Lab Information
The Nautilus DevOps team needs to create an AMI from an existing EC2 instance for backup and scaling purposes. The following steps are required:
They have an existing EC2 instance named devops-ec2.
They need to create an AMI named devops-ec2-ami from this instance.
Ad... read more
What is class
KIRUBAGARAN .K |
A class is a user-defined structure that groups data and functions together. By creating instances (objects), these members can be accessed and used. It represents shared characteristics of a particular object type.
Example: Car is a class. Different cars may have different names and brands, but a... read more
Class in Java::
MANOJ K |
1. class:
A class is a blueprint or template used to create objects.
It defines the properties (variables) and behaviors (methods) that the objects created from it will have.
2.Use the class keyword:
A class must be declared using the class keyword.
class MyClass {
}
... read more
