João Ferreira Loff

Results 30 comments of João Ferreira Loff

Can you make sure you are using the latest version of pywFM?

You still have the same error? Could you check your `LIBFM_PATH` if its correct?

> Hey @jfloff, @lilith, @jmlagace, @Oneill38! We've released the [beta version](https://rubygems.org/gems/chargebee/versions/2.47.0.beta.1) of the library, now using Net::HTTP and removing rest-client as a dependency. Could you give it a spin in...

I’m sorry to dig up this thread, but after updating counter_culture to this version, my setup no longer works as expected and I could use some help figuring out why....

Sorry its kinda late here 😅 so I won't have time for the PR, but I will just dump my current findings: The problem seems to at least materialize here:...

Just flatten, i.e: ```ruby [category_id, ItemCategory.find_by(id: category_id).try(:parent).try(:id)].compact.flatten ``` does not work. But if I wrap it in *another* array, it does work: ```ruby [[category_id, ItemCategory.find_by(id: category_id).try(:parent).try(:id)].compact.flatten] ``` Do you think...

I think I understand now -- sorry for the rambling, maybe it will help someone. The key thing here is that this PR started using _array of arrays_ for values...