Skip to content

Instantly share code, notes, and snippets.

View Shegox's full-sized avatar

Tobias Shegox

View GitHub Profile
@Shegox
Shegox / metadata
Created July 28, 2023 13:26
cla-test
{
"name": {
"title": "Full Name",
"type": "string",
"githubKey": "name"
},
"email": {
"title": "E-Mail",
"type": "string",
"githubKey": "email",
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);
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();