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
<!doctype html> | |
<html> | |
<head> | |
<meta http-equiv="X-UA-Compatible" content="IE=Edge" /> | |
<meta http-equiv="content-type" content="text/html; charset=utf-8" /> | |
<title>Map for Picasa Locations</title> | |
<style> | |
html, | |
body { | |
width: 100%; |
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
// Running 1.0 | Matthias Konig | 02.11.2020 | |
/*------------------------------------------------------------------------------ | |
Hauptprogramm | |
------------------------------------------------------------------------------*/ | |
// Konstanten | |
const maxYearDist = 1500; | |
const maxMonthDist = 200; | |
const color1 = Color.orange(); |
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
// Telekom Datenvolumen 1.1 | Matthias Konig | 27.10.2020 | |
/*------------------------------------------------------------------------------ | |
Main | |
------------------------------------------------------------------------------*/ | |
var url = "https://pass.telekom.de/api/service/generic/v1/status"; | |
var widget = await buildWidget(); | |
widget.backgroundColor = new Color("#E20074"); | |
if (!config.runsInWidget) widget.presentSmall(); | |
Script.setWidget(widget); |
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
// Variables used by Scriptable. | |
// These must be at the very top of the file. Do not edit. | |
// icon-color: deep-blue; icon-glyph: magic; | |
// Tatort Erstausstrahlung 1.3 | Matthias Konig | 11.06.2021 | |
/*---------------------------------------------------------------------------------------------------------------------- | |
Main | |
----------------------------------------------------------------------------------------------------------------------*/ | |
var url = "https://www.daserste.de/unterhaltung/krimi/tatort/tatort-filter-naechste-erstausstrahlung-102.html" | |
var widget = await buildWidget() |