Web Development CS JS Python JavaScript Hacking ReactJs Python django Flask CSS Frontend Backend Full Stack Java Node Pdf Books
3.99K subscribers
878 photos
11 videos
995 files
354 links
One place for the latest in JavaScript, Python, Django, React, and more. Get top-notch tutorials, tips, and downloadable resources. Join us to elevate your tech skills!
Download Telegram
What does the "typeof" operator in JavaScript return for an undefined variable?
Anonymous Quiz
24%
Null
18%
NaN
19%
Object
39%
Undefined
πŸ‘Ž1
Do you know about REST API's ?

Topics Covered πŸ‘‡

-> What is REST?
-> REST API ?
-> REST endpoint ?
-> API Gateway ?

What is REST?
REST stands for Representational State Transfer. It’s a way for computer systems to communicate over the internet. Imagine you want to access a book in a library. You don’t take the whole library home; instead, you just take the book you want and read it. REST works in a similar way, allowing you to access specific pieces of data on a server without needing to get all the data stored there.

What is REST API ?
So, a REST API is like a menu in a restaurant (API) that allows you to place an order (make a request) asking for a specific dish (a resource) to be prepared, and then served to you (get the response).

REST endpoint ?

An API/REST/Backend endpoint means the URL of the service that the client could hit. For instance, myservice.com/users/{username} is a backend endpoint for fetching the user details of a particular user from the service. The REST-based service will expose this URL to all its clients to fetch the user details using the above stated URL.

API Gateway ?
An API Gateway is a server that acts as an API front-end, receiving API requests, enforcing throttling and security policies, passing requests to the back-end service, and then passing the response back to the requester. In essence, it acts as a reverse proxy to accept all application programming interface (API) calls, aggregate the various services required to fulfil them, and return the appropriate result.

https://t.me/javascript_resources
πŸ‘1
The Flame πŸ”₯ and the code:

.flame{
position: relative;
width:100px;
height:100px;
background:linear-gradient(-45deg, crimson, orange);
transform:rotate(-135deg);
filter:blur(5px);
border-radius: 50% 50% 0 50%;
box-shadow: 20px 20px 40px darkred;
border:35px solid black;
}

https://t.me/javascript_resources
πŸ‘2
In CSS, what property is used to control the order in which elements are displayed when they overlap?
Anonymous Quiz
61%
z-index
19%
Layer-index
5%
Order
14%
Position