This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(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', |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.social-icon { | |
font-size:0; | |
text-decoration:none; | |
&:before { | |
font-size:40px; | |
font-weight:normal; | |
font-style:normal; | |
font-family:'FontAwesome'; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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' ) ; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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`; |