- httpc://www.andreclaassen.de
- @IT_Digital_AC
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
/ connect the day number with a main game. 0 = sunday | |
var mainGames = { | |
0: "XCOM 2", | |
1: "XCOM 2", | |
3: "The Witcher 3", | |
5: "XCOM 2" | |
} | |
var randomGames = [ | |
"Otherland", "The Secret World", "Otherland", "Elite Dangerous", | |
"Star Drive II", "Wildstar", "City Skylines", "Anno 2270", |
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
{ | |
"expected_update_period_in_days": "10", | |
"calendar_id": "{% credential google_email %}", | |
"google": { | |
"key_file": "{% credential google_api_keyfile %}", | |
"key_secret": "notasecret", | |
"service_account_email": "{% credential google_api_service_account %}" | |
} | |
} |
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 ISODateString(d){ | |
function pad(n){return n<10 ? '0'+n : n} | |
return d.getUTCFullYear()+'-' | |
+ pad(d.getUTCMonth()+1)+'-' | |
+ pad(d.getUTCDate())+'T' | |
+ pad(d.getUTCHours())+':' | |
+ pad(d.getUTCMinutes())+':' | |
+ pad(d.getUTCSeconds())+'Z'} | |
var monthArray = [ "Januar", "Februar", "März", "April" "Mai", "Juni", "Juli", "August", "September", "Oktober", "November", "Dezember" ] |
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
{ | |
"expected_update_period_in_days": "1", | |
"host": "imap.gmail.com", | |
"ssl": true, | |
"username": "{% credential google_username %}", | |
"password": "{% credential google_password %}", | |
"folders": [ | |
"INBOX" | |
], | |
"conditions": { |