Yaser Alraddadi

Results 21 issues of Yaser Alraddadi

Ulcer Index in development version: I am ignoring everget ```python highest_close = close.rolling(length).max() downside = scalar * (close - highest_close) downside /= highest_close d2 = downside * downside _ui =...

bug
help wanted
good first issue

@vmihailenco Thank you for taskq and the support of opentelemetry out of the box in your libraries. In `taskqext/otel.go`, support tracing with opentelemetry while processing the message in the worker...

Tring to install fabric8 through helm ``` $ helm install fabric8/cd-pipeline Error: release exhaling-gopher failed: namespaces "user-secrets-source-admin" not found ```

Hello, I know that, RediSearch version >= 2.2 support RedisJson. When using redis-om with RediSearch version < 2.2 by mistake and running migrate. **It did not give any error message**,...

enhancement

Dears, I do not think creating a pk in EmbeddedJsonModel is nesseserly since it will be embedded always.

Hello, enum with str works but enum with int does not work

Hello, Sometimes an object is huge and only want to return from Redis subset of the data https://oss.redis.com/redisjson/indexing_JSON/#field-projection

Hello, In JsonModel, find not working with timedelta, whereas HashModel is working Check out below code: ```python class Customer(JsonModel): name: str = Field(title="Name", index=True) class RestaurantVisit1(JsonModel): customer_pk: str = Field(index=True)...

'this Preview release, list and tuple fields can only contain strings. Problem field: . See docs: TODO'

Hello, In JsonModel, find not working with class that has Optional and no default value, whereas HashModel is working Check out below code: ```python class CustomerHash1(HashModel): name: str = Field(index=True)...