Skip to content

Instantly share code, notes, and snippets.

View richmilns's full-sized avatar

Rich Milns richmilns

View GitHub Profile
@richmilns
richmilns / viewport-sizes.js
Created July 1, 2015 13:09
Display viewport dimensions
(function($) {
$(document).ready(showViewportSize);
$(window).resize(showViewportSize);
$('body').append('<div id="viewport__sizes"><span id="viewport__width"></span>x<span id="viewport__height"></span>');
$('#viewport__sizes').css({
'font-family':'arial',
'font-size':'30px',
'color':'rgba(0,0,0,0.3)',
'z-index':'9999',
'position':'fixed',
@richmilns
richmilns / gist:5235256ce1e246905e19
Created March 27, 2015 14:18
Social Network colours for LESS
// Social Network Colours
// =======================================
@col-facebook:#3b5998;
@col-twitter:#00aced;
@col-google-plus:#dd4b39;
@col-youtube:#bb0000;
@col-linkedin:#007bb6;
@col-instragram:#517fa4;
@col-pinterest:#cb2027;
@richmilns
richmilns / gist:54d0521f3498867967aa
Created March 11, 2015 14:15
LESS Social Icons using FontAwesome
.social-icon {
font-size:0;
text-decoration:none;
&:before {
font-size:40px;
font-weight:normal;
font-style:normal;
font-family:'FontAwesome';
}
@richmilns
richmilns / gist:1dcdfe2d55bee32d80cf
Created February 28, 2015 00:09
Useful Git commands
# clone including submodules
git clone --recursive [email protected]:repo.git
# pull changes and update all submodules
git pull && git submodule foreach git pull origin master && git submodule update --recursive
# pull changes for every submodule
git submodule foreach git pull origin master
# when adding a new submodule after repo has been cloned, you need to re-init all submodules to make sure the code is actually checkout out
@richmilns
richmilns / gist:435bab60d544cfc2e794
Created February 28, 2015 00:06
SQL queries to change URLs in Wordpress
UPDATE wp_options SET option_value = replace( option_value, 'OLD_DOMAIN', 'NEW_DOMAIN' ) WHERE option_name = 'home' OR option_name = 'siteurl';
UPDATE wp_posts SET guid = replace( guid, 'OLD_DOMAIN', 'NEW_DOMAIN' ) ;
UPDATE wp_posts SET post_content = replace( post_content, 'OLD_DOMAIN', 'NEW_DOMAIN' ) ;
UPDATE wp_postmeta SET meta_value = replace( meta_value, 'OLD_DOMAIN', 'NEW_DOMAIN' ) ;
@richmilns
richmilns / gist:6836420ca7261506bc41
Created February 28, 2015 00:00
SQL query for returning all domains in Plesk 12 with the PHP handler / version
# Module = default PHP version using mod_php
# FastCGI = default PHP version using fast_cgi module
# (anything else) = the custom PHP handler installed in Plesk - if it's been named nicely this might look something like "php-5.5.8-custom"
select domains.`displayName`, hosting.`php_handler_id` from domains, hosting where hosting.`dom_id` = domains.`id`;