One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
from urllib2 import urlopen | |
def send_alert(): | |
from smtplib import SMTP | |
from email.mime.text import MIMEText | |
msg = MIMEText('nuf said') | |
msg['Subject'] = 'inventi.lt is unreachable' | |
msg['From'] = 'osvaldas@inventi.lt' |
<?xml version="1.0" encoding="utf-8"?> | |
<set xmlns:android="http://schemas.android.com/apk/res/android"> | |
<rotate | |
android:duration="70" | |
android:fromDegrees="-5" | |
android:pivotX="50%" | |
android:pivotY="50%" | |
android:repeatCount="5" | |
android:repeatMode="reverse" |