Ivan Smirnov

Results 117 issues of Ivan Smirnov

Why do this every time `run()` is called, would it be possible to do it upon load? https://github.com/nbigaouette/onnxruntime-rs/blob/32e9935a8b30cffda3a92f458fb7f2dbe35f7412/onnxruntime/src/session.rs#L383-L406

cleanup

Bottom line - there's tons of overhead in `run()` currently: - It allocates something like 15 `Vec` instances and a bunch of strings, there's tons of allocations all over the...

``` python >>> jsonpickle.encode(datetime.date.today()) '{"py/object": "datetime.date", "__reduce__": [{"py/type": "datetime.date"}, ["B98BCQ=="]]}' >>> jsonpickle.encode(datetime.datetime.now()) '{"py/object": "datetime.datetime", "__reduce__": [{"py/type": "datetime.datetime"}, ["B98BCQIlCQoiog=="]]}' ```

Just throwing out a random idea that crossed my mind as I was testing the numpy handlers. What if this: ``` python >>> jsonpickle.encode([b'a', b'b', b'c', b'd']) [{ "py/bytes": "a"...

Hi! First, a very neat idea and a neat implementation :) As I munged with it for a bit, I was wondering if you'd consider a few potential syntactic shortcuts?...

Seems like this causes neuron calls to fail now (like "neuron --uri ..."): https://github.com/srid/neuron/commit/bcb4adfcf0ba3eb37d849aee1103b25330f242c0

https://github.com/la10736/rstest/blob/4e1069b7468d0d49a5d78c47f1336fd88d41e472/rstest_macros/src/render/mod.rs#L268 When running in IDEs (like CLion) that automatically capture output in the test runner, there's tons of `--- TEST START ---` printlns. It's not mission-critical, but very annoying 😢...

Currently, cells are named as `'Cell %d' % cell_num`. This makes it hard to trace errors in case you have hundreds of cells. Could the cells be possibly named? Either...

Currently, some home-row shortcuts have alt as a modifier, which may be much less convenient than ctrl (e.g. if you have caps lock to ctrl). Would it be possible to...

If I do this: ```vim let g:user_emmet_install_global = 0 autocmd FileType html EmmetInstall autocmd FileType html imap (emmet-expand-abbr) " or autocmd FileType html imap emmet#expandAbbrIntelligent("\") ``` -- it doesn't change...