Ravin Profile picture
JavaScript lover, eats API for breakfast
6 subscribers
Mar 1, 2022 7 tweets 2 min read
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 ↓ Image
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.

Repo link → github.com/30-seconds/30-…
Apr 3, 2021 6 tweets 4 min read
Do you need to pay for a computer science degree to become a software engineer in 2021? No, you don't.

Here's your own custom online CS Degree; for free.

Thread 🧵 📚 Resources for CS Fundamentals

1. Intro to computer science: start with Stanford's CS 101
( edx.org/course/compute… ) OR Harvard's intro to CS ( online-learning.harvard.edu/course/cs50-in… )

MIT 6.00 Introduction to Computer Science and Programming, Fall 2008 ( )
Mar 30, 2021 9 tweets 4 min read
Best free resources to learn Node.js

Thread🧵👇 @john_smilga's 8-hour long Node Express Tutorial

Mar 4, 2021 4 tweets 5 min read
Mar 2, 2021 4 tweets 2 min read
JavaScript Quiz 🏆

if you run this code what do you expect to see the output? let name1 = " "; ... Hers's 3 well explained & most liked answers by:

1. @PsudoRandom

Jan 20, 2021 4 tweets 1 min read
Top 17 Most Useful Python Modules.

Thread 🧵👇 1) Web Development
- Requests
- Flask ( Lighter )
- Django ( Heavy )
- Twisted ( online game development )
- Selenium ( web automation )

2) GUI
- Kivy
- PyQt5 ( Heavy )
- Tkinter ( Lighter )
Jan 8, 2021 7 tweets 1 min read
Here is an amazing list of web resources that will help you to become a great Frontend Developer in 2021.

Thread 🧵👇 1. developer.​mozilla.​org
For front-end ( HTML, CSS & JavaScript ) reference and learning.

2. htmlreference.​io
For HTML visual guide & reference.

3. cssreference.​io
For CSS visual guide & reference.
Jan 6, 2021 8 tweets 3 min read
Hers's a List of GitHub repositories that will help prepare for your next coding interview. Hope they really help.

Thread 🧵👇 1. Interview Handbook

Link - github.com/yangshun/tech-…

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!

A Thread 🧵 1 - Free Programming Books:

Watch: 9.4k
Star: 153k
Fork: 36.8k

github.com/EbookFoundatio…
Jul 8, 2020 4 tweets 1 min read
Today we're going to look at 5 #HTML tags you don't know.

These are tag that can be pretty useful but not very well known

⚒ <article>
⚒ <aside>
⚒ <canvas>
⚒ <figure>
⚒ <datalist>

Explain in Thread 🧵 <ARTICLE>

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
Jun 15, 2020 5 tweets 2 min read
Complete #Python Keywords Reference.

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