Copy file to your Android device from your computer adb push - copy file/dir to device example: adb push c:\mygame.apk /sdcard Copy file from your Android device to your computer adb pull - copy file/dir from device example: adb pull /sdcard/mymovie.avi c:\downloads Install app from your computer to your Android device adb install [-r] [-s] - push this package file to the device and install it ('-r' means reinstall the app, keeping its data) ('-s' means install on SD card instead of internal storage) example: adb install c:\mygame.apk Uninstall an app from your Android device adb uninstall [-k] - remove this app package from the device ...
This Python logging handler can be used to combine multiple log message in one email message and send the log email using Amazon SES . Boto is used to send email using Amazon SES. Email will be send once the buffer reaches the capacity you've specified. To force send the email before it reaches the buffer capacity you can shutdown the logger by calling its shutdown method.You can simultaneously keep logging in file or other places by adding more handler.
This fake SMTP server comes handy when you have to do development which requires sending hundreds of email. This will act as an SMTP server but doesn't relay emails but saves them in a file in predefined location and also display the emails in the GUI itself as they comes. This is cross compatible Java jar file and can be launched easily by typing: java -jar fakeSMTP.jar after downloading it from this website.
This comment has been removed by a blog administrator.
ReplyDelete