anto mervinantomervin.hashnode.dev·9 hours agoGetting Started - JOURNEY OF DSA IN C++Hey there, it's Mervin! 👋 Today, I'm thrilled to kick off my journey into the fascinating world of Data Structures and Algorithms (DSA) using C++. In this first session, we'll start with the basics, the stepping stones to my DSA adventure. So, grab ...DiscussDSA
Joy Shreejoyofcode.hashnode.dev·11 hours agoJourney to DSA in C++Welcome to another insightful journey into the world of Data Structures and Algorithms in C++. In today's blog post, we will unravel the concepts of "pass by value" and "pass by reference." These fundamental concepts are essential for anyone aspiring...DiscussC++
raju ghoraiblogs.rajughorai.codes·Sep 28, 2023Understanding JavaScript Variable Declarations: var, let, and const 🚀In the dynamic world of JavaScript, effective variable management is a fundamental skill for every developer. The choices you make when declaring variables can profoundly impact your code's behaviour and maintainability. In this comprehensive guide, ...Discuss·14 likesJsJarganbasics
raju ghoraiblogs.rajughorai.codes·Sep 23, 2023Python One-Liners: Unveiling the Magic of Concise Code Part - 1 ✨🐍In the world of coding, elegance and brevity can be just as captivating as complexity. Welcome to the first instalment of our Python One-Liners series, where we'll explore the art of achieving remarkable tasks in a single line of Python code. Inspire...DiscussPython
vasanth kumarvasanth9.hashnode.dev·Sep 20, 2023Variables , Types and Keywords in GOIn the blog, I want to look into variables, basic types, keywords and control structures of our go language. Variables: The variable is a name given to a storage area that the program can manipulate. The variable is like a container and the name of t...DiscussLearning Go Go Language
Jay Tillublogs.jaytillu.in·Sep 20, 2023Interface in DartWhen any class implements an Interface, it must override every method and instance variable of an interface. However, Dart does not have a syntax for declaring interfaces. The class declaration is an interface in a dart. Any class can act as an inter...DiscussFlutterFlutter
Vishesh Raghuvanshiblog.visheshraghuvanshi.me·Sep 20, 2023C-Programming Introduction and Basic Building BlocksThe First C Program // First C Program /* The comment self document our source code & enhances its readability */ #include <stdio.h> // Used for loading header files #define MESSAGE "Hello World!" // Define symbolic constants & macros int main()...Discuss·3 likesC ProgrammingC
Isaac Tonyloiisaactonyloi.hashnode.dev·Sep 17, 2023AWS Basics - Day 1In this article I share concepts that I have learnt from the basics of cloud computing ,types, popular services offered by Amazon Web Services (AWS), and discuss the concept of the shared responsibility model. What is Cloud Computing? Cloud computing...DiscussAWS Basics Concepts.AWS
raju ghoraiblogs.rajughorai.codes·Sep 16, 2023Git Tools - GitignoreIn the world of version control and collaborative software development, Git stands out as one of the most powerful tools available. It allows developers to track changes, collaborate seamlessly, and maintain a comprehensive history of their projects....DiscussGit ToolsGit
Jay Tillublogs.jaytillu.in·Sep 13, 2023Constructors in DartA constructor is a special method (function) of a class that helps to create an object. As its name indicates it constructs the new object. It helps to create the object by initializing values to instance variables. So we can say that its main goal i...DiscussFlutterFlutter