Amazed by AWS IAM🫨

I was working on Access control but when I see the surprising control of the AWS IAM, I got stuck! It was really super advanced. You can manage access at an individual level or group users into roles ...
0 Read More

TDD = Communicate + Connect + Craft

TDD = Communicate + Connect + Craft
🦊 Let us dispel a common misconception: the essence of Test-Driven Development(TDD) is not about the act of writing tests. True, when we emerge from the TDD process, we hold in our hands a suite of...
0 Read More

Prime Numbers Till N!

Prime Numbers Till N!
Written Code!! ⛶import java.util.Scanner; public class Main{ public static int is_prime(int num){ if(num<=0){ return 0; } if(num==1){ return 0;...
0 Read More