Tom Kwong

Results 53 issues of Tom Kwong

If you typed a command that isn't recognized then it should display a help message. For example: ``` ,tz ``` I just reviewed the code again. There should be an...

bug
good first issue

The current Happy Reactor function is a little "dumb" in that it's just matching few keywords. https://github.com/Humans-of-Julia/HoJBot.jl/blob/a63ab3e3f1233e3fe74f9fc642d04bc447b6e7ea/src/handler/reaction.jl#L23 It would be nice if we have a NLP sentiment model and derive...

new capability

Hi Pietro. Great package! Any thought about how to support nested structs? e.g. ``` julia> struct Point x::Int y::Int end julia> struct Foo id::Int name::String pt::Point end julia> x =...

It's a bit unfortunate that we had to deprecate the fast lookup in `getindex` (ref: https://github.com/JuliaCollections/DataStructures.jl/pull/180) I have a need to create a subset of an `OrderedSet` but it's quite...

I happened to build two macros that uses `splitdef` and `combinedef` functions. When I tried to use them together, `splitdef` gives an error. Looks like it doesn't expand the inner...

The manual says: > This package provides a collection of useful extensions for Julia's built-in docsystem. These are features that are still regarded as "experimental" and not yet mature enough...

I stumbled upon this site and thought it may be good for you to add this package to the list. Just a thought. http://www.gasmodel.com/code.htm P.S. Nice talk at JuliaCon 2020.

If I define a module and then try to verify interfaces from outside of the module, it gets confused: ```julia julia> module Foo using BinaryTraits using BinaryTraits.Prefix: Is @trait Cute...

Some interfaces requires the implementer to define a function that returns `true` so that it knows if a type has implemented the interface at runtime. Examples: - `Tables.istable` - `IteratorInterfaceExtensions.isiterable`...

discussion

See https://discourse.julialang.org/t/ann-binarytraits-jl-a-new-traits-package/37475/5?u=tk3369 In a nutshell, the ideas are: 1. do not allow anyone to add new interface functions to an existing trait. 2. check the interface implementation correct as soon...

feature
syntax