Dave Kleinschmidt

Results 49 issues of Dave Kleinschmidt

## Expected Behavior `fill-paragraph` should wrap lines that begin with `|` if it's inside math mode Before `M-x fill-paragraph`: ``` A long line containing quite a few characters that ends...

bug

My workflow requires long-running julia sessions on a remote machine with the possibility (near inevitability) of disconnects/reconnects. Currently I'm running a jupyter server on the remote machine, forwarding the port...

enhancement

Occasionally, when I hit Ret in a server REPL after the connection to the server has dropped (port forwarded over SSH), I get the following error (debugger output): ``` Debugger...

I have a function `myfun` that operates on one or more rows from my dataframe, and returns a Tables compliant output. The columns will not always be the same for...

feature

These methods are implemented and work as expected but may not be obvious to users (some questions about this came up on slack).

```julia julia> using Tables julia> struct SSS stuff end julia> Tables.dictcolumntable([(; a=SSS(1)), (; b=2)]).a 2-element Vector{Union{Missing, SSS}}: SSS(1) #undef julia> Tables.columns(Tables.dictrowtable([(; a=SSS(1)), (; b=2)])) Tables.CopiedColumns{NamedTuple{(:a, :b), Tuple{Vector{Union{Missing, SSS}}, Vector{Union{Missing, Int64}}}}}...

Biblatex supports a `pubstate` field which is used to indicate if a work is submitted, accepted, in press, etc. `pandoc-citeproc` converts this to a `status` field in the JSON/YAML output...

pinned

``` julia> tab2 = (x = [rand(2,2) for _ in 1:10], ); julia> io2 = IOBuffer() IOBuffer(data=UInt8[...], readable=true, writable=true, seekable=true, append=false, size=0, maxsize=Inf, ptr=1, mark=-1) julia> Arrow.write(io2, tab2) IOBuffer(data=UInt8[...], readable=true,...

```julia using Dates, Arrow io = Arrow.tobuffer((x=[missing; nothing; Nanosecond(1)], )) ``` ``` ERROR: BoundsError: attempt to access DataType at index [3] Stacktrace: [1] isatypeid(x::Arrow.Duration{Arrow.Flatbuf.TimeUnitModule.NANOSECOND}, #unused#::Type{Nanosecond}, #unused#::Type{Tuple{Union{Missing, Nothing}, Nanosecond}}, i::Int64) (repeats...

bug

This is based on the spec I found here: https://www.eiscat.se/wp-content/uploads/2016/03/Version-4-MAT-File-Format.pdf It doesn't handle everything but maybe it's better than nothing! Unfortunately I lack a sufficiently diverse collection of .mat files...