Kotlin can be used as script. I tried to create simple server with Kotlin script, like the server introduced in Python Light Server.
Continue reading Kotlin JVM: Simple Server of 1 Script FileTag Archives: [:ja]サーバ[:en]Server[:]
Apache Bench Stress Test
Python: Establish Light Server to Share Command
I established a simple server and ask colleagues to test commands, on AWS EC2.
Continue reading Python: Establish Light Server to Share Commandpython script for confirmation of sending email
Here is the script of python for confirm sending email, which was used when I was establishing mail server on Amazon AWS EC2, on python 2.7.9.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
import smtplib from email.MIMEText import MIMEText from email.Utils import formatdate from_addr = 'sender@sender.com' to_addr = 'your_address@you.com' msg = MIMEText("test") msg['Subject'] = 'subject' msg['From'] = from_addr msg['To'] = to_addr msg['Date'] = formatdate() s = smtplib.SMTP() # Set server and port. Localhost and port 25 are set as default. # s.connect([host[, port]]) s.connect() # Login if the server restrict user of sending mail # s.login('user_name', 'password') s.sendmail(from_addr, [to_addr], msg.as_string()) s.close() |