Skip to content

Guide for setting up conference and presentation reminders.

Notifications You must be signed in to change notification settings

clandinq/remindr

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

66 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

remindR

Overview

remindR is a system for automating academic project reminders using R on Mac and Windows. Users can define what kind of reminders they want to obtain, which Gmail address to send the reminders from, and which addresses the reminders will be sent to. This system can help project managers, researchers, research assistants and students keep track of deadlines related to academic projects, reducing the burden of tracking these events manually and the eliminating the possibility of making manual mistakes. remindR uses packages cronR (Mac OS X) and taskscheduleR (Windows) to schedule recurring tasks.

This system can send out four types of reminders:

  1. Future conference reminders. These are reminders to check if future conferences have announced details that would allow to track them (deadlines, submission links, and descriptions).
  2. Conference deadlines. Reminders to submit papers or abstracts to conferences.
  3. Upcoming presentations. Reminders for upcoming presentations, including slide submission deadlines.
  4. Grant deadlines. This can be useful both when applying for grants and when submitting grant deliverables.

The original version for Mac OS X was developed by César Landín, and the Windows version developed joint with Vicente Corral.

Set up

There are three steps for setting up the remindR system:

  1. Clone the repo to your project folder
  2. Fill out conference, grant and presentation information
  3. Set up Gmail API and OAuth consent screen
  4. Define reminder parameters

1. Clone the repo

First clone the repo locally into the desired project folder. This system works best with the folder structure defined by Sean Higgins in his R guide. The recommendation is to add the system to the Dropbox folder so that all project members (including those not using GitHub) can see programmed events in the reminder datasets. For example, below is a brief example of the terminal commands to clone a project titled "Health RCT".

cd Work/health_rct
git clone https://github.com/clandinq/remindr reminders
cd reminders
rm -r pictures/

This will download 2 scripts, 5 .xlsx files, this readme and a .Rproj file.

2. Fill out Excel files with conference, grant and presentation information

You need to modify two sets of files to set up the reminder system. First, one to four .xlsx files containing details about conferences, grants and presentations, that will be used to send the reminders. All files are included in the folder data. The files and variables are:

  1. rem_future_conferences.xlsx: Future conference reminders
    1. deadline: Estimated date the conference will take place in yyyy_mm_dd text format. This format is used to prevent Excel from automatically changing the date format.
    2. description: Description of the conference.
    3. website: Conference website.
    4. complete: This variable defines whether reminders need to be sent or not. If all scheduled reminders have been sent, it is marked as complete (complete = 1). The default value is complete = 0. Set complete = 1 in the Excel document if it is not necessary to send this set of reminders anymore (for example, when completing a submission before the final reminder).
  2. rem_conference_deadlines.xlsx: Conference deadlines
    1. deadline: Conference abstract or paper submission deadline in yyyy_mm_dd text format. If the deadline is before midnight local time (where the reminders are running), set the deadline as one day before.
    2. notification: Date notification on admission sent in yyyy_mm_dd text format. Can be left blank.
    3. description: Description of the conference.
    4. questions: Line indicating who to ask conference questions. Can be left blank.
    5. submission: Link to submit abstract or paper to.
    6. dead_type: abstract or paper.
    7. website: Conference website.
    8. complete: This variable defines whether reminders need to be sent or not. If all scheduled reminders have been sent, it is marked as complete (complete = 1). The default value is complete = 0. Set complete = 1 in the Excel document if it is not necessary to send this set of reminders anymore (for example, when completing a submission before the final reminder).
  3. rem_upcoming_presentations.xlsx: Reminders for upcoming presentations, including slide submission deadlines
    1. deadline: Upcoming presentation date or slide submission deadline in yyyy_mm_dd text format.
    2. dead_type: conference presentation or slide submission.
    3. description: Description of the conference.
    4. submission: Link to submit slides to. Can be left blank if dead_type="conference presentation".
    5. website: Conference website.
    6. complete: This variable defines whether reminders need to be sent or not. If all scheduled reminders have been sent, it is marked as complete (complete = 1). The default value is complete = 0. Set complete = 1 in the Excel document if it is not necessary to send this set of reminders anymore (for example, when completing a submission before the final reminder).
  4. rem_grant_deadlines.xlsx: Grant deadlines
    1. deadline: Grant deadline in yyyy_mm_dd text format.
    2. description: Description of the grant. Specify the deadline’s time and date in the description. For example: Financial Economics grant (due on 2022-12-03 18:00 CST).
    3. dead_type: deliverable, proposal or other (cannot be blank).
    4. details: Details about what the submission requires.
    5. questions: Line indicating who to ask conference questions. Can be left blank.
    6. submission: Link to submit grant deliverable/proposal/etc.
    7. complete: This variable defines whether reminders need to be sent or not. If all scheduled reminders have been sent, it is marked as complete (complete = 1). The default value is complete = 0. Set complete = 1 in the Excel document if it is not necessary to send this set of reminders anymore (for example, when completing a submission before the final reminder).

