Over the course of the past 2 years, I observed that there are a few things that trouble and concerns almost every beginner level Web developer.
Statistics depict that various web developers exit the Web development domain after learning HTML, CSS and JavaScript and shift into other domains like ML/AI, cybersecurity, Android development, etc.
After Observing closely, I listed down some of the basic tools and libraries that concerns developers as they are not even aware of how and why to use it.
The most basic question I usually come across:
If I can develop a website using HTML, CSS…
Before starting this article, I want to take a moment to thank you guys for so much loving and support to the first part of this article, I got an amazing response on that and many people texted me saying it was amazing and they are eagerly waiting for the second part.
So yes, your wait is over, and let's get started!
So last weekend, I released the first part of the article, “Capabilities of Binary Search Algorithm: Part-1” in which I introduced you with the famous searching algorithm known as Binary Search Algorithm. …
In computer science, binary search, also known as half-interval search, logarithmic search, or binary chop, is a search algorithm that finds the position of a target value within a sorted array.
Binary search compares the target value to the middle element of the array. If they are not equal, the half in which the target cannot lie is eliminated and the search continues on the remaining half, again taking the middle element to compare to the target value, and repeating this until the target value is found. …
Developer Student Clubs are university based community groups for students interested in Google developer technologies. Students from all undergraduate or graduate programs with an interest in growing as a developer are welcome. By joining a DSC, students grow their knowledge in a peer-to-peer learning environment and build solutions for local businesses and their community.
React is a JavaScript library that aims to simplify the development of visual interfaces. Developed at Facebook and released to the world in 2013, it drives some of the most widely used code in the world, powering many software companies.
React is a JavaScript “library”. It is not exactly a “framework”. It is not a complete solution and you will often need to use more libraries with React to form any solution. React does not assume anything about the other parts in any solution.
Frameworks serve a great purpose, especially for young teams and startups. When working with a framework…
Before starting this article, I want to take a moment to thank you guys for so much loving and support to the first part of this article, I got an amazing response on that and many people texted me saying it was amazing and they are eagerly waiting for the second part.
So yes, your wait is over, and lets get started!
So last weekend, I released the first part of the article, “A Complete Guide to LocalStorage in JavaScript: Part-1” in which I introduced you with the theoretical details of the JavaScript localStorage, which were as follows —
This article is divided into of two parts:
localStorage is a type of web storage that allows JavaScript sites and apps to store and access data right in the browser with no expiration date. This means the data stored in the browser will persist even after the browser window has been closed. The stored data is saved across browser sessions.
Data in a localStorage object created in a "private browsing" or "incognito" session is cleared when the last "private" tab is closed.
React is a JavaScript library that aims to simplify the development of visual interfaces. Developed at Facebook and released to the world in 2013, it drives some of the most widely used code in the world, powering many software companies.
In this short, yet comprehensive article, I’ll walk you through the complete process of Integrating your Django back-end application with React front-end.
Hopefully, it helps you understand powerful inbuilt features of Django, as it’s difficult to wrap your head around when you’re first starting. Source code will be provides towards the end of the article.
PREREQUISITES:-
GOAL:-
Create a Hello-World App to understand the linking process of Django and React.
Note: Since there are many ways to do the same task, In this article I will be discussing the one…
# importing a necessary module before we get started
from Focus import *
I wanted to write a simple application of Django and show how simple it is to carry out complex tasks with Django.
Hopefully it helps you understand powerful inbuilt features of Django, as it’s a difficult to wrap your head around when you’re first starting out.
Create a Login/Registration System using Django, and get familiar with the workflow of Django.
With the Django Login/Registration System you can take advantages of the following features: