Abigeal Afolabiarbythecoder.hashnode.dev·5 hours agoCreating a Scheduled Lambda Function on AWS: A Step-by-Step GuideAn AWS Lambda scheduled function is like a digital alarm clock. It runs a small piece of code (a function) automatically at a specific time or on a schedule. Think of it as an automated reminder on your phone that tells you to check your email every ...DiscussAWS
Manas Mallahash.manasmalla.dev·Sep 19, 2023The Code Butcher: A Playful Dissection of FunctionsA developer's nightmare: Your manager, calling you up in the middle of the night, and asking you to fix an issue in the app, written by that essay-writing co-developer of yours. Guess what! The d-day is just tomorrow! Scrolling through lines and line...Discuss·6 likes·58 readsfunctions
Kushal Daskushaldas.hashnode.dev·Sep 18, 2023Exploring JavaScript Math Functions: A Comprehensive Guide 📊Introduction 📝 JavaScript is a widely used programming language with many helpful tools. One of these tools is the Math object, which is great for doing math. In this article, we'll look at Math functions in JavaScript and see why they're essential ...Discuss·2 likes·28 readsJavaScriptJavaScript
Mallikarjun Komarrajumallikarjun.hashnode.dev·Sep 17, 2023Mutation and Immutability in JavaScriptDiscussion What are Mutation and Immutability? Why Immutability. Better tests and easy to debug. Functional Programming approach and pure functions. Deep copy v/s Shallow copy. Ways to create copies of objects What is Mutation and Immutabilit...DiscussJavaScript
Abere Oghenefejirofejiro001.hashnode.dev·Sep 16, 2023Functions vs. MethodsLet's break down the difference between a function and a method in simple terms, using everyday analogies. Function: A function is like a standalone recipe. Imagine you have a recipe for making a sandwich. It's a set of instructions that you can fo...Discussfunctions
Robert Wynnrobai.hashnode.dev·Sep 14, 2023Functions in PythonI recently finished reading John Sonmez's book "Soft Skills". Of particular interest to me was the section on how to learn new things quickly. He lays out a 10-step process. Most of the steps I've already been doing as long as I can remember. But the...Discusspython beginner
Hirameichgi.hashnode.dev·Sep 13, 2023HTTP Monitor deployed on DigitalOcean FunctionsFellas, let's continue exploring serverless services now with Digital Ocean cloud provider. This is a more useful practice than the previous ones, we will deploy a function scheduled to run every X minutes to reach a Website/API via HTTP. In case the...Discussserverless
Mazharul Islammazhar.hashnode.dev·Sep 11, 2023The sum of a range in JavaScriptI am writing a range function that takes two arguments (start, and end). It will return an array containing all the numbers from start up to end. I am making the sum of the range function by a few steps. Step 1: Making the range function called myRan...DiscussJavaScript
sai sri vinay reddy sangam 🇮🇳forSolidity30solidity30.hashnode.dev·Sep 9, 2023Solidity BasicsVariables in solidity As we know, variables are temporary storage containers in any programming language. Similarly, in Solidity there are 3 types of variables: local variables global variables state variables local variables: these are tempora...Discuss·1 likeSolidity
Chukwuemeka (Val) Ogbanuvalhunter.hashnode.dev·Sep 3, 2023JS Call, Apply and Bind Methods and their Use-casesThe call, apply and bind methods are essential knowledge to every JavaScript developer. But most developers fail to harness them to their full potential. This article explicitly breaks down each of these methods. By the end, you will be a much better...Discuss·10 likesJavaScript