Stewart Polley
Stewart Polley
I forget what test system limbo uses, but could you set it to look for an environment variable to get the API key, and if not set skip it? On...
You need to use your own API Keys for this. The API Keys are then defined using the following Environment Variables. 1. `OXFORD_APP_ID` 2. `OXFORD_APP_KEY`
Not Bill. It's either an error [here](https://github.com/websocket-client/websocket-client/blob/master/websocket/_core.py#L436) creating the websocket connection, or in where-ever line [Line 138 of limbo/slack.py](https://github.com/llimllib/limbo/blob/master/limbo/slack.py#L138) is apparently getting it's `setblocking` function from. In either case, I...
Isn't it set to ignore slack it? On Sat, 24 Mar. 2018, 01:28 Bill Mill, wrote: > haha, doh! I guess my test wasn't accurate enough > > — >...
There's an `emoji_changed` event in the event API. https://api.slack.com/events/emoji_changed I'd assume a config for the plugin would be which channel to alert when the emoji are changed, and if you...
!tweet -> Tweet from a user with ?
I'm not Bill.. but I think you mean https://cocoapods.org not .com
I remember seeing some IRC bots back in the day, where a user could initiate an "Event" on a particular date, and people could be invited to the event etc,...
The first part of the channel ID will start with "D" `{'ts': '1454135373.000338', 'text': 'This is a channel', 'user': 'U02GSB32U', 'channel': 'C02HDGZT9', 'team': '', 'type': 'message'}` `{'ts': '1454135387.000045', 'text': 'This...
Having a second look at the code in the commit that you've linked, they're not looking for DMs, they're looking for mentions of the bot within regular channel/group messages. `init_msg...