This code is usable only if you are on Home Assistant 0.114 or older
For Home Assistant 0.115 and newer please go to: https://github.com/AdamNaj/ZWaveGraphHA
/* Use libcurl to test multi vs easy performance. | |
Usage: multi_vs_easy | |
This program compares the different methods that can be used to make transfers | |
to the same host. The code was written only for the purpose of comparison of | |
the different methods. | |
g++ -o multi_vs_easy multi_vs_easy.cpp `curl-config --cflags --libs` |
OLDNAME=$(hostname) | |
hostnamectl set-hostname ${1} | |
mkdir -p /etc/pve/nodes/${1} | |
cp -a /etc/pve/nodes/${OLDNAME} /etc/pve/nodes/${1} | |
echo 'A reboot is required, Exit with CTRL-C' | |
read |
This code is usable only if you are on Home Assistant 0.114 or older
For Home Assistant 0.115 and newer please go to: https://github.com/AdamNaj/ZWaveGraphHA
// identifier(s) should be in the following format: | |
// { | |
// resultName: 'name of key that will be used in the returned object', | |
// identifier: 'identifier that will be searched for in the format' | |
// } | |
function breakDown(string, format, identifiers){ | |
for(let i = 0; i < identifiers.length; i++){ | |
const identifier = identifiers[i]; | |
identifier.index = format.indexOf(identifier.identifier); | |
} |
Add kiosk.js
file with the content below to your www
folder in config.
Like any other custom script, use ui-lovelace.yaml
resources section to reference the kiosk.js
file.
Make sure you add kiosk
somewhere in your URL. You can use it in the id of your view or in the query string.
// APIStoreProps are properties that need to be | |
// ignored when running APIStore.makeStore() | |
const APIStoreProps = ['use', 'classes', 'constructor', 'init', 'state'] | |
// getMethods returns methods defined | |
// in a given class' prototype, except init and constructor | |
const getMethods = (cls) => { | |
return Object.getOwnPropertyNames(cls.prototype) | |
.reduce((obj, prop) => { |
function isHubspotUrl(url) { | |
var hubspotUrls = [ | |
'https://local.hubspot.com', | |
'https://app.hubspotqa.com', | |
'https://app.hubspot.com', | |
'https://meetings.hubspot.com' | |
]; | |
return hubspotUrls.indexOf(url) > -1 | |
} |
if (process.version.startsWith("v6")) throw new Error("This Bot requires Node 7v+ because of async/await") | |
const Discord = require("discord.js") | |
const express = require("express") | |
const app = express() | |
const superagent = require("superagent") | |
//Config | |
let INVITE = process.env.INVITE || "", //An Infinite Invite to your discord server. | |
GUILD = process.env.GUILD || "", //The ID of the Guild for this invite ^ |
// identifier(s) should be in the following format: | |
// { | |
// resultName: 'name of key that will be used in the returned object', | |
// identifier: 'identifier that will be searched for in the format' | |
// } | |
function breakDown(string, format, identifiers){ | |
for(let i = 0; i < identifiers.length; i++){ | |
const identifier = identifiers[i]; | |
identifier.index = format.indexOf(identifier.identifier); | |
} |
from telethon import TelegramClient | |
from telethon.errors import SessionPasswordNeededError | |
from telethon.tl.functions.messages import GetHistoryRequest | |
from telethon.tl.functions.channels import DeleteMessagesRequest | |
from telethon.tl.types.channel import Channel | |
import shelve | |
from os import listdir | |
from time import sleep | |
# Просто утилиты |