Felipe Zavan

Results 42 comments of Felipe Zavan

> also if a show has "Show name (Year) - S01E01etc" it will say "unable to find show information for show XXXX" but if i remove the (Year) it works......

If anyone bumps into this: I forked active_shipping, fixed some stuff, and added UPS back. [You can find it here](https://github.com/zavan/active_shipping/tree/ups). All unit tests are passing. I also forked spree_active_shipping, fixed...

The only way I was able to make tailwind 3.0 with a custom config file path to work was: ```js module.exports = { style: { postcss: { loaderOptions: (postcssLoaderOptions) =>...

@patricklafrance I'm using v7.0.0-alpha.3 with react-scripts v5.0.0 and tailwind v3.0.23.

I modified the Chosen.prototype.winnow_results method to clean the search string accents before searching, not my best code, but it works as expected: ``` javascript Chosen.prototype.winnow_results = function() { var found,...

Is the master branch stable? Can I use it directly with `gem 'prawn', github: 'prawnpdf/prawn'` for now or is it better to just add `gem 'matrix'` to my Gemfile?

I have the same problem, but the debugger just hangs with `bin/rails s`, no interactive shell starts and I can't Ctrl-C to stop the server.

Yeah, having `removeZeroes` be private made have to copy it into my code... ```js function removeZeroes(vals) { const newVals = {}; for (const [key, value] of Object.entries(vals)) { if (value...