Category Archives: Technical

“Rational” IT related entries.

How to load VirtIO storage drivers in Windows System Restore

If you need to load VirtIO block storage driver (aka viostor) in Windows System Restore (aka Windows Recovery Mode) to recover your Windows virtual machine, take the following steps. (Also please read my note below).

Posted in How to’s | Tagged , | 1 Comment

How to add an existing virtual disk to Proxmox

It’s trivial to create virtual disks in Proxmox, but what if you want to add an existing disk to a new virtual machine?

Posted in How to’s | Tagged , | 7 Comments

Windows not detecting unallocated space after extending virtual disk

You’ve extended a virtual disk in Vmware or Proxmox for a Windows virtual machine, but the disk appears the same size in Disk Management?

Posted in Solutions | Tagged , | Leave a comment

Sample AppleScript + Bash uninstaller

Should you ever need to write an uninstaller for your macOS app, feel free to base it on our project—written entirely in AppleScript and Bash: https://github.com/SmoothMouse/Uninstaller

Posted in Releases | Tagged , , | Leave a comment

XQuartz.pkg stalls at “verifying” in El Capitan

I don’t know why OS X El Capitan sometimes fails to verify XQuartz 2.7.9 package (the process just gets stuck despite “Allow apps downloaded from anywhere” on “Enabled”). What I know, however, is that you can still install it via Terminal as easy … Continue reading

Posted in Solutions | Tagged | 17 Comments

Run Django dev server with Gulp

This is basically an extract from this excellent article by Caktus Group’s Calvin Spealman.

Posted in How to’s | Tagged , , | Leave a comment

Django: add i18n template tag to built-ins

Django 1.9 allows you to load template tags globally, i.e. without having to include {% load %} statements at the top of each template. The new option is called builtins and you can set it in your settings.py like so … Continue reading

Posted in Programming | Tagged | Leave a comment

librsvg 2.40.11 breaks resizing in rsvg-convert

rsvg-convert 2.40.11 calculates SVG bounds incorrectly resulting in an empty or cropped image. (See my comment in Homebrew repository and the bug report). 

Posted in Bugs | Tagged | 1 Comment

Magnific Popup + HTML5 History API (demo)

A demo of Magnific Popup with unique URLs and browser Back/Forward button support, using HTML5 History API via History.js. GitHub.

Posted in Programming | Tagged | Leave a comment

Watermark images like a pro using Python + Wand + librsvg

This is a Python 2.7 code recipe for applying a semi-transparent vector (SVG) watermark with overlay blending like so: What’s special about it:

Posted in Programming | Tagged , | 4 Comments