post
Social Life

Enjoy your social life together.

post
Technical Concepts

Programming is an addiction.

Async and Await in JavaScript

First of all, we have the async keyword, which you put in front of a function declaration to turn it into an async function. An async function is a function that knows how to expect the possibility of the await keyword being used to invoke asynchronous code...

View More

Calling REST API in React

REST (REpresentational State Transfer) is an architectural style for developing web services. REST is popular due to its simplicity and the fact that it builds upon existing systems and features of the internet’s Hypertext Transfer Protocol (HTTP) in order to achieve its objectives, as opposed to creating new standards, frameworks, and technologies...

View More

Easy Encryption and Decryption in PHP

Encryption is the process of converting a normal message (plaintext) into a meaningless message (Ciphertext). Whereas Decryption is the process of converting meaningless messages (Ciphertext) into its original form (Plaintext)...

View More

This Operator in Programming

One of the most confusing topics in any programming language for developers to understand can be understanding the “this” operator, so keep that in mind I will try my very best to make you clear on “this” operator...

View More

Web Development - Intro

This article is been written based on the knowledge for the newbies or freshers who are new to web development environment/world.Here in this article,I am gonna cover some of the complete basic things of the web development field...

View More