maihde

Results 31 comments of maihde

Hi basak, Just checking to see if you have had an opportunity to review this pull commit.

Thanks @jbednar for the prompt response, detailed information, and some workarounds for me to consider using. Your idea of pre-aggregating by distinct color values should work for my situation. Do...

Here is what I've come up with so far, comments appreciated: ```python def simplify_categories(df, col, color_key, inplace=False): # TODO add check that df[col] is categorical cats = df[col].cat.categories if isinstance(color_key,...

At first glance, `simplify_categories` would seem to be safe to call within `_colorize` and it would not change the output image. If so, then it would mean that `_colorize` is...

Eric, I couldn't find documentation about the Roku SDK supporting Ogg format. I'm looking at this reference: http://sdkdocs.roku.com/display/sdkdoc/Content+Meta-Data Could you point me to the developer reference regarding Ogg support so...

Okay, that makes sense...I was confused because you indicated that the Roku 3 supported it. Currently I'm using the built in roAudioPlayer and it's ability to directly play from http...so...

The size limit is an easy fix, I will increase that. I'll also investigate potential reasons for HTTPS to fail. In either case I'll respond here when I have a...

Brad, I agree with your sentiment. If you are intrepid and willing to try a bit of Roku development; I believe that adding the following: xfer.SetCertificatesFile ("common:/certs/ca-bundle.crt") xfer.InitClientCertificates() Everywhere you...

That is good news! That means that you if you make one more change things will probably start working. Around line 575 you will find this: m.audioPlayer = CreateObject("roAudioPlayer") Then...

So the X-Roku-Reserved-Dev-Id is not related to SSL/HTTPs. I just happened to copy-paste it from other code I had that uses HTTPs successfully. I'll happily add all of those changes...