CodeStormcodestormninja.hashnode.dev·Feb 9, 2025Understanding the Java Main method.Writing your first Java "Hello World" application is pretty exciting. When you start your Java journey, you are told this is the syntax to write the program, and you just go along with it. Today, we will break down the reasons behind the main method ...JavaJava
shubhangi singhcodeshutters.hashnode.dev·Feb 3, 2025Scaling Smart: A Practical Guide to Understanding Scalability in TechScalability is the ability of a system to handle an increasing traffic efficiently, without compromising performance or reliability. It is a key consideration when designing systems to ensure they can grow with user demand. Types of Scalability ...System Design
shubhangi singhcodeshutters.hashnode.dev·Jan 28, 2025Understanding System DesignSystem design refers to the process of defining the architecture, components, and interfaces of a software system to meet specific requirements. It focuses on breaking down the system into smaller, manageable pieces and ensuring that those pieces wor...System Designcodeshutters
Ganti Sai Sagarsdetinsider.hashnode.dev·Jan 28, 2025ArrayList vs StackBoth ArrayList and Stack are part of Java's java.util package, but they serve different purposes and have distinct characteristics: 1. Hierarchy ArrayList: Implements List interface directly. Stack: Extends Vector, which in turn implements the List...Collection Framework
MixPayUforMixPayU - make money onlinemixpayumakemoneyonline.hashnode.dev·Jan 27, 2025Understanding AI Basics: Benefits, Drawbacks, and Essential InsightsA Complete Guide to AI Basics: Advantages, Disadvantages, and Practical Insights Artificial Intelligence (AI) has revolutionized the way we work, live, and interact. From automated systems in industries to voice assistants like Alexa and Siri, AI has...10 likesAI
Chinecherem Edehfastcheetah.hashnode.dev·Jan 26, 2025Introduction to Web Development SimplifiedWhat is Web Dev ? (you may wonder) Have you ever wondered how a webpage is built and how it runs?(Well let me answer those questions and simplify it) What is a Webpage First of ALL A webpage is a single document on the internet that you can view usin...10 likesWeb Development
iheb ben Temessekjavaa.hashnode.dev·Jan 26, 2025Java 9 Key Features ( Module System, JShell, JVM Performance )Alright, Java developers, buckle up—because Java 9 wasn’t just another version with a couple of bug fixes and small tweaks. Java 9 was all about taking Java to the next level with modularity, interactive development, and some serious performance boos...Java
Suman Khatriphpcrud.hashnode.dev·Jan 26, 2025PHP CRUD Application: Step-by-Step GuideIn this blog, we’ll build a simple PHP CRUD application for managing employee records. CRUD stands for Create, Read, Update, and Delete, and this application will demonstrate all these operations using MySQL. project Structure config.php create.php d...156 readsPHP
Muhaiminul Islam Sazidmisazid.hashnode.dev·Jan 23, 2025Variables in Python: A Comprehensive GuideVariables are fundamental elements in programming used to store data that can be referenced and manipulated in a program. In Python, variables are created when you assign a value to them, and they do not need explicit declaration to reserve memory sp...1 likePython
Shamith Nakkashamith.hashnode.dev·Jan 20, 2025Return NegativeQuestion There can’t be a simpler question than this… All you have to do is finish the makeNegative function, which takes a number and returns a negative number regardless of the value… function makeNegative(num) { // Finish your code here } Ins...Code with ShamithBeginner Developers