Sheikmohd's Categories

Sheikmohd's Authors

Latest Saves

5 threads for a beginner in Web3, Crypto, NFTs 🚀

+ a BONUS at the end! 😍

1. Why Web3 matters by


2. WTF is Web 3 by @hey_bernie


3. What is NFT in simple terms by @digitalpratik


4. Demystifying NFTs by @naval
Learn JavaScript by Playing games 🔥

A Thread 🧵👇️

1.
https://t.co/XHJUIU0ubd

Write JavaScript to control a robot to collect coins, avoid obstacles and reach the flag at the end of the level.

2. https://t.co/Bb2hn4Yfle

Screeps is an open-source game for programmers. You control your colony by writing JavaScript.

3. https://t.co/CSuXKwYOZh

Elevator Saga test JavaScript knowledge with challenge, it focus on moving an elevator in most efficient manner

4. https://t.co/vxiZJzPpol

By completing dares, you learn programming. These are short puzzles in which you have to copy the example code in as few lines as possible. The difficulty increases as you progress.
Useful GitHub Repositories every developer should know 🔥

List of 15 awesome GitHub repositories to save hours and increase productivity as a Web Developer.

A Thread 🧵👇

1.
https://t.co/7cq2vQNqDt

Useful visual roadmap to becoming a web developer in 2021.

{ 1 / 15 }

2. https://t.co/YGx0aU8eyY

Useful lists about all kinds of interesting topics and technologies.

{ 2 / 15 }

3. https://t.co/AOoPTNZhR0

Freely available programming books for all technologies.

{ 3 / 15 }

4. https://t.co/dNTmL9FmJd

Useful computer science study plan to become a software engineer.

{ 4 / 15 }
Are you a Frontend Web Developer?

Here are 15 amazing websites to save you 10+ hours every week.

A Thread 🧵👇

1.
https://t.co/sQc0Gqzipj

30 seconds of code has collections of short code snippets for a variety of languages.

{ 1 / 15 }

2. https://t.co/mwc9BaWllI

Glitch helps to create your next web project in browser with no setup and instant deployment.

{ 2 / 15 }

3. https://t.co/XtYMidj8aA

GTmetrix helps to know how your site performs, reveal why it's slow, and discover optimization opportunities.

{ 3 / 15 }

4. https://t.co/MVxL8JarO6

Unscreen helps to remove background from any video or GIF.

{ 4 / 15 }
Git is used in a ton of places. Companies, SaaS, open-source projects use it to work, collaborate and maintain their projects.

All the git commands you would ever need, and also to get you started. Here's a thread for you.

Let's explore all the commands.



This thread is continuation for my thread on Git for everyone, where I explained all about git.

If you haven't checked that out, and if you're willing to, Please do. Appreciate it, Here's the link.


1/ Initializing git in project

This is the command, you would always need. This initializes git, along with it's structure for tracking and managing files, folders and code.

You cannot use any other command, if not initialized.


2/ Adding files to staging

Now, we've initialized repo, and Created files. We have to move the files to staging, before commiting them.

Turns out, there are a lot of ways to do it.


3/ Track changes, and Get info about staging stage

Once we've added files, folders and other things to staging, We have the need to ensure everything's correct, or check if there's something wrong, or keep track.

Git allows to display all the changes, additions, and deletions.