aman Jaiswalamanog.hashnode.dev·Dec 26, 2024Learn about Message Streams and KafkaA message stream is conceptually similar to a message queue but has some critical differences, particularly in how data is consumed and managed. Let's explore this through an example scenario. Scenario: Building a Blog Website Imagine we are buildin... #MessageStreams
Pashupati Baniyabaniyatechinsights.hashnode.dev·Sep 16, 2024The Growing Importance of Cybersecurity in the Digital AgeIn today's interconnected world, where almost every aspect of life is intertwined with digital technology, cybersecurity has never been more crucial. From personal data to national security, the protection of sensitive information is a pressing issue...AIandSecurity
Yug Jadvanitheyugjadvani.hashnode.dev·Sep 8, 2024Six Types of Scope in JavaScript: A Deep Dive for DevelopersJavaScript’s behavior with variables is governed by its scope. Understanding scope is fundamental for writing robust, maintainable code. This article will explore the five main types of scope in JavaScript — Global, Local, Block, Function Scope (and ...JavaScript
Sumit Kharatsumitkharatdot.hashnode.dev·Aug 16, 2024Log4J Vulnerability: What You Need to KnowThe Log4j vulnerability, also known as "Log4Shell," is a critical security flaw that was discovered in December 2021. It affected a widely-used Java library called Log4j, which is part of the Apache Logging Services. Here's a breakdown of the key poi...#Log4jVulnerability
Sumit Mondalsumit007.hashnode.dev·Jan 29, 2024A Beginner's Guide: Implementing AWS Application Discovery Service in AWSIntroduction: In the ever-evolving landscape of cloud computing, understanding and optimizing your existing applications is crucial. AWS (Amazon Web Services) provides a powerful tool called AWS Application Discovery Service to help businesses discov...AWS - HandsOn #ApplicationDiscovery
Sumit Mondalsumit007.hashnode.dev·Jan 23, 2024Simplifying Cloud Migration: A Beginner's Guide to Using Migration Evaluator in AWSIntroduction: Cloud migration is an essential step for businesses aiming to modernize their infrastructure, improve scalability, and optimize costs. Amazon Web Services (AWS) offers a comprehensive suite of tools to facilitate this process, and one s...AWS - HandsOn #AWSMigrationEvaluator
Nikhil Kakadenikhilfirstblog.hashnode.dev·Dec 17, 2023Optimizing JavaScript Arrays: Unraveling the Packed vs. Holey Dynamics, SMI Efficiency, and Length Checking StrategiesIntroduction: JavaScript, a versatile and widely-used programming language, is equipped with powerful features that optimize code execution. One such optimization lies in the way arrays are handled by engines like V8. In this blog, we'll delve into t...#JavaScriptOptimization
Varsha DRvarshatalkstech.hashnode.dev·Oct 10, 2023Mutable Data Structures : When to Use Them and When to Avoid ThemMutable data structures are data structures that can be modified once they are created. This means that when you make a change to a mutable data structure, you are actually modifying the existing data structure. Some examples of mutable data structur...1 like·81 readsdata structures