oren0e

Results 15 issues of oren0e

My issue is both for searching within files and across files - how can I always search from the directory I started vim from as root dir? Currently, I open...

invalid: missing template

Hi Joel and thank you for a really great and outstanding book. In the beginning of chapter 16 you build `xs` and `ys` based on `data`. However, the book does...

If I have a method like `MyClass.my_method()` which I decorated with `retry()` and then want to change the arguments in run time (e.g, for unit testing), then I cannot do...

Hi, I'm looking for a way to make something like this work: ```python class SomeResponse(factory.BaseDictFactory): class Meta: model = dict slots = factory.Dict({ factory.Sequence(lambda i: f"SLOT{i}"): "foo", }) ``` I...

When using mice multiple imputation to generate multiple imputed sets and then running a model on each one of them (like elastic-net from the `glmnet` package) and then pooling the...

enhancement

I have a post on my blog that shows nicely when accessed via computer, but on mobile it is like the horizontal space cuts the page with no scrolling option,...

I know that there is an option to search in the project root when using with vim, where "project root" being found by the folder that has `.git` folder (basically...

This super simple example does work on my mac: ```rust use tray_item::{IconSource, TrayItem}; fn main() { let mut tray = TrayItem::new("Tray Example", IconSource::Resource("")).unwrap(); let mut inner = tray.inner_mut(); inner.display(); }...

enhancement
help wanted
good first issue

Hi, Currently if I do something like this: ```python from elasticsearch import Elasticsearch from elasticsearch_dsl import Search from elasticsearch_dsl.query import Q client = Elasticsearch("http://:9200", size=10000, from_=0, index="test") q1 = Q({"range":...

Category: Enhancement
Priority: Low

```python q_complex = (Q({"range": {"num_errors": {"gte": 4}}}) & Q({"range": {"num_errors": {"lte": 6}}})) | Q({"match": {"num_errors": 2}}) q_a = Q({"range": {"num_errors": {"gte": 4}}}) q_b = Q({"range": {"num_errors": {"lte": 6}}}) q_c =...