Milan Klöwer
Milan Klöwer
```julia using Twitter twitterauth(...) post_status_update(status="Test tweet") ``` works fine for me, but how does one include media, e.g. a png file? TwitterAPI [seems](https://stackoverflow.com/questions/20752226/how-to-add-an-image-to-a-tweet-with-twitterapi) to implement it as ```python api =...
The current (v0.33.16) implementation of `entropy(p)` https://github.com/JuliaStats/StatsBase.jl/blob/071d10a110d756fa15c6a6878936eee27e4c2cb6/src/scalarstats.jl#L760-L768 returns weird results if the argument isn't a probability-like vector (i.e. `sum(p) != 1`) ```julia julia> entropy([0.5,0.5],2) # correct 1.0 julia> entropy([0.5,0.25],2) #...
I have some situations where a `### Heading` is consistenly not rendered (locally and on github pages), although all markdown rules seem to be followed  I consequently get these...
NetCDF v4.9 was released last month: https://github.com/Unidata/netcdf-c/releases/tag/v4.9.0. Are there any plans to update [NetCDF_jll.jl](https://github.com/JuliaBinaryWrappers/NetCDF_jll.jl) (which currently includes v4.8) and this package accordingly? I see @Alexander-Barth already created https://github.com/Alexander-Barth/NetCDF_jll.jl with builds...
Despite using NetCDF.jl v0.11 I just got this error ```julia NetCDF error code 24: Too many open files Stacktrace: [1] check at /home/kloewer/.julia/packages/NetCDF/2DiO1/src/netcdf_helpers.jl:22 [inlined] [2] nc_open(::String, ::UInt16, ::Array{Int32,1}) at /home/kloewer/.julia/packages/NetCDF/2DiO1/src/netcdf_c.jl:234...
I have a [package](https://github.com/milankl/Juls.jl), which [fails the cirrus-ci tests](https://github.com/milankl/Juls.jl/runs/275264643) on FreeBSD with Julia 1.0,1.2 as well as nightly due to its dependencies on NetCDF.jl, whereas Linux, osx, win pass (with...
If I create dimensions like ``` xdim = NcDim("x",nx,values=x) ydim = NcDim("y",ny,values=y) tdim = NcDim("t",0,unlimited=true) ``` and the variables as ``` uvar = NcVar("u",[xdim,ydim,tdim],t=Float32) tvar = NcVar("t",tdim,t=Int64) ``` I can...
I've raised this issue https://github.com/JuliaComputing/FourierTransforms.jl/issues/8#issue-495818536, which is about https://github.com/JuliaMath/AbstractFFTs.jl/blob/66695a72b2a29a059a9bf5fae51a3107172f146d/src/definitions.jl#L20-L22 In theory, `FourierTransforms.jl` should allow for a type-flexible FFT, i.e. `fft(::Array{T,1}) where {T
https://github.com/mauro3/UnPack.jl/blob/91296e0f1820e7d5c9b040ee488658d1fe86697e/src/UnPack.jl#L92-L93 I was wondering whether it would make sense to extend this macro such that `@unpack A` unpacks all fieldnames in `A`? At the moment line 93 triggers that as...
AFAIK netCDFs default compression algorithm is [zlib](https://en.wikipedia.org/wiki/Zlib). Zlib is not bad, but I highly recommend to use [Zstandard](http://facebook.github.io/zstd/) as I achieve much better compression factors with it. In general benchmarks,...