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
| substitutions: | |
| name: esphome-web-79d64c | |
| friendly_name: esparagus-louder-livingroom | |
| task_stack_in_psram: "false" # important to disable this for non-S3 model | |
| external_components: | |
| - source: github://pr#12284 | |
| components: [generic_image, mdns, sendspin] | |
| - source: github://pr#12254 | |
| components: [resampler] |
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
| import boto3 | |
| # Some reading on the topic of instantiating boto3 clients vs resources | |
| # https://stackoverflow.com/q/42809096/473702 | |
| # Use default session to explore API | |
| aws = boto3.session.Session() | |
| # Get a list of available services that can be loaded as low-level clients via Session.client(). | |
| available_clients = aws.get_available_services() | |
| # Get a list of available services that can be loaded as resource clients via Session.resource(). |
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/env groovy | |
| import groovy.json.JsonSlurper | |
| /** | |
| * Groovy script for Jenkins dynamic parameter plugin | |
| * (https://wiki.jenkins-ci.org/display/JENKINS/Dynamic+Parameter+Plug-in) | |
| * | |
| * Pulls the top 10 newest available releases for an Octopus Deploy project and | |
| * highlights which one most recently deployed. |