Jason E. Aten, Ph.D.

Results 183 comments of Jason E. Aten, Ph.D.

@aloucks helpful thankyou. I wonder why folks seem to think that #33 fixed the issue, when apparently it does not? Maybe it was re-broken.

gomacro continues to amaze me. Is there any way to have the `import _i "import/path/for/your/application"` part run under go:generate so that my x_package.go imports don't get stale? update: I'll open...

Is there an inverse of `func (ir *Interp) ValueOf(name string) (value r.Value)`? That is, in my host code I have say a Go struct value (of a type precompiled into...

This is so cool. Thanks @cosmos72. I was able to inject a global x with interp.DeclVar(). But to inject x into package y, so far I did need to have...

awesome. Thanks Massimiliano! For anyone else reading, this was my final flow for updating variable `x` in package `y`. The api evolved a little and `interp.Comp` was needed for the...

the new `gopls` (https://github.com/golang/tools/tree/master/gopls) lets you jump to code definitions, quickly. And typically the docs are just above the function, so that could work nicely. It is obviously written in...

There are a bunch of geo projects already done in Go that could be built on. https://github.com/tidwall/tile38 (MIT license) https://github.com/icha024/go-geoindex (BSD 3-clause license) https://github.com/kellydunn/golang-geo (MIT license)

Thoughts on this topic: Since the owner syntax might change, it might be worth marking groups with a distinguished sigil so that they won't collide with owners in the future....

An example of an attack in the wild today that is based on the abuse of unicode space characters. It tricked 1 million users into downloading a fake WhatsApp: https://thehackernews.com/2017/11/fake-whatsapp-android.html...

...or vice-versa. I ended using bitmapContainer operations by default for most things in the runContainer binary operations, since they sped up the high cardinality test cases so much. For low...