Posts

Amazon Web Services

Image
Domains Of AWS :-  1. Compute 2. Migration 3. Security and Identity compliance 4. Storage 5. Networking and Content Delivery 6. Messaging Domain 7. Database Domain We will discuss about every Domain of AWS in this post . So let's start . AWS SERVICES - A.  EC2 -  Amazon Elastic Compute Cloud (Amazon  EC2 ) is a web service that provides secure, scalable compute capacity in the cloud.   It is like a web server that can be resized according to number of configuration.  Resizable compute capacity in the cloud , which can be customize according to your need . It is used to host your a application . B. Lambda -   AWS Lambda  is a compute service that makes it easy for you to build applications that respond quickly to new information .  This is an aws service that executes background tasks.It is not used to host an application. example : file compression in background . AWS Lambda is an event-driven, serverless computing plat...

Don't skip Rest-Api

Image
Hi ,my name is Sundaram Dubey. I am Python developer and competitive programmer . I am going to discuss about Rest-Api . A lot of you before heard about Rest Api but if don't know what is this so today we are going to discuss about it . Now a days nearly 90% of start-ups works on the rest-Api(Application Program Interface) first . Rest Api is essential in web development field . It is basically "Json data about data ".  Client  — the client is the person or software who uses the API. It can be a developer, for example you, as a developer, can use Twitter API to read and write data from Twitter, create a new tweet and do more actions in a program that you write. Your program will call Twitter’s API. The client can also be a web browser. When you go to Twitter website, your browser is the client who calls Twitter API and uses the returned data to render information on the screen. Resource  — a resource can be any object the API can provide information about. In In...

Interview Preparation Kit - Array(2D Array-DS) hacker rank

Image
2D Array - DS Given a    2D Array ,   : 1 1 1 0 0 0 0 1 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 We define an hourglass in   to be a subset of values with indices falling in this pattern in  's graphical representation: a b c d e f g There are   hourglasses in  , and an  hourglass sum  is the sum of an hourglass' values. Calculate the hourglass sum for every hourglass in  , then print the  maximum  hourglass sum. For example, given the 2D array: -9 -9 -9 1 1 1 0 -9 0 4 3 2 -9 -9 -9 1 2 3 0 0 8 6 6 0 0 0 0 -2 0 0 0 0 1 2 4 0 We calculate the following   hourglass values: -63, -34, -9, 12, -10, 0, 28, 23, -27, -11, -2, 10, 9, 17, 25, 18 Our highest hourglass value is   from the hourglass: 0 4 3 1 8 6 6 Note:  If you have already solved the Java domain's  Java 2D Array  challenge, you may wish to skip this challenge. F...