Jack'lul

Results 39 comments of Jack'lul

Nope, bot still answers to messages not directed to him. In one of my bots I'm using this as a solution: ```php /** * @param $command * * @return ServerResponse|mixed...

Not sure if some kind of simple event handlers or hooks wouldn't be better. DB could be 100% add-on powered by events/hooks.

It was made that way so that running getUpdates without DB isn't default behaviour, forcing developer to take action before it can be used

@akalongman Well, I'm 100% fine with removing that method and using "no database" mode when DB is not connected by default.

Plus, if I may add, I think the whole DB feature (and so does Conversation) should be handled as plugin or addon after the refactor, those things shouldn't be core...

> check this alternative. i added support for you https://github.com/salamwaddah/mijia-io @salamwaddah Thanks for this, unfortunately switching off does not work for 3C model ```js device .setPower(false) .then(state => console.log('Switched power...

I'm posting a script I've been using to simplify launching: [**ALVR USB Connection.bat**](https://pastebin.com/TzJZ0MmK) (I might update it, so check from time to time) Alternatively this: https://github.com/jacklul/ALVR-USB (based on AtlasTheProto/ADBForwarder from...

If you look at your container startup log it will full of errors because your configuration is wrong. That's because `ADLISTS_URL` is supposed to point to "list of lists" (like...

This is the corrected configuration: ``` environment: ADLISTS_URL: 'https://v.firebog.net/hosts/lists.php?type=tick https://v.firebog.net/hosts/lists.php?type=nocross' WHITELIST_URL: 'https://raw.githubusercontent.com/anudeepND/whitelist/master/domains/whitelist.txt https://github.com/anudeepND/whitelist/blob/master/domains/optional-list.txt' REGEX_BLACKLIST_URL: 'https://raw.githubusercontent.com/mmotti/pihole-regex/master/regex.list' ``` (I am unsure if line breaks are valid in that file format so I'm...