class td_data_source {

    static $fake_loop_offset = 0; //used by the found row hook in templates to fix pagination. The blocks do not use this since we use custom pagination there.


    /**
     * converts a pagebuilde array to a wordpress query args array
     * creates the $args array from shortcodes - used by the pagebuilde + widgets + by the metabox_to_args
     * @param string $atts : the shortcode string
     * @param string $paged : page number  /1  or  /2
     * @return array
     */
    static function shortcode_to_args($atts = '', $paged = '') {
        extract(shortcode_atts(
                array(
                    'category_ids' => '',
                    'category_id' => '',
                    'tag_slug' => '',
                    'sort' => '',
                    'limit' => '', /*'limit' => 5,*/
                    'autors_id' => '',
                    'installed_post_types' => '',
                    'posts_per_page' => '',
                    'offset' => ''
                ),
                $atts
            )
        );

        //init the array
        $wp_query_args = array(
            'ignore_sticky_posts' => 1
        );

        //the query goes only via $category_ids - for both options ($category_ids and $category_id) also $category_ids overwrites $category_id
        if (!empty($category_id) and empty($category_ids)) {
            $category_ids = $category_id;
        }


        if (!empty($category_ids)) {
            $wp_query_args['cat'] = $category_ids;
        }

        if (!empty($tag_slug)) {
            $wp_query_args['tag'] = str_replace(' ', '-', $tag_slug);
        }

       // $current_day = date('j');

        switch ($sort) {
            case 'featured':
                if (!empty($category_ids)) {
                    //for each category, get the object and compose the slug
                    $cat_id_array = explode (',', $category_ids);

                    foreach ($cat_id_array as &$cat_id) {
                        $cat_id = trim($cat_id);

                        //get the category object
                        $td_tmp_cat_obj =  get_category($cat_id);

                        //make the $args
                        if (empty($wp_query_args['category_name'])) {
                            $wp_query_args['category_name'] = $td_tmp_cat_obj->slug; //get by slug (we get the children categories too)
                        } else {
                            $wp_query_args['category_name'] .= ',' . $td_tmp_cat_obj->slug; //get by slug (we get the children categories too)
                        }
                        unset($td_tmp_cat_obj);
                    }
                }

                $wp_query_args['cat'] = get_cat_ID(TD_FEATURED_CAT); //add the fetured cat
                break;
            case 'popular':
                $wp_query_args['meta_key'] = td_page_views::$post_view_counter_key;
                $wp_query_args['orderby'] = 'meta_value_num';
                $wp_query_args['order'] = 'DESC';
                break;
            case 'popular7':
                $wp_query_args['meta_key'] = td_page_views::$post_view_counter_7_day_total;
                $wp_query_args['orderby'] = 'meta_value_num';
                $wp_query_args['order'] = 'DESC';
                break;
            case 'review_high':
                $wp_query_args['meta_key'] = td_review::$td_review_key;
                $wp_query_args['orderby'] = 'meta_value_num';
                $wp_query_args['order'] = 'DESC';
                break;
            case 'random_posts':
                $wp_query_args['orderby'] = 'rand';
                break;
            case 'alphabetical_order':
                $wp_query_args['orderby'] = 'title';
                $wp_query_args['order'] = 'ASC';
                break;
            case 'comment_count':
                $wp_query_args['orderby'] = 'comment_count';
                $wp_query_args['order'] = 'DESC';
                break;
            case 'random_today':
                $wp_query_args['orderby'] = 'rand';
                $wp_query_args['day'] = date('j');
                break;
            case 'random_7_day':
                $wp_query_args['orderby'] = 'rand';
                $wp_query_args['date_query'] = array(
                            'column' => 'post_date_gmt',
                            'after' => '1 week ago'
                            );
                break;
        }

        if (!empty($autors_id)) {
            $wp_query_args['author'] = $autors_id;
        }

        //add post_type to query
        if (!empty($installed_post_types)) {
            $array_selected_post_types = array();
            $expl_installed_post_types = explode(',', $installed_post_types);

            foreach ($expl_installed_post_types as $val_this_post_type) {
                if (trim($val_this_post_type) != '') {
                    $array_selected_post_types[] = trim($val_this_post_type);
                }
            }

            $wp_query_args['post_type'] = $array_selected_post_types;//$installed_post_types;
        }

        //only show published posts
        $wp_query_args['post_status'] = 'publish';

        //show only unique posts if that setting is enabled on the template
        if (td_unique_posts::$show_only_unique == true) {
            $wp_query_args['post__not_in'] = td_unique_posts::$rendered_posts_ids;
        }



        //custom pagination limit
        if (empty($limit)) {
            $limit = get_option('posts_per_page');
        }
        $wp_query_args['posts_per_page'] = $limit;


        //custom pagination
        if (!empty($paged)) {
            $wp_query_args['paged'] = $paged;
        } else {
            $wp_query_args['paged'] = 1;
        }


        // offset + custom pagination - if we have offset, wordpress overwrites the pagination and works with offset + limit
        if (!empty($offset) and $paged > 1) {
            $wp_query_args['offset'] = $offset + ( ($paged - 1) * $limit) ;
        } else {
            $wp_query_args['offset'] = $offset ;
        }


        //set this variable to pass it to the filter that fixes the pagination on the templates with fake loops. It is not used on blocks because the blocks have custom pagination
        self::$fake_loop_offset = $offset;


        //print_r($wp_query_args);

        return $wp_query_args;
    }




    /**
     * converts a post metabox value array to a wordpress query args array
     * @param $td_homepage_loop_filter - the post loop filer metadata array
     * @param string $paged
     * @return array
     */
    static function metabox_to_args($td_homepage_loop_filter, $paged = '') {


        $wp_query_args = self::shortcode_to_args($td_homepage_loop_filter, $paged);



        //$wp_query_args['paged'] = $paged;

        if (!empty($td_homepage_loop_filter['show_featured_posts'])) {
            if (empty($wp_query_args['cat'])) {
                $wp_query_args['cat'] = '-' . get_cat_ID(TD_FEATURED_CAT);
            } else {
                $wp_query_args['cat'] .= ',-' . get_cat_ID(TD_FEATURED_CAT);
            }
        }


        $wp_query_args['ignore_sticky_posts'] = 0;

        // custom pagination for the fake template loops
        if (isset($wp_query_args['offset']) and $wp_query_args['offset'] > 0) {
            //fix reported posts for the fake loops
            add_filter('found_posts', array(__CLASS__, 'hook_fix_offset_pagination'), 1, 2 );
        }


        //print_r($wp_query_args);

        return $wp_query_args;
    }

    // custom pagination for the fake template loops - used by hook
    static function hook_fix_offset_pagination($found_posts, $query) {
        remove_filter('found_posts','hook_fix_offset_pagination');
        return $found_posts - td_data_source::$fake_loop_offset;
    }





    /**
     * is used by all the blocks
     * @param string $atts
     * @param string $paged - is used by ajax
     * @return WP_Query
     */
    static function &get_wp_query ($atts = '', $paged = '') { //by ref
        $args = self::shortcode_to_args($atts, $paged);
        $td_query = new WP_Query($args);
        return $td_query;
    }


    /**
     * used by the ajax search feature
     * @param $search_string
     * @return WP_Query
     */
    static function &get_wp_query_search($search_string) {
        $args = array(
            's' => $search_string,
            'post_type' => array('post'),
            'posts_per_page' => 4,
            'post_status' => 'publish'
        );

        $td_query = new WP_Query($args);
        return $td_query;
    }







}

