Junaid ⚡ Profile picture
Software Engineer at https://t.co/u8fCZRO4nF 🧑‍💻 Learn JavaScript and Web Development with me.
Learning in Public - Coding - DataSci Profile picture 1 subscribed
Jun 17, 2022 9 tweets 3 min read
7 Github repositories to level up your JavaScript skills

( Problem Solving, Algorithms and Data Structure, Interview Preparation)

A thread 🧵 1️⃣ Problem Solving JavaScript

Collection of interview questions with Unit Tests. Problems include Data Structures, Logical, and a few Classical problems.

🔗 github.com/knaxus/problem…
Dec 10, 2021 12 tweets 4 min read
10 Websites every developer must know 🔥🔥

A thread 🧵 1️⃣ Over API

Collection of all cheatsheets

🔗 overapi.com
Oct 22, 2021 8 tweets 3 min read
6 Websites every frontend developer should know.

A thread 🧵 1️⃣ Web Skills

Your source guide for web skills.

🔗 andreasbm.github.io/web-skills/
Sep 23, 2021 9 tweets 3 min read
Top 7 Websites that will help you in resume building 💪

A thread: 1️⃣ Enhancv

🔗 enhancv.com
Sep 22, 2021 8 tweets 2 min read
6 best CSS frameworks you should try in 2021

Which one do you use? and why?

A thread: 1. Bootstrap

🔗 getbootstrap.com
Aug 14, 2021 15 tweets 4 min read
13 Websites that will help you improve your frontend skills by building real-world projects. 💪

A thread ⤵️ 1️⃣ Frontend Mentor { @frontendmentor }

🔗 frontendmentor.io
Aug 13, 2021 5 tweets 3 min read
Learn 3 useful Python functions that will help you in understanding your program and debugging it.

A thread ⤵️

#100DaysOfCode #CodeNewbie 1️⃣ type()

You know that Python is a dynamically typed programming language. That means you don't specify the type of variable while declaring it but it depends on the value it holds.

If you don't know what type of value a variable holds, pass it to the type() function.
Aug 12, 2021 6 tweets 3 min read
4 ways to combine strings in JavaScript

A thread ⤵️

#100DaysOfCode #CodeNewbies 1. Using concatenation operator ( + )

You can use the + operator in many ways such as to add numbers, convert strings into numbers, and also to concatenate two or more strings.

Note: We need to add the space explicitly. You can also use the += operator to add strings. Image
Aug 3, 2021 15 tweets 2 min read
CSS Shorthand Properties.

Learn 12 CSS shorthand properties and save your time by writing less code.

A thread ⤵️

#100DaysOfCode #CodeNewbie 1. background

Shorthand for -

→ background-color

→ background-image

→ background-position

→ background-size

→ background-repeat

→ background-origin

→ background-clip

→ background-attachment
Jul 31, 2021 24 tweets 4 min read
HTML <input> Types

Do you know?
There are almost 22 types of input fields 🤯
Let's see how many of them you know.

A thread ⤵️

#100DaysOfCode #CodeNewbie 🔸 Input type text

The most common type of input used is of type text. It defines a single-line text input field.

<input type="text">
Jul 30, 2021 5 tweets 2 min read
FREE UDEMY COURSES 🔥🔥

3 FREE Udemy courses you can do this weekend.

Topics: Python, Public Speaking, DevOps

Note: Courses may be available for few hours. Grab them as soon as possible.

#100DaysOfCode #CodeNewbie ➡️ Python 3 Master Course for 2021

Rating: 4.1⭐️

🔗udemy.com/course/python-…
Jul 16, 2021 12 tweets 12 min read
10 VS Code extensions that will help you to be more productive 💪

A thread...

#100DaysOfCode #CodeNewbie #vscode #webdevelopment 1. Prettier

Prettier is the code formatter extension. It enforces a consistent style by parsing your code and re-printing it with its own rules that take the maximum line length into account, wrapping code when necessary.

🔗marketplace.visualstudio.com/items?itemName…

#100DaysOfCode #CodeNewbie
Jun 21, 2021 10 tweets 19 min read
💡CSS - Attribute Selectors you probably don't know about.

A thread...

#webdevelopment #webdesign #webdeveloper #html #website #coding #programming #css #javascript #development 1. Select element(s) having attribute of name ‘attr’. No matter what the value is.
👉 [attr]
Try it on Codepen: codepen.io/junaidshaikh_j…

#webdevelopment #webdesign #webdeveloper #html #website #coding #programming #css #javascript #development Image