cristian

Results 29 issues of cristian

Hello In the string compression challenge: - you say `Only compress the string if it saves space.` - but you have expected outputs like ```python assert_equal(func('AAABCCDDDDE'), 'A3BC2D4E') assert_equal(func('BAAACCDDDD'), 'BA3C2D4') assert_equal(func('AAABAACCDDDD'),...

needs-review

### Describe your operation with evermonkey commands step by step. If I have `LF` line feeds in my editor and only use one line break per line (normal text), it...

Hey! Is there any way to jump to the next round, with skipping all remaining combatants? I know it's just pressing `n` to jump each of them one at a...

help wanted

I am seeing some errors in the console. This happens erratically ``` Traceback (most recent call last): File "/home/cristian/anaconda3/envs/actionserver/lib/python3.6/site-packages/logging_loki/handlers.py", line 81, in emit self.emitter(record, self.format(record)) File "/home/cristian/anaconda3/envs/actionserver/lib/python3.6/site-packages/logging_loki/emitter.py", line 57, in...

When running this I get a lot of warnings which makes it hard to read my own output It's warnings along the lines of ```python (pid=22798) UserWarning: Distributing object. This...

Needs more information ❔

Hey I have configure my function like so: ```python @retry(wait=wait_exponential(multiplier=1, max=6), stop=retry_if_result(lambda state: isinstance(state, ValueError)), retry_error_callback=log_exception, after=after_log(logger, logging.WARNING)) ``` However, when the waiting time is exceeded the function is still...

I have a simple file ```markdown ![[other file]] ``` When I export to HTML the contents from `other file` are not rendered. These are my settings. ![image](https://user-images.githubusercontent.com/8330330/138485926-dde77403-55cd-4b78-8597-2362a44ed353.png)

The SimpleIndexer is used in a lot of examples. However, it is using the old API. The task is to check all the examples that use `SimpleIndexer` still work and...

good first issue

``` go package main import ( "fmt" "time" "math/rand" ) func f(n int) { for i := 0; i < 10; i++ { fmt.Println(n, ":", i) amt := time.Duration(rand.Intn(250)) _...

**Describe the bug** I am building a docker image with Python and SPTAG I am doing the following: ``` ... # build sptag WORKDIR /app RUN apt-get update && \...