Sleepy Flower

Results 243 comments of Sleepy Flower

You could try the different SSL backends of curl, you could try installing something like this ``` curl[core,non-http,openssl,schannel,ssl,sspi]:x64-windows ```

According to the docs, (https://discordapp.com/developers/docs/topics/rate-limits#header-format) ``X-RateLimit-Remaining`` is used to tell if you are about to hit a rate limit. I have questioned before if it should be a warning instead...

Well, if it otherwise causes you to get rate limited, a warning could be displayed and any further requests will just return with an error. I think that's reasonable.

I don't really know why it's causing it. However if the number is a available, you can do this ``getSever().header["X-RateLimit-Remaining"]``. Note, that the value returned is a string, so you...

Can you give me the compiler output with the error, I don't know what file you are talking about.

command option choices can't be copied, and that might be what's going on maybe. I might need to make some changes in the library to have it use move when...

take a look at the error: ``To disable this warning, use -D_SCL_SECURE_NO_WARNINGS`` You can do this by going to your project's properties, C/C++, Preprocessor, and adding ``_SCL_SECURE_NO_WARNINGS`` to your Preprocessor...

are you compiling for x64, because it says that it conflicts with the library machine type x86? It says ``library machine type 'x86' conflicts with target machine type 'x64'`` Try...