Natural Language Processing (NLP)

What is Natural Language Processing? Natural language processing (NLP) is a field of computer science that deals with the interaction between computers and human (natural) languages. It’s closely related to artificial intelligence (AI) and computational linguistics, and its goal is to enable computers to understand and process human language in much the same way that …

Natural Language Processing (NLP) Read More »

Deep Learning

What is Deep Learning? Deep learning, a subfield of artificial intelligence (AI), has been making waves in the world of technology and data science. It’s remarkable ability to process and understand complex data has opened up new possibilities in various industries. In this brief article, we will delve into the fundamental concepts of deep learning, …

Deep Learning Read More »

Cypress – End to End Testing Framework

What is Cypress? Cypress is an end to end testing framework which is gaining popularity amongst test community. Cypress is open source and its community is very active. Cypress tests are written in JavaScript but majority of the time automation scripts can be written using cypress commands which are pretty intuitive to work with. Cypress …

Cypress – End to End Testing Framework Read More »

Introduction to JavaScript

What is JavaScript? JavaScript is a programming language. JavaScript was initially created to make web pages interactive by adding dynamic behavior to the web page, animated graphics, reading cookies from a browser and interactive user actions. Earlier only browsers contained a JS engine to execute JavaScript code, for example Chrome JavaScript engine called V8. This …

Introduction to JavaScript Read More »

Rest Assured Request and Response Specifications

These are used to avoid duplication of code for reusable configurations that need to be done for multiple RESTful request and response validations. Request Specification ‘RequestSpecification’ interface provided by Rest Assured is used to club and extract repetitive actions like setting up base URL, headers, HTTP verbs etc which may be common for multiple Rest …

Rest Assured Request and Response Specifications Read More »

Central Vs Distributed Version Control System

Centralized Version Control System (CVCS): Arrangement for version control where there is single central repository (server) which hold different versions of code of a project. Developers directly commit their code to this central repository and pull the changes made by others from this server. Flow of work in this type of version control : Checkout …

Central Vs Distributed Version Control System Read More »