<!doctype html >
<!--[if lt IE 7]> <html class="no-js ie6 oldie" lang="en"> <![endif]-->
<!--[if IE 7]>    <html class="no-js ie7 oldie" lang="en"> <![endif]-->
<!--[if IE 8]>    <html class="no-js ie8 oldie" lang="en"> <![endif]-->
<!--[if IE 9]>    <html class="no-js ie9 oldie" lang="en"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en-US"> <!--<![endif]-->
<head>
    <title>Page not found | Technorati</title>
    <meta charset="UTF-8" />
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <link rel="pingback" href="http://technorati.com/xmlrpc.php" />

    <link rel="icon" type="image/png" href="http://technorati.com/wp-content/uploads/2014/06/favicon.png"><link rel="apple-touch-icon-precomposed" sizes="76x76" href="http://technorati.com/wp-content/uploads/2014/06/761.png"/><link rel="apple-touch-icon-precomposed" sizes="120x120" href="http://technorati.com/wp-content/uploads/2014/06/120.png"/><link rel="apple-touch-icon-precomposed" sizes="152x152" href="http://technorati.com/wp-content/uploads/2014/06/152.png"/><link rel="apple-touch-icon-precomposed" sizes="114x114" href="http://technorati.com/wp-content/uploads/2014/06/114.png"/><link rel="apple-touch-icon-precomposed" sizes="144x144" href="http://technorati.com/wp-content/uploads/2014/06/144.png"/>    <script type="text/javascript">
    // <![CDATA[
        var disqus_shortname = 'technorati';
        (function () {
            var nodes = document.getElementsByTagName('span');
            for (var i = 0, url; i < nodes.length; i++) {
                if (nodes[i].className.indexOf('dsq-postid') != -1) {
                    nodes[i].parentNode.setAttribute('data-disqus-identifier', nodes[i].getAttribute('rel'));
                    url = nodes[i].parentNode.href.split('#', 1);
                    if (url.length == 1) { url = url[0]; }
                    else { url = url[1]; }
                    nodes[i].parentNode.href = url + '#disqus_thread';
                }
            }
            var s = document.createElement('script'); s.async = true;
            s.type = 'text/javascript';
            s.src = '//' + disqus_shortname + '.disqus.com/count.js';
            (document.getElementsByTagName('HEAD')[0] || document.getElementsByTagName('BODY')[0]).appendChild(s);
        }());
    //]]>
    </script>
