Giter VIP home page Giter VIP logo

meeting-notes-for-google-calendar's Introduction

Synopsis

My company uses the Google Productivity Suite. There was not an "approved" method to automatically generate meeting notes documents. I had previously worked in an environment that had Microsoft products and had gotten used to the Outlook OneNote integration that did this automatically. I bring you "Meeting Notes for Google Calendar. This Google Apps Script:

  1. runs automatically hourly
  2. looks at the next two hours on your calendar
  3. creates a google doc within a yyyy-mm-dd folder within a meeting notes folder on google drive
  4. the doc contains
  • Meeting subject
  • Location
  • Date
  • Time
  • Description
  • Attendees
  • Attendees status (accept, invited, declined)

Now when you are in a meeting you simply open your meeting notes folders, and take down the pertinent notes --- avoiding the tedium of writing down all of the standard meeting details.

Code Example


 for (var i=0;i<events.length;i++) {
    var title = events[i].getTitle();
    var description = events[i].getDescription();
    var eventstart = events[i].getStartTime();
    var eventend = events[i].getEndTime();
    var location = events[i].getLocation();
    var owner = events[i].getCreators();
    var guestlist = events[i].getGuestList();

Motivation

I wrote this script so that others would not have to manually create each and every meeting notes document.

Installation Instructions

To use the script, simply:

  1. Copy the text out of the file named, "meeting_notes.gs"
  2. Open your Google Drive
  3. Create a new Google Apps Script
  1. Name the Script anything you want
  2. Save ths Script
  3. Click the play button in the docs toolbar to test the script
  4. To schedule this script to run every hour, click on the clock icon in the docs toolbar
  5. Click on "No triggers set up. Click here to add one now."
  6. Click the Save button
  7. Instructions complete, happy meetings!

please note, make sure you do not already have a folder named meeting notes in your drive, if you do, this script will place all of your notes inside that folder. If you do already have a folder, change the name of the folder "meeting notes" in the script to something unique.

Tests

A couple of quick notes on the way this script works:

  1. The script will only create a meeting notes folder the first time you run the script
  2. The script will only create one folder per day to house all meeting notes for that day in that folder
  3. The script will only create a google doc if a meeting exists within the next two hours

License

MIT License

Copyright (c) 2016 Jeffrey B. Daube

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

meeting-notes-for-google-calendar's People

Contributors

daubejb avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.