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

Code

Code posts, videos, courses, and more

Introduction to Structs and Implementations in Rust

Introduction Structs in Rust are a way to create custom data types that group together related pieces of data. This tutorial will introduce you to the basics of structs in Rust, including de...

Bobby Iliev ยท 2 years ago

5

๐ŸPython Project: ๐ŸŽจDrawing Pad GUI

โœจIntroduction This tutorial is not focused on advanced topics. This will teach you how to make your own simple Drawing GUI using basic Tkinter and Python concepts. Also, feel free to sugges...

Fahad ยท 2 years ago

3

19 Unique Git and Github Resources for Developers

While beginning as a web developer, it tends to be not difficult to lose all sense of direction in the large number of dialects, devices and stages that are accessible in the present market....

Rahul ยท 2 years ago

1

View list of GitHub commits within the specified date range

Hello Folks ๐Ÿ‘‹ What's up friends, this is SnowBit here. I am a young passionate and self-taught frontend web developer and have an intention to become a successful developer. Have you ever n...

Dhairya Shah ยท 3 years ago

2

How can you implement the sleep() function in Javascript?

Hello Folks ๐Ÿ‘‹ What's up friends, this is SnowBit here. I am a young passionate and self-taught frontend web developer and have an intention to become a successful developer. Today, I am her...

Dhairya Shah ยท 3 years ago

1

7 JavaScript One Liners to look like a pro

Hello Folks ๐Ÿ‘‹ What's up friends, this is SnowBit here. I am a young passionate and self-taught frontend web developer and have an intention to become a successful developer. I love building...

Dhairya Shah ยท 3 years ago

1

This is how you make numbers more readable in your JS code

Hello Folks ๐Ÿ‘‹ What's up friends, this is SnowBit here. I am a young passionate and self-taught frontend web developer and have an intention to become a successful developer. Today, I am her...

Dhairya Shah ยท 3 years ago

2

This is how you make images Responsive in CSS

Hello Folks ๐Ÿ‘‹ What's up friends, this is SnowBit back here. I am a young passionate and self-taught frontend web developer and have an intention to become a successful developer. Today, I a...

Dhairya Shah ยท 3 years ago

3

Simple ways to convert a string into a number

Hello Folks ๐Ÿ‘‹ What's up friends, this is SnowBit here. I am a young passionate and self-taught front-end web developer and have an intention to become a successful developer. Today, I am he...

Dhairya Shah ยท 3 years ago

2

These things you should keep in mind while writing JavaScript

Hello Folks ๐Ÿ‘‹ What's up friends, this is SnowBit here. I am a young passionate and self-taught frontend web developer and have an intention to become a successful developer. Today, I am her...

Dhairya Shah ยท 3 years ago

3

What are Template Literals and why you should use them?

Hello Folks ๐Ÿ‘‹ What's up friends, this is SnowBit here. I am a young passionate and self-taught frontend web developer and have an intention to become a successful developer. In this article...

Dhairya Shah ยท 3 years ago

3

Heap Data Structure using Arrays

A heap is a Complete Binary Tree in which elements are arranged in a specific order depending the type of Heap that we're trying to implement. It can be either the first element(root node) b...

Richa Kiran ยท 3 years ago

3

Divide and Conquer

Divide and conquer is just a simple yet complex strategy of solving problems. It basically includes the idea of dividing a problem into sub-problems or smaller problems. We solve each sub-pr...

Richa Kiran ยท 3 years ago

5

Selection Sort

In this article I'm gonna talk about selection sort algorithm and how to implement it in C language. What is Selection Sort? The main idea behind this sorting algorithm is to scan the unsort...

Richa Kiran ยท 3 years ago

9

Linear Search VS Binary Search

Linear Search and Binary Search are two popular searching algorithms. In this article, we'll be comparing the two algorithms in order to find out which algorithm is better based on their app...

Richa Kiran ยท 3 years ago

7

Chrome's Dino Game Tricks

In this video, I'll show you some cool tricks that you can use in Chrome's famous Dino game.

Richa Kiran ยท 3 years ago

2

Search Algorithms

Searching algorithms are designed to locate the position of an element (if present) in a data structure. To search for an element in a linear data structure like an array, we can use many di...

Richa Kiran ยท 3 years ago

4

Applications of Binary Trees

So far we've discussed about how we can perform certain operations on a Binary Search Tree. It is no fun to learn about new stuff when you don't know where exactly you can use it. So, In thi...

Richa Kiran ยท 3 years ago

6

K'th maximum element in a Binary Search Tree

In this article I'm gonna talk about how we can find the k'th maximum element in a given Binary Search Tree. Previously we talked about the methods of finding the k'th minimum element in a B...

Richa Kiran ยท 3 years ago

4

8 books to change your life as a designer

Hello Folks ๐Ÿ‘‹ This is Savio here. I'm young dev with an intention to enhance as a successful web developer. I love building web apps with React. I have proved my superiority in frontend tec...

Savio Martin ยท 4 years ago

5

Trees

A Tree is a non linear data structure. Unlike the data structures that we've learned so far like - Linked Lists, Stacks, Queues, etc. In this type of data structure, one element can be linke...

Richa Kiran ยท 4 years ago

6

Doubly Linked Lists

Till now we've talked about linked lists and the basic operations associated with it. But today we're gonna talk about linked lists only, but with a slight variation. In a linked list, trave...

Richa Kiran ยท 4 years ago

6

Queues

A queue is a linear data structure which follows FIFO principle in deletion and insertion operations. In real sense queue is just a sequence of objects(people, vehicles, etc.) waiting for th...

Richa Kiran ยท 4 years ago

6

15 amazing websites for UI inspirations ๐Ÿ’–

Hello Geeks ๐Ÿ‘‹ This is Savio here. I'm young dev with an intention to enhance as a successful web developer. I love building web apps with React. I have proved my superiority in frontend tec...

Savio Martin ยท 4 years ago

6

Stacks

A stack is a linear data structure in which operations can be done in a specific order. Stacks follow the LIFO (Last In First Out) Principle. I'm sure you might've heard of a stack of differ...

Richa Kiran ยท 4 years ago

7

Circular Linked Lists

In this post, I'm gonna be talking about circular linked lists. To learn the basics of a linked lists you can check out my other posts here. So let's get started! So what exactly do we mean...

Richa Kiran ยท 4 years ago

8

Applications of Linked Lists

In this article, I'm gonna be talking about Applications of linked lists. Now that we've come so far and learned all the basics of a singly linked list, it's only natural to wonder what coul...

Richa Kiran ยท 4 years ago

7

Insertion Operations in a Linked List

Now that we've learned how the basic operations on a linked list are done let's look at the different types of insertion in a linked list. There are three ways of node insertion in a linked...

Richa Kiran ยท 4 years ago

6

20 Developer Memes | You'll die laughing

(Invest Your 2 Minutes Laughing) Converting your developing seriousness to laughter. Every week this post will come up with amazing memes. So I just want you to devote your some minutes in...

Rahul ยท 4 years ago

8

Setup Google, Github and Facebook Authentication in your React App ๐Ÿš€

Hello Folks ๐Ÿ‘‹ This is Savio here. I'm young dev with an intention to enhance as a successful web developer. I love building web apps with React. I have proved my superiority in frontend tec...

Savio Martin ยท 4 years ago

7

Loading More Content