CodeSteps

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

Python – Ranges – A walk through with Examples

A range is another sequence type in Python and it is a collection of numbers. We have discussed about Python’s sequence types; list and tuple sequence types through our previous Articles. In this Article, we will discuss about range sequence type. As I mentioned above, range is nothing but a collection or sequence of numbers; yes, […]

PowerShell – Create Scheduled Task

Scheduled task is one of the useful feature in Windows Operating System enable to schedule to launch a program or to run some scripts at specified time, date or even when particular event occurred. PowerShell provides commands to create scheduled tasks. In this Article, I am going to explain, what are the commands in PowerShell […]

Microsoft Project 2013 – Add Tasks

Through the series of Articles; so far, we have created: A draft Project “Space Debris Robo” was created in “Microsoft Project 2013 – Create Project – Set Project Information” and set the initial Project information. To proceed with the Project planning, we must set the Project Options and we did this through “Microsoft Project 2013 […]

CentOS – Disk Usage Analyzer

Disk Usage Analyzer is a helpful tool to analyze disk usage in CentOS. This Application analyzes the disk usage and provides the usage details in Graphical view & in a Tree view. This helps the users to see which directory branch has occupied more disk space; so that it can help to make the decision […]

C# – Access Modifiers – public access modifier

We have discussed access modifiers or access specifiers in our previous article “C# – Access Modifiers“. In this article, I am going to explain in more detail about “public access modifier” with examples. public Access Modifier The modifier allows all the class members and the class itself to access outside the Assembly,  Namespace, or outside […]

Photoshop – Resize Image

Photoshop – Resize Image article, discuss the steps to resize an image using Adobe Photoshop CS6 Application. Resizing of an image doesn’t crop the image; it just resizes the dimensions (width & height) of the image. Also, it allows to reduces the quality of the image. In this article, I am going to explain to […]

Python – Parsing command line

Most of the Applications support command line Arguments, to do some actions based on the given values. For example, when you type “explorer .” at Windows command prompt; it will open Windows Explorer showing the Current Folder content. In this article, I am going to explain the parsing command lines using a sample Python program. […]

Scroll to top