Joshua Pinter

Results 159 comments of Joshua Pinter

That's Accounting formatting. I wonder if just using the Accounting formatting from Excel when you select that would work: `_($* #,##0.00_);_($* (#,##0.00);_($* "-"??_);_(@_)`

### Confirmed! ![Screen Shot 2020-04-14 at 12 03 34 PM](https://user-images.githubusercontent.com/180819/79258242-15ff0100-7e48-11ea-9f82-004d5245498a.png) Here is the format I used to get that formatting: ```ruby format = workbook.number_format( '_($* #,##0.00_);_($* (#,##0.00);_($* "-"??_);_(@_)' ) write_number(...

Somebody else ran into this as well. Can you try updating your node version and let me know if that fixes it? Here's mine: ``` bash $ node -v v5.5.0...

Brilliant. I'll add that. Can you give me your node version so I can run some tests as well? Thanks. Josh

Just more intuitive, instead of having to import something else called "indicator" which is not very self-explanatory. In my case, which probably isn't too uncommon, sometimes you need to include...

Ha. We agree on that. I'm not a fan of unnamed params passed in either, actually. What about an options Object as the second params with `suffixOnly`, like this: ```js...

> bundle config --local build.mysql2 "--with-ldflags=-L/usr/local/opt/openssl/lib --with-cppflags=-I/usr/local/opt/openssl/include" This worked great. Except, it might actually be better to remove the `--local` flag here so that it doesn't update the project's `.bundle/config`...

I have it working just fine on React Native 0.56.1. ### `package.json` ```json "devDependencies": { "babel-plugin-module-resolver": "3.2.0" } ``` ### `.babelrc` ``` { "plugins": [ [ "module-resolver", { "root": ["./src"]...