Murat Knecht

Results 14 comments of Murat Knecht

Won't help you anymore, but I just noticed, having this problem myself, that Pixel.prototype does have those functions. So, in case you implement a Pixel-wise filter you can call those...

Had a look. Found two bugs. 1. In Caman.Pixel.putPixelRelative the variable newLoc is sometimes misspelled as nowLoc. https://github.com/meltingice/CamanJS/blob/master/src/core/pixel.coffee#L57 2. Several methods of Caman.Pixel call `coordinatesToLocation` and `locationToCoordinates` on `this`. Unfortunately,...

Hey @untemps ! Glad you like it. What browser (version) and OS and approx screen size are you using? Can you give me a screenshot? Sorry for the late reply,...

Yep, that's kinda known … :) I'll look into it. Thanks!

@zkanda nope … my backlog is immense, atm :/

Hasn't happened recently anymore … and have never figured out how to make a reliable test case, sorry. :(

why not use the exitcode to determine the error? ``` $ flake8 ; echo $? ./test.py:6:2: E225 missing whitespace around operator ./test.py:14:5: F841 local variable 'x' is assigned to but...

How about the usual approach of creating a new decorator, and deprecating the old one? (edited because mistyped, and sent too early)

True. How about a configuration option that defaults to the old behavior: ``` python @ajax_request(use_django_encoder=True) def cost_view(request): return {'total': Decimal("4")} @ajax_request() def user_view(request): return {'id': 7} ``` Arguably, though, it's...

But it does support YAML, too, no? That's why I shed away from the `JSON` name. :) Also, Decorators that can be applied with and without arguments are possible, i.e....