<link rel="alternate" type="application/rss+xml" title="Technorati &raquo; Feed" href="http://technorati.com/feed/" />
<link rel="alternate" type="application/rss+xml" title="Technorati &raquo; Comments Feed" href="http://technorati.com/comments/feed/" />
<link rel='stylesheet' id='rs-settings-css'  href='http://technorati.com/wp-content/plugins/revslider/rs-plugin/css/settings.css?ver=3.9.2' type='text/css' media='all' />
<link rel='stylesheet' id='rs-captions-css'  href='http://technorati.com/wp-content/plugins/revslider/rs-plugin/css/captions.css?ver=3.9.2' type='text/css' media='all' />
<link rel='stylesheet' id='us-plugin-styles-css'  href='http://technorati.com/wp-content/plugins/ultimate-social-deux/public/assets/css/style.css?ver=3.1.5' type='text/css' media='all' />
<style type='text/css'>
.us_floating .us_wrapper .us_button { width: 45px; -webkit-transition: width 1000ms ease-in-out, background-color 400ms ease-out; -moz-transition: width 1000ms ease-in-out, background-color 400ms ease-out; -o-transition: width 1000ms ease-in-out, background-color 400ms ease-out; transition: width 1000ms ease-in-out, background-color 400ms ease-out; }.us_floating .us_wrapper .us_button:hover { width: 90px;-webkit-transition: width 1000ms ease-in-out, background-color 400ms ease-out; -moz-transition: width 1000ms ease-in-out, background-color 400ms ease-out; -o-transition: width 1000ms ease-in-out, background-color 400ms ease-out; transition: width 1000ms ease-in-out, background-color 400ms ease-out; }.us_button:hover, .us_fan_count_button:hover { background-color:#008000; }.us_button { -moz-border-radius-topleft: 0px; -moz-border-radius-topright: 0px; -moz-border-radius-bottomright: 0px; -moz-border-radius-bottomleft: 0px; border-top-left-radius: 0px; border-top-right-radius: 0px; border-bottom-right-radius: 0px; border-bottom-left-radius: 0px; -webkit-border-top-left-radius: 0px; -webkit-border-top-right-radius: 0px; -webkit-border-bottom-right-radius: 0px; -webkit-border-bottom-left-radius: 0px; }.us_fan_count_button { -moz-border-radius-topleft: 0px; -moz-border-radius-topright: 0px; -moz-border-radius-bottomright: 0px; -moz-border-radius-bottomleft: 0px; border-top-left-radius: 0px; border-top-right-radius: 0px; border-bottom-right-radius: 0px; border-bottom-left-radius: 0px; -webkit-border-top-left-radius: 0px; -webkit-border-top-right-radius: 0px; -webkit-border-bottom-right-radius: 0px; -webkit-border-bottom-left-radius: 0px; }div[class*='us_facebook'] { background-color:#3b5998; }div[class*='us_twitter'] { background-color:#00ABF0; }div[class*='us_google'] { background-color:#D95232; }div[class*='us_delicious'] { background-color:#66B2FD; }div[class*='us_stumble'] { background-color:#E94B24; }div[class*='us_linkedin'] { background-color:#1C86BC; }div[class*='us_pinterest'] { background-color:#AE181F; }div[class*='us_buffer'] { background-color:#000000; }div[class*='us_reddit'] { background-color:#CEE3F8; }div[class*='us_vkontakte'] { background-color:#537599; }.us_mail { background-color:#666666; }div[class*='us_love'] { background-color:#FF0000; }div[class*='us_pocket'] { background-color:#ee4056; }div[class*='us_tumblr'] { background-color:#529ecc; }div[class*='us_print'] { background-color:#60d0d4; }div[class*='us_flipboard'] { background-color:#c10000; }div[class*='us_comments']{ background-color:#b69823; }div[class*='us_feedly'] { background-color:#414141; }div[class*='us_youtube'] { background-color:#cc181e; }div[class*='us_vimeo'] { background-color:#1bb6ec; }div[class*='us_dribbble'] { background-color:#f72b7f; }div[class*='us_envato'] { background-color:#82b540; }div[class*='us_github'] { background-color:#201e1f; }div[class*='us_soundcloud'] { background-color:#ff6f00; }div[class*='us_instagram'] { background-color:#48769c; }div[class*='us_feedpress'] { background-color:#ffafaf; }div[class*='us_mailchimp'] { background-color:#6dc5dc; }div[class*='us_flickr'] { background-color:#0062dd; }div[class*='us_members'] { background-color:#0ab071; }.us_posts_fan_count { background-color:#924e2a; }
</style>
<link rel='stylesheet' id='google-font-opensans-css'  href='http://fonts.googleapis.com/css?family=Open+Sans%3A300%2C400%2C600%2C700&#038;subset=latin%2Ccyrillic-ext%2Cgreek-ext%2Cgreek%2Cvietnamese%2Clatin-ext%2Ccyrillic&#038;ver=3.9.2' type='text/css' media='all' />
<link rel='stylesheet' id='google-font-ubuntu-css'  href='http://fonts.googleapis.com/css?family=Ubuntu%3A300%2C400%2C500%2C700%2C300italic%2C400italic%2C500italic%2C700italic&#038;subset=latin%2Ccyrillic-ext%2Cgreek-ext%2Cgreek%2Clatin-ext%2Ccyrillic&#038;ver=3.9.2' type='text/css' media='all' />
<link rel='stylesheet' id='google-font-pt-sans-css'  href='http://fonts.googleapis.com/css?family=PT+Sans%3A400%2C700%2C400italic&#038;subset=latin%2Ccyrillic-ext%2Clatin-ext%2Ccyrillic&#038;ver=3.9.2' type='text/css' media='all' />
<link rel='stylesheet' id='google-font-oswald-css'  href='http://fonts.googleapis.com/css?family=Oswald%3A400%2C300%2C700&#038;subset=latin%2Clatin-ext&#038;ver=3.9.2' type='text/css' media='all' />
<link rel='stylesheet' id='google-roboto-cond-css'  href='http://fonts.googleapis.com/css?family=Roboto+Condensed%3A300italic%2C400italic%2C700italic%2C400%2C300%2C700&#038;subset=latin%2Ccyrillic-ext%2Cgreek-ext%2Cgreek%2Cvietnamese%2Clatin-ext%2Ccyrillic&#038;ver=3.9.2' type='text/css' media='all' />
<link rel='stylesheet' id='google-fonts-style-css'  href='http://fonts.googleapis.com/css?family=Ubuntu%3A400%2C700&#038;ver=3.9.2' type='text/css' media='all' />
<link rel='stylesheet' id='td-bootstrap-css'  href='http://technorati.com/wp-content/themes/NewspaperV37/includes/wp_booster/external/bootstrap/td-bootstrap.css?ver=3.8.33.8.2' type='text/css' media='all' />
<link rel='stylesheet' id='td-theme-css'  href='http://technorati.com/wp-content/themes/NewspaperV37/style.css?ver=3.8.33.8.2' type='text/css' media='all' />
<link rel='stylesheet' id='metro_style_social_widget-css'  href='http://technorati.com/wp-content/plugins/metro-style-social-widget/CSS/metro.css?ver=3.9.2' type='text/css' media='all' />
<link rel='stylesheet' id='tooltip-css'  href='http://technorati.com/wp-content/plugins/TooltipPro02July2014/assets/css/tooltip.css?ver=3.9.2' type='text/css' media='all' />
<style type='text/css'>
span.glossaryLink, a.glossaryLink {
        border-bottom: dotted 1px #000000 !important;
        color: #000000 !important;
        }
        a.glossaryLink:hover {
        border-bottom: dotted 1px #333333 !important;
        color:#333333 !important;
        }
</style>
<script type='text/javascript' src='http://technorati.com/wp-includes/js/jquery/jquery.js?ver=1.11.0'></script>
<script type='text/javascript' src='http://technorati.com/wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1'></script>
<script type='text/javascript'>
/* <![CDATA[ */
var mejsL10n = {"language":"en-US","strings":{"Close":"Close","Fullscreen":"Fullscreen","Download File":"Download File","Download Video":"Download Video","Play\/Pause":"Play\/Pause","Mute Toggle":"Mute Toggle","None":"None","Turn off Fullscreen":"Turn off Fullscreen","Go Fullscreen":"Go Fullscreen","Unmute":"Unmute","Mute":"Mute","Captions\/Subtitles":"Captions\/Subtitles"}};
var _wpmejsSettings = {"pluginPath":"\/wp-includes\/js\/mediaelement\/"};
/* ]]> */
</script>
<script type='text/javascript' src='http://technorati.com/wp-includes/js/mediaelement/mediaelement-and-player.min.js?ver=2.14.2'></script>
<script type='text/javascript'>
/* <![CDATA[ */
var cmtt_data = {"tooltip":{"clickable":0,"top":3,"left":23,"endalpha":95,"borderStyle":"none","borderWidth":"0px","borderColor":"#000000","background":"#666666","foreground":"#ffffff","fontSize":"13px","padding":"2px 12px 3px 7px","borderRadius":"6px"},"ajaxurl":"http:\/\/technorati.com\/wp-admin\/admin-ajax.php"};
/* ]]> */
</script>
<script type='text/javascript' src='http://technorati.com/wp-content/plugins/TooltipPro02July2014/assets/js/cm-tooltip-frontend.js?ver=3.9.2'></script>
<script type='text/javascript' src='http://technorati.com/wp-content/plugins/TooltipPro02July2014/assets/js/tooltip.js?ver=3.9.2'></script>
<script type='text/javascript' src='http://technorati.com/wp-content/plugins/TooltipPro02July2014/assets/js/modernizr.js?ver=3.9.2'></script>
<script type='text/javascript' src='http://technorati.com/wp-content/plugins/revslider/rs-plugin/js/jquery.themepunch.revolution.min.js?ver=3.9.2'></script>
<script type='text/javascript' src='http://technorati.com/wp-includes/js/jquery/jquery.color.min.js?ver=2.1.1'></script>
<script type='text/javascript'>
/* <![CDATA[ */
var us_script = {"ajaxurl":"http:\/\/technorati.com\/wp-admin\/admin-ajax.php","tweet_via":"technorati","sharrre_url":"http:\/\/technorati.com\/wp-admin\/admin-ajax.php","success":"Success! Your message has been sent.","trying":"Sending message ...","total_shares_text":"Total Shares","facebook_height":"500","facebook_width":"900","twitter_height":"500","twitter_width":"900","googleplus_height":"500","googleplus_width":"900","delicious_height":"550","delicious_width":"550","stumble_height":"550","stumble_width":"550","linkedin_height":"550","linkedin_width":"550","pinterest_height":"320","pinterest_width":"720","buffer_height":"500","buffer_width":"900","reddit_height":"500","reddit_width":"900","vkontakte_height":"500","vkontakte_width":"900","printfriendly_height":"500","printfriendly_width":"1045","pocket_height":"500","pocket_width":"900","tumblr_height":"500","tumblr_width":"900","flipboard_height":"500","flipboard_width":"900","vkontakte_appid":"","facebook_appid":"","home_url":"http:\/\/technorati.com","enabletracking":"","nonce":"7c5bbfb90c","already_loved_message":"You have already loved this item.","error_message":"Sorry, there was a problem processing your request.","logged_in":"false","bitly":"false"};
/* ]]> */
</script>
<script type='text/javascript' src='http://technorati.com/wp-content/plugins/ultimate-social-deux/public/assets/js/script-ck.js?ver=3.1.5'></script>
<link rel="EditURI" type="application/rsd+xml" title="RSD" href="http://technorati.com/xmlrpc.php?rsd" />
<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="http://technorati.com/wp-includes/wlwmanifest.xml" /> 
<meta name="generator" content="WordPress 3.9.2" />
<meta name="framework" content="Alkivia Framework 0.8" />
<link rel="stylesheet" type="text/css" href="http://technorati.com/wp-content/plugins/cforms/styling/minimal.css" />
<script type="text/javascript" src="http://technorati.com/wp-content/plugins/cforms/js/cforms.js"></script>
<!--[if lt IE 9]><script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
    <meta name="generator" content="Powered by Visual Composer - drag and drop page builder for WordPress."/>

<!-- Style compiled by theme -->

<style>
    
.block-title a, .block-title span, .td-tags a:hover, .td-scroll-up-visible, .td-scroll-up, .sf-menu ul
    .current-menu-item > a, .sf-menu ul a:hover, .sf-menu ul .sfHover > a, .sf-menu ul .td-not-mega > a:hover, .td-rating-bar-wrap div, .iosSlider .slide-meta-cat, .sf-menu ul
    .current-menu-ancestor > a, .td-404-sub-sub-title a, .widget_tag_cloud .tagcloud a:hover, .td-mobile-close a,
    ul.td-category a, .td_social .td_social_type .td_social_button a, .dropcap, .td-forum-category-title
    .td-forum-category-name, .td_display_err, .td_block_mega_menu .td-ajax-next-page:hover, .td_block_mega_menu .td_ajax-prev-page:hover, .post-via span {
        background-color: #339900;
    }
    .block-title, .sf-menu li a:hover, .sf-menu .sfHover a, .sf-menu .current-menu-ancestor a, .header-search-wrap
    .dropdown-menu, .sf-menu > .current-menu-item > a, .ui-tabs-nav,
    .woocommerce .product .woocommerce-tabs ul.tabs, .td-forum-list-head, .td-login-panel-title {
        border-color: #339900;
    }

    .widget_price_filter .ui-slider-handle {
        border-color: #339900 !important;
    }

    .author-box-wrap .td-author-name a, blockquote p, .page-nav a:hover, .widget_pages .current_page_item a,
    .widget_calendar td a, .widget_categories .current-cat > a, .widget_pages .current_page_parent > a,
    .td_pull_quote p, .page-nav-post a:hover span, .td-forum-last-comment-content .td-forum-last-author,
    .td-topics-title-details a, .td-posted-in a {
        color: #339900;
    }

    .woocommerce .button, .woocommerce .form-submit #submit, .widget_price_filter .ui-slider-handle,
    .jetpack_subscription_widget input[type="submit"], .pp_woocommerce .pp_close, .pp_woocommerce .pp_expand,
    .pp_woocommerce .pp_contract, .pp_woocommerce .pp_arrow_previous, .pp_woocommerce .pp_arrow_next, .pp_woocommerce
     .pp_next:before, .pp_woocommerce .pp_previous:before, #bbpress-forums .button {
        background: #339900 !important;
    }

    .woocommerce .woocommerce-message, .woocommerce .woocommerce-info, .bbp-template-notice, .td-reply-list-header {
        border-color: #339900 !important;
    }
    .woocommerce .woocommerce-message:before, .woocommerce .woocommerce-info:before, .td-login-button {
        background-color: #339900 !important;
    }


    .buddypress #buddypress div.dir-search input[type="submit"], .buddypress #buddypress .message-search
    input[type="submit"], .buddypress #buddypress .item-list-tabs ul li.selected a,
    .buddypress #buddypress .generic-button a, .buddypress #buddypress .submit input[type="submit"],
    .buddypress #buddypress .ac-reply-content input[type="submit"], .buddypress #buddypress .standard-form
    input[type="submit"], .buddypress #buddypress .standard-form .button-nav .current a, .buddypress #buddypress .standard-form .button, .buddypress #buddypress input[type="submit"],
        .buddypress #buddypress a.accept, .buddypress #buddypress #activate-page .standard-form input[type="submit"],
        .buddypress #buddypress .standard-form #group-create-body input[type="button"],
        .post-password-required input[type="submit"]  {
        background: #339900 !important;
    }

    .buddypress #buddypress .groups .item-meta, .bbp-forum-title:hover, .td_login_tab_focus, .block-mega-child-cats a.cur-sub-cat {
        color: #339900 !important;
    }

    .page-nav .current, .page-nav-post span {
        background-color: #339900;
        border-color: #339900;
    }
    .wpb_btn-inverse, .ui-tabs-nav .ui-tabs-active a, .post .wpb_btn-danger, .form-submit input, .wpcf7-submit,
    .wpb_default, .woocommerce .product .woocommerce-tabs ul.tabs li.active, .woocommerce.widget_product_search
    input[type="submit"], .more-link-wrap, .td_read_more {
        background-color: #339900 !important;
    }
    .header-search-wrap .dropdown-menu:before {
        border-color: transparent transparent #339900;
    }
    .td-mobile-content .current-menu-item > a, .td-mobile-content a:hover {
        color: #339900 !important;
    }
    .category .entry-content, .tag .entry-content, .td_quote_box {
        border-color: #339900;
    }

    .td-timeline-block-title {
        background-color: #339900 !important;
    }

    .td-timeline-wrapper-links {
       border-color: #339900 !important;
    }

    .td-timline-h1-link  span {
        background-color: #339900 !important;
    }

    .td-page-title .td-search-query {
         color: #339900;
    }

     
    .td-sbig-title-wrap .td-sbig-title, .td-slide-item-sec .td-sbig-title-wrap, .td-mobile-post .td-sbig-title-wrap a {
        background-color: rgba(51, 153, 0, 0.7);
    }


    
    ::-moz-selection {
        background: #65cb32;
        color: #fff;
    }

    ::selection {
        background: #65cb32;
        color: #fff;
    }



    
    .td-full-layout .td-sub-footer-wrap, .td-boxed-layout .td-sub-footer-wrap .container  {
        background-color: #fafafa;
    }

    
    .td-sub-footer-copy, .td-sub-footer-wrap a {
        color: #4b4b4b !important;
    }
    .td-sub-footer-menu li a:before {
        background-color: rgba(75, 75, 75, 0.3);
    }


    
    .sf-menu > .td-not-mega > a {
        font-family:Ubuntu;
	
    }

    
    .sf-menu ul .td-not-mega a, .td_mega_menu_sub_cats .block-mega-child-cats a{
        font-family:Ubuntu;
	
    }


    
    .td-sbig-title-wrap .td-sbig-title, .td-sbig-title-wrap .td-sbig-title:hover, .td-mobile-post .td-sbig-title-wrap a {
        font-size:36px;
	line-height:28px;
	font-weight:normal;
	
    }

    
    .td_block_slide_big .td-slide-item-sec .td-sbig-title-wrap a, .td-mobile-post .td-sbig-title-wrap a {
        font-weight:normal;
	
    }

    
    body .td-post-text-content, .page p, .bbpress p {
        font-family:Ubuntu;
	
    }
