Ihor Kalnytskyi
Ihor Kalnytskyi
Hey there, First of all, thanks for the plugin. It's really close to what I actually want to see from a package manager plugin. There's one missing thing for my...
The `Listbox.js` should listen all parent changes and adopt itself in this way.
Autowiring is convenient functionality that allows to inject dependencies implicitly. Picobox core provides everything that is required to implement autowiring functionality as a third party decorator in `picobox.contrib` pacakge. The...
There's a line in the docs that shows how to hook plugin loading events with autocommands ```vim Plug 'junegunn/goyo.vim', { 'for': 'markdown' } autocmd! User goyo.vim echom 'Goyo is now...
The [new renderer](https://github.com/sphinx-contrib/openapi/blob/master/sphinxcontrib/openapi/renderers/_httpdomain.py) does not assume that there may be vendor extensions in OAS objects. I'm not sure what's going to happen, I can assume the renderer will either fail...
The extension now supports multi-renderers architecture, which means we can have more than one renderer to render the OpenAPI spec. Each renderer may have its own set of configuration options,...
Like `picobox.ext.asgi` or `picobox.ext.wsgi`, `picobox.ext.grpc` has to provide _application_ and _request_ scopes for dependencies.
One thing I regret about `picobox` is that it uses non-conventional names for methods (e.g. `pass_()`, not `inject`) and classes (e.g. `Box`, not `Container`). I'm afraid it might be a...
There are engineers who prefer declarative over imperative, even when it comes to defining DI containers (i.e. `picobox.Box`). ```python import picobox.ext.declarative as declarative class MyBox(declarative.Box): ... ```
- [ ] `frontmatter` processor - [x] use `---` for YAML format (hugo/zola style) - [x] use `+++` for TOML format (hugo/zola style) - [x] autodetect format - [x] allow...