35
Google Apps Script Intro, Demo, Automate your school

2013 nl summit google apps script automate your school

Embed Size (px)

DESCRIPTION

Google Apps Script is a great example to do more with Google then only mail and calendaring. Google Apps is open and can be adjusted and extended by your needs,

Citation preview

Page 1: 2013 nl summit google apps script   automate your school

Google Apps ScriptIntro, Demo,

Automate your school

Page 3: 2013 nl summit google apps script   automate your school

Cloud Services of Google Apps

TeamCertified Deployment Specialists, Apps Script developers (certified Java), highly

experienced in Lotus Notes, pragmatic, innovative

CustomersGoogle Apps customers who

want to use Google Apps beyond mail & calendaring

G-workplace portfolio & services

Tools and Apps - Social collaboration- EML viewer- Drive in Control

Development- Apps Script - OrangeScape & Kiss Flow - Support

IBM Notesmigrations

- Notes2Apps- whitepaper- services

Page 4: 2013 nl summit google apps script   automate your school

2012© G-Workplace, [email protected]

Our Customers and Partners worldwide

G-Workplac Confidential

Randstad(mail migration)

B-bridge (mail and application migration))

Ahold, Albert Heijn, Etos,(deployment & application migration)

Geberit(migration planning)

Brady(application migration)

TSSA (application migration)

Approximately 20 Local NL organizations (mail & application migration)

OrangeScape

CIMtrek

SheepDog IncStoneburn

AweSync United Biscuits(application migration)

DitoWeb

CirrusceoGoogle

Ahold USA( application migration)

Adapti

CustomerGoogle partnerTechnology partner

Page 5: 2013 nl summit google apps script   automate your school

De Haagse Hogeschool (HHS)

Google-wijsInzet van Google technologie voor Haagse Hogeschool

●‘De Haagse’ biedt haar studenten een internationaal georiënteerde, kwalitatief hoogwaardige leeromgeving die prikkelt, uitdaagt. Waar studenten zich kunnen ontwikkelen tot denkende doeners. Tot wereldburgers, die na hun studie in binnen- én buitenland aan de slag kunnen.●HHS huisvest 19.000 studenten en biedt o.a. 54 voltijd en 22 deeltijd opleidingen

●HHS wil studenten ICT & Media een minor aanbieden om inzicht te krijgen in processen én technologie om kennisdeling en samenwerking te realiseren.●Docenten moeten up-to-date blijven met nieuwe technologische ontwikkelingen in het bedrijfsleven.

Uitdagingen

●Een minor “Werken 2.0” waarin studenten en docenten leren hoe samenwerking en kennisdeling te bevorderen gebruikmakend van nieuwe technologie.●Google levert een direct beschikbaar, gratis platform aan studenten en docenten voor veilige communicatie en samenwerking (collaboration).

Oplossing

●Studenten leren het inzetten van alledaagse beschikbare webtechnologie voor bedrijfsdoelstellingen.●Docenten ervaren het gebruik van nieuwe web mogelijkheden binnen het onderwijs.●Het eindresultaat van verschillende studenten werkgroepen wordt als boek beschikbaar gesteld voor andere instellingen.

Resultaat

Page 6: 2013 nl summit google apps script   automate your school
Page 7: 2013 nl summit google apps script   automate your school

Topics

Introduction

● What is Google Apps Script

● Other development options in Google's world: KissFlow, OS, GAE

Usage; development examples

● Gmail statistics

● Google Apps administration

● Custom Google Maps

Various examples

● People Performance Appraisals

● Document Management

● Website

Page 8: 2013 nl summit google apps script   automate your school

Overview

Google AppsScript Google Apps Engine

Google Apps Marketplace

Page 9: 2013 nl summit google apps script   automate your school

Google Apps Script

Page 10: 2013 nl summit google apps script   automate your school

What is Google Apps Script

● Google Apps Script is a cloud based scripting language. ● It is based on JavaScript● It gets executed in the Google Cloud (=server based javascript). ● Google Apps Script essentially provides easy ways to automate tasks

across Google products and third party services

Page 11: 2013 nl summit google apps script   automate your school

Why use Google Apps Script

● Easy to learn● Cloud based development client and debugger● Create simple tools for an organization● Perform simple system administration tasks.● Build document centric, form centric applications

Other reasons

● easy to start, deploy or run● free development tool, free code hosting● build those missing features in Google Apps your self● tons of script freely available from the public domain, reuse, adapt,

extend

Page 12: 2013 nl summit google apps script   automate your school

Application Engine

● Architecture >>

