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
Special :

Hard skills get you hired, but soft skills get you promoted.

9 soft skills to fast-track your career:
👍1
CSS Tip 💡

You can change the color of the text cursor of input or textarea elements, to match your web page color scheme, using the caret-color property.
Accessibility is a must for web developers.

📏 Line Height:
Aim for 1.5 to 1.8 for comfortable reading

📏 Contrast Ratio:
Ensure at least 4.5:1 for text visibility

📏 White Space:
Allow ample padding and margins for breathing room.

📏 Responsive Images:
Optimize for different screen sizes

📏 Color Scheme:
Use accessible color combinations for all users

📏 User Experience:
Prioritize smooth font rendering for better engagement.

Use Google Lighthouse regularly.
👍1
New Tags added in HTML 5:

<article>
<aside>
<audio>
<canvas>
<command>
<datagrid>
<datalist>
<details>
<dialog>
<embed>
<figcaption>
<figure>
<footer>
<header>
<hgroup>
<keygen>
<mark>
<nav>
<output>
<progress>
<rp>
<rt>
<ruby>
<selection>
<source>
<summary>
<time>
<video>
<wbr>
4
If you struggle with understanding "Git/Github",
You need to read this:

Github is basically Google Docs for programming code.

There's this very popular piece of software out there called Git ( not GITHUB just Git).
You can install it in your computer for free.

What it primarily does is it allows you to take a snapshot of what an entire folder of files looks like ( a "commit")
and save the snapshot to a timeline (the "history").

You can then jump to any parts of the history to roll back that entire folder to what it looked like at the time of the snapshot ( you can "checkout" any commit in the history).

It is very handy for a lot of things, but it is primary designed to be used to store source code for software projects.

Git's other key feature is it allows you to sync your commit history with other people who also installed Git.

You could download ("pull") all of the commits I've made in my history to somewhere on your computer ( a repository) and have access to all my changes.

Likewise I could do the same to your copy of the repository.
This allow us to share edits of the same project together at the same time.

The general way most people use Git in a team these days is to have a single designated computer with Git installed that acts as the "main" copy of the history ( a "central repository").

Github is a website that runs Git under the hood, and wraps it into a pretty graphical UI that lets you explore the repository contents and perform actions through their website.
👍1🔥1
HTML Tip 💡

You can use the "poster" attribute with the <video> element to display an image until the user plays the video.
2
Top Indian Tech YouTubers:

❯ take U forward (Striver) ➟ DSA
❯ Abdul Bari ➟ DSA, Programming
❯ CodeWithHarry ➟ JavaScript, Python, C++, SQL
❯ Telusko ➟ Java
❯ kudvenkat ➟ C#
❯ Akshay Saini ➟ JavaScript
❯ tapaScript ➟ React, JavaScript
❯ Hitesh Choudhary ➟ React, React Native, TypeScript
❯ Jenny's Lectures CS IT ➟ DSA, Comp Sc.
❯ Kunal Kushwaha ➟ Open Source, DSA
❯ Chandoo ➟ Excel, PowerBI
❯ Krish Naik ➟ Data Science, ML
🔥1
Format dates with translations in JavaScript!
Without dependencies and in 2 lines of code:
👍1
Money does not buy you happiness.
But lack of money certainly buys you misery.

- Daniel Kahneman

#motivation
3
JavaScript Tip 💡

In JavaScript, the 𝐰𝐢𝐧𝐝𝐨𝐰.𝐩𝐫𝐢𝐧𝐭() function is used to open the print dialog box of the browser, allowing the user to print the current web page.
2