“Stay Hungry Stay Foolish” - Speech by Steve Jobs Author: neptune | 22nd-May-2022 | views: 3001 #Motivation At Stanford University Steve Job’s address commencement in 2005 is one of the most famous speeches “Stay Hungry Stay Foolish”. It has been described as 'life-changing” speech...
How do you know “You are Rich?” - By IIT Student. Author: neptune | 13th-Oct-2022 | views: 1612 #Motivation We all thought that we knew answer and we replied as following: “ZERO" means nothing. "INFINITY" means uncountable number”. He encounter “How number can be greater than any countable number?"..
Architecture of API Gateway Author: neptune | 15th-Nov-2022 | views: 1055 #API#Microservice Creating an API starts with the publisher, where it will be designed, and it will be published to the store for the consumer to explore and subscribe...
Introduction to React Author: neptune | 11th-Dec-2022 | views: 521 #JavaScript Virtual DOM is an lightweight copy of DOM. It can be changed when we want and then can be saved to the real DOM. Every change Virtual DOM efficiently rerenders the DOM...
Why API Authentication? Author: neptune | 01st-Jan-2023 | views: 178 #API API's play a vital role in linking applications to exchange services and data. There are a variety of ways to authenticate API requests...
All HTTP Response Status Codes Author: neptune | 18th-Dec-2022 | views: 165 #API#Postman HTTP response status codes indicate whether a specific HTTP request has been successfully completed...
20 TestNG Interview Questions Author: neptune | 17th-Dec-2022 | views: 322 #Selenium#Interview There is always more than one test or method in the class. If we do not prioritize these tests or methods, then the methods are selected alphabetically and executed while execution...
Where you applied OOPs in Automation Testing? Author: neptune | 11th-Dec-2022 | views: 524 #Interview#Java You may face this question Where you have applied OOPs concept in Automation Framework? in almost all the Selenium Interviews. Let's learn OOP’s concept in Java before going further...
Architecture of API Gateway Author: neptune | 15th-Nov-2022 | views: 1055 #API#Microservice Creating an API starts with the publisher, where it will be designed, and it will be published to the store for the consumer to explore and subscribe...
Interview
20 TestNG Interview Questions Author: neptune | 17th-Dec-2022 | views: 322 #Selenium#Interview There is always more than one test or method in the class. If we do not prioritize these tests or methods, then the methods are selected alphabetically and executed while execution...
Where you applied OOPs in Automation Testing? Author: neptune | 11th-Dec-2022 | views: 524 #Interview#Java You may face this question Where you have applied OOPs concept in Automation Framework? in almost all the Selenium Interviews. Let's learn OOP’s concept in Java before going further...
Data Science
9 movies every Data Scientist should watch. Author: neptune | 25th-May-2022 | views: 3820 #Data Science Nowadays, the movie industry has so far presented lots of movies related to sophisticated AI systems, humanoid robots, self-driving automobiles, and a world full of digital technologies...
Microservice
Architecture of API Gateway Author: neptune | 15th-Nov-2022 | views: 1055 #API#Microservice Creating an API starts with the publisher, where it will be designed, and it will be published to the store for the consumer to explore and subscribe...
Microservice Architecture - Introduction Author: neptune | 19th-Jun-2022 | views: 337 #Microservice Microservice is a service-based application development methodology. In Microservice large applications get divided into small independent service units...
Deploy Django project on AWS with Apache2 and mod_wsgi module. Author: neptune | 22nd-May-2022 | views: 872 #Python#Django In this blog I use the AWS Ubuntu 18.22 instance as Hosting platform and used Apache2 server with mod_wsgi for configurations. We create a django sample project then configure server...
7.Solution of Hacker Rank The Report Author: neptune | 23rd-Jan-2023 | views: 3237 #SQL#Hackerrank Problem Statement : generate a report containing three columns: Name, Grade and Mark. Ketty doesn't want the NAMES of those students who received a grade lower than 8...
Software Testing
20 TestNG Interview Questions Author: neptune | 17th-Dec-2022 | views: 322 #Selenium#Interview There is always more than one test or method in the class. If we do not prioritize these tests or methods, then the methods are selected alphabetically and executed while execution...
Where you applied OOPs in Automation Testing? Author: neptune | 11th-Dec-2022 | views: 524 #Interview#Java You may face this question Where you have applied OOPs concept in Automation Framework? in almost all the Selenium Interviews. Let's learn OOP’s concept in Java before going further...
Roadmap To Become Test Automation Engineer Author: neptune | 25th-Jun-2022 | views: 1715 #Testing When I was starting my journey in test automation, a lot of questions comes to my mind. Such as…. “From where do I start?” “Best tools to use?” “Which Programming language?” “How to plan your work?”...
Information Technology
All HTTP Response Status Codes Author: neptune | 18th-Dec-2022 | views: 165 #API#Postman HTTP response status codes indicate whether a specific HTTP request has been successfully completed...
Best way to reverse a String for beginners in Java. Author: neptune | 02nd-Oct-2022 | views: 541 #Java We will explore How to reverse a String in Java using simple way. If you are beginner in Java then you are at the right place...
Why API Authentication? Author: neptune | 01st-Jan-2023 | views: 178 #API API's play a vital role in linking applications to exchange services and data. There are a variety of ways to authenticate API requests...
All HTTP Response Status Codes Author: neptune | 18th-Dec-2022 | views: 165 #API#Postman HTTP response status codes indicate whether a specific HTTP request has been successfully completed...
Data Structures and Algorithms
Top 20 Coding Problems Patterns Author: neptune | 24th-Sep-2022 | views: 571 #Algorithms One technique that people often follow is to solve questions related to the same data structure; focusing on questions related to Arrays, then LinkedList, HashMap, Heap, Tree, or Trie, etc..
History of 'Algorithm' Origin Author: neptune | 09th-May-2022 | views: 450 #Algorithms#Motivation 'Algorithm' is a word that actually dates back 900 years. The word comes from the name of a Persian mathematical genius “Muhammad ibn Musa al-Khwarizmi”, who came up with the Hindu-Arabic number...
Java Script Interview Questions Author: neptune | 09th-May-2022 | views: 316 #JavaScript#Interview Basic JavaScript questions asked in interviews : 1. What are the different data types present in javascript? 2. Difference between "==" and "===" operators...
Basics of JavaScript Author: neptune | 15th-Apr-2022 | views: 676 #JavaScript We are going to explore basics of JavaScript like Variables, Operators, Conditionals, and Events...
How to download video from youtube using python module ? Author: neptune | 22nd-May-2022 | views: 2061 #Python We will let you know how you can easily download the Youtube high quality videos along with subtitle, thumbnail, description using python package..
Operating System
Unix Questions for Interview Author: neptune | 10th-May-2022 | views: 229 #Linux Question : Find all the empty files inside the directory OFFICE and delete them. Answer: $ find OFFICE/ -empty -type f -delete ...