Month: May 2014

VirtualBox resizing vmdk to increase dev/mapper partition

If you’ve run out of space on a VirtualBox vmdk drive and want to increase the partition’s size, do the following: 1) Download the GParted ISO from their website. 2) Convert your vmdk to a vdi (VBoxManage can be found in your virtualbox “program files” directory. Use explicit file paths if needed) >> VBoxManage clonehd […]

JQuery Sortable with multiple sections within the same view

I ran into an issue the other day where multiple sortable regions were dynamically created within the same view, all with the same class structure. After running > $(“.the-class”).sortable({…}) I noticed that only the first sortable region was actually sorting. To resolve this issue iterate over the class and call sortable on each individual element. […]