Since semantic HTML has become more important, a lot of new tags have been added to assist computers in better understanding the information on ur website
So I've compiled a list of 5 tags that I believe most people are unaware of in order to assist u extend ur HTML knowledge ↓
Feb 22, 2022 • 4 tweets • 1 min read
In JavaScript, a string can be converted to an array in 5 different ways. We'll utilise split, Array. from, spread, Object. assign, and the for-of loop.
Let's learn in this thread 🧵↓
1/3
Dec 24, 2021 • 9 tweets • 2 min read
Have you ever wanted to make some contribution to a project you liked on GitHub, but didn't know how to?
Here is a thread for you ↓
Step 1: Explore
Find a project that you want to contribute to.
Dec 22, 2021 • 7 tweets • 3 min read
If you want to become a JavaScript developer and hone your skills, then GitHub is like a gold mine for you.
So, let me show the repositories that helped me and will also help you.
Thread ↓
⭐️30-seconds-of-code:
Short Javascript snippets including explanation and example for all your development needs.
This repo carefully curated content to help you ace your next technical interview, with a focus on algorithms. System design questions are in-progress. Besides the usual algorithm questions, other awesome stuff.
( 1 / 7 )
Jan 3, 2021 • 8 tweets • 1 min read
Top Languages in each field.
The beginner's guide.
A Thread 🧵👇
Web development
- HTML
- CSS
- JavaScript
- TypeScript
- PHP
- Python
Oct 27, 2020 • 8 tweets • 2 min read
Cheatsheet of JavaScript array methods with explanation:
To add/remove elements:
~ push(...items) – adds items to the end,
~ pop() – extracts an item from the end,
~ shift() – extracts an item from the beginning,
~ unshift(...items) – adds items to the beginning.
Thread🧵
~ splice(pos, deleteCount, ...items) – at index pos delete deleteCount elements and insert items.
~ slice(start, end) – creates a new array, copies elements from position start till end (not inclusive) into it.
Jul 23, 2020 • 4 tweets • 1 min read
HTTP Status code 👇
1xx: INFORMATION
100 ( continue )
> indicates that everything so far is ok
102 ( processing )
Server processing the request, but no response is available yet.
2XX: SUCCESS 📈
200 ( continue )
> The request has succeeded.
Thread 🧵
201 ( created )
> This is typically the response sent after Post requests.
3XX: REDIRECTION
300 ( multiple choice )
> The request has more than one possible response.
301 ( moved permanently )
> The URL has been changed permanently. The new URL is given.
Jul 10, 2020 • 5 tweets • 2 min read
Find a list of my favorite GitHub repositories which are helpful for every (self-taught, no CS degree) developer!
Article tag specifies independent, self-contained content.
When To Use
- Forum post
- News story
- Blog post
<ASIDE>
Defines content aside from the page. The aside tag defines some content aside from the content it is placed in.
When to use
- usually in the sidebar
Jun 30, 2020 • 7 tweets • 1 min read
Git Concepts in simple Terms.
A Thread 👇
GIT:
Git is a version control system that makes it easier to track changes to files. When you edit a file, git can tell you exactly what changed, who changed it, and why.
Jun 29, 2020 • 8 tweets • 2 min read
All Youtube Channels for programmers
A Thread 🧵
⚒ Traversy Media
⚒ Freecodecamp
⚒ The Net Ninja
⚒ CS50
⚒ Sentdex
⚒ DesignCourse
⚒ Red stapler
⚒ Kevin Powell
⚒ codeSTACKr
⚒ Dev Ed
⚒ Web Dev Simplified
⚒ Florinpop
⚒ Coding Garden With CJ
⚒ Telusko
⚒ Corey Schafer
⚒ Hitesh Choudhary
⚒ Programming With Mosh
and - AND logical operator
not - NOT logical operator
or - OR logical operator
in - To check if a value is present in a collection
is - To check if two objects are the same
as - To create an alias
A Thread👇 #100DaysOfCode
if - To make a conditional statement
elif - Used in conditional statement short for else if
else - Used in conditional statements
def - To define a Function
del - To delete an object
for - To create a for loop
True - Boolean value
False - Boolean value
None - Null value