● Phyton,Java,.Net

● custom dev.

● more complex

AppEngine

ExternalServices

Application Sandbox

Internal Services

Mem CacheBig Table

ApplicationURL Fetcher

Mail

XMPPLo

ggin

g

Blo

bSto

re

Dat

aSto

re

Imag

e

Task

s

Mem

Cac

he

Aut

hent

icat

ion

GoogleInfrastructure

Google Apps Engine: Intro

Page 13: 2013 nl summit google apps script   automate your school

Google Apps Marketplace

Page 14: 2013 nl summit google apps script   automate your school

Apps Script: powerful but be careful

Page 15: 2013 nl summit google apps script   automate your school

Other options: workflow by KissFlow

● to create workflows

● familiar Gmail type

interface

● works with Google Docs

out-of-the-box

● easy 5 step wizard

Read more...

Page 16: 2013 nl summit google apps script   automate your school

Other options: OrangeScape

Page 17: 2013 nl summit google apps script   automate your school

Topics

Introduction

● What is Google Apps Script

● Other development options in Google's world: KissFlow, OS, GAE

Usage; development examples

● Gmail statistics

● Google Apps administration

● Custom Google Maps

Various examples

● People Performance Appraisals

● Document Management

● Website

Page 18: 2013 nl summit google apps script   automate your school

1. Runs in Spreadsheets2. Runs in Sites3. Standalone web App - UIapp4. Standalone web App - HTML 5. Time trigger scripts6. Form trigger scripts

Google Apps Script

Page 19: 2013 nl summit google apps script   automate your school

Google Apps Script

Page 20: 2013 nl summit google apps script   automate your school

Google Apps Script - demo

function myFunction() {

// this script will create a Google Document

var doc = DocumentApp.create('my first automated document')

// we have now a Google Doc, add text

doc.appendParagraph('This is my first automated document')

//whow, let's save this document as a prove point that I created this document

doc.saveAndClose()

}

Page 21: 2013 nl summit google apps script   automate your school
Page 22: 2013 nl summit google apps script   automate your school
Page 23: 2013 nl summit google apps script   automate your school

Development Examples

Page 24: 2013 nl summit google apps script   automate your school

Usage of Google Apps Script

Google users

● Get statistics from your mail box

Google Administrator

● Automate your user administration

Teacher

● Custom Google Maps

Page 25: 2013 nl summit google apps script   automate your school

Gmail statistics

See: http://www.gmailmeter.com/

Tutorial: https://developers.google.com/apps-script/articles/gmail-stats

Demo: https://docs.google.com/a/g-workplace.com/spreadsheet/ccc?key=0AjC7kIUpYrcQdEZ4TFVkMFQtZExHSE9xbS1tbXNpbVE#gid=0

Usage:

● for interest● business process report

Page 26: 2013 nl summit google apps script   automate your school

Google Administration Automated

1. You are responsible for Google Administration.2. You want to collect user, group, or calendar resources

request in spreadsheet.

3. The spreadsheet is pushing it to Google Control panel.

https://docs.google.com/a/g-workplace.com/spreadsheet/ccc?key=0AopBMlolbRLmdEZ5czNIcHlKVVJYOWVTeFN1azNZemc#gid=11

Page 27: 2013 nl summit google apps script   automate your school

Google Maps & Spreadsheets

Tutorial: http://www.google.com/earth/outreach/tutorials/spreadsheet3.html

● Put geo info in a Google Spreadsheet● View info on Google Maps

Page 28: 2013 nl summit google apps script   automate your school

More advanced examples

Page 29: 2013 nl summit google apps script   automate your school

More Advanced Examples

1. Performance Appraisals

2. Document Management (ISO manuals, etc.)

3. Social collaboration intranets

Page 30: 2013 nl summit google apps script   automate your school

Rebuild in mind

Page 31: 2013 nl summit google apps script   automate your school

Easy to learn

Automate tasks

Free to use

No development client

performance

HTML / javascript limitations

performance

quota's

Page 32: 2013 nl summit google apps script   automate your school

Google Apps Script training

Page 33: 2013 nl summit google apps script   automate your school
Page 34: 2013 nl summit google apps script   automate your school

Google Apps Solution provider

Empowering your Google Workplace

Page 35: 2013 nl summit google apps script   automate your school

Contact info

Google Solutionswww.G-workplace.com

Google werkplekwww.WerkplekindeWolken.nl

Google trainingwww.Google-Cursus.com

Chromebookwww.Chromebook-voor-Bedrijven.nlwww.Chromebook-voor-Scholen.nl

Richard van [email protected]