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
// BROKEN, NOT WORKING AT ALL | |
const fz = require('zigbee-herdsman-converters/converters/fromZigbee'); | |
const tz = require('zigbee-herdsman-converters/converters/toZigbee'); | |
const exposes = require('zigbee-herdsman-converters/lib/exposes'); | |
const reporting = require('zigbee-herdsman-converters/lib/reporting'); | |
const extend = require('zigbee-herdsman-converters/lib/extend'); | |
const e = exposes.presets; | |
const ea = exposes.access; | |
const tuya = require('zigbee-herdsman-converters/lib/tuya'); |
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
<?php | |
require __DIR__ . "/vendor/autoload.php"; | |
class ImageDownloaderExample | |
{ | |
private function downloadImage() | |
{ | |
$client = new \Guzzle\Service\Client(); | |
$request = $client->get("http://www.google.com/images/srpr/logo4w.png"); |
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
[exec] #0 /usr/share/php5/PEAR/TokenReflection/ReflectionConstant.php(288): TokenReflection\ReflectionConstant->parseValue(Object(TokenReflection\Stream\StringStream), Object(TokenReflection\ReflectionClass)) | |
[exec] #1 /usr/share/php5/PEAR/TokenReflection/ReflectionElement.php(122): TokenReflection\ReflectionConstant->parse(Object(TokenReflection\Stream\StringStream), Object(TokenReflection\ReflectionClass)) | |
[exec] #2 /usr/share/php5/PEAR/TokenReflection/ReflectionBase.php(73): TokenReflection\ReflectionElement->parseStream(Object(TokenReflection\Stream\StringStream), Object(TokenReflection\ReflectionClass)) | |
[exec] #3 /usr/share/php5/PEAR/TokenReflection/ReflectionElement.php(105): TokenReflection\ReflectionBase->__construct(Object(TokenReflection\Stream\StringStream), Object(TokenReflection\Broker), Object(TokenReflection\ReflectionClass)) | |
[exec] #4 /usr/share/php5/PEAR/TokenReflection/ReflectionClass.php(1827): TokenReflection\ReflectionElement->__construct(Object(TokenReflection\St |
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
<?php | |
/** | |
* Exclusive lock in memcache | |
* | |
* @author Radek Dvořák <[email protected]> | |
*/ | |
class Lock | |
{ | |
/** |