There once was a suitor from Jot. He liked this young lady a lot. She knew he was wealthy and perfectly healthy, but she just didn’t think he was hot.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"favoriteMovies": | |
{ | |
"movie": { | |
"title": "Across the Universe", | |
"rating": 0.80 | |
}, | |
"movie": { | |
"title": "Adjustment Bureau, The", | |
"rating": 0.80 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### Keybase proof | |
I hereby claim: | |
* I am kevincoleman on github. | |
* I am kevincoleman (https://keybase.io/kevincoleman) on keybase. | |
* I have a public key ASDmdD5UppS0YXQiWfsd2MtoXD8JHdLDHwwUk8tfVKs06go | |
To claim this, I am signing this object: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function sync() { | |
var id="XXXXXXXX"; // CHANGE - id of the secondary calendar to pull events from | |
var secondaryCal=CalendarApp.getCalendarById(id); | |
var today=new Date(); | |
var enddate=new Date(); | |
enddate.setDate(today.getDate()+30); // how many days in advance to monitor and block off time | |
var easement = 30; // set easement, in case you need travel time, or any other buffer | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// way #1 | |
import Storage from "storage"; | |
class MyClass { | |
setCache(data) { | |
return Storage.insert(data); | |
} | |
} | |
OlderNewer