The four Excel files downloaded contain data examples, which must be overwritten before proceeding with the setup. You only need to modify the files for which you will send reminders. For example, if you will not be sending any grant deadline reminders, you can leave the template blank and simply select in the next step that you will not be sending these reminders out.

3. Set up Gmail API and OAuth consent screen

  1. Set up project and enable the Gmail API

    1. Open and log into the Google Cloud Console.

    2. Create a Google Cloud project and name the project "remindR".

    3. Select your project on the top left dropdown menu.

    4. Click on APIs & Services > Enabled APIs services.

    5. Click on + Enable APIs and Services.

    6. Look up and select Gmail API.

    7. Enable the Gmail API.

  2. Configure OAuth consent screen and obtain credentials

    1. On the top-left menu, click Menu > APIs & Services > Credentials > + Create Credentials.

    2. Configure your consent screen

      1. Select user type External.

      2. Name the app "remindR" and select your email as the support email address.

      3. Continue until the Summary step and click on Back to Dashboard.

      4. Click on Publish App.

    3. Select again Menu > APIs & Services > Credentials > + Create Credentials and select OAuth client ID.

    4. Select Desktop App and name the app as remindR.

    5. Download client secret JSON file and store in a local folder (write down the name of the file and the location).

  3. Allow access to your account from R

    1. Run until line 32 of script 2_create_send_reminders.R. A window will open asking for your Gmail login information. Select your Google account.

    2. Allow access to your account.

    3. You will receive a confirmation message on R once authentication is complete.

4. Define reminder parameters

Second, general project and specific reminder parameters need to be set in script 1_define_reminder_parameters.R, which saves these parameters in rem_parameters.xlsx and sets up a repeating task with cronR. This script can be found in the folder scripts. If using Windows, you must open R with administrator privileges (right click on the R icon) in order for the script to run properly.

  1. General project parameters. These apply for all reminders in a project.

    • proj_name: define a short project name to be used in email headers.
    • email_from: a Gmail address to send emails from.
    • name_from: name to use for email signature.
    • secret_path: absolute path to Gmail client secret generated in previous section.
  2. Specific reminder parameters. These are individual to each reminder.

    • _activate: boolean to define whether reminder will be active.
    • _emails: comma separated emails to send reminders to (e.g. "john.smith@gmail.com, jane.smith@hotmail.com").
    • _freq: comma separated number of days before deadline to send reminders (e.g. "1, 2, 5, 10").

Once the data for the reminders has been filled out in the Excel files, and the parameters set in the first script, you can run 1_define_reminder_parameters.R to conclude the setup of the reminder system.

Regular usage

Once the initial set up has been completed, you can add conferences, grants and presentations by modifying the relevant Excel files.

To delete reminders:

  • Mac OS X. Run the following commands in R:
    pacman::p_load(cronR)
    cron_ls() # This lists out all the scheduled tasks
    cron_rm("name of task") # Insert the name of the reminder task you want to remove
  • Windows. Run the following commands in R:
    pacman::p_load(taskscheduleR)
    taskscheduler_ls() # This lists out all the scheduled tasks
    taskscheduler_delete("name of task") # Insert the name of the reminder task you want to remove

On Windows, it is necessary to delete a reminder before scheduling another reminder with the same name.

About

Guide for setting up conference and presentation reminders.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published