Arnav Singhpythonfornoobs.hashnode.dev·Oct 21, 2024Python Functions: Defining, Calling, and Using Parameters EffectivelyIntroduction: What is a Function in Python? A function is a block of organized, reusable code that is used to perform a single, related action. Functions help reduce repetition, make code more flexible, and make debugging easier. In Python, functions...11 likesPython for Noobsfunctions
Archana Prustyarchana77.hashnode.dev·Oct 6, 2024Python Functions Explained: Day 17 HighlightsIntroduction : Welcome back to my Python journey! Yesterday, I laid the foundation with control structures in python. Today, I dove into Function arguments, Let's explore what I learned! Function ARGUMENT OR PARAMETER . to enjoy the local attribute ...2Articles1Week
Pradeep Thapapradeepwrites.hashnode.dev·Sep 29, 2024When Calling Functions Goes Wrong: Unpacking the 'z is not defined' Error in JavaScriptHere this led me to an error🤔🤔🤔 function x(l) { console.log("X"); z(); } x(function z() { console.log("Y"); }); Output: X index.js:3 Uncaught ReferenceError: z is not defined...107 readsJavaScript
Vibhuti Jainvibhutijain.hashnode.dev·Aug 17, 2024Day 4 Task: Basic Linux Shell Scripting for DevOps EngineersWhat is kernel The kernel is a computer program at the core of a computer’s operating system that manages operations of computer and hardware. What is shell scripting Shell scripting is a series of Linux commands written in a file in sequence. It is ...1 like·51 readsLinux
Diwakar Jhadev2ops.hashnode.dev·Jun 27, 2024How to Handle Command Line Arguments and Flags in GoIntroduction Brief overview of Go programming language Go is a compiled, statically typed, garbage-collected language from Google. Known for simplicity, concurrency, and building web apps, microservices, and CLIs. Gains popularity for its efficien...Programming Blogs
FMZ Quantfmzquant.hashnode.dev·Jun 20, 2024JavaScript language quick startBackground This section gives a little background on JavaScript to help you understand why it is the way it is. JavaScript Versus ECMAScript ECMAScript is the official name for JavaScript. A new name became necessary because there is a trademark on J...JavaScript
William Stetarcopin43.hashnode.dev·May 24, 2024Unpacking Microsoft's Copilot + PC Update: Implications and ConcernsMicrosoft's recent announcement of Copilot + PC, an update integrating AI directly into Windows PCs, has sparked both excitement and controversy. While some see it as a useful productivity tool, others liken it to spyware. The controversy centers aro...AI
Sachin Palteamgeek.geekpython.in·Apr 16, 2024Best Practices: Positional and Keyword ArgumentsA function or a method can accept both positional and keyword arguments and that's you who decide whether a function/method will accept positional or keyword argument. You can choose what is best for your function either positional or keyword paramet...1 likePython
Uputoori kishorekishoreuputoori.hashnode.dev·Mar 12, 2024Demystifying Spring Boot Profiles: A Comprehensive GuideIn the dynamic landscape of application development, configuring an application to seamlessly adapt to various environments is a critical aspect. Spring Boot, a popular framework for building Java applications, offers a robust solution for managing c...Spring
janahvi tripathijanahvitripathi.hashnode.dev·Jan 10, 2024Scripting - Bashing!Hello Peers! Let's check out some basics of shell scripting today. So narrowing down to what shell scripting is and what is its role in DevOps? Basically shell like and other programming languages is set a syntax designed in such a manner to promote ...Bash