All articles by Vláďa Macek

Thumbnail image for Quick Django Class Based View Decorator

Quick Django Class Based View Decorator

<p>The</p><p>recommended way</p><p>to add decorators such as</p><p>login_required</p><p>to class based views in Django is a bit verbose. Here’s a little metaclass-producing function you may find handy:</p><p>def</p><p>DecoratedDispatchMethod</p><p>(</p><p>actual_decorator</p><p>):</p><p>"""</p><p>If you want to decorate the …</p>
Thumbnail image for Detecting File Moves & Renames with Rsync

Detecting File Moves & Renames with Rsync

<p>Without patching, the</p><p>rsync</p><p>utility lacks support to detect when a file was renamed/moved across multiple directories inside the synced tree. There is a</p><p>&amp;ndash;&amp;ndash;fuzzy</p><p>option to save bandwidth by building upon similar files on the target side, but only …</p>