Python – What is a Dataframe?

A dataframe is a two-dimensional data structure, i.e., data is aligned in a tabular fashion in rows and columns, exactly as you would see in a classic Excel spreadsheet. In other terms, Pandas DataFrame is nothing but an in-memory representation of an Excel sheet via Python programming language.
Read More …

Encrypt and store passwords securely in PowerShell scripts

Encrypting passwords (and usernames) in Powershell scripts that will be used in scheduled tasks could be very useful to automatize important tasks in test/development/production environments. Let’s see how to do this. Read More …

Copy file to remote servers (Powershell)

A common activity, on many IT environments, is to move/copy files from a system to another, usually in a scheduled mode. Let’s see how to do it with Powershell on Windows systems. Read More …