Vaughn Iverson

Results 412 comments of Vaughn Iverson

Right, I guess my thought was that if you want all (or part) of the hydrated data, it is no big deal to use the root hash to retrieve that...

Over the weekend, I thought of one other issue with the current dedup format. It does not communicate any information about chunk size. That is, if it is valid to...

Also, I should add, if you aren't familiar with them, you should examine how the [Dat](https://github.com/datproject/dat) and [Noms](https://github.com/attic-labs/noms) projects are addressing very similar issues. They each have somewhat different goals...

Hi @mafintosh, thanks for the quick reply. I don't *think* there's anything special about the dataset. It is over **5 TB** so I'm not sure sharing it is really an...

I'm also seeing this same issue on the cloning machine after between 24-48 hours of runtime: ``` % dat clone [REDACTED] /Volumes/RAID2/ dat v13.9.2 Cloning: 93616 files (3.7 TB) 1...

And an attempt to restart the clone ran for awhile, and then produced this perhaps slightly more informative dump. The cloning machine has 8GB of RAM with about 5GB free...

Heres what it looks like in an actual notebook: https://gist.github.com/vsivsi/f63be32d037e3effcd7c0e04aacda2cf

Jupyter**lab** and Nteract both support it out-of-the-box. Apparently their front-end JS bundles already include recent versions of Vega and VegaLite. To make it work with classic Jupyter notebooks you need...

After posting I realized that the wrapping struct in my code is redundant. This works just as well: ```golang import "encoding/json" type VegaLite map[string]interface{} func (v VegaLite) SimpleRender() display.MIMEMap {...

FYI: `plot.Legend.Add()` is variadic for the `plot.Thumbnailer`. See [definition](https://godoc.org/gonum.org/v1/plot#Legend.Add) And that seems to be the difference between what go/types.Type and reflect.Type are seeing. Still unclear why there is a difference...