Amin Roosta

Results 38 comments of Amin Roosta

I was reading discussions on sqlite api. [this](http://sqlite.1065341.n5.nabble.com/last-insert-rowid-and-changes-per-statement-instead-of-per-connection-td86126.html) and [this](http://sqlite.1065341.n5.nabble.com/threads-and-last-insert-rowid-td17924.html) It seems to me that there is no safe way of using `last_insert_rowid()` with multiple db connections. Whats the point...

@Peter-Levine Thanks for the PR. I think if i merge this, then we will get conflicts with dev branch. In our dev branch we have moved the tests to use...

@zauguin according to documentation [sqlite3_reset](https://www.sqlite.org/c3ref/clear_bindings.html) does not rest the bindings. The reason we are calling [sqlite3_clear_bindings](https://github.com/SqliteModernCpp/sqlite_modern_cpp/blob/master/hdr/sqlite_modern_cpp.h#L143) here. I wonder what happens if we don't clear the previous bindings and just...

This is where the exception is thrown, at [RTCImage](https://github.com/facebook/react-native/blob/master/Libraries/Image/RCTImageLoader.m#L669) source code.

@weisheng-binary You could try my fork, it works by concatenating all selected lines before sending them to reply. ``` Plug 'aminroosta/vim-repl' ``` (I'm not opening a PR, because it's a...

since there is no way to know if ``` html ``` should be converted to ``` html ``` or ``` html ``` I suggest using this syntax ``` html ```...

what about this ? ``` html ``` if we write something like the following ``` html ``` then how to differentiate between `visible` and `foo` attributes ?

So that way ``` html ``` I have no problem with that, but that doesn't sound about right. we are making an exception for the custom elements.I think we should...

i am just thinking a syntax like this "foreach: items as 'item' " will be cleaner . maybe "foreach: items as 'item' | filter1:arg1 | filter2 " will be even...

Edited: My issue was related to ts-jest, opened [an issue #322](https://github.com/kulshekhar/ts-jest/issues/322) there.