Tapas Adhikary Profile picture
Teacher | YouTuber | Helping Developers With Fundamentals at https://t.co/A6rohOq1OX | Founder @tapaScript @ReactPlayIO | Writer @freeCodeCamp | Human
Oct 1, 2022 โ€ข 19 tweets โ€ข 6 min read
Hacktoberfest is ON ๐Ÿš€

Here are 15 GitHub repositories for you to Contribute, Get Mentoring, and Learn Open Source

(A Thread) ๐Ÿงต โ†“ โœ‹ Before we start, here are a few callouts:

- Intention is not to make these projects popular.
- The intention is to improve them with contributions.
- At the same time, contributors learn what they aspire to, get mentoring, and complete hactoberfest goals.

It's a WIN-WIN.

โ†“
Jul 26, 2022 โ€ข 14 tweets โ€ข 3 min read
Is Communication just about Speaking/Writing in English or any other language?

90% of Dev takes "Communication" for granted, which can be stressful in the long run.

10 tips to get better at it.

(A Thread) ๐Ÿงต โ†“ Effective communication is NOT just about the language we speak or write. It's more than that.

Communication is also NOT about you. It's about others understanding you without any misunderstanding.

Here are 10 things I've been practising for years.

โ†“
Jul 11, 2022 โ€ข 10 tweets โ€ข 3 min read
Are you in the game of Opensource?

Here are 5 tools to know as the Project Maintainer.

(A THREAD) ๐Ÿงต โ†“ First of all,

Open Source Software(OSS) project maintainers are folks who start the project, manage it, make decisions, brainstorm ideas, and work closely with contributors, users, and marketing platforms.

They need tools to automate many basic tasks.

โ†“
May 28, 2022 โ€ข 9 tweets โ€ข 2 min read
I've reviewed 100+ resumes in the last two days.

You don't want to make these 5 mistakes on your resume.

(A THREAD) โ†“ Before we start,

- The intention here is to provide feedback, not to criticize.
- Making resumes and keeping them up-to-date is not easy.
- Reducing mistakes in resumes has higher chances of someone looking into it for a longer time, increasing the chance of getting the job.
Oct 21, 2021 โ€ข 15 tweets โ€ข 5 min read
Do you find JavaScript PROMISES and Asynchronous Programming hard to grasp?

Here is a thread with a complete ROADMAP ๐Ÿ”ฅ and curated RESOURCES ๐Ÿ“š to make you comfortable with it.

A Mega Thread ๐Ÿงต ๐Ÿ‘‡ As a beginner, DO NOT jump into Promises directly. Start with an understanding of,

โœ”๏ธ Functions
โœ”๏ธ Give special attention to Callback Functions and their various usages.
โœ”๏ธ Understand the differences between Synchronous and Asynchronous Programming in JavaScript.

[...]
Oct 19, 2021 โ€ข 10 tweets โ€ข 4 min read
5 Reactjs based CHARTING LIBRARIES I have analyzed last week. Here is my LEARNING from it.

A Thread ๐Ÿงต ๐Ÿ‘‡ Using charts to do Data Visualization may be a typical ask for your web project. I had a similar requirement for a Reactjs project.

I was looking for an Opensource Data Visualization library built with D3.js, and that's when I came across these five.

๐Ÿ‘‡
Sep 16, 2021 โ€ข 11 tweets โ€ข 5 min read
Why write a complex search logic to SEARCH & FILTER data at the client-side(browser) or Node.js environment?

Here are 8 free TOOLS/LIBRARIES to help you with that.

A Thread ๐Ÿงต ๐Ÿ‘‡ Image 1๏ธโƒฃ WADE

- Light-Weight, 1KB
- Blazing Fast
- Search in your data by building a Query.
- Along with results, you also get the index of the items and the relevance score. Neat.
- MIT

๐Ÿ‘‡

github.com/kbrsh/wade
Sep 14, 2021 โ€ข 12 tweets โ€ข 5 min read
Did you know you can use the CSS clip-path property to create any Shapes? Here is a thread to explain it most beginner-friendly way,

๐Ÿงต ๐Ÿ‘‡ The CSS clip-path helps to clip a region of an HTML element and show it. The outside of the clipped region is hidden.

See the image below. A circular region is clipped from a div of equal height and width. The circle is visible, and the rest is hidden.

๐Ÿ‘‡ Image