Nakul Goel01nakulgoel.hashnode.net·Dec 22, 2022Mastering React in 8 weeks - Day 1Hi, I am Nakul Goel and I will be your instructor in this 8 weeks react mastery course, where we will be covering everything about react. This course is entirely free for all students who want to learn. In this course, we will be going from beginner ...588 likes·902 readsReactReact
Victoria Lovictoria.hashnode.net·Aug 18, 2020FeaturedVanilla CSS vs Bootstrap vs Tailwind: An AnalysisHello everyone! Today's article is something I've always wanted to discuss. I remembered when I first learned CSS and hearing about Bootstrap and other frameworks like Materialize. At that time, I was unsure if I should learn these frameworks but I e...136 likes·11.8K readsframework
GirlThatLovesToCodegirlthatlovestocode.hashnode.net·Apr 7, 2021Fluent in Django: Improving your applicationThis is the second part of Fluent in Django series. We're going to upgrade the code we created in Part 1. You can find the finished code from the first part here. Prerequisites Python Basics of Django (Creating a project, Model, View, Templates, Fo...80 likes·225 readsFluent in DjangoDjango
Abdul Basit Khan (Abdul Basit)abdulbasitpersonalblog.hashnode.net·Apr 14, 2023Introduction Of React.jsReact.js has become one of the most popular and widely-used JavaScript libraries. With its powerful features and flexibility, React.js makes web applications more dynamic, interactive, and efficient. In this blog post, we will explore just an introdu...React
Abdul Basit Khan (Abdul Basit)abdulbasitblog.hashnode.net·Apr 14, 2023Introduction Of React.jsReact.js has become one of the most popular and widely-used JavaScript libraries. With its powerful features and flexibility, React.js makes web applications more dynamic, interactive, and efficient. In this blog post, we will explore just an introdu...React
Elucian Moisesagecode.hashnode.net·Apr 13, 2023Go: FrameworksIn this article we explain the importance of web frameworks in software developement. Go is a general purpose language, but if you use it for web developement, you should use a framework. Let's begin our research: What is it? A web framework is a to...Go Languagegolang
AbdulSalaamclericcoder.hashnode.net·Apr 12, 2023Revolutionize Your React App with Redux: A Beginner's Guide to Simplifying State Management(PART 1)Explanation of Redux Let's imagine that you are playing a game with a group of people. In the game, you have a lot of different things you need to keep track of points, power-ups, and items you've collected. If you try to remember all of these things...React
Jasmeet Singhnobrainer.hashnode.net·Apr 11, 2023A Beginner's Guide To FrameworksFrameworks are an essential part of software development. In simple terms, a framework is a pre-written code that provides a foundation for building software applications. This pre-written code helps developers to jumpstart the development process an...10 likes·65 readsBlogging
Numair Shaikhnumairshaikh.hashnode.net·Apr 10, 2023Bonjour Developer!!!Recently, I've started working on various projects that are essentially Github clones, but prettier. I'm implementing things I've never handled before, like a complete server with authentication, a database, beautiful themes and much more. It's quite...30 readsDeveloper
Sathya Molagodasathyamol93.hashnode.net·Apr 9, 2023Choosing the Right CSS Framework: A Comprehensive Guide to UnoCSS, TailwindCSS, and Bootstrap CSSIntroduction Welcome to the world of web development! Have you ever wondered how all the beautiful websites that we use every day are made? Well, one of the important components that make websites look great is CSS, short for Cascading Style Sheets. ...69 readsFrontendBootstrap
Daniel Asakpadaniel-asakpa.hashnode.net·Apr 9, 202310 Best Front-End Development Frameworks of 2023Front-end development frameworks are an essential tool for web developers. They allow developers to streamline the development process, increase productivity, and create beautiful, responsive web applications. With the growing demand for interactive ...30 readsFrontend Development
AKHIL GIREESHakhil-gireesh.hashnode.net·Apr 7, 2023How to deploy a smart-contract on any EVM compatible Blockchain using thirdwebthirdweb is a complete web3 development framework that provides you with all the necessary tools needed to build and deploy your Decentralized application.As of today, it supports all the EVM ( Ethereum Virtual Machine ) compatible Blockchains! Build...55 readsWeb Development
Yash Nirmalyashnirmal.hashnode.net·Apr 4, 20237 small Javascript concepts that can make a BIG differenceDestructuring Destructuring in JavaScript allows you to extract specific values from objects or arrays and assign them to variables more concisely and conveniently. Example-1 const person = { name: 'John', age: 30, location: 'New York' }; c...35 readsJavaScript