- Create a directory for repositories
- Create
repos.txt
with list of repositories links - Locate the
git_helper.py
in the directory
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
variable "yc_token" { | |
type = string | |
nullable = false | |
} | |
variable "service_account_id" { | |
type = string | |
nullable = false | |
} |
Скрипт генерирует список источников в виде отдельного списка, который вставляется в конце документа. Работает с помощью комментариев Google Docs.
- Открыть документ в Google Docs
- В верхнем меню нажать
Инструменты / Редактор скриптов
- Вставить содержимое файла
app_script.gs
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
/** | |
* {{&summary}} | |
* @method | |
* @name {{&className}}#{{&methodName}} | |
{{#parameters}} | |
{{^isSingleton}} * @param {{=<% %>=}}{<%&type%>}<%={{ }}=%> {{&camelCaseName}} - {{&description}}{{/isSingleton}} | |
{{/parameters}} | |
*/ | |
{{&className}}.prototype.{{&methodName}} = function({{#parameters.length}}{{#parameters}} {{&camelCaseName}}{{^isLast}}, {{/isLast}}{{/parameters}}{{/parameters.length}}){ | |
{{#isES6}}let{{/isES6}}{{^isES6}}var{{/isES6}} parameters = {}; |
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
Show hidden characters
{ | |
"bootstrapped": true, | |
"in_process_packages": | |
[ | |
], | |
"installed_packages": | |
[ | |
"All Autocomplete", | |
"apiDoc Autocompletion", | |
"Babel", |
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
<?php | |
// Variables used in this script: | |
// $summary - text title of the event | |
// $datestart - the starting date (in seconds since unix epoch) | |
// $dateend - the ending date (in seconds since unix epoch) | |
// $address - the event's address | |
// $uri - the URL of the event (add http://) | |
// $description - text description of the event | |
// $filename - the name of this file for saving (e.g. my-event-name.ics) | |
// |
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
server { | |
root /example.com/www; | |
index index.php index.html index.htm; | |
server_name example.com; | |
charset utf-8; | |
location / { | |
try_files $uri $uri/ /index.php?$args; |