Michael Blum

Results 12 comments of Michael Blum

I patched it by adding in the traceEnabled global here: vi +52 Pebble/common/phonesim/libpebble/pebblecomm/WebSocketPebble.py and here: vi +53 tools/pebblecomm/WebSocketPebble.py and adding this at line ~27 to both files: global traceEnabled traceEnabled...

This would help with imperfect data tied to each hash - otherwise i need bespoke indexes or extra logic around what can be added to the index in terms of...

I've also encountered this in `3.4` using Let's Encrypt. The `client_auth` flag fixes the error when using the Python driver as well. Otherwise I get a `BAD_CERTIFICATE_ERROR` in Firefox and...

Could you make a jsfiddle showing that bug? Do you mean when you type in something thats not on the options list it resets?

I got some strange UX behaviour so i revised my clear function to doi a clear value and refresh: ``` javascript this.$element.val(''); this.source = this.parse(); this.options.items = this.source.length; ``` and...

this causes clicking on an option to blur rather then set the value now.... I'll look to other ways to get blur to fire. Basically the problem is that clearing...

Question: why does blur clear out the value if there is one? ``` javascript , blur: function (e) { var that = this; this.focused = false; var val = this.$element.val();...

I wrote a custom method to do this: - clear the value - update the list *don't apply focus ``` javascript , clear: function(){ this.$element.val(''); this.source = this.parse(); this.options.items =...

We wanted to remove the X so that this plugin acts like a normal looking dropdown to avoid the extra click. for the time being this solution seems to work...

good questions @benbjohnson ! When bucket versioning is enabled you pay for new versions but deleting prior versions or the object completely will reduce your bill: https://aws.amazon.com/s3/faqs/ I opted to...