Skip to content

Instantly share code, notes, and snippets.

View pixelwatt's full-sized avatar
✏️
Documenting all the things

Rob Clark pixelwatt

✏️
Documenting all the things
View GitHub Profile
@biophonc
biophonc / vagrant virtualbox vm to vmwarefusion.md
Last active October 19, 2022 16:40
Migrate Vagrant VirtualBox VM to VMware Fusion

Migrate Vagrant VirtualBox VM to VMware Fusion

Notes:

  • Unfortunately the process is not as simple as I'd have expected it, that's why I wrote this little step-by-step instruction.
  • My setup is/was:
    • OSX 10.9.4
    • VirtualBox 4.3.12
    • VMware Fusion 6.0.4
    • OS as VM to migrate: Ubuntu 10.04.4 LTS
@rianrietveld
rianrietveld / rrwd_remove_page_template
Created April 24, 2014 07:52
Remove page templates from dropdown page attributes in WordPress ( >= 3.9 )
<?php
add_filter( 'theme_page_templates', 'rrwd_remove_page_template' );
function rrwd_remove_page_template( $pages_templates ) {
unset( $pages_templates['page_blog.php'] );
unset( $pages_templates['page_archive.php'] );
return $pages_templates;
}
?>
@ivandoric
ivandoric / gist:11220502
Created April 23, 2014 15:41
wordpress: Default editor styles
/* == WordPress WYSIWYG Editor Styles == */
.entry-content img {
margin: 0 0 1.5em 0;
}
.alignleft, img.alignleft {
margin-right: 1.5em;
display: inline;
float: left;
}