Tom Clift

Results 6 comments of Tom Clift

Used it, like it, thank you @tomdcc. Want a hand to document usage in the README? btw, I don't much like how the HTML templates are added to the javascript...

+1 IMO the primary purpose of pagination is to avoid scrolling (keeping all table items on screen), not a bandwidth or performance concern. Going to the next page is not...

The error: ``` 'host' is not a valid URL ``` is likely because: ```terraform host = data.google_container_cluster.this.endpoint ``` should have been (as per #1468): ```terraform host = "https://${data.google_container_cluster.this.endpoint}" ``` but:...

This may have been evident from the issue title, but those looking for a workaround can remove dynamic/data values from the provider configuration. E.g., given a suitably configured `kubectl` environment,...

Approaching this from a different angle... how would one produce a 73pt × 73pt PDF (to pick an arbitrary size that doesn't appear possible)? There seem to be many issues...

It appears that Yakuake and Konsole are not supported because in response to "send device attributes" they send: ``` $ echo -e "\e[c" ^[[?62;1;4c ``` ([Konsole source](https://github.com/KDE/konsole/blob/master/src/Vt102Emulation.cpp#L2451)), where jplot expects...