Skip to content

Instantly share code, notes, and snippets.

View oshliaer's full-sized avatar
😼
Cat face with wry smile

Alex Ivanov oshliaer

😼
Cat face with wry smile
View GitHub Profile
@oshliaer
oshliaer / index.html
Last active January 19, 2017 06:07
The simple file demonstrates #google_js_client_api #gapi
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>TEST</title>
<script type="text/javascript" src="./js.js"></script>
<script src="https://apis.google.com/js/client.js?onload=handleClientLoad"></script>
</head>
<body>
@oshliaer
oshliaer / js.js
Last active August 29, 2015 14:21
Set permissions for a file #gapi #snippet
var setAccess = function setAccessF() {
gapi.client.request({
path : '/drive/v2/files/fileID/permissions',
method : 'post',
body : {
'value' : 'anyone',
'type' : 'anyone',
'role' : 'reader'
}
}).then(opt_onFulfilled, opt_onRejected);
@oshliaer
oshliaer / js.js
Created May 19, 2015 18:40
Lists all labels in the user's mailbox #gapi #snippet #gmail
function getListLabels() {
gapi.client.request({
path : '/gmail/v1/users/me/labels',
method : 'get'
}).then(opt_onFulfilled, opt_onRejected);
}
function opt_onRejected(e) {
console.log(e);
}
@oshliaer
oshliaer / js.js
Created May 20, 2015 15:52
Sends the specified message to the recipients in the To, Cc, and Bcc headers. #gapi #snippet #gmail [not /upload]
function sendMail() {
var email = [
'From: John Doe <[email protected]> ',
'To: Mary Smith <[email protected]> ',
'Subject: Saying Hello ',
'Date: Fri, 21 Nov 1997 09:55:06 -0600 ',
'Message-ID: <[email protected]>',
'',
'This is a message just to say hello. So, "Hello".'
].join('\r\n');
@oshliaer
oshliaer / hello-world.html
Last active August 29, 2015 14:21
Binding to properties two-way two-way binding #polymer #0.9 #binding
<link rel="import" href="bower_components/polymer/polymer.html">
<link rel="import" href="bower_components/iron-input/iron-input.html">
<dom-module id="hello-world">
<template>
<h1>Hello <span>{{name}}</span></h1>
<!-- first way -->
<input is="iron-input" bind-value="{{name}}" placeholder="Your name here..."><br/>
<!-- second way -->
<input value="{{name::keyup}}">
@oshliaer
oshliaer / Code.gs
Last active August 29, 2015 14:21
YAMMPreparation prepares the line to send mail via YAMM (Yet Another Mail Merge) #gas
function onOpen() {
var ui = SpreadsheetApp.getUi();
ui.createMenu('YAMM Preparation')
.addItem('Preparation', 'preparation')
.addItem('Set folder of Details', 'setFolderOfDetails')
.addToUi();
}
function preparation(){
try{
@oshliaer
oshliaer / 8db2131bf7357247bc2b.md
Last active October 7, 2018 07:25
Create a Gmail draft via Google Apps Script #gas #gmail
@oshliaer
oshliaer / js.js
Created May 27, 2015 07:19
Lists sessions previously created #gapi #fit
function getFitActivity(pageToken) {
var params = {};
if(pageToken) params.pageToken = pageToken;
params.startTime = '2014-12-18T00:00:00.00Z';
params.endTime = '2014-12-18T17:34:00.00Z';
var request = gapi.client.request({
'path' : '/fitness/v1/users/me/sessions',
'method' : 'GET',
'params' : params
}).then(opt_onFulfilled, opt_onRejected);
@oshliaer
oshliaer / 7bccede9e74bc1f8025e.md
Last active August 29, 2015 14:22
Retrieve a Site for the given Google Site #gas #googlesites