Edoardo Morandi

Results 18 comments of Edoardo Morandi

Same thing here: [in this repo](https://github.com/dodomorandi/josekit-rs/tree/remove-unsafe) (already merged) the `foreign-types` crate is *directly unused*, but `openssl` depends on that and the tool does not show that the dependency could be...

Ok, this is the kind of thing I wanted to hear. From your words, this algorithm is substantially deprecated and it should not be used, right? The issue I linked...

This is very nice. However I am still having some troubles. [This file](https://drive.google.com/file/d/0B88Q0Bv2HTxxSW9jWUQtNEZpd2c/view?usp=sharing) contains a compiled lib from the source I posted. I am not able to obtain the same...

I am able to cross-compile for ARM, and things seem to work correctly. asm.emuwrite does not seem to be necessary, but I just tried to compile against armv7-a. Unfortunately I...

I performed some tests, and I am not completely sure of the results I get: ![screenshot radare on mips32r6 test lib](https://cloud.githubusercontent.com/assets/350168/21138308/b80b6c1c-c12d-11e6-82c1-7286d897ae8f.png) This is what I get if I compile the...

Whoops, sorry! I just forgot to run aeim before making the screenshot for x86. I will edit the previous post in a couple of minutes. However the MIPS screenshot have...

Sure, and sorry that I assumed you were familiar with the problem! Take the following simple example: ```reason [@react.component] let make = (text: string) => { let (actualText, setActualText) =...

I think that the rule should be something like the following: given a set of _hook functions_ with the first argument as a callable object and the second argument representing...

As far as I can tell, hooks are real functions, it is the way they are implemented that brings to this particular _React coding pattern_. I never dug into the...

Just a minor thing: did you consider the possibility of using a slightly shorter keyword, something like `pvt`? I imagine that in some contexts `private` could be used often, creating...