This file contains 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
/* | |
* Отображение возраста контактов в Гугл календаре в день их рождения | |
* Displaying birthday and age in Google's Calendar | |
* (c) 2022 Mikhail Shardin https://shardin.name/ | |
* | |
* Инструкции как пользоваться: https://habr.com/ru/post/683188/ | |
* Актуальная версия: https://github.com/empenoso/Google-Apps-Script/ | |
* | |
* Этот скрипт модификация моей версии 2019 года: https://habr.com/ru/post/481858/ | |
* |
This file contains 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
/* | |
* Для всех молодых отцов - сколько месяцев и годов ребенку отроду, ежемесячная напоминалка в Гугл календаре | |
* A child’s age in months and years, with a monthly reminder | |
* | |
* (c) 2022.08 Mikhail Shardin https://shardin.name/ | |
* | |
* Инструкции как пользоваться: https://habr.com/ru/post/683188/ | |
* Актуальная версия: https://github.com/empenoso/Google-Apps-Script/ | |
* | |
* Этот скрипт модификация моей версии января 2022 года: https://habr.com/ru/post/645935/ |
This file contains 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
/* | |
* Скрипт, который ежемесячно создаёт событие в гугл календаре, в котором точно указан возраст ребенка, а также значимые события из жизни родителей | |
* (c) 2022.01. Mikhail Shardin https://shardin.name/ | |
* | |
* Дополнительные инструкции: https://habr.com/ru/post/645935/ | |
* Исходное размещение: https://github.com/empenoso/Google-Apps-Script/ | |
*/ | |
function AddCalendarCurrentAge() { //вычисляем значимые даты и добавляем всё это в выбраный календарь | |
eval(UrlFetchApp.fetch('https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.29.1/moment-with-locales.min.js').getContentText()); |