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
A sure way to start your cybersecurity journey as a beginner

To understand the basics, this should be your approach

Study
CompTIA A+, Network+ & Security+
Cisco introductory courses

Don't be all over the place.

#cybersecurity
@javascript_resources
πŸ‘1😁1
The way to learn HTML is a sprint.

But the journey to learn Javascript is marathon.πŸƒβ€β™€οΈ

#motivation
@javascript_resources
πŸ‘1πŸ”₯1
Perspective is everything.

discomfort β€”β€”β€”> growth
problems β€”β€”β€”> challenges
rejection β€”β€”β€”> redirection
triggers β€”β€”β€”> reveal wounds
darkness β€”β€”β€”> reveals light
failures β€”β€”β€”> lessons

#motivation
πŸ”₯4πŸ‘2
Here’s how you can build image carousel using two CSS properties.

1. scroll-snap-type

This CSS property is used to control the behavior of scrolling alignment within a container.
In this case, it's set to x mandatory, which means:

β€’ x: Refers to the horizontal axis. This property is specific to horizontal scrolling.
β€’ mandatory: Indicates that the scrolling will always snap to the nearest snap point.

2. scroll-snap-align: start;

This CSS property defines how an element should be aligned during a scroll operation. In this case, it ensures that each image starts at the beginning of the carousel.
πŸ‘2
60+ React.js Interview Questions

[ For both Beginners & Experienced ]

⇩
πŸ‘1
Level: Beginner to Medium
Topics:
➊ Introduction
βž‹ JSX
➌ Virtual DOM
➍ Components
➎ States and Props
➏ Data Binding
➐ Component Rendering
βž‘ Introduction to Hooks
πŸ”₯1
➊ Introduction

βž€ What is React?
➁ What are the latest features introduced recently?
βž‚ What are the core features of React?
βžƒ What are the advantages of using React?
βž„ Where shouldn't we use React?
βž… What are different rendering techniques?
βž† Difference: CSR v/s SSR
πŸ”₯1
βž‡ What is SPA? How does it work?
➈ When may an SPA run slower?
βž‰ What is SSR?
βž€βž€ Does React support SSR?
βž€βž What is SSG?
βž€βž‚ Key differences between SSR and SSG.
βž€βžƒ What is RSC (React Server Components)?
βž€βž„ How does an RSC work?
πŸ”₯1
βž‹ JSX

βž€ What is JSX?
➁ Can a JSX code directly run on a browser?
βž‚ What do we need to convert JSX code to plain-JS code?
βžƒ Is "import React from react" necessary? If yes, when?
βž„ Write a sample JSX code and convert it to its equivalent JavaScript.
πŸ”₯1
➌ Virtual DOM

βž€ What is a Virtual DOM?
➁ Why does React use a Virtual DOM?
βž‚ Advantages of Virtual DOM over normal DOM?
βžƒ Explain how the Virtual DOM works.
βž„ When and how are changes propagated to the real DOM?
πŸ”₯1