data
Here are 8,837 public repositories matching this topic...
-
Updated
Aug 19, 2021 - Clojure
-
Updated
Aug 4, 2021 - Jupyter Notebook
-
Updated
Aug 7, 2021
I would like to import a .zst
or .zstd
file but currently that file type is not recognized to be imported by OpenRefine.
Proposed solution
Perhaps using Apache Commons Compress (we already have usage in ImportingUtilities.java
)
https://commons.apache.org/proper/commons-compress/examples.html#Zstandard
Allow importing the .zst
or .zstd
file from my local computer, as well as fr
-
Updated
Nov 9, 2020 - Python
-
Updated
Aug 3, 2021 - JavaScript
-
Updated
Aug 16, 2021 - Scala
-
Updated
May 30, 2020
-
Updated
Aug 7, 2021
-
Updated
Aug 17, 2021 - Python
-
Updated
Aug 19, 2021 - JavaScript
-
Updated
Aug 11, 2021 - JavaScript
-
Updated
Aug 19, 2021 - Python
-
Updated
Feb 28, 2021
Java and Python provide logging frameworks for recording errors and stack traces. Logging can be configured to format those messages, such as by removing newlines from stack traces, adding timestamps, and putting a log level (INFO, WARN, ERROR) on the message. In the future, it may also include json structured logging. Using the logging framew
-
Updated
Aug 16, 2021 - TypeScript
-
Updated
Aug 19, 2021 - JavaScript
-
Updated
Aug 19, 2021 - Python
-
Updated
Aug 19, 2021 - Python
-
Updated
Aug 11, 2021 - JavaScript
-
Updated
Mar 1, 2021 - Rust
-
Updated
Jun 14, 2021 - JavaScript
ideally this would demonstrate projections, predicates, & tuning options like block size (using the Configuration
parameter)
Improve this page
Add a description, image, and links to the data topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the data topic, visit your repo's landing page and select "manage topics."
I believe there is a bug here:
https://github.com/SheetJS/sheetjs/blob/333deae63fbe13d1ff2db42e599211a062001c32/bits/87_read.js#L69
If the input data was an
ArrayBuffer
but opts would not have atype
set we would essentially convert theArrayBuffer
toUint8Array
and callreadSync
again but without setting appropriateopts.type
. This then leads to few lines below https://github.com/Sh