Vinh Nguyen QuangProvincenguyen.hashnode.dev·Sep 18, 2023Understand images for web developersAn image is worth thousands of words. Yes, images are a powerful tool to convey ideas to people. We all should learn how to leverage images and make good use of it How an image works on the web How do we display images on the web? Thanks to the simpl...Discuss·34 likes·203 readsCSS
Vinh Nguyen QuangProvincenguyen.hashnode.dev·12 hours agoWhy CSS Logical Box Outshine the Box ModelImagine that you have some right-to-left (RTL) content on your website your left might be probably the physical right, so if you are usually setting margin-left: 100px for some elements, you might want to replace that with margin-right: 100px Given ...Discuss·20 likes·39 readsCSS
AtulforPococaretech.pococare.com·4 hours agoTest your react component using PlaywrightTesting is an integral part of the software development process. When it comes to web development, testing React components is crucial to ensure that your application functions as expected. Playwright is a powerful tool that can help you automate bro...Discuss·5 likes·28 readsqa testing
Abdul rehman Shahsyedabdul.hashnode.dev·31 minutes agoTitle: "Understanding the JavaScript Finally Clause in Try-Catch Blocks"The finally clause in JavaScript is used in conjunction with the try and catch blocks. What it does is run whether or not an error is found in the catch block. This is extremely useful for performing cleanup tasks or actions that need to be executed ...DiscussJavaScript
Abdul rehman Shahsyedabdul.hashnode.dev·an hour agochapter 1.1 Creating Your Personal Google Cloud Platform (GCP) Account and Setting Up a Virtual Machine (VM)How to Create Your Personal GCP (Google Cloud Platform) Account: Step 1: Go to www.console.cloud.google.com. Step 2: Sign in with your Gmail account. Step 3: Activate the free $300 credits provided by GCP to encourage learning GCP. These credits are ...Discuss·10 likesCloud
OluwaMayowamayourwa.hashnode.dev·4 hours agoWeb responsiveness in Flutter using flutter_bootstrap5Achieving responsiveness across various device sizes is an integral part of building any product web or mobile, especially now that we are moving into the era of foldable phones (Foldables again ! 😩, I would rant in another article 😂). Today we wil...DiscussWeb Development
Pragati Vermapragativerma18.hashnode.dev·5 hours agoHTTP Status Codes That Will Make You ThinkLast year, I wrote an article on how we might be using some of the HTTP status codes wrong, and this time I discovered some HTTP status codes that we don't use that commonly, but they can have fascinating use cases. So, in this article, we will discu...DiscussWeb Development
Ikechi Delight Charlesdelight2003.hashnode.dev·5 hours agoUnderstanding Object-Oriented Programming (OOP) in JavaScriptJavaScript is a versatile and dynamic programming language that is widely used for building web applications. One of the key features that make JavaScript powerful is its support for Object-Oriented Programming (OOP). In this article, we will explore...DiscussWeMakeDevs
Amey Sanyalconceptsinshort.hashnode.dev·5 hours agoReact JS PropsWhat are Props? Props (short for properties) are a way to pass data from a parent component to its child components in React. Props are used to provide configuration or data to components and allow them to customize their behavior and content. Pro...DiscussJavaScript
Anant Guptaanantguptablogs.hashnode.dev·7 hours agoJava Data Structures and AlgorithmsData structures and algorithms are an essential part of any programming language, including Java. They allow us to organize and manipulate data in efficient ways. Some of the main data structures in Java are: Arrays Lists (ArrayList, LinkedList) S...DiscussJava (Data Structure and Algorithm)Java
Saksham Aggarwalwebdv.hashnode.dev·7 hours agoMastering JavaScript Event Loops: A Deep DiveWhat are Event Loops? In short, an Event Loop is an infinite loop within the JavaScript runtime environment that determines which task to execute at any given moment. Now, you might be wondering, "Why should I familiarize myself with this concept?" W...DiscussWeb Development