Eric P Sheets

Results 207 comments of Eric P Sheets

I doubt macros are the issue. If you are seeing a blank screen (no output) can you check the javascript console? In Chrome, hit control-shift-j on windows / command-option-j on...

Could you share a file? If not, can you at least share how many cells are in the sheet? Also, can you check if the node module (https://www.npmjs.org/package/xlsx) successfully handles...

The website uses the gh-pages branch. Can you check against the master branch? To do this: ``` $ git clone https://github.com/SheetJS/js-xlsx $ cd js-xlsx $ python -mSimpleHTTPServer ``` Then go...

You can email it to the gmail account listed at https://github.com/SheetJS or to the email address in the git log (the commit email is hosted on my own server directly)...

We've started addressing the general performance problem in node: - internally, instead of the address keys, worksheets are built up as arrays of arrays of cell objects. This behavior is...

@davidfoxio ODS files are ZIP files under the hood and the library tries to decompress the `content.xml` entry before processing. The underlying file size is probably larger than `0x1fffffe8` characters,...

The following modified steps should work in dev mode: 1) set up project ```bash npx nuxi init content-app -t content cd content-app npx yarn install npx yarn add --dev @nuxt/content...

The only way to determine the file format is to speculatively parse. Blanking all of the plists and stripping the non-`.iwa` files preserves the correctness in the respective applications and...

@joannadal @yannakyp I think this module is pinning to an old version of angular: https://github.com/brexis/angular-js-xlsx/blob/master/bower.json#L23 ```js "dependencies": { "js-xlsx": "~0.8.0", "angular": "~1.4.8" }, ``` and this would be in conflict...

Very neat! Definitely worth investigating further