Ramjanebees-december-chaubis.hashnode.dev·Dec 19, 2024a bad bad dayI wake up with a lot of intents and positive thoughts only to get surprised and feel f*cked up in under next two hours. I was pretty determined about the things I was going to cover today in terms of my daily learnings- but life doesn’t run as per ou...JavaScript
Mitali sahuwhat-is-oops.hashnode.dev·Dec 18, 2024What is variable hiding and variable shadowing and what are the difference between variable hiding and shadowing?Variable hiding —> Whenever the global variable and local variable is same then it is called as variable hiding. To overcome this issue we use this keyword to access the current variable. Variable shadowing —> When the subclass variable is same as pa...Java
WitQuick Academywitquick.hashnode.dev·Dec 17, 2024Top 7 CSS Frameworks for Developers in 2025What Are CSS Frameworks? A CSS framework is a collection of pre-built CSS stylesheets designed for web developers and designers. These stylesheets come ready with standard design elements such as layouts, colors, fonts, navbars, and more. Often, CSS ...CSS
xorbiousblog.xorbious.com·Dec 17, 2024My AltSchool Experience: Rediscovering the Thrill of LearningRediscovering the Thrill of Learning After four years as a developer, I realised something awkward: I wasn’t really learning anymore—I was just doing. Growth had hit the pause button, and honestly, I missed the thrill of figuring things out. That’s w...2 likeslearning
Dewmal Handapangodaskillhero.hashnode.dev·Dec 16, 2024Tips on Becoming a Great ProgrammerYou might be thinking, 'Programming looks so complicated!' or 'I could never understand coding.' But let me share a secret that will change how you see programming forever. Have you ever thought about how buying medicine is actually like programmin...Programming Blogs
Dewmal Handapangodaskillhero.hashnode.dev·Dec 16, 2024Learn any programming language Like a ExpertAre you feeling stuck in your programming journey? As a software engineer with 14 years of experience and knowledge of 25+ languages, I understand your struggle. I’ve been there at the start of my career, and now I help others overcome these same cha...Python
LordOfDarknessdevtriet.hashnode.dev·Dec 15, 2024Mastering Python Basics in 20 Minutes: A Comprehensive GuideIntroduction Python isn't just a programming language; it's a versatile ecosystem that bridges multiple programming paradigms. Developed by Guido van Rossum in 1991, Python was created with a philosophy of code readability and simplicity. Its design ...Python
Ahamad Basha NSintro-to-c-net-core.hashnode.dev·Dec 14, 2024StringBuilder in C#In C#, the StringBuilder class is a mutable sequence of characters designed for efficient string manipulation. Unlike String objects, which are immutable, StringBuilder allows you to modify its contents without creating new instances. This makes it p...C#
LordOfDarknessdevtriet.hashnode.dev·Dec 12, 2024Time Complexity Explained: An In-Depth Guide to Algorithm EfficiencyThe Art of Calculating Time Complexity Calculating time complexity is like being a performance detective, carefully tracing the steps of your algorithmic investigation. Let's break down the process into a systematic approach that will help you become...learning
Ahamad Basha NSintro-to-c-net-core.hashnode.dev·Dec 12, 2024Default Method of Array1. Array.Sort() 🧹: Sorts the elements of an array in ascending order. int[] numbers = { 3, 1, 4, 1, 5, 9 }; Array.Sort(numbers); // numbers will be { 1, 1, 3, 4, 5, 9 } 2. Array.Reverse() 🔄: Reverses the order of elements in an array. Array.Revers...array