</style>


<!-- JS generated by theme -->

<script>
    

var td_blocks = []; //here we store all the items for the current page

//td_block class - each ajax block uses a object of this class for requests
function td_block() {
    this.id = '';
    this.block_type = 1; //block type id (1-234 etc)
    this.atts = '';
    this.td_cur_cat = '';
    this.td_column_number = '';
    this.td_current_page = 1; //
    this.post_count = 0; //from wp
    this.found_posts = 0; //from wp
    this.max_num_pages = 0; //from wp
}

    
var td_ad_background_click_link="";
var td_ad_background_click_target="";
var td_ajax_url="http://technorati.com/wp-admin/admin-ajax.php";
var td_get_template_directory_uri="http://technorati.com/wp-content/themes/NewspaperV37";
var tds_snap_menu="";
var tds_header_style="";
var tds_mobile_swipe="";
var td_search_url="http://technorati.com/search/";
var td_please_wait="Please wait...";
var td_email_user_pass_incorrect="User or password incorrect!";
var td_email_user_incorrect="Email or username incorrect!";
var td_email_incorrect="Email incorrect!";
var tds_more_articles_on_post_enable="";
var tds_more_articles_on_post_time_to_wait="";
var tds_more_articles_on_post_pages_distance_from_top="0";
var td_responsive="";
</script>

<script>
  (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
  (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
  m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
  })(window,document,'script','//www.google-analytics.com/analytics.js','ga');

  ga('create', 'UA-4781905-1', 'technorati.com');
  ga('send', 'pageview');

</script>

