Cisco Guillaume

Results 60 comments of Cisco Guillaume
trafficstars

Yes I was using a curl command like: `curl -H "Content-Type:multipart/form-data" -F translations="{\"en\": {\"display_name\": \"toto\"}}" -F name="test" -F type="3" -F "file=@./toto;type=application/json" http://my_domain.com/my_ressource/`

Ok @vdboor, just added a little test. As said above it simulates the `translations field` is sent as a json dumps. Useful when uploading file and data. Cheers.

This fix is important. It should be handled quickly. Thanks @gergelypolonkai

Thank you very much @kealan for this confirmation. Could you help me `begin` in this translation. I'm not familiar with ffi and need a little help. I'll try a to...

Quick question, is `bls_ZZZ.py.in` a generated file? What `.py.in` stands for? could we generate a `rom_ZZZ.py.in` file?

Thanks for the precision, using make with a python virtual env set on python 2.7 built the target folder successfully. I now have files like `bls_BLS381.py`... If I understand it...

Thanks. I need a little help on this one. If I create rom.c like: ```c #include #include #include #include #include int main() { BIG_256_56 q2; BIG_256_28 r2; printf("BLS381\n"); BIG_256_56_rcopy(q2, Modulus_FP256BN);...

What I tried: Using the file `test_pair_FP256BN.c` which use `CURVE_Order_FP256BN`. Creating the .so (from python wrapper generated directory) using: `gcc -g -I../../include -I../../../../include -fPIC -Wall -Wextra ../../test/test_pair_FP256BN.c -shared -o ./test_pair_FP256BN.so`...

Ok I succeeded runing this example, on a fresh environment, using these steps: `sudo apt-get install -y git cmake build-essential python python-dev python-pip libffi-dev doxygen doxygen-latex parallel ` `pip install...

I think I have the same question as anybody else. Using a multi stage docker with only one stage for building javascript dependencies with: ``` FROM node:18.5.0-alpine as dependencies WORKDIR...