Tom Kwong

Results 76 comments of Tom Kwong

Come to think of it, another option is to support that syntax directly in the language without using any macro. Maybe that could be a 2.0 target?

I was just thinking about `nthreads!` sounding a little weird because it's not a verb. Given that it's a global setting, would it make sense to create a struct that...

I don't want to rename the columns so `renamecols` is not actually helpful. My main concerns are: 1. Is the code readable? Since the code does not specify where the...

I have replicated the exact same issue, as reported by someone as well on the Humans of Julia Discord server. @truedichotomy were you able to work around this issue?

I actually checked last night. Removing the try/catch totally fixes the performance issue.

Looks like it fails for all `Dict` with non-symbol keys: ``` julia> c4 = Dict("a" => :b) Dict{String,Symbol} with 1 entry: "a" => :b julia> BSON.@save "test.bson" c4 ERROR: UndefRefError:...

By now, for [HoJBot](https://github.com/Humans-of-Julia/HoJBot.jl), I have seen 2 crashes before. Today, it did not crash but the bot appears to be offline in Discord and it's not handling messages. I...

That's a good point. Julia projects typically uses GitHub actions for CI. Is there any pre-made actions for Grakn? If not, we can probably set that up. I was also...

We already know Python behave allows that. I just tried cucumber-js as well and it also works there. So I don't think blank lines matter.

Same issue with blank line right after `Scenario`: ``` julia> ExecutableSpecifications.Gherkin.parsefeature(""" Feature: foo Scenario: bar Given waz When woo Then cool """) ERROR: MethodError: no method matching getindex(::Nothing, ::Symbol) Stacktrace:...