<!-- START GOOGLE DFP CODE -->
<script type='text/javascript'>
var googletag = googletag || {};
googletag.cmd = googletag.cmd || [];
(function() {
var gads = document.createElement('script');
gads.async = true;
gads.type = 'text/javascript';
var useSSL = 'https:' == document.location.protocol;
gads.src = (useSSL ? 'https:' : 'http:') + 
'//www.googletagservices.com/tag/js/gpt.js';
var node = document.getElementsByTagName('script')[0];
node.parentNode.insertBefore(gads, node);
})();
</script>

<script type='text/javascript'>
googletag.cmd.push(function() {
googletag.defineSlot('/38996638/Article-Inline', [468, 60], 'div-gpt-ad-1406840714791-0').addService(googletag.pubads());
googletag.pubads().enableSingleRequest();
googletag.enableServices();
});
</script>
<!-- END GOOGLE DFP CODE -->
</head>

<body class="error404 td-full-layout td_responsive wpb-js-composer js-comp-ver-4.3.2 vc_responsive" itemscope="itemscope" itemtype="http://schema.org/WebPage">



<div id="outer-wrap">
    <div id="inner-wrap">

<div id="td-mobile-nav">
    <!-- mobile menu close -->
    <div class="td-mobile-close">
        <a href="#">CLOSE</a>
        <div class="td-nav-triangle"></div>
    </div>

    <div class="td-mobile-content">
        <div class="menu-main-container"><ul id="menu-main" class=""><li id="menu-item-3435" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-first td-not-mega menu-item-3435"><a href="http://technorati.com/">Home</a></li>
<li id="menu-item-3438" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-has-children td-not-mega menu-item-3438"><a href="http://technorati.com/category/knowledge-base/">Knowledge Base</a>
<ul class="sub-menu">
	<li id="menu-item-7974" class="menu-item menu-item-type- menu-item-object- td-not-mega menu-item-7974"><a title="/glossary/">Glossary</a></li>
	<li id="menu-item-3974" class="menu-item menu-item-type-taxonomy menu-item-object-category td-not-mega menu-item-3974"><a href="http://technorati.com/category/knowledge-base/advertising-technology/">Advertising Technology</a></li>
	<li id="menu-item-1266" class="menu-item menu-item-type-taxonomy menu-item-object-category td-not-mega menu-item-1266"><a href="http://technorati.com/category/knowledge-base/online-publishing/">Online Publishing</a></li>
	<li id="menu-item-6015" class="menu-item menu-item-type-taxonomy menu-item-object-category td-not-mega menu-item-6015"><a href="http://technorati.com/category/knowledge-base/expert-interviews/">Expert Interviews</a></li>
	<li id="menu-item-3440" class="menu-item menu-item-type-taxonomy menu-item-object-category td-not-mega menu-item-3440"><a href="http://technorati.com/category/knowledge-base/publisher-spotlight/">Publisher Spotlight</a></li>
	<li id="menu-item-1263" class="menu-item menu-item-type-taxonomy menu-item-object-category td-not-mega menu-item-1263"><a href="http://technorati.com/category/knowledge-base/research/">Research</a></li>
	<li id="menu-item-3442" class="menu-item menu-item-type-taxonomy menu-item-object-category td-not-mega menu-item-3442"><a href="http://technorati.com/category/knowledge-base/the-breakroom/">The Breakroom</a></li>
</ul>
</li>
<li id="menu-item-4687" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children td-not-mega menu-item-4687"><a href="http://technorati.com/join/">Join</a>
<ul class="sub-menu">
	<li id="menu-item-3143" class="menu-item menu-item-type-post_type menu-item-object-page td-not-mega menu-item-3143"><a href="http://technorati.com/join/publishers/">Publishers</a></li>
	<li id="menu-item-3144" class="menu-item menu-item-type-post_type menu-item-object-page td-not-mega menu-item-3144"><a href="http://technorati.com/join/marketers/">Marketers</a></li>
</ul>
</li>
<li id="menu-item-3142" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children td-not-mega menu-item-3142"><a href="http://technorati.com/company/">Company</a>
<ul class="sub-menu">
	<li id="menu-item-3522" class="menu-item menu-item-type-post_type menu-item-object-page td-not-mega menu-item-3522"><a href="http://technorati.com/company/about-us/">About Us</a></li>
	<li id="menu-item-3436" class="menu-item menu-item-type-taxonomy menu-item-object-category td-not-mega menu-item-3436"><a href="http://technorati.com/category/technorati-life/">Technorati Life</a></li>
	<li id="menu-item-3153" class="menu-item menu-item-type-post_type menu-item-object-page td-not-mega menu-item-3153"><a href="http://technorati.com/company/executives/">Executive Team</a></li>
	<li id="menu-item-3152" class="menu-item menu-item-type-post_type menu-item-object-page td-not-mega menu-item-3152"><a href="http://technorati.com/company/board/">Board of Directors</a></li>
	<li id="menu-item-4793" class="menu-item menu-item-type-post_type menu-item-object-page td-not-mega menu-item-4793"><a href="http://technorati.com/company/history-of-technorati/">History</a></li>
</ul>
</li>
<li id="menu-item-3141" class="menu-item menu-item-type-post_type menu-item-object-page td-not-mega menu-item-3141"><a href="http://technorati.com/careers/">Careers</a></li>
<li id="menu-item-3140" class="menu-item menu-item-type-post_type menu-item-object-page td-not-mega menu-item-3140"><a href="http://technorati.com/contact/">Contact</a></li>
</ul></div>    </div>
</div>
<!-- graphic logo and ad -->
<div class="td-header-bg">
    <div class="container td-logo-rec-wrap">

<!-- START LOGIN AND SIGNUP BUTTONS -->
<div align="right">
<a class="wpb_button_a" title="Portal Join" href="http://bitly.com/PortalSignup"><span class="wpb_button  wpb_btn-success wpb_regularsize">Join</span></a> <a class="wpb_button_a" title="Portal Login" href="https://portal.technoratimedia.com/portal/login"><span class="wpb_button  wpb_btn-success wpb_regularsize">Login</span></a>
</div>
<!-- END LOGIN AND SIGNUP BUTTONS -->


        <div class="row">
            <div class="span4 header-logo-wrap" role="banner" itemscope="itemscope" itemtype="http://schema.org/Organization">
                                    <a itemprop="url" href="http://technorati.com">
                        <img width="300" class="td-retina-data" data-retina="http://technorati.com/wp-content/uploads/2014/06/tr-retna.png" src="http://technorati.com/wp-content/uploads/2014/08/tr300x90.png" alt=""/>
                    </a>
                    <meta itemprop="name" content="Technorati">
                                </div>
            <div class="span8 td-header-style-1">
                <div class="td-a-rec td-a-rec-id-header "><!-- BEGIN TECHNORATI MEDIA AD TAGS FOR Section Technorati_ROS, Ad Size: Leaderboard (728x90) -->
<script type="text/javascript">
   document.write('<scri' + 'pt type="text/javascript" src="'
   + (document.location.protocol == 'https:' ? 'https://uat-secure' : 'http://ad-cdn')
   + '.technoratimedia.com/00/02/00/uat_2.js?ad_size=728x90"></scri' + 'pt>');
</script>
<!-- END TECHNORATI MEDIA TAGS FOR Section Technorati_ROS, Ad Size: Leaderboard (728x90) -->
<p> &nbsp; </p></div>            </div>
        </div>
    </div>
</div>
<!-- header menu -->

