CodeSteps

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

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 -> […]

Python – memoryview – A Quick Overview with Examples

Another interesting sequence type, Python provides is memoryview. This is completely different than the other sequence types so far discussed. Objects of memoryview class is allowed to access the internal memory of the objects where these objects are referencing.  In C language, it is possible to access the memory using pointer variables; in Python; we use […]

Scroll to top