CodeSteps

Python, C, C++, C#, PowerShell, Android, Visual C++, Java ...

Python – Sequence Types – Common Operations

Python supports variety of operations to work with Sequence Types. Almost all Sequence Types supports the common operations which we can apply on any of the Sequence Types what we have discussed in our Previous Articles. In this Article, I am going to explain some of the Common Operations Python supports for Sequence Types. in […]

Docker – An Introduction

Docker is a Software Platform for Developers and System Admins to Build, Test and Deploy Applications quickly. These applications are built into executable packages, called Images. An Image includes everything to Run an Application; the code, libraries, configuration files, etc. Why the Docker software platform? Docker packages everything into a standardized unit called a Docker Container; […]

Microsoft Excel – Logical Functions – IF, IFERROR and IFNA formulas

Microsoft Excel provides logical formulas to enable to select the data depending on the given criteria. For example, select the data; if some condition(s) satisfies. In this Article, we will go through; IF, IFERROR and IFNA Logical Functions in Microsoft Excel. IF function The syntax of this function is: =IF(condition, [true-value], [false-value]) IF function takes […]

Python – Sequence Types – Slicing

So far we have discussed the Sequence Types; list, tuple, range, str, bytes, bytearray and memoryview in Python. We have discussed creation of these types and accessing data from them. We have used index operator to access the data from the Sequence Types. By using index operator we can access ONLY one element at the given […]

AngularJS – Expressions

In our previous Article “AngularJS – Introduction“, we quickly looked into AngularJS. Now on, through the series of Articles, I would like to explain more about AngularJS and its components. Expressions in AngularJS are used to evaluate the given expressions and can be written in double curly braces or using the ng-bind directive. For example, […]

WCF – Develop our first WCF Service Application

We have discussed WCF in our previous Article “WCF – Introduction“. Now through this article, we will discuss creating a WCF Service Application and testing it with WCF Test Client. Lets’ start creating our first WCF Service Application. Create WCF Service Application Step 1. Open Visual Studio. Click on File menu -> select New menu-item -> […]

Scroll to top