<div class="td-menu-placeholder">

    <div class="td-menu-background">
        <div class="container td-menu-wrap">



            <div class="row-fluid td-menu-header">

                <div class="span11">
                                            <div class="mobile-logo-wrap">
                                                            <a itemprop="url" href="http://technorati.com">
                                    <img width="300" class="td-retina-data"  data-retina="http://technorati.com/wp-content/uploads/2014/06/tr-retna.png" src="http://technorati.com/wp-content/uploads/2014/08/tr300x90.png" alt=""/>
                                </a>
                                <meta itemprop="name" content="Technorati">
                                                    </div>
                    

                    <div id="td-top-mobile-toggle">
                        <ul class="sf-menu">
                            <li>
                                <a href="#">
                                    <span class="menu_icon td-sp td-sp-ico-menu"></span>
                                </a>
                            </li>
                        </ul>
                    </div>

                    <div id="td-top-menu" role="navigation" itemscope="itemscope" itemtype="http://schema.org/SiteNavigationElement">

                            <div class="menu-main-container"><ul id="menu-main-1" class="sf-menu"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-first td-not-mega menu-item-3435"><a href="http://technorati.com/">Home</a></li>
<li class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-has-children td-not-mega menu-item-3438"><a href="http://technorati.com/category/knowledge-base/">Knowledge Base</a>
<ul class="sub-menu">
	<li class="menu-item menu-item-type- menu-item-object- td-not-mega menu-item-7974"><a title="/glossary/">Glossary</a></li>
	<li class="menu-item menu-item-type-taxonomy menu-item-object-category td-not-mega menu-item-3974"><a href="http://technorati.com/category/knowledge-base/advertising-technology/">Advertising Technology</a></li>
	<li class="menu-item menu-item-type-taxonomy menu-item-object-category td-not-mega menu-item-1266"><a href="http://technorati.com/category/knowledge-base/online-publishing/">Online Publishing</a></li>
	<li class="menu-item menu-item-type-taxonomy menu-item-object-category td-not-mega menu-item-6015"><a href="http://technorati.com/category/knowledge-base/expert-interviews/">Expert Interviews</a></li>
	<li class="menu-item menu-item-type-taxonomy menu-item-object-category td-not-mega menu-item-3440"><a href="http://technorati.com/category/knowledge-base/publisher-spotlight/">Publisher Spotlight</a></li>
	<li class="menu-item menu-item-type-taxonomy menu-item-object-category td-not-mega menu-item-1263"><a href="http://technorati.com/category/knowledge-base/research/">Research</a></li>
	<li class="menu-item menu-item-type-taxonomy menu-item-object-category td-not-mega menu-item-3442"><a href="http://technorati.com/category/knowledge-base/the-breakroom/">The Breakroom</a></li>
</ul>
</li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children td-not-mega menu-item-4687"><a href="http://technorati.com/join/">Join</a>
<ul class="sub-menu">
	<li class="menu-item menu-item-type-post_type menu-item-object-page td-not-mega menu-item-3143"><a href="http://technorati.com/join/publishers/">Publishers</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page td-not-mega menu-item-3144"><a href="http://technorati.com/join/marketers/">Marketers</a></li>
</ul>
</li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children td-not-mega menu-item-3142"><a href="http://technorati.com/company/">Company</a>
<ul class="sub-menu">
	<li class="menu-item menu-item-type-post_type menu-item-object-page td-not-mega menu-item-3522"><a href="http://technorati.com/company/about-us/">About Us</a></li>
	<li class="menu-item menu-item-type-taxonomy menu-item-object-category td-not-mega menu-item-3436"><a href="http://technorati.com/category/technorati-life/">Technorati Life</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page td-not-mega menu-item-3153"><a href="http://technorati.com/company/executives/">Executive Team</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page td-not-mega menu-item-3152"><a href="http://technorati.com/company/board/">Board of Directors</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page td-not-mega menu-item-4793"><a href="http://technorati.com/company/history-of-technorati/">History</a></li>
</ul>
</li>
<li class="menu-item menu-item-type-post_type menu-item-object-page td-not-mega menu-item-3141"><a href="http://technorati.com/careers/">Careers</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page td-not-mega menu-item-3140"><a href="http://technorati.com/contact/">Contact</a></li>
</ul></div>                    </div>



                </div>

                <div class="span1" id="td-top-search">
                    <!-- Search -->
                    <div class="header-search-wrap">
                        <div class="dropdown header-search">
                            <a id="search-button" href="#" role="button" class="dropdown-toggle " data-toggle="dropdown"><span class="td-sp td-sp-ico-search"></span></a>
                            <div class="dropdown-menu" aria-labelledby="search-button">
                                <form role="search" method="get" class="td-search-form" action="http://technorati.com/">
                                    <div class="td-head-form-search-wrap">
                                        <input class="needsclick" id="td-header-search" type="text" value="" name="s" autocomplete="off" /><input class="wpb_button wpb_btn-inverse btn" type="submit" id="td-header-search-top" value="Search" />
                                    </div>
                                </form>
                                <div id="td-aj-search"></div>
                            </div>
                        </div>
                    </div>
                </div>


            </div> <!-- /.row-fluid -->
        </div> <!-- /.td-menu-wrap -->
    </div> <!-- /.td-menu-background -->
