Tom Kwong
Tom Kwong
From https://github.com/Humans-of-Julia/HoJBot.jl/blob/9ea96e4bed8be2f338b30157a46d73d7b93031a8/src/command/jc.jl#L28 ```julia tz_arg = isempty(args) || !TimeZones.istimezone(args[1]) ? "UTC" : args[1] current = ZonedDateTime(now(), TimeZone(tz_arg)) ```  
Has anyone thought about taking SQL as query interface for data frames? For example, doing something like this: ```julia julia> df = DataFrame(x = rand(1:3, 10), y = rand(10)) 10×2...
Hi, I'm just looking for suggestions. I want to read JSON objects from an IO in a streaming fashion e.g. taking 1024 bytes at a time. That means I have...