Skip to content

Instantly share code, notes, and snippets.

Graphics Feature Status
Canvas: Hardware accelerated
Flash: Hardware accelerated
Flash Stage3D: Hardware accelerated
Flash Stage3D Baseline profile: Hardware accelerated
Compositing: Hardware accelerated
Multiple Raster Threads: Enabled
Native GpuMemoryBuffers: Hardware accelerated
Out-of-process Rasterization: Disabled
I20160517-15:28:37.624(-4)? MochaRunner.runServerTests: Starting server side tests with run id mGR8a5HXutcZ88Zq4
W20160517-15:28:37.662(-4)? (STDERR) MeteorPublishReporter.added: Can't send report data to client.
W20160517-15:28:37.663(-4)? (STDERR) MeteorPublishReporter.added: Error: Meteor code must always run within a Fiber. Try wrapping callbacks that you pass to non-Meteor libraries with Meteor.bindEnvironment.
W20160517-15:28:37.665(-4)? (STDERR) MeteorPublishReporter.added: Document: { _id: '4',
W20160517-15:28:37.665(-4)? (STDERR) event: 'suite',
W20160517-15:28:37.666(-4)? (STDERR) data:
W20160517-15:28:37.666(-4)? (STDERR) { title: 'test',
W20160517-15:28:37.667(-4)? (STDERR) root: false,
W20160517-15:28:37.667(-4)? (STDERR) pending: false,
W20160517-15:28:37.667(-4)? (STDERR) _fullTitle: 'test',
@evelant
evelant / grouped_light.py
Created May 7, 2016 03:11
Grouped light platform for Home Assistant
import logging
# Import the device class from the component that you want to support
from homeassistant.components import light
from homeassistant.const import (STATE_OFF, STATE_ON)
CONF_NAME = 'name'
CONF_ENTITIES = 'entities'
_LOGGER = logging.getLogger(__name__)