Valery Buchinsky

Results 82 comments of Valery Buchinsky

@pi-chan let me know if there are issues, and of course if it totally worked :-) Edit: Any news?

So it works and it's in npm now in [2.2.0](https://github.com/fullstackreact/react-native-oauth/issues/137#issuecomment-320729712)

Oh! Sorry @monolithed but I haven't had any dealings with this package for more than 4 months. Can't help you out.

Hi there. The first important part to understand is incremental updates of PDFs. If you are altering a signed PDF that doesn't make make the previous signature invalid directly. It...

Some features of PDF > 1.3 such as streams and linearization are not supported. Your signed document uses those. https://github.com/vbuch/node-signpdf/issues?q=+label%3A%22PDF+%3E+1.3%22

Some additional info when ran with `--debug` ```... Ant runner started Write data: [a4 01 4a 00 ef] Read data: [a4 01 6f 20 ea] (now have [a4 01 6f...

@didierfranc @runemadsen @bravomartin ^ here is a PR

@didierfranc thoughts on this? Should something be fixed so you would release this? We're keepeng our code with a dep to the fork.

@speigg , the way I went around that is: I have `const repo = new Map([itemId, hookstate(Item)])` and `const items = hookstate([itemId])`. So `items` will allow me hooking to the...

@speigg adding a new key to `const stateMap = hookstate({key1: 'duh'})` would consider the whole object changed. So `stateMap.key2.set('blah')` will force components using `stateMap.key1.value/get()` to re-render. There used to be...