the latest Pandas gives warning about append being depreciated. FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. The main difference is that concat expects an iterable list. monnth_df = pd.concat( [ month_df,obs1 ], ignore_index=True) # month_df = month_df.append(obs1, ignore_index=True)
Pandas – convert from dataframe append to concat.
FreeBSD – setting up serial logins with Linux/KVM
FreeBSD – virsh serial howto Goal is to setup FreeBSD so you can connect to virtual serial port for login Add serials to KVM instance. Use Virtual Manager one is usually the default – you can add up to 3 more. In the virtual FreeBSD machine, edit the /etc/ttys Change the 3wire/ ttyu0 to std.9600. Secure means root can login […]