Steve Howell
Steve Howell
This function will allow folks to do O(logN) traversals in some situations where the opaque nature of Dict currently would prevent those optimizations. An example use case would be that...
I think the title here mostly explains what I want. Feel free to close if this is out of scope of the formatter. My experience coming to Elm is that...
I am writing this up as an issue just because it seemed like a good place to write up something kind of long form. It's sort of an enhancement request,...
Technically an argument is what you pass in, and the parameter defines the var in the function definition. I know people use these as synonyms, but it might make some...
Suppose you have a simple runaway program that you are going to invoke with `nyc`: ~~~ $ cat foo.js for (i = 0; i < 10000000; ++i) { console.log(i); }...
This should be fairly straightforward for you if you have worked with extending our API before. The actual code should be trivial, but you'll want to add tests for it...
When you use the api and instantiate a Client, it will succeed as long as the credentials are well-formed, even if the credentials aren't actually valid. Of course, as soon...
The following logic in `zulip_bots/zulip_bots/run.py` can use some more testing. In particular, it's not clear the intent behind the provision check in the `else` block. ~~~ py 84 result =...
When you load the trivia bot, you get an error like this: ~~~ zulip_bots.lib.StateHandlerError: Error fetching state: {'result': 'error', 'msg': 'Key does not exist.'} ~~~ I believe this is partly...