Windows Server 2019 Datacenter Virtual Machine Activation Guide

Install Windows Server from the DVD or from .iso file downloaded from here Start Power Shell as administrator. Right click on Start (Windows) button in the bottom-left corner, then click “Windows PowerShell (Admin) In PowerShell type with your Activation key: slmgr.vbs /ipk *****-*****-*****-*****-***** Press Enter and restart computer Now you are ready to install HyperV … Read more

TypeError: ‘int’ object is not iterable

For all noobs like me. If you get this error, you most probably doing one stupid thing like I did: where y2.shape[0] is just an integer. Remember, we can iterate only through lists or other sequences. When we would like to repeat a certain action X number of times we should do the following: If … Read more

Convert to Timestamp (DateTime) pandas time column with dates sliced in-between as headers

Hey guys. Being pretty average at Pandas, yesterday I stumbled upon a formatting challenge. I download some datasheets from the web for machine learning from time to time. This time I got some weird Time & date formatting which might’ve been good for regular use with Excel but unsuitable when it comes to Neural Networks: … Read more