Coding

Coding posts, videos, courses, and more

Supernova3339 · 11 months ago

The Importance of a CSS Preloader and How to Implement One

In today's fast-paced world, online users have come to expect quick and seamless interactions with websites and applications. Slow loading times, while common, can leave users feeling frustr...
4

Bobby Iliev · 1 year ago

7 Best VS Code Extensions for Python Developers

Introduction Visual Studio Code (VS Code) has become a popular choice for Python developers due to its flexibility, extensibility, and user-friendly interface. One of the key features of VS...
6

Rahul · 1 year ago

13 must visit websites to learn and master CSS in 2023

Are you looking to break into web development but don't know where to start? Learning CSS is a great place to begin your journey, and lucky for you, there are tons of great online resources...
4

Rahul · 1 year ago

"npm start Not Working"? Here's What You Need to Do

Have you ever run into a problem when trying to run “npm start”? If so, you’re certainly not the only one. It can be incredibly frustrating when the command you think will execute your node...
1

Rahul · 1 year ago

Getting Started with JavaScript Optional Chaining

Are you writing code that needs to quickly access properties or invoke methods of an object—without worrying if the object or related data is null or undefined? If so, then you need optional...

Bobby Iliev · 1 year ago

Introduction to Rust

What is Rust? Rust is a systems programming language. It is designed to be fast, reliable, and maintainable. Rust was started in 2006 by Graydon Hoare at Mozilla Research. It was originally...
4

Rahul · 1 year ago

What is Javascript Slice? Practical examples and guide

If you're new to coding, the term 'slice method' may be daunting. Put simply, the slice method is a powerful JavaScript tool that lets you extract sections of an array or string. It's one of...

Rahul · 1 year ago

React UseEffect Hook: A Definitive Guide for Beginners

The useEffect hook is one of the most important hooks of React. It allows you to perform effects in a declarative way, instead of using imperative code inside React components. It offers a s...

Rahul · 1 year ago

Understanding the Parent CSS Selector :has(): A Comprehensive Guide for Beginners

Have you ever felt like you're stuck in a loop while writing your CSS? Does the thought of using parent selectors to simplify your code seem like an impossible task? Not sure where to start...

Rahul · 1 year ago

Using foreach() To Iterate Through an Array in JavaScript

If you're a JavaScript newbie or avid reader or pro or anything, you know that forEach is an incredibly useful tool. But what, exactly, is it and how does it work? forEach is a built-in arra...
3

Rahul · 1 year ago

Mastering Nested CSS Selectors: Tips and Techniques

Have you been trying to learn more about CSS selectors, but feeling a little overwhelmed? Well, you're in the right place! Mastering CSS selectors don't have to be a daunting task. You can s...
2

Rahul · 1 year ago

A guide to CSS Color functions in 2023

Hey, there fellow developers! Today we're going to dive into the world of CSS color functions. You might have used CSS to change the color of an element on a web page, but have you ever hear...
3

Rahul · 1 year ago

Top 21 Chrome Extensions for Designers and Developers in 2023

As a designer or developer, you know that Chrome is one of the most important tools in your arsenal. And with so many extensions available, it's hard to know which ones are really worth your...
1

Rahul · 1 year ago

Unlocking the Power of Polymorphism in JavaScript: A Deep Dive

Polymorphism is a concept in object-oriented programming that allows objects of different types to be treated as objects of a common type. This allows for more flexible and reusable code, as...
4

Rahul · 1 year ago

How To Customize React Components with Props

In React, props are a way to pass data from a parent component to a child component. Props are essentially arguments that you can pass to a React component. They are similar to function argu...
2

Rahul · 1 year ago

How to create components in React (create custom components) | React Recipes

Previously I discussed creating your first react app, in this post, we'll learn more about, props, states, creating your first react component, and many things. {% bmc rahuldotbiz %} So, Wha...
1

Rahul · 1 year ago

How to create react elements with JSX | React Recipes

JSX is a powerful tool for building user interfaces that is easy to read and understand, and can improve the performance and maintainability of your code. In this blog post we will learn abo...
4

Rahul · 1 year ago

32 best JavaScript snippets (one-liners) in 2023

Hi there, my name is Rahul and I am 18 years old. My goal is to become a successful developer, and I am interested in building web apps with frontend technologies. Today, I'd like to share s...
2

Yogesh Chavan · 1 year ago

How to Test a WebSocket based Application Using the API Tester Mobile App

In this article, we'll see how we can use API Tester application to test WebSocket based APIs easily and why it's my goto application for mobile app testing. So let's get started. What is AP...

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

Yogesh Chavan · 1 year ago

How to Deploy Your Node.js Application for Free with Render

For years, Heroku has been an excellent platform to host your Full Stack applications. But that may change, as Heroku is bringing its generous free tier to an end. You may have received emai...
2

Rahul · 1 year ago

React in Operation Theatre - React Shorts

React is a famous JavaScript library utilized for web improvement. React.js or ReactJS or React are various ways of addressing ReactJS. The present some enormous scope organizations (Netflix...
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

Vladimír Macháček · 1 year ago

Style your Next.js website faster with Stylify CSS

Style your Next.js website faster, more efficiently and intuitively with Stylify. Don't study selectors and syntax. Use pure CSS syntax and get automatically generated CSS with advanced opti...
1

Abhiraj Bhowmick · 1 year ago

Debugging in Javascript

Programmers spend a lot of time diagnosing and remedying errors and omissions in their code. Debugging slows down the Javascript execution and shows how data is modified line by line. Since...
3

Abhiraj Bhowmick · 1 year ago

How to use ChakraUI with NextJS?

Hello, my fellow readers! It's been a long time, am I right? Well, I apologise for not being able to create content for you, mainly due to my board examinations. It's never easy to design a...
3

Omar Moustafa · 1 year ago

How is it easy to use an "API"?

Wondering all the time on how to use APIs? Do you find it challenging all time? Stay right there! We will be explaining: What is an API? API useful cases Ahem, without further ado, let...
3

Richa Kiran · 1 year ago

Typedef in C

In C, we have an option to set any other name for a specific data type. For doing that we use a keyword called "typedef". In this article, I'll be explaining how typedef works and...
3

Richa Kiran · 2 years ago

Structures in C

While coding in C, you will come across many data types like - char, int, float, double, void, and so on... These data types are called basic data types. There's another group of data types...
7

Sergey Laptick · 2 years ago

Old Habits Die Hard, But Getting New Ones is Essential. Tips on Getting the Most Out of TypeScript

In web development, no one is surprised when a new framework or library enters the stage. Implementing complex functionalities and creating UI elements from scratch only using the powers of...
1

Loading More Content