PLATFORM
  • Tails

    Create websites with TailwindCSS

  • Wave

    Start building the next great SAAS

  • Pines

    Alpine & Tailwind UI Library

  • Auth

    Plug'n Play Authentication for Laravel

  • Designer comingsoon

    Create website designs with AI

  • DevBlog comingsoon

    Blog platform for developers

  • Static

    Build a simple static website

  • SaaS Adventure

    21-day program to build a SAAS

Beginners

Beginners posts, videos, courses, and more

How to Get Headless CMS in Next.js with One Line

Over the years, developers have realized the power of Headless CMS. Using a solid CMS with frameworks like Next.js can make a lot of difference if you're managing a lot of content. While big...

Anmol Baranwal ยท 3 months ago

1

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...

Baransel ยท 2 years ago

2

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...

Rahul ยท 2 years ago

3

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...

Souptik Debnath ยท 2 years ago

2

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....

Vladimรญr Machรกฤek ยท 3 years ago

4

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...

Tapas Adhikary ยท 3 years ago

6

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...

Tapas Adhikary ยท 3 years ago

5

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...

Diogo Capela ยท 3 years ago

3

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...

GeekTech ยท 3 years ago

2

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...

GeekTech ยท 3 years ago

1

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...

Abhiraj Bhowmick ยท 3 years ago

8

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 - DevDo...

Rahul ยท 3 years ago

4

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...

Mr. ร…nand ยท 3 years ago

7

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...

Tapas Adhikary ยท 3 years ago

5

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...

Chirag ยท 3 years ago

3

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...

TechvBlogs ยท 3 years ago

2

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...

Rahul ยท 3 years ago

6

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...

Muthu Annamalai Venkatachalam ยท 3 years ago

7

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...

Yogesh Chavan ยท 4 years ago

5

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....

Yogesh Chavan ยท 4 years ago

6

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...

Yogesh Chavan ยท 4 years ago

6

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...

Yogesh Chavan ยท 4 years ago

5

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...

Yogesh Chavan ยท 4 years ago

5

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...

Yogesh Chavan ยท 4 years ago

1

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); //...

Yogesh Chavan ยท 4 years ago

3

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...

Rahul ยท 4 years ago

5

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...

Yogesh Chavan ยท 4 years ago

3

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...

Yogesh Chavan ยท 4 years ago

7

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...

Yogesh Chavan ยท 4 years ago

2

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...

Emma Turner ยท 4 years ago

4

Loading More Content