Tom Kwong

Results 53 issues of 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)) ``` ![image](https://user-images.githubusercontent.com/1159782/132104734-cb003a3f-420b-4b27-b02c-a137da96e76c.png) ![image](https://user-images.githubusercontent.com/1159782/132104747-23b6b64b-376a-4144-9cfa-4c48bc599e35.png)

area-ls-linter

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...

feature

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...