In this post I will be introducing you with the DevOps culture, We will be seeing What is DevOps?, Role of Operations before DevOps?, What is the need of DevOps or Why DevOps is important. DevOps is such culture or model or practice or approach, whatever you may call but not a programming language or technology.
Author: Aditya Malviya
Variables in TypeScript
In this post we're going to see What are Variable, how do we use them, ways to declare variable and so on! Variable is a name given to stored memory location
Data Types in TypeScript
In this post we will be seeing Data Types in TypeScript. In TypeScript Majorly Data Types are Built in Data Types, User-Defined Data Types and Any data type.
Swift Delegates and Protocols
In this post we will see Delegates and Protocols in Swift. Lets break both the word Delegates and Protocols and try understand what they actually mean. Delegates as the name suggests, delegation i.e. your representative or someone on your behalf. Protocols on the other hand means a set of rules and regulation.
GETTING STARTED WITH TYPESCRIPT
Mastering basics is the key to become successful in any technology. We've already seen What is TypeScript, What are the advantages and features of it, in our previous article. In this article we will be seeing how to get started with TypeScript, how to create program using the same.
INTRODUCTION TO TYPESCRIPT
Often when we talk about JavaScript, somewhere someone brings TypeScript into it and I've seen many of us baffling like TypeScript? What really it is? I haven't heard about it, used ? never. So in this post we will be deep diving into the basics of TypeScript and revealing aspects about it.
INSTALLING PARAMIKO IN MAC
We've struggle multiple times installing paramiko in Mac, even after installing we came across certain issues like module not found. In this post we will be seeing how to install paramiko and overcome issues while installing.
Guard in Swift
A guard statement is used to transfer program control out of a scope if one or more conditions aren’t met also called as early exit. i.e. Either you meet the condition asked, or get out of the scope.guard let is also an alternative to if let, which also unwraps optionals. guard let will unwrap an optional for you and if it finds nil inside, it expects you to exit the function, loop, or condition you used it in.
You must be logged in to post a comment.