Beginners

Beginners posts, videos, courses, and more

Baransel · 1 year ago

Getting Started with Python: Tips, Tricks, and Code Examples

Python is a high-level, interpreted programming language that is widely used for a variety of applications, including web development, scientific computing, data analysis, artificial intelli...
2

Rahul · 1 year ago

Learn react in 2023 (what is create-react-app) | React Recipes

Welcome to this article on React, a JavaScript library for building user interfaces! React is a popular and widely-used tool for developing web applications and has gained a lot of traction...
3

Souptik Debnath · 1 year ago

10 Best Free Web Development Courses 🤩

There are countless online resources that can teach you everything you need to know about web development, but getting started with free, self-guided courses is a great way to get familiariz...
1

Vladimír Macháček · 1 year ago

Style your Svelte website faster with Stylify CSS

Stylify + Svelte + Vite. Style your Svelte website faster with Stylify. Don't study selectors and syntax. Use pure CSS syntax and get generated CSS with advanced optimization for production....
3

Tapas Adhikary · 1 year ago

Introducing ReactPlay - Learn, Create, Share ReactJS projects

If I tell you React(aka ReactJS) is one of the leading user interface technology(ok, library) in web development, would you believe it? Most of you will. For the rest of you, let me put forw...
6

Tapas Adhikary · 2 years ago

ReactJS Virtual DOM and Reconciliation - Explain Like I'm Five

What is DOM? DOM stands for Document Object Model. HTML is the language of web pages. It provides the web page structure with many specialized tags, including the way to link multiple pages...
5

Diogo Capela · 2 years ago

Adding fallback images onto your React projects

If you are developing a web application, then there are a lot of things to consider. One important aspect is the images that are used, for aesthetic purposes or various other reasons (e.g. i...
3

GeekTech · 2 years ago

5 packages to level up your React code

Howdy Geeks! 👋 As a React developer, your work is to build high-quality JavaScript code. Programming is a difficult task. Indeed, you are expected to produce high-quality code while also en...
2

GeekTech · 2 years ago

The terminal formatting library you need in 2022

When designing CLI applications we always face challenges as python programmers when it comes to making the text/UI look good. But have you ever wondered if this tedious task could be abstra...
1

Abhiraj Bhowmick · 2 years ago

10 VSCode extensions every dev must have

VSCode is undoubtedly one of the most popular code editors out there. But did you know you can enhance your VSCode experience with extensions? Here are 10 VSCode extensions that every develo...
8

Rahul · 2 years ago

320+ free resources for learning fullstack, frontend and backend

You only need this post to become a Developer because this post has nearly unlimited amount of every type of resources covering everything you will need. Blog your Journey DevDojo - DevD...
4

Mr. Ånand · 2 years ago

How NOT to contribute to Open Source on GitHub: Tips For Beginners

While maintaining some projects on GitHub during Hacktoberfest 2021, I came across many new open source contributors. They are just starting their open-source journey and making mistakes. In...
7

Tapas Adhikary · 2 years ago

5 tips for beginners to web development

The modern era of web development is fascinating. Plenty of frameworks and libraries to keep us productive. There are thousands of quality resources to read and learn from. Apart from the pl...
5

Chirag · 2 years ago

Easy way to exclude files during git add

Every day we use the "git add" command a lot to add our changes to the index for new commits, but have you ever wondered how we can add all the changed files with some files exclud...
3

TechvBlogs · 2 years ago

How to Enable and Disable Debug Mode in Laravel

Debugging is a helpful feature for developers to identify the causes of issues. Most of the modern application frameworks provide you the option to enable debug mode including Laravel. It is...
2

Rahul · 2 years ago

Memoization in JavaScript - Shorts

In my recent tweet, I said to Use Memoization to make your JavaScript functions more efficient. Use Memoization to make your JavaScript functions more efficient— RAHUL (@rahxul) March...
6

Muthu Annamalai Venkatachalam · 2 years ago

How To Solve Gee Captcha in Python Using 2Captcha

Everybody knows captchas as those annoying things like "Enter the letters you see on the image" when registering or providing feedback. CAPTCHA is designed to make humans capable o...
7

Yogesh Chavan · 2 years ago

How to Display Formatted Date in JavaScript Without Using Any External Library

In most of the applications, we need to display a formatted date like 18 June 2021 or 06/18/2021 along with the time. So we normally use moment.js or date-fns or day.js library to get that d...
5

Yogesh Chavan · 2 years ago

JavaScript Basics: Truthy and Falsy values in JavaScript

Do you know that JavaScript has a set of pre-defined falsy values? Truthy and Falsy values are the non-boolean values that are coerced to true or false when performing certain operations....
6

Yogesh Chavan · 2 years ago

List of Handy Regular Expression Examples

In this article, we will see some of the useful regular expressions which you can use in your real-world applications. Email validation ^[^@ ]+@[^@ ]+\.[^@ \.]{2,}$ ^[^@ ]+ => starts wit...
6

Yogesh Chavan · 2 years ago

Extremely Useful Lodash Methods For JavaScript Developers

According to the State of Javascript 2020 Survey results, Lodash is the second most widely used utility library in the world as it provides a lot of methods that make coding easy and fast. I...
5

Yogesh Chavan · 2 years ago

How to use debouncing to Improve the performance of the search functionality

In this article, we will see a very powerful and must-use technique to improve the performance of search functionality in the application. If we're making an API call to the server for every...
5

Yogesh Chavan · 2 years ago

JavaScript Array Sort Method and its Gotchas - Explained with Examples

In this article, we will see how to properly use the array sort method and learn common gotchas associated with it. So let's get started. The Array sort method sorts an array regardless of...
1

Yogesh Chavan · 2 years ago

Super Useful Tips & Tricks for JavaScript Developers

Quick way to mask numbers using slice and ES8 padStart method const creditCard = "4111111111114321"; // 16 digit credit card number const lastFourDigits = creditCard.slice(-4); //...
3

Rahul · 2 years ago

Scope in JavaScript: Function, Block, Lexical, Global

A scope defines the lifetime visibility of a variable. Variables are not visible outside the scope in which they are declared. Types of Scope in JavaScript Module Scope Function Scope Block...
5

Yogesh Chavan · 2 years ago

Flexbox Cheatsheet

Flexbox is amazing. It has changed how we write the CSS and it provides built-in support for responsiveness. So all the responsiveness of your website is handled by flexbox making it easier...
3

Yogesh Chavan · 2 years ago

Redux for Beginners – Learn Redux with Code Examples

Redux can be confusing for beginner React developers to understand. There are a lot of concepts you need to know to use it properly, like reducers, actions, store, pure functions, immutabili...
7

Yogesh Chavan · 2 years ago

The Most Useful JavaScript Array Methods Explained with Examples

If you're a JavaScript developer and want to improve your coding, then you should be familiar with the most commonly used ES5 and ES6+ array methods. These methods make coding a lot easier a...
2

Emma Turner · 2 years ago

Secrets to using REM in CSS: CSS Tips

As device sizes proceed to wander and programs give more client alternatives, utilizing static units simply doesn't cut it any longer. Some such countless individuals set their browser incli...
4

Emma Turner · 2 years ago

6 small Career advice for CodeNewbies

These are my main 6 advices for any individual who is figuring out how to code or simply beginning in an engineer career. I trust you track down these valuable and in the event that you have...
7

Loading More Content