</div> <!-- /.td-menu-placeholder -->
        <div class="container td-page-wrap">
            <div class="row">
                <div class="span12">
                    <div class="td-grid-wrap">
                        <div class="container-fluid">
                            <div class="row-fluid ">
        
    <div class="span12 column_container">
        <div class="td-404-title">
            404 Error - page not found        </div>

        <div class="td-404-sub-title">
            We're sorry, but the page you are looking for doesn't exist.        </div>

        <div class="td-404-sub-sub-title">
            You can go to the            <a href="http://technorati.com">homepage</a>

        </div>


        <h4 class="block-title"><span>OUR LATEST POSTS</span></h4>

        
        <div class="td_mod_search td_mod_wrap  td_mod_no_thumb" itemscope itemtype="http://schema.org/Article">
            <div class="thumb-wrap"><a href="http://technorati.com/ad-first-looks-big-time-pub-programmatic-growth-forensiq-fraud/" rel="bookmark"><img src="http://technorati.com/wp-content/themes/NewspaperV37/images/no-img-post.png" alt="" title="" /></a></div>
        <div class="item-details">
        <h3 itemprop="name" class="entry-title"><a itemprop="url" href="http://technorati.com/ad-first-looks-big-time-pub-programmatic-growth-forensiq-fraud/" rel="bookmark" title="Ad first looks, big-time pub programmatic growth, and Forensiq fraud">Ad first looks, big-time pub programmatic growth, and Forensiq fraud</a></h3>            <div class="meta-info">
                <div itemscope="" itemtype="http://schema.org/WebPage" class="entry-crumbs"><a class="entry-crumb" itemprop="breadcrumb" href="http://technorati.com">Home</a> <span class="td-sp td-sp-breadcrumb-arrow td-bread-sep"></span> <a class="entry-crumb" itemprop="breadcrumb" href="http://technorati.com/category/knowledge-base/" title="View all posts in Knowledge Base">Knowledge Base</a> <span class="td-sp td-sp-breadcrumb-arrow td-bread-sep"></span> <a class="entry-crumb" itemprop="breadcrumb" href="http://technorati.com/category/knowledge-base/advertising-technology/" title="View all posts in Advertising Technology">Advertising Technology</a> <span class="td-sp td-sp-breadcrumb-arrow td-bread-sep"></span> <span>Ad first looks, big-time pub programmatic growth, and Forensiq fraud</span></div>                <span class="td-block-author">by <a itemprop="author" href="http://technorati.com/author/swartzdesk/">John Swartz</a> - </span><meta itemprop="interactionCount" content="UserComments:1"/>                <time  itemprop="dateCreated" class="entry-date updated" datetime="2014-08-22T00:06:18+00:00" >Aug 22, 2014</time><meta itemprop="interactionCount" content="UserComments:1"/>                            </div>

            <div class="td-post-text-content">Here are a few highlights from some of the industry news we came across this week.</div>
        </div>

                </div>

        
        <div class="td_mod_search td_mod_wrap  td_mod_no_thumb" itemscope itemtype="http://schema.org/Article">
            <div class="thumb-wrap"><a href="http://technorati.com/create-refreshing-content-to-get-results/" rel="bookmark"><img src="http://technorati.com/wp-content/themes/NewspaperV37/images/no-img-post.png" alt="" title="" /></a></div>
        <div class="item-details">
        <h3 itemprop="name" class="entry-title"><a itemprop="url" href="http://technorati.com/create-refreshing-content-to-get-results/" rel="bookmark" title="Create refreshing content to get results">Create refreshing content to get results</a></h3>            <div class="meta-info">
                <div itemscope="" itemtype="http://schema.org/WebPage" class="entry-crumbs"><a class="entry-crumb" itemprop="breadcrumb" href="http://technorati.com">Home</a> <span class="td-sp td-sp-breadcrumb-arrow td-bread-sep"></span> <a class="entry-crumb" itemprop="breadcrumb" href="http://technorati.com/category/knowledge-base/" title="View all posts in Knowledge Base">Knowledge Base</a> <span class="td-sp td-sp-breadcrumb-arrow td-bread-sep"></span> <a class="entry-crumb" itemprop="breadcrumb" href="http://technorati.com/category/knowledge-base/online-publishing/" title="View all posts in Online Publishing">Online Publishing</a> <span class="td-sp td-sp-breadcrumb-arrow td-bread-sep"></span> <span>Create refreshing content to get results</span></div>                <span class="td-block-author">by <a itemprop="author" href="http://technorati.com/author/technorati/">Technorati</a> - </span><meta itemprop="interactionCount" content="UserComments:2"/>                <time  itemprop="dateCreated" class="entry-date updated" datetime="2014-08-14T08:39:03+00:00" >Aug 14, 2014</time><meta itemprop="interactionCount" content="UserComments:2"/>                            </div>

            <div class="td-post-text-content">If you follow marketing trends, you know that content marketing is all the rage. But as with most marketing tactics, the key to successful content marketing requires a bit of sweat and strategy. You don't simply write a blog post and click "Publish."</div>
        </div>

                </div>

        
        <div class="td_mod_search td_mod_wrap  td_mod_no_thumb" itemscope itemtype="http://schema.org/Article">
            <div class="thumb-wrap"><a href="http://technorati.com/user-robots-make-office-365-cloud-migration-less-painful/" rel="bookmark"><img src="http://technorati.com/wp-content/themes/NewspaperV37/images/no-img-post.png" alt="" title="" /></a></div>
        <div class="item-details">
        <h3 itemprop="name" class="entry-title"><a itemprop="url" href="http://technorati.com/user-robots-make-office-365-cloud-migration-less-painful/" rel="bookmark" title="User robots make Office 365 cloud migration less painful">User robots make Office 365 cloud migration less painful</a></h3>            <div class="meta-info">
                <div itemscope="" itemtype="http://schema.org/WebPage" class="entry-crumbs"><a class="entry-crumb" itemprop="breadcrumb" href="http://technorati.com">Home</a> <span class="td-sp td-sp-breadcrumb-arrow td-bread-sep"></span> <a class="entry-crumb" itemprop="breadcrumb" href="http://technorati.com/category/knowledge-base/" title="View all posts in Knowledge Base">Knowledge Base</a> <span class="td-sp td-sp-breadcrumb-arrow td-bread-sep"></span> <a class="entry-crumb" itemprop="breadcrumb" href="http://technorati.com/category/knowledge-base/expert-interviews/" title="View all posts in Expert Interviews">Expert Interviews</a> <span class="td-sp td-sp-breadcrumb-arrow td-bread-sep"></span> <span>User robots make Office 365 cloud migration less painful</span></div>                <span class="td-block-author">by <a itemprop="author" href="http://technorati.com/author/technorati/">Technorati</a> - </span><meta itemprop="interactionCount" content="UserComments:4"/>                <time  itemprop="dateCreated" class="entry-date updated" datetime="2014-08-13T00:23:31+00:00" >Aug 13, 2014</time><meta itemprop="interactionCount" content="UserComments:4"/>                            </div>

            <div class="td-post-text-content">It&#039;s still a Microsoft world
At the recent Microsoft Worldwide Partner Conference (WPC), speakers revealed the latest Office 365 statistics. Office365 now presents an annual...</div>
        </div>

                </div>

        
        <div class="td_mod_search td_mod_wrap  td_mod_no_thumb" itemscope itemtype="http://schema.org/Article">
            <div class="thumb-wrap"><a href="http://technorati.com/big-data-fine-print-four-startups-changing-face-big-data/" rel="bookmark"><img src="http://technorati.com/wp-content/themes/NewspaperV37/images/no-img-post.png" alt="" title="" /></a></div>
        <div class="item-details">
        <h3 itemprop="name" class="entry-title"><a itemprop="url" href="http://technorati.com/big-data-fine-print-four-startups-changing-face-big-data/" rel="bookmark" title="#GrowthBeat germination: Four startups changing the face of big data">#GrowthBeat germination: Four startups changing the face of big data</a></h3>            <div class="meta-info">
                <div itemscope="" itemtype="http://schema.org/WebPage" class="entry-crumbs"><a class="entry-crumb" itemprop="breadcrumb" href="http://technorati.com">Home</a> <span class="td-sp td-sp-breadcrumb-arrow td-bread-sep"></span> <a class="entry-crumb" itemprop="breadcrumb" href="http://technorati.com/category/knowledge-base/" title="View all posts in Knowledge Base">Knowledge Base</a> <span class="td-sp td-sp-breadcrumb-arrow td-bread-sep"></span> <a class="entry-crumb" itemprop="breadcrumb" href="http://technorati.com/category/knowledge-base/advertising-technology/" title="View all posts in Advertising Technology">Advertising Technology</a> <span class="td-sp td-sp-breadcrumb-arrow td-bread-sep"></span> <span>#GrowthBeat germination: Four startups changing the face of big data</span></div>                <span class="td-block-author">by <a itemprop="author" href="http://technorati.com/author/shanepaulneil/">Shane Paul Neil</a> - </span><meta itemprop="interactionCount" content="UserComments:0"/>                <time  itemprop="dateCreated" class="entry-date updated" datetime="2014-08-12T12:48:43+00:00" >Aug 12, 2014</time><meta itemprop="interactionCount" content="UserComments:0"/>                            </div>

            <div class="td-post-text-content">San Francisco Tech
