window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/14.0.0\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/14.0.0\/svg\/","svgExt":".svg","source":{"concatemoji":"https:\/\/archondigital.com\/wp-includes\/js\/wp-emoji-release.min.js?ver=6.1.1"}};
/*! This file is auto-generated */
!function(e,a,t){var n,r,o,i=a.createElement("canvas"),p=i.getContext&&i.getContext("2d");function s(e,t){var a=String.fromCharCode,e=(p.clearRect(0,0,i.width,i.height),p.fillText(a.apply(this,e),0,0),i.toDataURL());return p.clearRect(0,0,i.width,i.height),p.fillText(a.apply(this,t),0,0),e===i.toDataURL()}function c(e){var t=a.createElement("script");t.src=e,t.defer=t.type="text/javascript",a.getElementsByTagName("head")[0].appendChild(t)}for(o=Array("flag","emoji"),t.supports={everything:!0,everythingExceptFlag:!0},r=0;r<o.length;r++)t.supports[o[r]]=function(e){if(p&&p.fillText)switch(p.textBaseline="top",p.font="600 32px Arial",e){case"flag":return s([127987,65039,8205,9895,65039],[127987,65039,8203,9895,65039])?!1:!s([55356,56826,55356,56819],[55356,56826,8203,55356,56819])&&!s([55356,57332,56128,56423,56128,56418,56128,56421,56128,56430,56128,56423,56128,56447],[55356,57332,8203,56128,56423,8203,56128,56418,8203,56128,56421,8203,56128,56430,8203,56128,56423,8203,56128,56447]);case"emoji":return!s([129777,127995,8205,129778,127999],[129777,127995,8203,129778,127999])}return!1}(o[r]),t.supports.everything=t.supports.everything&&t.supports[o[r]],"flag"!==o[r]&&(t.supports.everythingExceptFlag=t.supports.everythingExceptFlag&&t.supports[o[r]]);t.supports.everythingExceptFlag=t.supports.everythingExceptFlag&&!t.supports.flag,t.DOMReady=!1,t.readyCallback=function(){t.DOMReady=!0},t.supports.everything||(n=function(){t.readyCallback()},a.addEventListener?(a.addEventListener("DOMContentLoaded",n,!1),e.addEventListener("load",n,!1)):(e.attachEvent("onload",n),a.attachEvent("onreadystatechange",function(){"complete"===a.readyState&&t.readyCallback()})),(e=t.source||{}).concatemoji?c(e.concatemoji):e.wpemoji&&e.twemoji&&(c(e.twemoji),c(e.wpemoji)))}(window,document,window._wpemojiSettings);
var breeze_prefetch = {"local_url":"https:\/\/archondigital.com","ignore_remote_prefetch":"1","ignore_list":["\/wp-admin\/"]};
https://archondigital.com/wp-content/plugins/breeze/assets/js/js-front-end/breeze-prefetch-links.min.js
https://archondigital.com/wp-includes/js/jquery/jquery.min.js
WebFont.load({
classes: false,
loading: function() {
document.documentElement.style.opacity = 0
},
active: function() {
document.documentElement.removeAttribute("style")
},
custom: {
families: ["Cardo:700,italic,regular","Libre Franklin:100,100italic,200,200italic,300,300italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic,italic,regular"],
urls: ["https://fonts.googleapis.com/css?family=Cardo:700,italic,regular&display=swap","https://fonts.googleapis.com/css?family=Libre Franklin:100,100italic,200,200italic,300,300italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic,italic,regular&display=swap"]
}
})
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());gtag('config', 'UA-431457-5');
Skip to main content Skip to footer (mt) Media Temple was just acquired by GoDaddy and I’m not sure if that’s a good thing
(mt) Media Temple was just acquired by GoDaddy, one of the best hosting companies that both graphic designers and web designers love to use and one of the best around taken over by what is known as one of the worst hosting company that ever existed.
I received an email a few minutes ago from Demian Sellfors, co-founder of (mt) Media Temple, announcing that the company has just been acquired by GoDaddy. The company posted an FAQ on their site further explaining their decision to join forces with GoDaddy.
The deal came as a complete surprise to me, I literally let out a big “WTF!?” given GoDaddy’s reputation as a cheap web hosting company with a terrible track record in customer support.
Demian Sellfors, in his email, explained how Media Temple would be able to expand their operations and become a positive influence on GoDaddy.
There has been a lot of changes lately in GoDaddy, which has also redesigned its website and in the past few months has been acquiring other tech companies that they intend to use as resources/services for small business start-ups.
Media Temple being a positive influence may be a good thing for GoDaddy. Years of customer neglect and outdated hosting could use a little help from the hip (mt) crew. They could learn a lot from how Media Temple operates real professional web hosting while providing excellent customer support.
One of the more interesting FAQ questions on Media Temple’s site was “What about GoDaddy’s reputation in the tech community?”, to which (mt) answered;
GoDaddy has been transformed in recent months and is essentially a new company. If we did not like what we have seen, we would not have joined the GoDaddy family. They have overhauled their leadership team and attracted tech talent from the best-of-the-best. We love “the new GoDaddy” that CEO Blake Irving and his team have created, especially their new approach with advertising, product focus and UX.Media Temple
I use GoDaddy for some of my domains and is also an existing (mt) customer where I still keep a few sites running. I left Media Temple’s (gs) Grid in 2008 when I moved to Slicehost, which has since been acquired by Rackspace , before moving on to Webfaction .
Both companies have their fair share of strengths and weaknesses and it would be interesting to see how this all plays out in a year’s time.
Like this: Like Loading...
animateElements();const ASCII_OF_A = "a".charCodeAt();
const NO_OF_ALPHABETS = 26;function animateElement(element, originalText, options) {
let iteration = 0;if (options.interval) {
return;
}options.interval = setInterval(() => {
const newWord = originalText
.split("")
.map((_, idx) => {
if (idx < iteration) {
return originalText[idx];
}
return String.fromCharCode(
Math.trunc(Math.random() * NO_OF_ALPHABETS) + ASCII_OF_A
);
})
.join("");
element.innerText = newWord;iteration += 1;if (iteration > originalText.length) {
clearInterval(options.interval);
options.interval = null;
}
}, 30);
}function getRandomLetter() {}function animateElements() {
const elements = document.getElementsByClassName("animate-terminal");for (const element of elements) {
const originalText = element.innerText;
const options = {
interval: null
};
animateElement(element, originalText, options);element.addEventListener("mouseover", (event) => {
animateElement(event.target, originalText, options);
});
}
}
window.WPCOM_sharing_counts = {"https:\/\/archondigital.com\/articles\/media-temple-acquired-by-godaddy-not-sure-if-thats-a-good-thing\/":1472};
https://archondigital.com/wp-content/plugins/jetpack/_inc/build/photon/photon.min.js
var dlmXHRtranslations = {"error":"An error occurred while trying to download the file. Please try again."};
const dlmXHR = {"xhr_links":{"class":["download-link","download-button"]},"prevent_duplicates":true,"ajaxUrl":"https:\/\/archondigital.com\/wp-admin\/admin-ajax.php","nonce":"565909f382"}; dlmXHRinstance = {}; const dlmXHRGlobalLinks = "https://archondigital.com/download/"; dlmXHRgif = "https://archondigital.com/wp-includes/images/spinner.gif"
https://archondigital.com/wp-content/plugins/download-monitor/assets/js/dlm-xhr.min.js
https://archondigital.com/wp-content/plugins/jetpack/_inc/build/likes/queuehandler.min.js
https://archondigital.com/wp-includes/js/comment-reply.min.js
https://archondigital.com/wp-content/plugins/akismet/_inc/akismet-frontend.js
var sharing_js_options = {"lang":"en","counts":"1","is_stats_active":"1"};
https://archondigital.com/wp-content/plugins/jetpack/_inc/build/sharedaddy/sharing.min.js
var windowOpen;
( function () {
function matches( el, sel ) {
return !! (
el.matches && el.matches( sel ) ||
el.msMatchesSelector && el.msMatchesSelector( sel )
);
}document.body.addEventListener( 'click', function ( event ) {
if ( ! event.target ) {
return;
}var el;
if ( matches( event.target, 'a.share-facebook' ) ) {
el = event.target;
} else if ( event.target.parentNode && matches( event.target.parentNode, 'a.share-facebook' ) ) {
el = event.target.parentNode;
}if ( el ) {
event.preventDefault();// If there's another sharing window open, close it.
if ( typeof windowOpen !== 'undefined' ) {
windowOpen.close();
}
windowOpen = window.open( el.getAttribute( 'href' ), 'wpcomfacebook', 'menubar=1,resizable=1,width=600,height=400' );
return false;
}
} );
} )();
var windowOpen;
( function () {
function matches( el, sel ) {
return !! (
el.matches && el.matches( sel ) ||
el.msMatchesSelector && el.msMatchesSelector( sel )
);
}document.body.addEventListener( 'click', function ( event ) {
if ( ! event.target ) {
return;
}var el;
if ( matches( event.target, 'a.share-twitter' ) ) {
el = event.target;
} else if ( event.target.parentNode && matches( event.target.parentNode, 'a.share-twitter' ) ) {
el = event.target.parentNode;
}if ( el ) {
event.preventDefault();// If there's another sharing window open, close it.
if ( typeof windowOpen !== 'undefined' ) {
windowOpen.close();
}
windowOpen = window.open( el.getAttribute( 'href' ), 'wpcomtwitter', 'menubar=1,resizable=1,width=600,height=350' );
return false;
}
} );
} )();
var windowOpen;
( function () {
function matches( el, sel ) {
return !! (
el.matches && el.matches( sel ) ||
el.msMatchesSelector && el.msMatchesSelector( sel )
);
}document.body.addEventListener( 'click', function ( event ) {
if ( ! event.target ) {
return;
}var el;
if ( matches( event.target, 'a.share-linkedin' ) ) {
el = event.target;
} else if ( event.target.parentNode && matches( event.target.parentNode, 'a.share-linkedin' ) ) {
el = event.target.parentNode;
}if ( el ) {
event.preventDefault();// If there's another sharing window open, close it.
if ( typeof windowOpen !== 'undefined' ) {
windowOpen.close();
}
windowOpen = window.open( el.getAttribute( 'href' ), 'wpcomlinkedin', 'menubar=1,resizable=1,width=580,height=450' );
return false;
}
} );
} )();
var windowOpen;
( function () {
function matches( el, sel ) {
return !! (
el.matches && el.matches( sel ) ||
el.msMatchesSelector && el.msMatchesSelector( sel )
);
}document.body.addEventListener( 'click', function ( event ) {
if ( ! event.target ) {
return;
}var el;
if ( matches( event.target, 'a.share-tumblr' ) ) {
el = event.target;
} else if ( event.target.parentNode && matches( event.target.parentNode, 'a.share-tumblr' ) ) {
el = event.target.parentNode;
}if ( el ) {
event.preventDefault();// If there's another sharing window open, close it.
if ( typeof windowOpen !== 'undefined' ) {
windowOpen.close();
}
windowOpen = window.open( el.getAttribute( 'href' ), 'wpcomtumblr', 'menubar=1,resizable=1,width=450,height=450' );
return false;
}
} );
} )();
(function () {
var comm_par_el = document.getElementById( 'comment_parent' ),
comm_par = ( comm_par_el && comm_par_el.value ) ? comm_par_el.value : '',
frame = document.getElementById( 'jetpack_remote_comment' ),
tellFrameNewParent;tellFrameNewParent = function () {
if ( comm_par ) {
frame.src = "https://jetpack.wordpress.com/jetpack-comment/?blogid=112850028&postid=1472&comment_registration=0&require_name_email=1&stc_enabled=1&stb_enabled=1&show_avatars=1&avatar_default=mystery&greeting=Leave+a+Reply&jetpack_comments_nonce=bfc4e87d88&greeting_reply=Leave+a+Reply+to+%25s&color_scheme=light&lang=en_US&jetpack_version=11.7.1&show_cookie_consent=0&has_cookie_consent=0&token_key=%3Bnormal%3B&sig=9bcb4b1f17fb18fea8cff91de16f41adc6abbf66#parent=https%3A%2F%2Farchondigital.com%2Farticles%2Fmedia-temple-acquired-by-godaddy-not-sure-if-thats-a-good-thing%2F" + '&replytocom=' + parseInt( comm_par, 10 ).toString();
} else {
frame.src = "https://jetpack.wordpress.com/jetpack-comment/?blogid=112850028&postid=1472&comment_registration=0&require_name_email=1&stc_enabled=1&stb_enabled=1&show_avatars=1&avatar_default=mystery&greeting=Leave+a+Reply&jetpack_comments_nonce=bfc4e87d88&greeting_reply=Leave+a+Reply+to+%25s&color_scheme=light&lang=en_US&jetpack_version=11.7.1&show_cookie_consent=0&has_cookie_consent=0&token_key=%3Bnormal%3B&sig=9bcb4b1f17fb18fea8cff91de16f41adc6abbf66#parent=https%3A%2F%2Farchondigital.com%2Farticles%2Fmedia-temple-acquired-by-godaddy-not-sure-if-thats-a-good-thing%2F";
}
};
if ( 'undefined' !== typeof addComment ) {
addComment._Jetpack_moveForm = addComment.moveForm;addComment.moveForm = function ( commId, parentId, respondId, postId ) {
var returnValue = addComment._Jetpack_moveForm( commId, parentId, respondId, postId ),
cancelClick, cancel;if ( false === returnValue ) {
cancel = document.getElementById( 'cancel-comment-reply-link' );
cancelClick = cancel.onclick;
cancel.onclick = function () {
var cancelReturn = cancelClick.call( this );
if ( false !== cancelReturn ) {
return cancelReturn;
}if ( ! comm_par ) {
return cancelReturn;
}comm_par = 0;tellFrameNewParent();return cancelReturn;
};
}if ( comm_par == parentId ) {
return returnValue;
}comm_par = parentId;tellFrameNewParent();return returnValue;
};
}
// Do the post message bit after the dom has loaded.
document.addEventListener( 'DOMContentLoaded', function () {
var iframe_url = "https:\/\/jetpack.wordpress.com";
if ( window.postMessage ) {
if ( document.addEventListener ) {
window.addEventListener( 'message', function ( event ) {
var origin = event.origin.replace( /^http:\/\//i, 'https://' );
if ( iframe_url.replace( /^http:\/\//i, 'https://' ) !== origin ) {
return;
}
frame.style.height = event.data + 'px';
});
} else if ( document.attachEvent ) {
window.attachEvent( 'message', function ( event ) {
var origin = event.origin.replace( /^http:\/\//i, 'https://' );
if ( iframe_url.replace( /^http:\/\//i, 'https://' ) !== origin ) {
return;
}
frame.style.height = event.data + 'px';
});
}
}
})})();
_stq = window._stq || [];
_stq.push([ 'view', {v:'ext',blog:'112850028',post:'1472',tz:'8',srv:'archondigital.com',j:'1:11.7.1'} ]);
_stq.push([ 'clickTrackerInit', '112850028', '1472' ]);