This file contains 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: Zooz ZEN34 Blueprint for generic entities. Does not support brightness. | |
description: Control a device with single-tap and double-tap | |
# reference: https://gist.github.com/flyingsubs/35246fa2935f105f133385c6cf41f6fa | |
# reference: https://gist.github.com/computergreek/847ad5194168cf3f26a0c908acc9431c | |
# reference: https://youtu.be/L-bcabdaMxE | |
# reference: https://chat.openai.com/share/299064bf-56bf-4bdb-a12b-3b474d8fec65 | |
domain: automation | |
author: cfg |
This file contains 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 python | |
import argparse | |
import requests | |
import logging | |
LOG = logging.getLogger("slack_leaver") | |
class JSONRest(object): | |
def __init__(self, base_url): |
This file contains 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
// June 11, 2012 | |
// https://twitter.com/b3ll/status/212169466665111552 | |
-(BOOL)isBlocked | |
{ | |
return false; | |
} | |
-(int)epicWWDCLineHacks | |
{ |
This file contains 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 | |
# Copyright (c) 2011 Float Mobile Learning | |
# http://www.floatlearning.com/ | |
# Extension Copyright (c) 2013 Weptun Gmbh | |
# http://www.weptun.de | |
# | |
# Extended by Ronan O Ciosoig January 2012 | |
# | |
# Extended by Patrick Blitz, April 2013 |