My favorites | Sign in
Project Home Issues Source
READ-ONLY: This project has been archived. For more information see this post.
Project Information
Members
Links

A collection of Python scripts that can be utilized in various ways(Android Notifications, Dynamic Motd for SSH)

Android Notification Script

A simple Python script to be used in conjunction with android-scripting-environment in order to notify the user of recent changes to their Stack Overflow reputation. Current implementation sets the interval of update to one hour, but can be changed.

  • Add the script as a trigger with the recurrence time of your choosing.

Custom Motd

  1. Install update-motd
  2. Create bash script file in
    /etc/update-motd.d
  3. add
     exec python {path to project}/stack-droid-notifier/Desktop-Script/stack-droid-notifier.py

Customize Scripts

In order to use this script there are a couple of things that must be done:

 #Personalization Items
 site = 'stackoverflow'
 usrid = '68172'
 timeframe = (60*60)
 #End Personalization Items
 
  1. Replace
    usrid
    with your own numeric user id found in url of your profile
  2. Change variable
    timeframe
    to the desired refresh time in seconds
  3. Default site is "stackoverflow" but can be changed by changing the variable
site

Powered by Google Project Hosting