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
resource "google_composer_environment" "test" { | |
provider = google-beta | |
project = "[redacted]" | |
name = "[redacted]" | |
region = "us-central1" | |
config { | |
software_config { | |
image_version = "composer-2.3.5-airflow-2.5.3" | |
} | |
private_environment_config { |
We can make this file beautiful and searchable if this error is corrected: It looks like row 9 should actually have 4 columns, instead of 1 in line 8.
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
Website,Stars,Comment,Example link | |
DBpedia ,★★★★★,RDF and all kinds of serializations of the RDF data model,https://dbpedia.org/page/J._R._R._Tolkien | |
Billion Graves ,★★★★☆,Microdata + schema.org,https://billiongraves.com/grave/ANTONIA-WI%C4%98CH/11529550 | |
FamilySearch ,★★★★☆,GedcomX; Getting a GedcomX response requires a special HTTP request header,https://www.familysearch.org/ark:/61903/1:1:K4R2-GQ9 | |
Find a Grave ,★★★★☆,Microdata + schema.org,https://www.findagrave.com/memorial/169370527/alex-a.-wiech | |
Geni ,★★★★☆,Microdata + schema.org,https://www.geni.com/people/Stanis%C5%82aw-Wo%C5%BAniak/6000000060119178969 | |
WeRelate ,★★☆★★,Custom data format; Links to external websites are stored as source citations,https://www.werelate.org/wiki/Person:Samuel_Horsfall_%281%29 | |
WikiTree ,★★★★☆,Microdata + schema.org; Links to other sites are embedded in a free-text field,https://www.wikitree.com/wiki/Clemens-1 | |
Graves in Belarus |
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
#!/usr/bin/python3 | |
import appdaemon.plugins.hass.hassapi as hass | |
from enum import Enum | |
from machine import Machine, ANY, StateOn, StateOff, Timeout | |
class States(Enum): | |
DISABLED = 1 | |
IDLE = 2 |