kritzware
kritzware
Hi, I'm trying to get a basic example working, but keep receiving the same error: ```bash ... return _end_unary_response_blocking(state, call, True, None) File "/Users/Louis/anaconda3/lib/python3.6/site-packages/grpc/_channel.py", line 466, in _end_unary_response_blocking raise _Rendezvous(state,...
Issue for discussion about Bot middleware functionality and ideas. Inspired by [Express middleware functions](https://expressjs.com/en/guide/using-middleware.html). Express implementation: ```javascript app.use(function (req, res, next) { console.log('Time:', Date.now()) next() }) ``` ```javascript Bot.use((chatter, send)...
Hello `twitch-bot` users! This issue is for discussion around ideas/requests for new features, feel free to leave a comment if you have any thoughts 😄
Several of us on newer M1 laptops were unable to perform several upgrade steps: - Running `yarn`, which in turn runs `compileProtos` from `google-gax`, fails - Running `make protos` at...
An option to generate a corresponding TypeScript interface. We could also support query generation for MySQL JSON types, i.e. generate a path query like this: ```sql SELECT data->"$.items[2].some.nested.property" FROM table;...
The initial implementation of this project was messily done in a single `index.vue` file. It would be nice to split it up into several components, and clean up the code...
V8
_work in progress_
Instead of making the user call the method `createTable()`, the library could check if the table exists once connected and then call this function internally if not. ```javascript await ox.createTable()...