Tommy Goode

Results 47 comments of Tommy Goode

Update on this issue: my monitor instance became `unavailable` today. I did a simple `sudo service monitor restart` on the Pi, and received a similar `bluetoothctl[]: Source ID x was...

@nickh66 this is not the same thing - what you're describing is the normal behavior of MQTT messages. By default, MQTT messages are delivered to all clients connected at the...

Agreed that that is the correct place to fire a callback. I've taken a stab at it in #6, but let me know if you have a different idea for...

+1. This also fixes the web browser not respecting app-wide `barTintColor` for `UINavigationBar` and `UIToolbar` set via the [`UIAppearance` protocol](https://developer.apple.com/library/prerelease/ios/documentation/UIKit/Reference/UIAppearance_Protocol/index.html): ``` [[UINavigationBar appearance] setBarTintColor: [[UIToolbar appearance] setBarTintColor: ```

We made almost identical changes to the library and they have worked out very well for us.

You can use `NODE_CONFIG_ENV` instead of `NODE_ENV`. [From the wiki](https://github.com/lorenwest/node-config/wiki/Environment-Variables#node_config_env): ``` process.env.NODE_CONFIG_ENV = "qa"; process.env.NODE_ENV = "production"; var config = require('config'); console.log('NODE_CONFIG_ENV: ' + config.util.getEnv('NODE_CONFIG_ENV')); ``` The qa configuration will...

Thanks @narfel , I had no idea you could just build a Docker image directly on your device to avoid an architecture mismatch - that is a game-changer! @Nekmo It...

I'm also seeing this problem. Details: * infer 1.1.0 * xcpretty 0.3.0 * Xcode 13.1 * macOS 11.6 `clang --version`: ``` Apple clang version 13.0.0 (clang-1300.0.29.3) Target: x86_64-apple-darwin20.6.0 Thread model:...

I was able to fix this by adding some options to the `xcodebuild` step. I'm not sure which one of these fixes the Infer error referenced in this issue, but...

@frederikheld While we wait for official documentation, would you be willing to share what you figured out?