JakubPorubcansky
JakubPorubcansky
## Details The following lines of code works ```julia using Plots, Dates gr() plot([DateTime(1), DateTime(2)], [1,2], xticks=:native) hline!([2.]) ``` However, the same code does not work with PlotlyJS backend ```julia...
I am trying to compile this minimal example package to an app TestPackage.jl ```julia module TestPackage using TimeZones function julia_main()::Cint try @info "Start" sleep(3) timeZone = TimeZone("Europe/Budapest") @info "timeZone=$timeZone" sleep(3)...
In Julia 1.7.3, the following code is working ```julia julia> using Dates, TimeZones julia> range(ZonedDateTime(2007, 03, 24, tz"Europe/Budapest"), length=6, step=Hour(1)) ZonedDateTime(2007, 3, 24, tz"Europe/Budapest"):Hour(1):ZonedDateTime(2007, 3, 24, 5, tz"Europe/Budapest") julia> versioninfo()...