Call me self-absorbed, self-centered if you want but there are very few things in life I find more boring that watching wedding videos.
I was recently submitted to one of such ordeals and all I wanted was for earth to swallow me.
I then remembered my brother’s wedding pictures… that was a great event, and an even better party but then again… watching the pics and video nearly put me to sleep. I had to something, I didn’t know what..
It’s incredible what you can do today with computers… Here is how Spanish Weddings look nowadays…
Last night (whilst searching for Dr. Doom, our missing cat) I had to keep my mind busy and ended up reflecting about the troubles of the publishing industry.
It seems that every friend of mine that is somehow involved in the publishing business is struggling to cope with the new environment. Is the same story across the board, rising cost, less readers, less advertisers, people seem to have run out of ideas and businesses are going down the drain.
The fact that nobody reads seems to be a common complain.
The truth is, people read, a lot, more than ever before. They just don’t consume information in the old, traditional way, hence the business model has become obsolete and doomed to fail.
Nobody is going to come save the publishing industry as we know it.
Some of us (Seth too) believe the future could lie in micro-publishing. The creation of online magazines that cater to specific areas of interest and that zoom into an audience specific enough to be of interest to advertisers.
The advantages to the publisher? Many. Paper costs are reduced to zero, distribution is easy, fast, and, in theory, limited only by how good is the idea and its expression.
The logic is overwhelming.
Adapt or die.
Here is the last edition of Maeshelle West- Davies So Social Club. This is an evolving experiment, put together entirely by a community of contributors. I suggest you check it out…
It happened yesterday on a discussion on LinkedIn TED. The subject: Are you doing what you are passionate about, or is your job simply how you support your lifestyle? Join the discussion.
Great people are commenting on this post. An interesting community is emerging.
Then, out of the blue we receive the following comment:
As much as I love the concept of giving back to society and following a compassionate lifestyle I could not avoid feeling I was being exposed to some sort of campaign put together by an advertising company with the intention of increasing exposure and buzz.
I see nothing wrong when individuals use their creative talents to create a cause and at the same time raise awareness towards their companies and business, this is at the core of the concept of corporate sponsorship and much good has been achieved this way in the last century. However, nothing annoys me more that seeing marketeers and advertising types trying to exploit people’s goodwill.
Luckily, the public is not a brainless mass any longer. When this happens such campaigns tend to backfire, people spot a genuine lack of sincerity and the whole thing turns into a very embarrassing “social media blunder”.
Any company trying to follow this route should be aware of one very important rule: Be real, sincerity matters!
I am interested in your point of view. Please have a look at this link and write your impressions on the blog.
Most brands are new, they have products (at time brilliant) but they lack a story. Most of their advertising budget goes towards creating one. The results? well.. switch on the TV.
And then you have those brands who have a story, a great story, but for whatever reason they fail to link that story with the brand itself.
This used to be the case of Anadolu Sigorta, a Turkish insurance company.
The recent unveiling of their new advertising campaign shows how to turn things around.
In a masterfully produced ad, Anadolu Sigorta brings us to the very moment of decision that led the founder of the country, Mustafa Kemal Ataturk, to the creation of a national insurance company.
The ad is in Turkish but it speaks an universal language. Speaks of honor and willingness to turn things around, speaks of reconstruction and national pride.
Turkey is a very proud country (too proud at times), so this campaign speaks to each and every single Turkish citizen. Very few people knew the story of this insurance company. Now we all do.
This is brilliant work, done by people who obviously cared and took pride in their craft. This could have been done in a cheesy and mercenary way, instead it is done with great style and dignity, matching the dignity of the moment.
Steve Smith, this plugin detects all ways to access your original WordPress feeds and redirects them to your FeedBurner feed so you can track every possible subscriber.
Author: FeedBurner
Author URI: http://www.feedburner.com
Version: 2.3.1
*/
$data = array(
'feedburner_url' => '',
'feedburner_comments_url' => ''
);
$ol_flash = '';
function ol_is_authorized() {
global $user_level;
if (function_exists("current_user_can")) {
return current_user_can('activate_plugins');
} else {
return $user_level > 5;
}
}
add_option('feedburner_settings',$data,'FeedBurner Feed Replacement Options');
$feedburner_settings = get_option('feedburner_settings');
function fb_is_hash_valid($form_hash) {
$ret = false;
$saved_hash = fb_retrieve_hash();
if ($form_hash === $saved_hash) {
$ret = true;
}
return $ret;
}
function fb_generate_hash() {
return md5(uniqid(rand(), TRUE));
}
function fb_store_hash($generated_hash) {
return update_option('feedsmith_token',$generated_hash,'FeedSmith Security Hash');
}
function fb_retrieve_hash() {
$ret = get_option('feedsmith_token');
return $ret;
}
function ol_add_feedburner_options_page() {
if (function_exists('add_options_page')) {
add_options_page('FeedBurner', 'FeedBurner', 8, basename(__FILE__), 'ol_feedburner_options_subpanel');
}
}
function ol_feedburner_options_subpanel() {
global $ol_flash, $feedburner_settings, $_POST, $wp_rewrite;
if (ol_is_authorized()) {
// Easiest test to see if we have been submitted to
if(isset($_POST['feedburner_url']) || isset($_POST['feedburner_comments_url'])) {
// Now we check the hash, to make sure we are not getting CSRF
if(fb_is_hash_valid($_POST['token'])) {
if (isset($_POST['feedburner_url'])) {
$feedburner_settings['feedburner_url'] = $_POST['feedburner_url'];
update_option('feedburner_settings',$feedburner_settings);
$ol_flash = "Your settings have been saved.";
}
if (isset($_POST['feedburner_comments_url'])) {
$feedburner_settings['feedburner_comments_url'] = $_POST['feedburner_comments_url'];
update_option('feedburner_settings',$feedburner_settings);
$ol_flash = "Your settings have been saved.";
}
} else {
// Invalid form hash, possible CSRF attempt
$ol_flash = "Security hash missing.";
} // endif fb_is_hash_valid
} // endif isset(feedburner_url)
} else {
$ol_flash = "You don't have enough access rights.";
}
if ($ol_flash != '') echo '
' . $ol_flash . '
';
if (ol_is_authorized()) {
$temp_hash = fb_generate_hash();
fb_store_hash($temp_hash);
echo '
';
echo '
Set Up Your FeedBurner Feed
';
echo '
This plugin makes it easy to redirect 100% of traffic for your feeds to a FeedBurner feed you have created. FeedBurner can then track all of your feed subscriber traffic and usage and apply a variety of features you choose to improve and enhance your original WordPress feed.
';
echo '
';
} else {
echo '
Sorry, you are not allowed to access this page.
';
}
}
function ol_feed_redirect() {
global $wp, $feedburner_settings, $feed, $withcomments;
if (is_feed() && $feed != 'comments-rss2' && !is_single() && $wp->query_vars['category_name'] == '' && ($withcomments != 1) && trim($feedburner_settings['feedburner_url']) != '') {
if (function_exists('status_header')) status_header( 302 );
header("Location:" . trim($feedburner_settings['feedburner_url']));
header("HTTP/1.1 302 Temporary Redirect");
exit();
} elseif (is_feed() && ($feed == 'comments-rss2' || $withcomments == 1) && trim($feedburner_settings['feedburner_comments_url']) != '') {
if (function_exists('status_header')) status_header( 302 );
header("Location:" . trim($feedburner_settings['feedburner_comments_url']));
header("HTTP/1.1 302 Temporary Redirect");
exit();
}
}
function ol_check_url() {
global $feedburner_settings;
switch (basename($_SERVER['PHP_SELF'])) {
case 'wp-rss.php':
case 'wp-rss2.php':
case 'wp-atom.php':
case 'wp-rdf.php':
if (trim($feedburner_settings['feedburner_url']) != '') {
if (function_exists('status_header')) status_header( 302 );
header("Location:" . trim($feedburner_settings['feedburner_url']));
header("HTTP/1.1 302 Temporary Redirect");
exit();
}
break;
case 'wp-commentsrss2.php':
if (trim($feedburner_settings['feedburner_comments_url']) != '') {
if (function_exists('status_header')) status_header( 302 );
header("Location:" . trim($feedburner_settings['feedburner_comments_url']));
header("HTTP/1.1 302 Temporary Redirect");
exit();
}
break;
}
}
if (!preg_match("/feedburner|feedvalidator/i", $_SERVER['HTTP_USER_AGENT'])) {
add_action('template_redirect', 'ol_feed_redirect');
add_action('init','ol_check_url');
}
add_action('admin_menu', 'ol_add_feedburner_options_page');
?>
Follow Me!