CodeSteps

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

Google Analytics – How to fix “This property has multiple views that are similarly configured and possibly redundant”?

If you are seeing this notification in your Google Analytics account; means, you have configured multiple views which are similar; which makes difficult to manage the Google Analytics account. The recommended option is remove the redundant views from your Analytics account to make sure the configuration is simple and clean. How to remove redundant views? […]

PowerShell – Containment operators

PowerShell containment operators are used to verify whether the given value is available in the given input values. These operators always return the boolean value; True or False. Below are the containment operators PowerShell provides, and these take 2 or more operands; left-side operands hold the input value and the right-side operand is for the […]

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

Scroll to top