CodeSteps

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

PowerShell – Operator Precedence

We use Arithmetic Operators in the expressions to calculate numeric values. PowerShell processes these expressions from left to right, and depending on the order of precedence expressions are evaluated. Operators who have higher precedence will evaluate first. To understand operator precedence, let’s take a simple arithmetic expression; 3+4/7*10-2%3+20 When we evaluate the above expression from […]

PowerShell – Exception handling

PowerShell provides exception handling mechanism to enable to deal with the exceptions raised during the script execution. Known or expected errors, we commonly handle using Error handling mechanism; where mostly we use if statement to meet certain criteria and the change the flow of execution depends on the result of the conditional statement. Exceptional handling […]

PowerShell – How to access Clipboard?

Clipboard is a buffer in computer memory, allows the applications to copy and retrieve the temporary data.  Most of the applications provides the Clipboard feature to share the temporary data across the applications. Most common way we can use the Clipboard is using cut, copy and paste commands.  PowerShell provides cmdlets to use the Clipboard. […]

PowerShell – Type operators

PowerShell Type operators are used to verify the type of the operand. Are you aware, each value we use in PowerShell has particular Type? These are the types similar to the types defined in .Net. Yes, because PowerShell is developed using .Net Framework. These operators are allowed to verify the type of the operand. Through […]

Microsoft Excel – TIME functions

TIME function in Excel and its related functions are important functions to deal with date-time-related data. As these functions are commonly used with DATE functions, recommended reading an article on DATE functions. TIME function in Excel It returns the time value by taking individual time components (hour, minutes & seconds) as its arguments. Using this […]

PowerShell – For and ForEach loop

PowerShell for loops are used to navigate within the collection to retrieve its elements and allow it to execute the statements within it continuously when the given condition is met. Through this article, we are going to discuss For and ForEach loops. The for loop in PowerShell PowerShell for loop is used to execute the […]

Photoshop – How to rotate an image?

Adobe Photoshop allows us to rotate an image in different angle. Through this Article, we are going to discuss the image rotation. Step 1. Open the image in Adobe Photoshop CS6 Application. Step 2. Click on Image menu. Then, select Image Rotation menu item. Photoshop will display the sub-menu; allows us to rotate the image. […]

Microsoft Word 2013 – How to change Capitalization?

Microsoft Word provides a feature that allows us to change the Capitalization of selected Text. It allows you to change the selected text case to lowercase, or uppercase, capitalize each word, etc. Through this article, we are going to discuss how to change Capitalization in Word. Step 1. Open the Word document using Microsoft Word […]

Electron JS – An Introduction

Electron is an Open Source framework used to develop User Interface Applications. It is one of the main GUI frameworks; with web technologies like JavaScript, HTML, and CSS to develop Desktop GUI Applications. Using Electron we can develop cross-platform Applications; which means we can run these applications on Windows, Mac, and Linux Operating Systems. Electron […]

Scroll to top