Cris. A

Results 21 comments of Cris. A

I just saw this in the source code, does this mean it is automatically set to false? https://github.com/rtomayko/replicate/blob/master/lib/replicate/active_record.rb#L219 ``` ruby # Set or retrieve whether replicated object should keep its...

Additional info: https://github.com/B2o5T/graphql-eslint is not supported, either, so at the moment I can't use any graphql linters with CodeClimate

I have exactly the same issue (React + Svelte and svg loading), and I can't even find a workaround. @dietergeerts have you found a workaround?

The only workaround I found is to do this in my test files. Which is of course not optimal when having lots of svg files to mock. ``` jest.mock('path/to/file.svg', ()...

Here I have to agree with @jrajav , as the most logical for one such as me (with relatively little experience in react) would be to write ``` ``` Since...

How did you end up overriding this? By simply importing `@ffmpeg/ffmpeg` into my next.js project I get this error.

I managed to fix it in my Next.js app, by overriding the webpack config: ```js // next.config.js const nextConfig = { // Solve misconfigured/missing imports from canvas-record webpack: (config) =>...

I have the same error on a NodeMCU v1. Managed to copy the entire code of HX711 into my program and it worked - got reasonable readings. However, whenever I...

Tried that. Not working. Actually I can reproduce the error with this code: ``` #include "HX711.h" HX711 scale(D5, D6); // This line is creating the error, if I remove it,...

I suspect the `#include ` at the beginning of the code that is messing the setup of NodeMCU/ESP8266 somewhat