Theofilos Petsios

Results 34 comments of Theofilos Petsios

Thanks for the prompt reply. See attached [test.zip](https://github.com/SoftSec-KAIST/Smartian/files/8048490/test.zip)

This is what I had done for the blog post (I can point you to the link internally) - either is fine, we could just put in a PR for...

@heavenshell no worries - basically I was asking for the addition of an option that allows bypassing the default doq command (e.g., in https://github.com/heavenshell/vim-pydocstring/blob/e8115fecbb3aaf79ad72791008e14e1b7cbd90e6/autoload/pydocstring.vim#L157). This would allow users to more...

1. I am interested in contributing to: - [x] Development - [ ] Documentation - [x] Issue triage and community - [x] Technical advisory (review [governance document](https://github.com/artifact-ff/artifact-ff/blob/main/GOVERNANCE.md#technical-advisory-members)) 2. I am...

Also run into this using `mashumaro.mixins.json`'s `DataClassJSONMixin` for datetime fields (e.g., ```python @dataclass class Test(DataClassJSONMixin): id: "str" createdAt: datetime = field(metadata={"deserialize": dateutil.parser.isoparse}) updatedAt: datetime = field(metadata={"deserialize": dateutil.parser.isoparse}) ``` and getting...

not sure this should be closed? I would expect lvim to have some readibility on any terminal out of the box (e.g., parity with neovim) - is there a recommendation...

+1 on _not_ removing deprecated libraries. This information is useful as it lets us know of websites without outdated dependencies and/or security issues. It would actually be useful to have...

Same here with node 18.8.0. Running `npm install -g tree-sitter` yields ``` npm ERR! gyp info spawn args [ 'BUILDTYPE=Release', '-C', 'build' ] npm ERR! ../src/conversions.cc:31:35: error: no matching function...

Also looked for this, would it make sense to just spin up a bunch of goroutines each doing a `CreateOne` in the meantime? something like ```golang g, ctx := errgroup.WithContext(ctx)...

@steebchen my understanding is that a transaction is an all-or-nothing operation, where statements are executed in order as passed, whereas my above suggestion is just for records that could be...