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
| { | |
| "name": { | |
| "title": "Full Name", | |
| "type": "string", | |
| "githubKey": "name" | |
| }, | |
| "email": { | |
| "title": "E-Mail", | |
| "type": "string", | |
| "githubKey": "email", |
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 getADM(systemName) { | |
| var options = | |
| { | |
| "method" : "GET", | |
| "followRedirects" : true, | |
| "muteHttpExceptions": true | |
| }; | |
| var url = "https://public-crest.eveonline.com/sovereignty/structures/"; | |
| var response = UrlFetchApp.fetch(url,options).getContentText() | |
| response = JSON.parse(response); |
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 calcEffec(input,numbers) { | |
| for (var i = 0; i<input.length; i++) | |
| { | |
| for (var j = 1; j<numbers[i]; j++) | |
| { | |
| input.push(input[i]); | |
| } | |
| } | |
| input.sort(); |