Jacob Quinn
Jacob Quinn
Not currently, but we could look into supporting this. We do currently support writing out "partitions", so you could theoretically achieve something like this by leveraging the Tabes.jl API with...
FWIW, CSV.jl can parse this correctly: ``` julia julia> f = CSV.Source(IOBuffer(s);rows=2,header=0,delim=' ') CSV.Source: CSV.Options: delim: ' ' quotechar: '"' escapechar: '\\' null: "" dateformat: Base.Dates.DateFormat(Base.Dates.Slot[],"","english") 2x3 Data.Schema: Column1, Column2,...
Yeah, I was just going to say, we could at least do a check that the year is within the bounds of the typemin/typemax as currently defined. I believe there...
Yeah, the intent of the `TimeZone` abstract type was just to provide a common definition for a TimeZones.jl package to leverage itself, and `UTC` was the only Base-provided subtype. I...
Any idea why it would have permission to open/write a file? ``` SystemError: opening file "out.test.csv": Permission denied ```
Note this is part of what I proposed and have implemented in the StructUtils.jl package: https://hackmd.io/@quinnj/HkJ96bxCa (proposal), [StructUtils.jl](https://github.com/quinnj/StructUtils.jl)
> One important design question still left is. What happens if we error here. IMO we should set a flag that this failed and error. The flag would also make...
Not sure why the notebook itself wouldn't support it, but in the messaging protocol, there is this little blurb I remember reading: ``` # Some frontends (e.g. the Notebook) do...
Hmmmm, interesting. Yes, I've definitely been assuming that a `String` or `Vector{UInt8}` input source will have the implicit nul terminator byte already there for us. Do you happen to know...
Sorry to be so slow on the review here; I've indeed been busy and am woefully behind on github notifications. Always feel free to give me a ping on slack,...