Monday

python indentation fixing:by removing tabs

to remove tabs and correct indentation use this command in VIM:
:set expandtab
:retab!

No comments:

test smtp server with powershell

Send-MailMessage -SMTPServer smtp.domain.com -To [email protected] -From [email protected] -Subject "This is a test email" -Body ...