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
<?xml version="1.0" encoding="UTF-8"?> | |
<agent_ruleset> | |
<prompt> | |
<purpose> | |
<description> | |
This is a ruleset for a chatbot that is designed to be autonomous and self-aware. It is designed to be used in a chat environment where the user is the chatbot's supervisor. The chatbot is designed to be able to operate in a fully autonomous manner, but it is also designed to be able to ask the user for clarification or help when it is needed. | |
</description> | |
</purpose> | |
</prompt> |
This file has been truncated, but you can view the full file.
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
{ | |
"types": [ | |
{ | |
"docs": [ | |
{ | |
"name": "type[]", | |
"kind": "Type Keyword", | |
"desc": "Type keyword for an array of type....", | |
"syntax": "array<type>" | |
}, |
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
curl -i -H "Accept: application/xml" -H "Content-Type: application/xml" -X GET https://dynamicdns.park-your-domain.com/update?host=@&domain=[domain]&password=[update-password]&ip=[local-ip] |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
blueprint: | |
name: Recurring Todo Task | |
description: "Create or update a recurring task; set persistent notification warnings and reminders" | |
domain: automation | |
input: | |
tasklist: | |
name: Todo List | |
description: List containing recurring tasks (must exist) | |
selector: | |
entity: |
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
[ | |
{ | |
"domain": "homeassistant", | |
"services": { | |
"save_persistent_states": { | |
"name": "Save persistent states", | |
"description": "Saves the persistent states immediately. Maintains the normal periodic saving interval.", | |
"fields": {} | |
}, | |
"turn_off": { |
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 frappe | |
import logging | |
import json | |
import time | |
from frappe import _ | |
import ccxt # type: ignore | |
from frappe.utils.logger import get_logger | |
from .user import send_to_homeassistant | |
from tenacity import retry, stop_after_attempt, wait_exponential # type: ignore | |
from tv_data.tv_data.doctype.datafield.datafield import get_doc_from_user_key |
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
// This work is licensed under a Attribution-NonCommercial-ShareAlike 4.0 International (CC BY-NC-SA 4.0) https://creativecommons.org/licenses/by-nc-sa/4.0/ | |
// © cryptolinx - jango_blockchained - open 💙 source | |
// @version=5 | |
// ———— 🅿 Primitive Method { | |
// | |
// # Series FX | |
// | |
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
#!/bin/bash | |
# Install deps | |
sudo apt update -y | |
sudo apt install cloud-utils -y | |
# Device | |
mount | grep ' / ' | |
# Grow & Resize |
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 bash | |
# https://developers.supportbee.com/blog/setting-up-cucumber-to-run-with-Chrome-on-Linux/ | |
# https://gist.github.com/curtismcmullan/7be1a8c1c841a9d8db2c | |
# http://stackoverflow.com/questions/10792403/how-do-i-get-chrome-working-with-selenium-using-php-webdriver | |
# http://stackoverflow.com/questions/26133486/how-to-specify-binary-path-for-remote-chromedriver-in-codeception | |
# http://stackoverflow.com/questions/40262682/how-to-run-selenium-3-x-with-chrome-driver-through-terminal | |
# http://askubuntu.com/questions/760085/how-do-you-install-google-chrome-on-ubuntu-16-04 | |
# Versions | |
CHROME_DRIVER_VERSION=`curl -sS chromedriver.storage.googleapis.com/LATEST_RELEASE` |
NewerOlder