Here's the canonical TOML example from the TOML README, and a YAML version of the same. Which looks nicer?
|
#!/bin/bash | |
SET_USERS="usernameone:password:/path/to/web/folder usernametwo:password:/path/to/second/folder" | |
IFS=' ' read -a USERS <<< "${SET_USERS}" | |
for SET_USER in ${USERS[@]}; do | |
IFS=':' read -a USER <<< "${SET_USER}" | |
NAME=${USER[0]}; | |
PASS=${USER[1]}; | |
DIR=${USER[2]}; | |
(echo $PASS; echo $PASS) | pure-pw useradd $NAME -u www-data -g www-data -d $DIR |
#Custom configuration | |
SMTP_PORT == 25:587 | |
LOCAL_INTERFACES == <; 0.0.0.0.25 ; 0.0.0.0.587 ; 0.0.0.0.465 ; [::0]:25 ; [::0]:587 ; [::0]:465 | |
smtp_accept_max = 50 | |
spamd_address = 127.0.0.1 783 | |
ACL_SMTP_DATA == acl_custom_check_data | |
USE = "exiscan" | |
#Custom ACLs |
# Airly | |
- platform: rest | |
scan_interval: 120 | |
name: Airly | |
resource: !secret airly_resource | |
value_template: "{{ value_json['current']['values'][1]['value'] }} {{ value_json['current']['values'][2]['value'] }} {{ value_json['current']['values'][3]['value'] }} {{ value_json['current']['values'][4]['value'] }} {{ value_json['current']['values'][5]['value'] }} {{ value_json['current']['indexes'][0]['level'] }}" | |
headers: | |
apikey: !secret airly_apikey | |
- platform: template |
Here's the canonical TOML example from the TOML README, and a YAML version of the same. Which looks nicer?
|
import { LitElement, html } from 'https://unpkg.com/@polymer/[email protected]/lit-element.js?module'; | |
const styles = html` | |
<style> | |
:host { | |
display: flex; | |
flex: 1; | |
flex-direction: column; | |
} | |
ha-card { |
# GPIO0 | |
# GPIO1 | |
# GPIO2 | |
# GPIO3 Button middle | |
# GPIO4 Button left | |
# GPIO5 Button right | |
# GPIO12 Relay/LED red left | |
# GPIO13 LED green (all) | |
# GPIO14 Relay/LED red middle | |
# GPIO15 Relay/LED red Right |
blueprint: | |
name: Set thermostat temperature at specific time | |
description: Sets a climate entities to a specifc temperature at a set time everyday. If climate entity is off, it is normally not accepting temperature updated. This blueprints checks if climate entity is off and the temperature update will be set when thermostat is going back in heating mode. | |
domain: automation | |
source_url: https://gist.github.com/bbbenji/059c16e9aa4bcec21f77d52f0dbac320 | |
input: | |
persons: | |
name: Persons | |
description: Select the persons to be home. | |
default: {entity_id: []} |
function checkout_datalayer($order_id) { | |
// Get the order | |
$order = wc_get_order($order_id); | |
// Get products from order | |
$products = $order->get_items(); | |
?> | |
<script > | |
zaraz.ecommerce('Order Completed', { | |
'order_id': '<?php echo $order->get_order_number(); ?>', | |
'affiliation': 'Website', |