CodeSteps

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

Android Programming – Create a background Service

Through our Previous Articles, we have discussed Creating an Android Service and Creating a Bounded Service. These services are user-interactive; which means, these are foreground services. We can interact with the Services through the User Interface elements. We have another type of Android Service, which is called Background Service. In this article, we are going […]

PowerShell – Functions

Functions are code blocks holds the sequence of statements and can be called using their names whenever / wherever required. The list of statements inside the function are grouped with in the curly braces (“{ }”). Defining and using the Functions in PowerShell are easy and will discuss how to do this in this Article. […]

Python – Truth Value Testing for Class objects

We have discussed Truth Value Testing in our previous Article, “Python – Truth Value Testing“; where we have discussed that Class objects are, by default considered True for Truth Value Testing. Through this article, we will discuss the Truth Value Testing for Class objects. Truth Value Testing for Class objects By default, Truth Value Testing […]

AWS Lightsail – How to check health metrics?

Health Metrics in Amazon Lightsail are very useful to know whether the Applications in Lightsail instances are working smoothly and useful to take the decision on upgrade / downgrade the configuration of the System to balance the price per usage. In this Article we will discuss about checking the Health Metrics in Amazon Lightsail instance. […]

C# – Understanding of Structures

Structures are composite types and can contain different types of elements. That means, structures can contain integer elements, strings, floating point elements, and even other structure types etc.,. Unlike in C language, C# structures can encapsulates both data elements and the functions which are operating on the data. Structures are value types. Defining a structure […]

PowerShell – Managing Current Working Directory

Most of the Applications use the Current Working Directory to store the Application related files. PowerShell provides set of cmdlets, useful to manage the current working directory. In PowerShell, we use the noun “Location” for the working directory; so the same used for the cmdlets. The Get-Location cmdlet This command is useful to get the […]

Scroll to top