Ignacio Colautti

Results 15 comments of Ignacio Colautti

I have the same problem.

Is this really a problem?

I went to the docs page linked in the original post and found this: https://dev.mysql.com/doc/refman/5.6/en/udf-arguments.html > unsigned long *lengths > > For the initialization function, the lengths array indicates the...

``` if(dropdownLabel.length) { // MDN `aria-labelledby` description: Indicates the IDs of the elements that are the labels for the object. self.dropdownContainer.attr("aria-labelledby", dropdownLabel[0].id); } ``` I changed it to: ``` if(dropdownLabel.length...

I would love this! I want my keys on low brightness and add reactive/ripple effect on key press.

> I have some refactoring in progress that will make it feasible to support the battery status in the applet (#106) Great, thanks! Right now I don't know how much...

This is the output of the commands: ``` nachitox@xotihcan:~$ python3 -c "import openrazer.client; a = openrazer.client.DeviceManager(); print(a.devices[0].name, a.devices[0].has('battery'))" Razer BlackWidow V3 Mini Hyperspeed (Wireless) False nachitox@xotihcan:~$ python3 -c "import openrazer.client;...

I made the changes, restarted the deamon, closed/opened the app, restarted the tray applet, etc, but nothing changed. Still no battery indicator or charging icon :(

I'm asking without any knowledge about how the plugins work. We use [rabbitmq-message-deduplication](https://github.com/noxdafox/rabbitmq-message-deduplication) which also uses a custom exchange type, so we couldn't use both. We can't have unique delayed...

jquery and moment are loaded using loadjs too ``` loadjs('https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js', 'jquery'); loadjs.ready('jquery', function() { loadjs([REAL_PATH + 'moment/moment.min.js',], 'moment'); }); ```