For businesses and end users alike, big data can be a bit of a mystery. More specifically what to do with big data...</div>
        </div>

                </div>

        
        <div class="td_mod_search td_mod_wrap  td_mod_no_thumb" itemscope itemtype="http://schema.org/Article">
            <div class="thumb-wrap"><a href="http://technorati.com/5-quick-tips-help-keep-website-secure/" rel="bookmark"><img src="http://technorati.com/wp-content/themes/NewspaperV37/images/no-img-post.png" alt="" title="" /></a></div>
        <div class="item-details">
        <h3 itemprop="name" class="entry-title"><a itemprop="url" href="http://technorati.com/5-quick-tips-help-keep-website-secure/" rel="bookmark" title="5 quick tips to help keep your website secure">5 quick tips to help keep your website secure</a></h3>            <div class="meta-info">
                <div itemscope="" itemtype="http://schema.org/WebPage" class="entry-crumbs"><a class="entry-crumb" itemprop="breadcrumb" href="http://technorati.com">Home</a> <span class="td-sp td-sp-breadcrumb-arrow td-bread-sep"></span> <a class="entry-crumb" itemprop="breadcrumb" href="http://technorati.com/category/knowledge-base/" title="View all posts in Knowledge Base">Knowledge Base</a> <span class="td-sp td-sp-breadcrumb-arrow td-bread-sep"></span> <a class="entry-crumb" itemprop="breadcrumb" href="http://technorati.com/category/knowledge-base/online-publishing/" title="View all posts in Online Publishing">Online Publishing</a> <span class="td-sp td-sp-breadcrumb-arrow td-bread-sep"></span> <span>5 quick tips to help keep your website secure</span></div>                <span class="td-block-author">by <a itemprop="author" href="http://technorati.com/author/technorati/">Technorati</a> - </span><meta itemprop="interactionCount" content="UserComments:0"/>                <time  itemprop="dateCreated" class="entry-date updated" datetime="2014-08-12T11:09:12+00:00" >Aug 12, 2014</time><meta itemprop="interactionCount" content="UserComments:0"/>                            </div>

            <div class="td-post-text-content">How safe is your blog from the dangers of hackers? Have you taken the steps necessary to at least make it difficult for them to gain access? Or is this something still etched in on your to-do list? It's so easy to get so wrapped up in creating your niche...</div>
        </div>

                </div>

        
        <div class="td_mod_search td_mod_wrap  td_mod_no_thumb" itemscope itemtype="http://schema.org/Article">
            <div class="thumb-wrap"><a href="http://technorati.com/connecting-social-content-sales-four-simple-steps/" rel="bookmark"><img src="http://technorati.com/wp-content/themes/NewspaperV37/images/no-img-post.png" alt="" title="" /></a></div>
        <div class="item-details">
        <h3 itemprop="name" class="entry-title"><a itemprop="url" href="http://technorati.com/connecting-social-content-sales-four-simple-steps/" rel="bookmark" title="Connecting social content to sales in four simple steps">Connecting social content to sales in four simple steps</a></h3>            <div class="meta-info">
                <div itemscope="" itemtype="http://schema.org/WebPage" class="entry-crumbs"><a class="entry-crumb" itemprop="breadcrumb" href="http://technorati.com">Home</a> <span class="td-sp td-sp-breadcrumb-arrow td-bread-sep"></span> <a class="entry-crumb" itemprop="breadcrumb" href="http://technorati.com/category/knowledge-base/" title="View all posts in Knowledge Base">Knowledge Base</a> <span class="td-sp td-sp-breadcrumb-arrow td-bread-sep"></span> <span>Connecting social content to sales in four simple steps</span></div>                <span class="td-block-author">by <a itemprop="author" href="http://technorati.com/author/francescaheath/">Francesca Heath</a> - </span><meta itemprop="interactionCount" content="UserComments:0"/>                <time  itemprop="dateCreated" class="entry-date updated" datetime="2014-08-11T04:01:11+00:00" >Aug 11, 2014</time><meta itemprop="interactionCount" content="UserComments:0"/>                            </div>

            <div class="td-post-text-content">Recently both Facebook and Twitter announced separate commerce plays. Twitter acquired payment startup CardSpring and Facebook announced they are testing a “buy” button.

These announcements...</div>
        </div>

                </div>

            </div>

                             </div>
                        </div>
                    </div>
                </div>
            </div>
        </div>
        <div class="td-footer-wrap">
    <div class="container">
        <div class="row">
            
                                    <div class="span12">
                                        <div class="td-grid-wrap">
                                            <div class="container-fluid">
                                                <div class="wpb_row row-fluid ">
                                                    <div class="span4 wpb_column column_container">
                                                        <aside class="widget widget_text"><div class="block-title"><span>Technorati</span></div>			<div class="textwidget">We use technology and real-time market insights to optimize digital advertising interactions across an expanding high-quality publisher network.
<br /><br />
<a href="/company/">Read More</a></div>
		</aside>                                                    </div>

                                                    <div class="span4 wpb_column column_container">
                                                        <aside class="widget widget_nav_menu"><div class="block-title"><span>Help &amp; Support</span></div><div class="menu-help-support-container"><ul id="menu-help-support" class="menu"><li id="menu-item-1259" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-first td-not-mega menu-item-1259"><a href="/company/history-of-technorati">History of Technorati</a></li>
<li id="menu-item-3146" class="menu-item menu-item-type-post_type menu-item-object-page td-not-mega menu-item-3146"><a href="http://technorati.com/contact/contact-support/">User Support</a></li>
<li id="menu-item-3147" class="menu-item menu-item-type-post_type menu-item-object-page td-not-mega menu-item-3147"><a href="http://technorati.com/contact/">Contact Us</a></li>
</ul></div></aside>                                                    </div>
                                                    <div class="span4 wpb_column column_container">
                                                        <aside class="widget widget_text"><div class="block-title"><span>Careers</span></div>			<div class="textwidget">Face it; it’s just part of who you are. You want to be an integral part of a team of talented people with a singular focus to do something awesome. And you’ve come to the right place. 
<br /><br />
<a href="/careers/">See All Openings</a></div>
		</aside>                                                    </div>
                                                </div>
                                            </div>
                                        </div>
                                    </div>

                                </div>
    </div>
</div> <!-- /.td-footer-wrap  -->


<div class="td-sub-footer-wrap">
    <div class="container ">
        <div class="row">
            <div class="span12">
                <div class="td-grid-wrap">
                    <div class="container-fluid">
                        <div class="row-fluid ">
                            <div class="span4 td-sub-footer-copy">
                                Copyright © Technorati.                            </div>
                            <div class="span8 td-sub-footer-menu">

                                <div class="menu-legal-container"><ul id="menu-legal" class=""><li id="menu-item-3148" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-first td-not-mega menu-item-3148"><a href="http://technorati.com/terms-of-service/">Terms of Service</a></li>
<li id="menu-item-3149" class="menu-item menu-item-type-post_type menu-item-object-page td-not-mega menu-item-3149"><a href="http://technorati.com/privacy-policy/">Privacy Policy</a></li>
<li id="menu-item-1265" class="menu-item menu-item-type-custom menu-item-object-custom td-not-mega menu-item-1265"><a href="http://creativecommons.org/licenses/by-nc/3.0/">CC License</a></li>
</ul></div>                            </div>
                        </div>
                    </div>
                </div>
            </div>
        </div>
    </div>
</div>





</div>
<!--/#inner-wrap-->
</div>
<!--/#outer-wrap-->

<div class="td-sp td-scroll-up"></div>


    <!--
        Theme: Newspaper by tagDiv 2014
        Version: 3.8.33.8.2 (rara)
        Deploy mode: deploy
        
    -->

    
            <style type="text/css" media="screen">
                .buttonright {
float: right;
}

input[type="text"], textarea {
  background-color : #e7e7e7; 
}

input[type="email"], textarea {
  background-color : #e7e7e7; 
}
                </style><script type='text/javascript' src='http://technorati.com/wp-content/themes/NewspaperV37/js/external.js?ver=3.8.33.8.2'></script>
<script type='text/javascript' src='http://technorati.com/wp-content/themes/NewspaperV37/js/site.js?ver=3.8.33.8.2'></script>

<!-- Start Of Script Generated By cforms v14.6 [Oliver Seidel | www.deliciousdays.com] -->
<!-- End Of Script Generated By cforms -->


<!-- JS generated by theme -->

<script>
    
</script>


</body>
</html>