Shivank Kapurshivankkapur.hashnode.dev·Nov 9, 2024Building on Solana Anchor Framework.Introduction The Solana blockchain is widely known for its speed, scalability, and minimal transaction fees, which make it a popular choice for decentralized applications (dApps). However, developing on Solana can be challenging, especially for devel...Discuss·10 likesBlockchain
Emmanuel Katto Dubaiemmanuelkattodubai.hashnode.dev·Oct 23, 2024Emmanuel Katto Dubai Insights: The Rise of Coding Initiatives in Dubai’s Tech Future!Good Morning ! I'm Emmanuel Katto, your tech blogger based in the wonderful city of Dubai. Today, I want to share an inspiring story about how technology is changing life here in this mighty city. For the last few years, Dubai has emerged as an inter...Discuss·1 likeemmanuel katto
Muskantrendingflow.hashnode.dev·Oct 22, 2024The Role of AI in Software Testing: Enhancing Efficiency and Accuracys technology evolves, software development is becoming more complex, necessitating robust testing processes to ensure that applications meet user expectations and function smoothly. Traditional software testing methods, whether manual or automated, a...DiscussRegression Testing
Victor Uzoagbavictoru.hashnode.dev·Oct 6, 2024How to Collaborate with Developers Effectively as a Technical WriterThis collaboration of technical writers and developers is an integral part in developing high-quality documentation that would serve end-users, engineers, and other stakeholders. Normally, the primary source of information for technical writers is th...DiscussDeveloper Tools
NiKHIL NAIRnncodes.hashnode.dev·Sep 30, 2024Debouncing in JavaScript: Optimize Performance by Limiting Function CallsIn modern web applications, performance is key to ensuring a seamless user experience. One common issue that can degrade performance is the frequent and unnecessary execution of functions, especially during high-frequency events like typing, scrollin...DiscussJavaScript
Aman Srivastavaman09.hashnode.dev·Aug 29, 2024CloudFront & Global Accelerator: A Quick GuideIn today's digital age, users expect websites and applications to load quickly and efficiently, regardless of where they are in the world. AWS offers powerful tools like CloudFront and Global Accelerator to help you deliver content faster, improve se...Discuss·36 readsAWS Cloud Devops
Shivam Guptashivamgupta6418.hashnode.dev·Aug 26, 2024Creating a REST API with Node.js and Express.js for BeginnersIn this article, we will create a REST API using Node.js and Express.js, with MongoDB as the database. But before let us understand what is REST API? REST API stands for Representational State Transfer Application Programming Interface. It is a set o...Discuss·1 like·119 readscoding
Ayanconnectedrhythms.hashnode.dev·Aug 23, 2024"Unplugged Power: How Wireless Chargers Work and the Science Behind Them"Introduction Wireless charging is a method that allows devices like smartphones to charge without the need for physical cables. Wireless charging is a cool new way to power up your devices without using any cords! Imagine placing your phone or tablet...DiscussComputer Science
Prashant Baleprashbale.hashnode.dev·Aug 5, 2024Building a REST API with Node.js and Express: A Step-by-Step GuideIn this blog post, we'll explore how to build a REST API using Node.js and Express. We'll cover the basics of Node.js, set up our development environment, and walk through creating and managing API endpoints. What is Node.js? Node.js is a JavaScript ...Discuss·50 readsNode.js
Vishad Patelvishad.hashnode.dev·Aug 4, 2024How to Rotate an Array in LeetCode Challenge 189If you have an integer array nums, you can rotate the array to the right by k steps, where k is a non-negative number. Example 1: Input: nums = [1,2,3,4,5,6,7], k = 3 Output: [5,6,7,1,2,3,4] Explanation: rotate 1 steps to the right: [7,1,2,3,4,5,6] r...Discussleetcode