Ankita Lunawatcloudhub2295.hashnode.dev·Nov 30, 2024Let's Dive into Shell Scripting!A shell script is a computer program intended to run by a Unix-like shell, which is a command-line interpreter; it is essentially a text file containing a series of commands that the shell interprets and executes. Why Use Shell Scripts? Shell scripts...Discussshell script
Jyotiprakash Mishrablog.jyotiprakash.org·Sep 25, 2024Introduction to TreesIn computer science, trees are a fundamental non-linear data structure composed of nodes connected by edges. A tree is a hierarchical model that represents a collection of elements, each of which can have a number of children but only one parent (exc...Discuss·2.7K readsTrees
Prajnesh Nvscode-extention-preciser.hashnode.dev·Sep 20, 2024Preciser: Streamline Your Code with VSCodeHow It Works: Select Your Method: Pick a method with a block body. Invoke Preciser: Use the command palette to convert it. Instant Transformation: Watch your method turn into a clean expression body. Example Before: public int Add(int a, int b) { ret...Discussvscode extensions
Sangeerththan Balachandransangeerththanbalachandran.hashnode.dev·May 23, 2024Generate a Parsing Logic from Excel With Appian.Today we will look at a way in which we can create a nested object structure similar to JSON from spreadsheet data with Appian. First, we will create a logic to read the Excel data and extract the details. We will have a spreadsheet where the headers...Discuss·51 readsappian
Jemin Kikanijemin.hashnode.dev·Mar 19, 2024Day 9 : Function Declaration ,Expression ,Constructor , Hoisting , Self-invoking FunctionFunction JavaScript functions are defined with the function keyword. You can use a function declaration or a function expression. Function Declaration:- function functionName(parameters) { // code to be executed } Declared functions are not exec...Discussself-invoking function
Jinali Ghogharijinali.hashnode.dev·Mar 14, 2024Dart Conditional Expressions:1. ( condition ? expr1 : expr2): The conditional operator evaluates the condition and returns one of two expressions based on whether the condition is true or false. If the condition is true, expr1 is evaluated and returned; otherwise, expr2 is eva...DiscussDartdart conditional expressions
Desiah Barnettdesiahbarnett.hashnode.dev·Jan 13, 2024Understanding Variables.A function is a structured data type that is a container that stores values. Think of that dream apartment you want. You will need furniture inside your new beautiful home, so you have a choice to ditch the old stuff or pack the stuff you want. Eithe...Discuss·78 readsCode Kickstart: A Beginner’s JourneySoftware Engineering
Elucian MoiseforProgramming Languagessagecode.hashnode.dev·Nov 17, 2023Dart ExpressionsExpressions in Dart are constructs that evaluate to a single value. They are the most basic units of the Dart programming language. The components of an expression in Dart are: Literals - These are values written directly in the code like string lit...DiscussDart & FlutterDart
Elucian MoiseforProgramming Languagessagecode.hashnode.dev·Nov 1, 2023C# ExpressionsIn computer science, an expression is a combination of constants, variables, and operators that evaluates to a single value. Expressions are used in: Assignment statements: To assign a value to a variable. int x = 5 + 6; // Expression on the right...Discuss·57 readsC# Fundamentalsexpressions
Adil Shaikhadilshaikh165.hashnode.dev·Jun 30, 2023CRON Expressions using EventBridgeScheduling expressions for rules You can create rules that self-trigger on an automated schedule in EventBridge using cron or rate expressions. All scheduled events use UTC time zone and the minimum precision for schedules is 1 minute. EventBridge su...Discuss·317 readsAWS Event Driven ArchitectureAWS