<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>illuminea web presence agency</title>
	<atom:link href="http://illuminea.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://illuminea.com</link>
	<description>Create and optimize your web presence with blogging &#38; social media strategies</description>
	<lastBuildDate>Sun, 20 May 2012 14:32:23 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>How to remove related videos from the end of an embedded YouTube video</title>
		<link>http://illuminea.com/video-2/remove-related-videos-from-end-of-embedded-youtube-video/</link>
		<comments>http://illuminea.com/video-2/remove-related-videos-from-end-of-embedded-youtube-video/#comments</comments>
		<pubDate>Sun, 20 May 2012 08:30:31 +0000</pubDate>
		<dc:creator>MiriamSchwab</dc:creator>
				<category><![CDATA[Video]]></category>
		<category><![CDATA[wordpress embed]]></category>
		<category><![CDATA[youtube]]></category>

		<guid isPermaLink="false">http://illuminea.com/?p=3875</guid>
		<description><![CDATA[As I’m sure you’ve seen, YouTube displays related videos at the end of videos you have viewed. This can be useful, but this can also be problematic. For example, we were recently working on a very personal project for a client. This client had a great video to use for their cause, but because the [...]
No related posts.]]></description>
			<content:encoded><![CDATA[<p>As I’m sure you’ve seen, <a href="http://youtube.com" title="YouTube" target="_blank">YouTube</a> displays related videos at the end of videos you have viewed. This can be useful, but this can also be problematic. For example, we were recently working on a very personal project for a client. This client had a great video to use for their cause, but because the project was so personal to them, they felt uncomfortable that all these random, unconnected videos were being offered to viewers at the end of the video.</p>
<p>I remembered that I had seen that you can remove related videos from the end of a YouTube video. It turns out, it’s really quite easy to do!</p>
<p>Let’s say I want to embed this adorable kitten video in my site to share it with my readers:</p>
<p><iframe width="500" height="281" src="http://www.youtube.com/embed/z8GHf-aELjY?fs=1&#038;feature=oembed" frameborder="0" allowfullscreen></iframe></p>
<p>You see all those supposedly related cute kitten videos at the end? How can YouTube dare to even compare this video with others? In order to make sure you are completely focused on this cute kitten, I will remove the related videos from the end. Note: you can only do this on embedded videos, and not on YouTube itself.</p>
<ol>
<li>Go to the video’s individual page on YouTube. In this case, the individual page is at <a href="http://www.youtube.com/watch?v=z8GHf-aELjY">http://www.youtube.com/watch?v=z8GHf-aELjY</a>.</li>
<li>On the bottom of the video, click Share.<br />
<img style="display: inline; border: 0px;" title="image" src="http://illuminea.com/new08/wp-content/uploads/2012/05/image.png" alt="image How to remove related videos from the end of an embedded YouTube video" width="462" height="401" border="0" /></li>
<li>Once you click Share, a new area slides open underneath the video with a shortlink for sharing the video. It also presents an Embed button. Click that.<br />
<img style="display: inline; border: 0px;" title="image" src="http://illuminea.com/new08/wp-content/uploads/2012/05/image1.png" alt="image1 How to remove related videos from the end of an embedded YouTube video" width="450" height="124" border="0" /></li>
<li>When you click Embed, another area opens up underneath that offers you the embed code, and also a number of options to allow you to customize the video’s appearance on your site. The first option is a checkbox that says “Show suggested videos when the video finishes.” Make sure that box is unchecked. If you look at the embed code, you’ll see that it adds a parameter after the video’s URL:
<pre>?rel=0</pre>
<p>. “Rel” means related videos, and 0 is a binary command, meaning No.<br />
<img style="display: inline; border: 0px;" title="image" src="http://illuminea.com/new08/wp-content/uploads/2012/05/image2.png" alt="image2 How to remove related videos from the end of an embedded YouTube video" width="450" height="205" border="0" /></li>
<li>Copy the embed code and paste wherever you want the video to appear! See below:</li>
</ol>
<p><iframe width="560" height="315" src="http://www.youtube.com/embed/z8GHf-aELjY?rel=0" frameborder="0" allowfullscreen></iframe></p>
<p>While I was searching for this solution, I came across a list of parameters that you can add to YouTube embed code to customize the player: <a href="https://developers.google.com/youtube/player_parameters" target="_blank">YouTube Embedded Players and Player Parameters.</a> For example, let’s say I think that the above video speaks for itself, and doesn’t need the title to appear on the player. To remove the title, I would add another parameter to the video’s URL in the embed code. So the URL would change from
<pre>http://www.youtube.com/embed/z8GHf-aELjY?rel=0</pre>
<p> to
<pre>http://www.youtube.com/embed/z8GHf-aELjY?rel=0&amp;showinfo=0</pre>
<p> (note the use of the &amp; to add another parameter). Here’s the final embed code:</p>
<pre>&lt;iframe width="560" height="315" src=http://www.youtube.com/embed/z8GHf-aELjY?rel=0&amp;showinfo=0
frameborder="0" allowfullscreen&gt;&lt;/iframe&gt;</pre>
<p>And here’s how the video looks without the related videos or title:<br />
<iframe width="560" height="315" src="http://www.youtube.com/embed/z8GHf-aELjY?rel=0&#038;showinfo=0" frameborder="0" allowfullscreen></iframe></p>
<p>Other things you can customize in your player with <a href="https://developers.google.com/youtube/player_parameters" target="_blank">these parameters</a> are if it autoplays, loops, starts or ends at a particular point in the video, and more!</p>
<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://illuminea.com/video-2/remove-related-videos-from-end-of-embedded-youtube-video/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Drive finally launches and other useful info from illuminea&#8217;s April 2012 webinar</title>
		<link>http://illuminea.com/web-trends/google-drive-finally-launches-and-other-useful-info-from-illumineas-april-2012-webinar/</link>
		<comments>http://illuminea.com/web-trends/google-drive-finally-launches-and-other-useful-info-from-illumineas-april-2012-webinar/#comments</comments>
		<pubDate>Thu, 03 May 2012 12:13:16 +0000</pubDate>
		<dc:creator>Rebecca Markowitz</dc:creator>
				<category><![CDATA[Web Trends]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[linkedin]]></category>
		<category><![CDATA[online marketing]]></category>
		<category><![CDATA[Pinterest]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[Social Media]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[youtube]]></category>

		<guid isPermaLink="false">http://illuminea.com/?p=3789</guid>
		<description><![CDATA[Recently, we launched a new monthly lecture series to present the most important web trends for marketing professionals. Please join us at our next free WEBINAR: ”Latest Web Trends in 1 Hour” on Wednesday, May 30, 2012 at 10am.  Signup and details here. At the April 2012 Web Trends Webinar, Miriam Schwab, the Friendly CEO of illuminea, spoke [...]
Related posts:<ol>
<li><a href='http://illuminea.com/web-trends/illuminea-launches-event-to-share-web-trends-about-facebook-pinterest-google-and-more/' rel='bookmark' title='illuminea launches event to share trends about facebook, Pinterest, Google, and more'>illuminea launches event to share trends about facebook, Pinterest, Google, and more</a> <small>Do you ever feel like you&#8217;re gonna burst with useful...</small></li>
<li><a href='http://illuminea.com/web-trends/watch-illumineas-web-trends-roundup-for-march-2012/' rel='bookmark' title='Watch illuminea&#8217;s Web Trends Roundup for March 2012'>Watch illuminea&#8217;s Web Trends Roundup for March 2012</a> <small>Recently, we launched a new monthly lecture series to present...</small></li>
<li><a href='http://illuminea.com/social-media/google-personalized-search-social-media-marketing/' rel='bookmark' title='Why Google&#8217;s personalized search means social marketing is more important than ever'>Why Google&#8217;s personalized search means social marketing is more important than ever</a> <small>A few days ago Google announced that it will be...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p id="post-3731">Recently, we launched a new monthly lecture series to present the most important web trends for marketing professionals.</p>
<div>
<div data-post_id="3731" data-type="rich" data-filter="the_content">
<p>Please join us at our next free WEBINAR: ”<a href="http://illum.in/wEwy5U">Latest Web Trends in 1 Hour</a>” on Wednesday, May 30, 2012 at 10am.  Signup and details <a href="http://illum.in/wEwy5U">here</a>.</p>
<p>At the April 2012 <a href="http://illum.in/wEwy5U">Web Trends Webinar</a>, Miriam Schwab, the Friendly CEO of illuminea, spoke about:</p>
<div id="attachment_3800" class="wp-caption alignnone" style="width: 310px"><img class="size-full wp-image-3800 " title="sociabell" src="http://illuminea.com/new08/wp-content/uploads/2012/05/sociabell.png" alt="sociabell Google Drive finally launches and other useful info from illumineas April 2012 webinar" width="300" height="162" /><p class="wp-caption-text">Love the Sociabell graphic!</p></div>
<p><strong>Google</strong>:</p>
<ul>
<li>Google Webmaster tools keeping data for 90 days</li>
<li>Keep a close on your Google account with activity reports</li>
<li>Need more space in your inbox? Sort emails by size with a Google Spreadsheet script</li>
<li>How Google Penguin updates affecting sites</li>
<li>Google Drive finally launching but not with iPhone access</li>
<li>Google+ gets a new design, as if that&#8217;ll make more people join&#8230;</li>
</ul>
<p><strong>Facebook</strong>:</p>
<div id="attachment_3802" class="wp-caption alignnone" style="width: 310px"><img class="size-medium wp-image-3802" title="fancy" src="http://illuminea.com/new08/wp-content/uploads/2012/05/fancy-300x180.png" alt="fancy 300x180 Google Drive finally launches and other useful info from illumineas April 2012 webinar" width="300" height="180" /><p class="wp-caption-text">Fancy graphs to show user&#39;s engagement with the Facebook timeline</p></div>
<ul>
<li>You can now email people&#8217;s message box based on their profile URL. Good for stalkers&#8230;</li>
<li>Download IP addresses to see who&#8217;s been logged into your account</li>
<li>Timeline Checklist &#8211; a list with useful tools for optimizing your timeline</li>
<li>Fancy graphs for Facebook engagement since the launch of timelines</li>
<li>Facebook ads that link to internal Facebook pages perform better, and are cheaper.</li>
</ul>
<div><strong>Linkedin:</strong></div>
<div>
<div id="attachment_3803" class="wp-caption alignnone" style="width: 310px"><img class="size-medium wp-image-3803" title="pymk" src="http://illuminea.com/new08/wp-content/uploads/2012/05/pymk-300x213.png" alt="pymk 300x213 Google Drive finally launches and other useful info from illumineas April 2012 webinar" width="300" height="213" /><p class="wp-caption-text">LinkedIn&#39;s People You May Know feature</p></div>
</div>
<div>
<ul>
<li>People You May Know feature</li>
<li>Targeted updates</li>
<li>Follower stats</li>
<li>iPad app which represents a general trend of people moving away from apps and more toward specialized mobile and tablet sites</li>
</ul>
<div><strong>YouTube:</strong></div>
<div>
<ul>
<li>Overview of ad options and prices</li>
<li>Partner program allows you to put ads on your videos and do revenue share with YouTube</li>
</ul>
<p><strong>We also discussed</strong>: Pinterest, WordPress stats &#8211; over 72.4 million sites built on WP, Klout, Wajam, Sociabell,  joliprint, and secure.me.</p>
<p><strong></strong>We invite you to join us in-person at illuminea Headquarters in Jerusalem or online via live straming for our next 1-hour Webinar on Wednesday, May 30, 2012 at 10am. Signup and details <a href="http://illum.in/wEwy5U">here</a>.</p>
</div>
</div>
<p><strong><a href=" http://www.youtube.com/watch?v=4WZJ-vuw0Q0">Watch the April 2012 web trends lecture video<br />
</a></strong>We apologize for the quality of the video. To see the accompanying presentation, go <a href="http://illum.in/AprilWebTrends">here</a></p>
<p><iframe src="http://www.youtube.com/embed/4WZJ-vuw0Q0" frameborder="0" width="420" height="315"></iframe></p>
<p><a href="http://illum.in/AprilWebTrends">April 2012 Slideshow on Slideshare</a>.</p>
<div id="__ss_12753220" style="width: 425px;"><strong style="display: block; margin: 12px 0 4px;"><iframe src="http://www.slideshare.net/slideshow/embed_code/12753220" frameborder="0" marginwidth="0" marginheight="0" scrolling="no" width="425" height="355"></iframe></strong></div>
</div>
</div>
<p>Related posts:<ol>
<li><a href='http://illuminea.com/web-trends/illuminea-launches-event-to-share-web-trends-about-facebook-pinterest-google-and-more/' rel='bookmark' title='illuminea launches event to share trends about facebook, Pinterest, Google, and more'>illuminea launches event to share trends about facebook, Pinterest, Google, and more</a> <small>Do you ever feel like you&#8217;re gonna burst with useful...</small></li>
<li><a href='http://illuminea.com/web-trends/watch-illumineas-web-trends-roundup-for-march-2012/' rel='bookmark' title='Watch illuminea&#8217;s Web Trends Roundup for March 2012'>Watch illuminea&#8217;s Web Trends Roundup for March 2012</a> <small>Recently, we launched a new monthly lecture series to present...</small></li>
<li><a href='http://illuminea.com/social-media/google-personalized-search-social-media-marketing/' rel='bookmark' title='Why Google&#8217;s personalized search means social marketing is more important than ever'>Why Google&#8217;s personalized search means social marketing is more important than ever</a> <small>A few days ago Google announced that it will be...</small></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://illuminea.com/web-trends/google-drive-finally-launches-and-other-useful-info-from-illumineas-april-2012-webinar/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Watch illuminea&#8217;s Web Trends Roundup for March 2012</title>
		<link>http://illuminea.com/web-trends/watch-illumineas-web-trends-roundup-for-march-2012/</link>
		<comments>http://illuminea.com/web-trends/watch-illumineas-web-trends-roundup-for-march-2012/#comments</comments>
		<pubDate>Sun, 15 Apr 2012 11:49:17 +0000</pubDate>
		<dc:creator>Rebecca Markowitz</dc:creator>
				<category><![CDATA[Web Trends]]></category>
		<category><![CDATA[faebook]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[Pinterest]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[Social Media]]></category>

		<guid isPermaLink="false">http://illuminea.com/?p=3731</guid>
		<description><![CDATA[Recently, we launched a new monthly lecture series to present the most important web trends for marketing professionals. Please join us at our next free WEBINAR &#8221;Latest Web Trends in 1 Hour&#8221; on Monday, April 30, 2012 at 10am.  Signup and details here. At the March 2012 Web Trends Webinar, Miriam Schwab, the Friendly CEO of illuminea, spoke [...]
No related posts.]]></description>
			<content:encoded><![CDATA[<p>Recently, we launched a new monthly lecture series to present the most important web trends for marketing professionals.</p>
<p>Please join us at our next free WEBINAR &#8221;<a href="http://illum.in/wEwy5U">Latest Web Trends in 1 Hour</a>&#8221; on Monday, April 30, 2012 at 10am.  Signup and details <a href="http://illum.in/wEwy5U">here</a>.</p>
<p>At the March 2012 <a href="http://illum.in/wEwy5U">Web Trends Webinar</a>, Miriam Schwab, the Friendly CEO of illuminea, spoke about:</p>
<p><strong>Google</strong>: Changes to the Google algorithm and semantic search, over-optimizing penalties, new rules for Google Places, new Google Analyics social reports, and that Firefox will use Google&#8217;s Secure Search which means even less keyword information in Analytics</p>
<p><strong>Facebook</strong>: Facebook timelines for Pages &#8211; no more default landing tab&#8230;. unless you pay for an ad, Facebook timeline best practices, facebook admin panel changes, facebook Insights now include Mobile referrals, and a new facebook demo tool for ads</p>
<p>and <strong>more</strong>!</p>
<p>We invite you to join us in-person at illuminea Headquarters in Jerusalem or online via live straming for our next 1-hour Webinar on Monday, April 30, 2012 at 10am. Signup and details <a href="http://illum.in/wEwy5U">here</a>.</p>
<p><a href="http://www.youtube.com/watch?v=jRKDb9aegL8">Watch the March 2012 web trends lecture video</a></p>
<p><iframe width="500" height="375" src="http://www.youtube.com/embed/jRKDb9aegL8?fs=1&#038;feature=oembed" frameborder="0" allowfullscreen></iframe></p>
<p>&nbsp;</p>
<p>or view the <a href="http://www.slideshare.net/illuminea/web-trends-monthly-lecture-by-miriam-schwab-march-27-2012">March 2012 Slideshow on Slideshare</a>.</p>
<div id="__ss_12604232" style="width: 425px;"><strong style="display: block; margin: 12px 0 4px;"><iframe src="http://www.slideshare.net/slideshow/embed_code/12604232" frameborder="0" marginwidth="0" marginheight="0" scrolling="no" width="425" height="355"></iframe></strong></p>
<div style="padding: 5px 0 12px;"></div>
</div>
<p>If you want to find out about future events, sign up to our newsletter (from the sidebar).</p>
<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://illuminea.com/web-trends/watch-illumineas-web-trends-roundup-for-march-2012/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>illuminea launches event to share trends about facebook, Pinterest, Google, and more</title>
		<link>http://illuminea.com/web-trends/illuminea-launches-event-to-share-web-trends-about-facebook-pinterest-google-and-more/</link>
		<comments>http://illuminea.com/web-trends/illuminea-launches-event-to-share-web-trends-about-facebook-pinterest-google-and-more/#comments</comments>
		<pubDate>Wed, 14 Mar 2012 14:38:03 +0000</pubDate>
		<dc:creator>Rebecca Markowitz</dc:creator>
				<category><![CDATA[Web Trends]]></category>
		<category><![CDATA[Bing]]></category>
		<category><![CDATA[DuckDuckGo]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[Pinterest]]></category>
		<category><![CDATA[video schema]]></category>

		<guid isPermaLink="false">http://illuminea.com/?p=3565</guid>
		<description><![CDATA[Do you ever feel like you&#8217;re gonna burst with useful information?  I don&#8217;t. But I know someone who does. Every day, Miriam Schwab, the Friendly CEO of illuminea, reads tons and tons of news related to online marketing, and wanted a way to share it with all 5,000 of her closest online friends. So, we decided [...]
No related posts.]]></description>
			<content:encoded><![CDATA[<p>Do you ever feel like you&#8217;re gonna burst with useful information?  I don&#8217;t. But I know someone who does. Every day, Miriam Schwab, the Friendly CEO of illuminea, reads tons and tons of news related to online marketing, and wanted a way to share it with all 5,000 of her closest online friends.</p>
<p>So, we decided to launch a monthly event where Miriam presents all the knowledge she&#8217;s gained in the last few weeks to a small group of marketing professionals at our illuminea headquarters in Jerusalem and online via live streaming.</p>
<p>If you want to join us for the<strong> next hour-long, information-packed &#8220;Latest Web Trends for Marketing Professionals&#8221; lecture on March 26, 2012 at 10am </strong>via live streaming, <strong><a href="http://illuminea.com/illuminea-college/latest-web-trends-for-marketing-professionals/">register here</a></strong> and we&#8217;ll send you the link.</p>
<p>If you want to find out about future events, sign up to our newsletter (from the sidebar).</p>
<p>At our first Web Trends event in February, Miriam talked about Pinterest, facebook ad revenues, facebook e-Commerce, facebook featured stories, facebook timeline, YouTube&#8217;s new features, DuckDuckGo, Bing, Google video schema, and more!</p>
<p>Watch the <a href="http://www.youtube.com/watch?v=DMrhxmCiAng">February 2012 Web Trends lecture.</a></p>
<p><iframe width="500" height="375" src="http://www.youtube.com/embed/DMrhxmCiAng?fs=1&#038;feature=oembed" frameborder="0" allowfullscreen></iframe></p>
<p>And here is the slideshow. Enjoy!<br />
<a title="Web trends monthly lecture by Miriam Schwab, February 27, 2012" href="http://www.slideshare.net/illuminea/web-trends-monthly-lecture-by-miriam-schwab-february-27-2012">Web trends monthly lecture by Miriam Schwab, February 27, 2012</a><object id="__sse11766057" width="425" height="355" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowScriptAccess" value="always" /><param name="wmode" value="transparent" /><param name="src" value="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=illumineawebtrends-feb-20121-120227042241-phpapp01&amp;stripped_title=web-trends-monthly-lecture-by-miriam-schwab-february-27-2012&amp;userName=illuminea" /><param name="allowscriptaccess" value="always" /><param name="allowfullscreen" value="true" /><embed id="__sse11766057" width="425" height="355" type="application/x-shockwave-flash" src="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=illumineawebtrends-feb-20121-120227042241-phpapp01&amp;stripped_title=web-trends-monthly-lecture-by-miriam-schwab-february-27-2012&amp;userName=illuminea" allowFullScreen="true" allowScriptAccess="always" wmode="transparent" allowscriptaccess="always" allowfullscreen="true" /></object><br />
View more <a href="http://www.slideshare.net/">presentations</a> from <a href="http://www.slideshare.net/illuminea">illuminea : web presence agency</a>.</p>
<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://illuminea.com/web-trends/illuminea-launches-event-to-share-web-trends-about-facebook-pinterest-google-and-more/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>SMX Israel 2012 &#8211; you&#8217;ve come a long way, baby!</title>
		<link>http://illuminea.com/events/smx-israel-2012-youve-come-a-long-way-baby/</link>
		<comments>http://illuminea.com/events/smx-israel-2012-youve-come-a-long-way-baby/#comments</comments>
		<pubDate>Mon, 16 Jan 2012 20:44:58 +0000</pubDate>
		<dc:creator>Illuminea Team</dc:creator>
				<category><![CDATA[Events]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[smx]]></category>
		<category><![CDATA[smx israel]]></category>
		<category><![CDATA[social media marketing]]></category>

		<guid isPermaLink="false">http://illuminea.com/?p=3459</guid>
		<description><![CDATA[SMX Israel was one of the best and most fun conferences I&#8217;ve been at in a long time. And I&#8217;m not the only one who thinks that &#8211; I&#8217;ve only heard and read enthusiastic responses from the participants. It&#8217;s hard to explain why we all had such a good time; maybe it was the size [...]
No related posts.]]></description>
			<content:encoded><![CDATA[<p><img class="size-full wp-image-3461 alignleft" title="SMX Israel – January 15, 2012" src="http://illuminea.com/new08/wp-content/uploads/2012/01/SMX-Israel-–-January-15-2012.png" alt="SMX Israel – January 15 2012 SMX Israel 2012   youve come a long way, baby!" width="201" height="90" /><a title="SMX Israel 2012" href="http://searchmarketingexpo.com/israel" target="_blank">SMX Israel</a> was one of the best and most fun conferences I&#8217;ve been at in a long time. And I&#8217;m not the only one who thinks that &#8211; I&#8217;ve only heard and read enthusiastic responses from the participants. It&#8217;s hard to explain why we all had such a good time; maybe it was the size of the crowd, the energy, the vibe, the speakers, the food (oh, the food). But all conferences have those characteristics to some extent. For some reason it all came together into pure awesomeness.</p>
<h2>Funny Speakers</h2>
<p>There&#8217;s lots to talk about from the conference &#8211; the tips, the tools, the companies that were there, covering everything: SEO, SEM, PPC, social media marketing, link building, content strategy, etc. But what I think I enjoyed the most, aside from running into so many AMAZING people, was that many speakers made me laugh.</p>
<p>I got to the conference late, of course, since I was working on my presentations at the last minute, as I always do. (It&#8217;s an illness.) So the first funny speaker I heard was <a title="Managing Greatness" href="http://managinggreatness.com/" target="_blank">Gil Reich</a>, who never fails to amuse. Then there was <a title="iPullRank" href="http://ipullrank.com/about-ipullrank/" target="_blank">Michael King</a>, who flew in from the US to be at SMX! He was hilarious&#8230;and educational, all at the same time.</p>
<p>I think that Gil and Michael warmed up the crowd, so it made it relatively easy to get the audience to laugh during my talk &#8211; and laugh they did (thank God). And then there was <a title="Marty Weintraub" href="http://www.aimclearblog.com/author/aimclear/" target="_blank">Marty Weintraub</a>. This guy is in his 50s (he told us in his talk!), and has more energy than all my kids combined. He definitely keeps you interested and entertained.</p>
<p>Overall, there was just a good, positive air at the event. <a title="Barry Schwartz personal blog" href="http://www.cartoonbarry.com/" target="_blank">Barry Schwartz</a> (<a href="http://twitter.com/rustybrick" target="_blank">@rustybrick</a>), the event chair, of course deserves TONS of credit for taking the leap into the Israeli conference scene in 2008 with the mini SEO conference, <a title="SphinnCon" href="http://illuminea.com/tag/sphinncon-israel/">SphinnCon</a>. That first get-together was about 150 people, and every year it has grown. Kudos also to all the organizers and sponsors, for making it all happen.</p>
<h2>The Story</h2>
<p>Lots was tweeted, blogged, presented, photographed, etc. during and after the conference. So I curated a lot of it in the following Storify board. I&#8217;ll be updating it as more SMX Israel related info is published.</p>
<p><script src="http://storify.com/miriamschwab/smx-israel-2012-roundups-photos-tweets.js"></script><noscript>[<a href="http://storify.com/miriamschwab/smx-israel-2012-roundups-photos-tweets" target="_blank">View the story "SMX Israel 2012 - roundups, presentations, photos, tweets" on Storify</a>]</noscript></p>
<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://illuminea.com/events/smx-israel-2012-youve-come-a-long-way-baby/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Are you letting all of facebook look over your shoulder as you read?</title>
		<link>http://illuminea.com/facebook-2/facebook-apps-invasion-of-privacy/</link>
		<comments>http://illuminea.com/facebook-2/facebook-apps-invasion-of-privacy/#comments</comments>
		<pubDate>Wed, 09 Nov 2011 11:14:43 +0000</pubDate>
		<dc:creator>Deena</dc:creator>
				<category><![CDATA[Facebook]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[facebook apps]]></category>
		<category><![CDATA[newsfeed]]></category>
		<category><![CDATA[newsreader facebook app]]></category>
		<category><![CDATA[privacy]]></category>

		<guid isPermaLink="false">http://illuminea.com/?p=3196</guid>
		<description><![CDATA[One of the latest types of apps that have emerged on Facebook are social news readers. These apps automatically post to your Facebook friends everything you read on the related news site. So for example, if you have installed the Washington Post Social Reader Facebook app, EVERYTHING you read on the Washington Post can appear in [...]
No related posts.]]></description>
			<content:encoded><![CDATA[<p>One of the latest types of apps that have emerged on Facebook are social news readers. These apps automatically post to your Facebook friends everything you read on the related news site. So for example, if you have installed the <a title="Washington Post Social Reader facebook app" href="https://apps.facebook.com/wpsocialreader/" target="_blank">Washington Post Social Reader</a> Facebook app, EVERYTHING you read on the Washington Post can appear in your facebook friends&#8217; news feeds.</p>
<p>Here&#8217;s how my Washington Post reading activity showed up in Miriam&#8217;s Facebook news feed:</p>
<div id="attachment_3211" class="wp-caption aligncenter" style="width: 263px"><img class="size-full wp-image-3211 " title="facebook-washington-post news feed" src="http://illuminea.com/new08/wp-content/uploads/2011/11/facebook-washington-post-news-feed.png" alt="facebook washington post news feed Are you letting all of facebook look over your shoulder as you read?" width="253" height="67" /><p class="wp-caption-text">As viewed in Miriam&#39;s facebook news feed</p></div>
<p>Here&#8217;s how an aggregation of Miriam&#8217;s Facebook friends&#8217; reading activity appears at the top of her news feed (how does it get to be at the top?!):</p>
<div id="attachment_3292" class="wp-caption aligncenter" style="width: 579px"><img class="size-full wp-image-3292" title="facebook-news-reader-results" src="http://illuminea.com/new08/wp-content/uploads/2011/11/facebook-news-reader-results1.png" alt="facebook news reader results1 Are you letting all of facebook look over your shoulder as you read?" width="569" height="229" /><p class="wp-caption-text">Facebook Social News Reader in Miriam&#39;s news feed</p></div>
<p>That hidden area on the right are thumbnails of Miriam&#8217;s friends next to articles they read.</p>
<p>Is this an example of the beauty of our online social lives, or is it an incredibly aggressive invasion of our privacy?</p>
<h2>Social beauty</h2>
<p>On the one hand, people get to easily share things they find interesting with their network. Instead of having to go into facebook, or use a social media management tool, to share the articles they like, the Washington Post does that for them. And isn&#8217;t that a lot of what we do on social networks?</p>
<h2>Massive invasion of privacy</h2>
<p>On the other hand, do you really want your Facebook friends seeing EVERYTHING you&#8217;re reading? Here are some examples of why this type of automatic sharing could work out badly:</p>
<ul>
<li>You&#8217;re thinking of getting divorced, and are doing research on divorce laws or recent divorce cases.</li>
<li>You&#8217;re questioning your sexual orientation, and are reading up on what it means to be homosexual and come out of the closet.</li>
<li>You adore Justin Bieber and read every article about him. But that is best kept under wraps, isn&#8217;t it?</li>
</ul>
<p>This is aside from the fact that you&#8217;re also giving these Facebook apps permission to access some of your details. And yes, apps are forever, if you let them be. Answer a questionnaire once about your knowledge of Sesame Street and two years later, that app is still viewing your information (unless you remove it of course, which I explain how to do below).</p>
<p>Also, if you install this app, you can&#8217;t see your own posts in your profile! Only your friends can. Which means you can&#8217;t remove anything from appearing there. Read an article about how to exorcise demons? It&#8217;s in your profile forever.</p>
<h2>Massive social chutzpah</h2>
<p>These social facebook news readers are clearly win-win for the news sites behind them. Their content gets wider exposure, and assumedly click-throughs. Except&#8230;if you see that your friend read an article and you&#8217;re interested in reading it too, and click on the article in your facebook news feed, you aren&#8217;t taken to the article! Instead, you arrive at the app installation page where it asks you to install it:</p>
<div id="attachment_3279" class="wp-caption aligncenter" style="width: 468px"><img class="size-full wp-image-3279" title="Washington Post Social Reader Facebook app" src="http://illuminea.com/new08/wp-content/uploads/2011/11/washington-post-news-reader-app.png" alt="washington post news reader app Are you letting all of facebook look over your shoulder as you read?" width="458" height="395" /><p class="wp-caption-text">Washington Post Social Reader Facebook app installation page</p></div>
<p>I have to install an app to read your article? You want access to my name and birthday so I can read your stuff? Buh-bye.</p>
<p>We&#8217;re very curious&#8230; How many people are actually installing these apps in order to see the post? Being forced to add it in order to read an article must deter many. So by strong-arming us, the Washington Post is losing a lot of potential views. Also, you can&#8217;t like or comment on these posts, which removes the social aspect of this type of activity. But at least the Washington Post gets to dip directly into many facebook profiles!</p>
<h2>Change your settings</h2>
<p>So facebook users, beware! Installing an app gives the app owner direct access to lots of your personal information.</p>
<p>If you do install one of these news sharing facebook apps, note that you <em>can</em> change the settings, choosing who can see your posts from it and who can&#8217;t. Here is how to do it:</p>
<ol>
<li>Log in to Facebook. In the top right hand corner is a downward facing arrow. Click on it.</li>
<li>Click on Account Settings.</li>
<li>In the left-hand sidebar click on Apps.</li>
<li>Click the Edit button next to the app you want to edit.</li>
</ol>
<p>Then you&#8217;ll see the following:</p>
<div id="attachment_3204" class="wp-caption aligncenter" style="width: 512px"><img class="size-full wp-image-3204" style="border-style: initial; border-color: initial;" title="social reader settings" src="http://illuminea.com/new08/wp-content/uploads/2011/11/social-reader-settings.png" alt="social reader settings Are you letting all of facebook look over your shoulder as you read?" width="502" height="247" /><p class="wp-caption-text">Washington Post&#39;s app settings</p></div>
<p>It is recommended to once in a while go into your facebook settings and see what apps you&#8217;ve installed and remove whatever you don&#8217;t use or don&#8217;t recognize. You&#8217;ll be surprised what&#8217;s lurking there.</p>
<h2>These facebook apps are sneaky too</h2>
<p>Here is the kicker of the Washington Post Social Reader app. I did not sign up for it and suddenly it was there, sharing my reading habits with my network. I seriously don&#8217;t remember ever seeing that installation screen. Maybe I clicked on something to install it, but if I did it was not made clear to me at all.</p>
<p>Meanwhile, I had no idea that my reading activity was being shared with others until I looked over at Miriam&#8217;s screen (I happen to be Facebook friends with her) and saw this:</p>
<div id="attachment_3201" class="wp-caption aligncenter" style="width: 255px"><a href="http://illuminea.com/new08/wp-content/uploads/2011/11/washington-post-social-reader.png"><img class="size-full wp-image-3201" title="washington post social reader" src="http://illuminea.com/new08/wp-content/uploads/2011/11/washington-post-social-reader.png" alt="washington post social reader Are you letting all of facebook look over your shoulder as you read?" width="245" height="60" /></a><p class="wp-caption-text">What the?!</p></div>
<p>Surprise Deena!</p>
<p>Wow! The Washington Post and I are BFFs and I didn&#8217;t even know it!</p>
<h2>What do you think?</h2>
<p style="text-align: left;">So you know what we think about this app but what do you think? Have you seen different news-feed apps that work differently than what I&#8217;ve described here? Would you, or do you, use an app of this kind?</p>
<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://illuminea.com/facebook-2/facebook-apps-invasion-of-privacy/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Why can&#8217;t I embed YouTube videos in WordPress?</title>
		<link>http://illuminea.com/blogging/why-cant-i-embed-youtube-videos-in-wordpress/</link>
		<comments>http://illuminea.com/blogging/why-cant-i-embed-youtube-videos-in-wordpress/#comments</comments>
		<pubDate>Mon, 07 Nov 2011 16:20:49 +0000</pubDate>
		<dc:creator>Deena</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[wordpress embed]]></category>
		<category><![CDATA[youtube]]></category>

		<guid isPermaLink="false">http://illuminea.com/?p=3194</guid>
		<description><![CDATA[About a year ago, WordPress added a feature that made it ridiculously easy to embed content from various sites (like YouTube, Slideshare, Vimeo) into WordPress sites. How to embed media in WordPress in a second If you want to embed, for example, a YouTube video in a post, all you do is paste the URL of the [...]
No related posts.]]></description>
			<content:encoded><![CDATA[<p>About a year ago, <a title="WordPress site development services by illuminea" href="http://illuminea.com/services/wordpress-blogs-websites/">WordPress</a> added a feature that made it ridiculously easy to embed content from <a href="http://codex.wordpress.org/Embeds#Okay.2C_So_What_Sites_Can_I_Embed_From.3F" target="_blank">various sites</a> (like YouTube, Slideshare, Vimeo) into WordPress sites.</p>
<h2>How to embed media in WordPress in a second</h2>
<p>If you want to embed, for example, a YouTube video in a post, all you do is paste the URL of the video into the editor, unlink it and save/publish. See our <a title="The ultimate guide to embedding HTML and iframes in WordPress" href="http://wpgarage.com/tips/embed-html-iframes-wordpress/" target="_blank">ultimate guide to embedding HTML and iframes in WordPress</a> on <a title="WP Garage" href="http://wpgarage.com" target="_blank">WPGarage</a> for more info on how this works.</p>
<p>The problem is that it doesn&#8217;t seem to work 100% of the time. Luckily, there&#8217;s usually a reason for this. So if you&#8217;re having trouble embedding media in your WordPress site, see if the following tips help you out.</p>
<h2>1. Your WordPress site isn&#8217;t set to enable embeds of this kind.</h2>
<p>Whenever you set up a WordPress site, you have the option to allow embeds or not. Make sure you&#8217;ve chosen this option.</p>
<ol>
<li>Go to Settings &gt; Media.</li>
<li>Under Embeds check the option: &#8220;When possible, embed the media content from a URL directly onto the page. For example: links to Flickr and YouTube.&#8221;</li>
<li>Save changes.</li>
</ol>
<h2>2. You aren&#8217;t using the right link</h2>
<p>It&#8217;s possible you aren&#8217;t using the right link. For example, maybe you copied the link of a channel instead of an individual video.</p>
<p>Here is an example of a URL that won&#8217;t work:</p>
<p><a href="http://www.youtube.com/illuminea#p/u/1/LlSeZIHroNw" target="_blank">http://www.youtube.com/illuminea#p/u/1/LlSeZIHroNw</a></p>
<p>Instead, the URL should look something like this:</p>
<p><a href="http://www.youtube.com/watch?v=LlSeZIHroNw">http://www.youtube.com/watch?v=LlSeZIHroNw</a></p>
<p>Lets see it work (all I did was un-hyperlink the above link to get the embedded video below):</p>
<p><object width="500" height="281"><param name="movie" value="http://www.youtube.com/v/LlSeZIHroNw?version=3&#038;feature=oembed"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/LlSeZIHroNw?version=3&#038;feature=oembed" type="application/x-shockwave-flash" width="500" height="281" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>Man, it&#8217;s so easy I could spit!</p>
<h2>3. Extra code is messing things up</h2>
<p>Maybe extra code is being added to the WordPress editor without you realizing. Try embedding the link into the HTML editor instead of the Visual one. If you see any extra code aside from the link itself, remove it.</p>
<h2>4. The YouTube user isn&#8217;t allowing embeddings of their media</h2>
<p>When someone uploads a video to YouTube, they can choose whether or not others will be able to embed their video around the web. If they chose not to allow it, no matter what you do, you won&#8217;t be able to embed it into your site.</p>
<p>Want to know how to change the embedding settings on one of your YouTube videos? Here&#8217;s how:</p>
<ol>
<li>Make sure you&#8217;re logged into YouTube (with your Google account).</li>
<li>Click on the arrow next to your username in the top right-hand corner.</li>
<li>Click on My Videos.</li>
<li>Click Edit info on the video you want to edit.</li>
<li>Scroll down to Embedding and click the arrow next to it in order to see the two options.</li>
<li>Choose whether or not external sites will be able to embed your video.</li>
<li>Click Save Changes.</li>
</ol>
<div><img class="aligncenter size-full wp-image-3245" title="youtube embedding settings" src="http://illuminea.com/new08/wp-content/uploads/2011/11/youtube-embedding-settings.png" alt="youtube embedding settings Why cant I embed YouTube videos in WordPress?" width="384" height="392" /></div>
<h2>Anything else?</h2>
<p>These are the problems we&#8217;ve found that prevent the awesome WordPress embed function from working. Have you found any other issues that don&#8217;t allow you to embed using links in WordPress?</p>
<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://illuminea.com/blogging/why-cant-i-embed-youtube-videos-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Set Up a Branded Feedburner URL</title>
		<link>http://illuminea.com/blogging/how-to-set-up-branded-feedburner-url/</link>
		<comments>http://illuminea.com/blogging/how-to-set-up-branded-feedburner-url/#comments</comments>
		<pubDate>Sat, 15 Oct 2011 23:22:31 +0000</pubDate>
		<dc:creator>Illuminea Team</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Feedburner]]></category>
		<category><![CDATA[RSS]]></category>

		<guid isPermaLink="false">http://illuminea.com/?p=2636</guid>
		<description><![CDATA[RSS feeds allow people to subscribe to get updated about your site or blog&#8217;s newest posts, usually via tools called feed readers (Google Reader is a well-known, free option). This is a nice feature, but like all things web we want to be able to measure this metric too and know how many people are [...]
Related posts:<ol>
<li><a href='http://illuminea.com/blogging/what-is-rss-and-how-do-i-use-it/' rel='bookmark' title='What is RSS and how do I use it?'>What is RSS and how do I use it?</a> <small>You&#8217;ve heard about RSS, you&#8217;ve seen the little RSS icons,...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><a title="RSS in Wikipedia" href="http://en.wikipedia.org/wiki/RSS" target="_blank">RSS feeds</a> allow people to subscribe to get updated about your site or blog&#8217;s newest posts, usually via tools called feed readers (<a title="Google Reader" href="http://google.com/reader" target="_blank">Google Reader</a> is a well-known, free option). This is a nice feature, but like all things web we want to be able to measure this metric too and know how many people are subscribing, and how they are using the feed.</p>
<p><a title="Feedburner" href="http://feedburner.google.com" target="_blank">Feedburner</a> is the only tool available that allows you to measure the number of people subscribed to your feed. It also allows you to offer people an email subscription option, which automatically sends them new posts by email if they subscribe to that option.</p>
<p>In order to measure the feed subscribers via feed reader, you need to redirect your blog&#8217;s feed to a Feedburner URL. Most of the time, people use the regular Feedburner URL that looks like feeds.feedburner.com/MyFeed. But you can also have a branded feed URL like http://feeds.illuminea.com/illumineaBlog. Here&#8217;s how to do it:</p>
<p>1. Go to <a href="http://feedburner.google.com/fb/a/mybrand">http://feedburner.google.com/fb/a/mybrand</a> and login with your Google account. Copy the higlighted text after CNAME.</p>
<p><img title="mybrand" src="http://illuminea.com/new08/wp-content/uploads/2011/02/mybrand.png" alt="mybrand How to Set Up a Branded Feedburner URL" width="455" height="250" /></p>
<p>2. Go into your cPanel where your domain is hosted and open the Simple DNS Zone Editor:</p>
<p><img title="simpledns" src="http://illuminea.com/new08/wp-content/uploads/2011/02/simpledns.png" alt="simpledns How to Set Up a Branded Feedburner URL" width="92" height="74" /></p>
<p>3. Add a CNAME as follows. In the Name field, type in: <strong>feeds</strong> In the CNAME field, paste in the highlighted text. The cPanel automatically fills in info to create a subdomain: feeds.thedomain.com. Basically, Google/Feedburner has you set up a subdomain that points to Google&#8217;s servers so they can serve the feed on your subdomain.</p>
<p><img title="cname" src="http://illuminea.com/new08/wp-content/uploads/2011/02/cname.png" alt="cname How to Set Up a Branded Feedburner URL" width="269" height="146" /></p>
<p>4. Wait up to 24 hours for propogation to finish. You can tell when it&#8217;s finished by going to feeds.yourdomain.com and getting a login page instead of a 404 error page.<br />
5. Go to <a href="http://feedburner.google.com/fb/a/mybrand">http://feedburner.google.com/fb/a/mybrand</a> and fill in your feeds.yourdomain.com where designated on the page.<br />
6. Click Activate.<br />
7. Check to see if it&#8217;s working. Your feed should look something like this:  http://feeds.illuminea.com/illumineaBlog<br />
8. Make sure to change the URL everywhere that a link to your RSS Feed appears but note that people can still sign up to your old URL: feeds.feedburner.com/illumineaBlog so you won&#8217;t lose out on any followers.</p>
<p>Related posts:<ol>
<li><a href='http://illuminea.com/blogging/what-is-rss-and-how-do-i-use-it/' rel='bookmark' title='What is RSS and how do I use it?'>What is RSS and how do I use it?</a> <small>You&#8217;ve heard about RSS, you&#8217;ve seen the little RSS icons,...</small></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://illuminea.com/blogging/how-to-set-up-branded-feedburner-url/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>illuminea presents: Social Media Workshop and SEO Seminar starting July 20, 2011 in the Tel Aviv area</title>
		<link>http://illuminea.com/israel/social-media-workshop-seo-seminar/</link>
		<comments>http://illuminea.com/israel/social-media-workshop-seo-seminar/#comments</comments>
		<pubDate>Mon, 11 Jul 2011 13:05:53 +0000</pubDate>
		<dc:creator>Illuminea Team</dc:creator>
				<category><![CDATA[Events]]></category>
		<category><![CDATA[Israel]]></category>
		<category><![CDATA[Marketing]]></category>
		<category><![CDATA[Small Business]]></category>
		<category><![CDATA[Social Media]]></category>

		<guid isPermaLink="false">http://illuminea.com/?p=2975</guid>
		<description><![CDATA[illuminea is excited to announce a 3-part Hands-On Social Media Workshop for Businesses on July 20, 27, and August 3, 2011. Each session will be four hours, and we will get hands-on at every stage with tools and techniques for optimizing your social media activity. UPDATE: After posting about the Social Media Workshop, we received [...]
No related posts.]]></description>
			<content:encoded><![CDATA[<p dir="LTR">illuminea is excited to announce a 3-part Hands-On Social Media Workshop for Businesses on July 20, 27, and August 3, 2011. Each session will be four hours, and we will get hands-on at every stage with tools and techniques for optimizing your social media activity.</p>
<p>UPDATE: After posting about the Social Media Workshop, we received requests to give an additional seminar on SEO &#8211; search engine optimization. So, we added a <strong><a href="../../illuminea-college/social-media-workshop/#seo">One Day Seminar on “SEO – The Fundamentals of Optimizing your Site for Search”</a></strong>.  If you register for both the Social Media Workshop and the One Day SEO Seminar, you&#8217;ll get a 15% discount on both!</p>
<p>To register, <a href="http://illum.in/mTNGJg">click here</a></p>
<p>&nbsp;</p>
<p dir="LTR"><strong>About the workshop</strong></p>
<p>We will be covering:</p>
<ul>
<li>Key concepts of social media and online marketing</li>
<li>Search engine optimization and why it’s important for social media marketing</li>
<li>Identifying goals and audience</li>
<li><strong>How to use Twitter for marketing</strong>: Setting up profiles that work for business, building up community, promoting your profile, what and how to write, monitoring, measuring, the best tools, etc.</li>
<li><strong>Getting the most out of LinkedIn</strong>: Using your personal profile to achieve business goals, customizing your company page, understanding the power of LinkedIn groups and Questions</li>
<li><strong>YouTube</strong>: Why YouTube is a huge opportunity, creating and optimizing your YouTube channel, optimizing your YouTube videos, growing your community</li>
<li><strong>Using Facebook for business</strong>: Profiles, Pages, Groups, Questions. how to analyze Facebook Insights</li>
<li><strong>Managing your web presence</strong>: How to manage your social profiles, content, and campaigns, Social media dashboard options and setting up your dashboard, Monitoring tools</li>
<li><strong>Getting your site ready for social media activity:</strong> Optimization, capturing leads, shareability, email marketing, analytics, social buttons</li>
</ul>
<p dir="LTR"><a href="http://illum.in/mTNGJg">View the full workshop schedule here and register</a></p>
<p dir="LTR"><strong>Lecturer: Miriam Schwab</strong><br />
This workshop will be taught by Miriam Schwab, the Friendly CEO of illuminea, who is recognized as a leading developer on the WordPress platform and regularly lectures and serves as a web marketing evangelist and resource to the broader internet community.</p>
<p>To see a list of the conferences and events that Miriam has spoken at, <a href="http://illum.in/mTNGJg">click here</a></p>
<p>&nbsp;</p>
<p dir="LTR"><strong>Workshop details</strong></p>
<p dir="LTR">Dates: July 20, 27, August 3, 2011 from 9:30am-1:30pm</p>
<p>Location: Tel Aviv area (Exact location to be announced)</p>
<p>Last day to register: July 13, 2011</p>
<p>The workshop will be taught in English.</p>
<p>Please feel free to contact us with any questions: info@illuminea.com</p>
<p>To register, <a href="http://illum.in/mTNGJg">click here</a></p>
<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://illuminea.com/israel/social-media-workshop-seo-seminar/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Facebook Ads can&#8217;t estimate reach for Pages with Hebrew or Arabic in the title</title>
		<link>http://illuminea.com/social-media/facebook-ads-cant-estimate-reach-for-pages-with-hebrew-arabic-title/</link>
		<comments>http://illuminea.com/social-media/facebook-ads-cant-estimate-reach-for-pages-with-hebrew-arabic-title/#comments</comments>
		<pubDate>Tue, 07 Jun 2011 12:10:00 +0000</pubDate>
		<dc:creator>MiriamSchwab</dc:creator>
				<category><![CDATA[Social Media]]></category>
		<category><![CDATA[advertising]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[ppc]]></category>

		<guid isPermaLink="false">http://illuminea.com/?p=2825</guid>
		<description><![CDATA[Someone recently asked a question on the Digital Eve Israel mailing list about a problem they were having with a facebook ad they were trying to create. When creating a facebook ad, you can target very specific people according to various parameters including country, age, gender, and “Likes and Interests.” Likes and Interests refers to [...]
Related posts:<ol>
<li><a href='http://illuminea.com/social-media/facebook-community-pages-brands-privacy/' rel='bookmark' title='Facebook Community Pages and Connections: what it means for brands, reputation management, and privacy'>Facebook Community Pages and Connections: what it means for brands, reputation management, and privacy</a> <small>Facebook made some drastic changes to its services and features...</small></li>
<li><a href='http://illuminea.com/marketing/online-marketers-make-fake-ads-look-like-real-news-sometimes-too-successfully/' rel='bookmark' title='Online marketers make fake ads look like real news &#8211; sometimes too successfully'>Online marketers make fake ads look like real news &#8211; sometimes too successfully</a> <small>More and more studies are showing that internet users do...</small></li>
<li><a href='http://illuminea.com/social-media/how-to-add-a-suggest-to-friends-tab-on-a-facebook-page/' rel='bookmark' title='How to Add a Suggest to Friends Tab on a Facebook Page'>How to Add a Suggest to Friends Tab on a Facebook Page</a> <small>Facebook is rolling out some major changes to how Pages...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Someone recently asked a question on the <a href="http://digitaleveisrael.com" target="_blank">Digital Eve Israel</a> mailing list about a problem they were having with a <a href="http://www.facebook.com/ads/create/" target="_blank">facebook ad</a> they were trying to create. When creating a facebook ad, you can target very specific people according to various parameters including country, age, gender, and “Likes and Interests.” Likes and Interests refers to people who have expressed interest in things either by adding them to their profile as an area of interest, or by Liking a related Page.</p>
<p>This person wanted to target people who liked the facebook Page of a particular chain of stores in Israel. This brand has an official Page on facebook, as well as a bunch of unofficial ones. Their official page alone has over 14,000 fans, yet when the person selected that Page under Likes and Interests in the Facebook Ad dashboard, they were told that the estimated reach was less than 20 people. I tested this out, and the results were the same, no matter what country or age group I entered (including all ages):</p>
<p><a href="http://illuminea.com/new08/wp-content/uploads/2011/06/facebook-estimated-reach.jpg"><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px;" title="facebook-estimated-reach" src="http://illuminea.com/new08/wp-content/uploads/2011/06/facebook-estimated-reach_thumb.jpg" border="0" alt="facebook estimated reach thumb Facebook Ads can&rsquo;t estimate reach for Pages with Hebrew or Arabic in the title" width="236" height="139" /></a></p>
<p>I was determined to get to the bottom of this, so I started running a bunch of tests. Eventually I realized the following:</p>
<p>If the title of a facebook Page has Hebrew in it, the Estimated Reach number is much lower than the number of fans. In fact, the number is always 20 or less – this goes for sites with 50,000 fans and up. And having English and Hebrew in the title doesn’t help. However, if a Page’s title is in English, even if the content is completely in Hebrew the Estimated Reach is in line with the number of fans of the Page.</p>
<p>I wanted to see if this is a problem with non-latin languages in general on facebook, so I decided to test a page with Arabic in the title: <a title="Al Jazeera Channel on Facebook" href="http://www.facebook.com/aljazeerachannel" target="_blank">Al Jazeera Channel</a>. The Page has over 1.2 million fans. I tested the Reach for this channel in a bunch of countries with large Arabic speaking populations: Israel, Bahrain, Saudi Arabia, United States, United Kingdom, Iraq, Jordan, Lebanon, Egypt. The Estimated Reach for those countries ranged from 20 to 180 at the most. When I added all these countries, the estimated reach maxed out at 240 people, which doesn’t really make sense.</p>
<p><a href="http://illuminea.com/new08/wp-content/uploads/2011/06/al-jazeera-reach.jpg"><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px;" title="al-jazeera-reach" src="http://illuminea.com/new08/wp-content/uploads/2011/06/al-jazeera-reach_thumb.jpg" border="0" alt="al jazeera reach thumb Facebook Ads can&rsquo;t estimate reach for Pages with Hebrew or Arabic in the title" width="640" height="221" /></a></p>
<p>So unless I’m missing something, which could be, it seems that Facebook Ads have a problem with Facebook Pages with titles in Hebrew or Arabic. Which makes you wonder if there are any other issues with Pages with titles that include Hebrew, Arabic, or possibly other non-latin languages like Chinese or Russian. And if that’s the case, maybe Page owners should use English titles wherever possible for now.</p>
<p>Related posts:<ol>
<li><a href='http://illuminea.com/social-media/facebook-community-pages-brands-privacy/' rel='bookmark' title='Facebook Community Pages and Connections: what it means for brands, reputation management, and privacy'>Facebook Community Pages and Connections: what it means for brands, reputation management, and privacy</a> <small>Facebook made some drastic changes to its services and features...</small></li>
<li><a href='http://illuminea.com/marketing/online-marketers-make-fake-ads-look-like-real-news-sometimes-too-successfully/' rel='bookmark' title='Online marketers make fake ads look like real news &#8211; sometimes too successfully'>Online marketers make fake ads look like real news &#8211; sometimes too successfully</a> <small>More and more studies are showing that internet users do...</small></li>
<li><a href='http://illuminea.com/social-media/how-to-add-a-suggest-to-friends-tab-on-a-facebook-page/' rel='bookmark' title='How to Add a Suggest to Friends Tab on a Facebook Page'>How to Add a Suggest to Friends Tab on a Facebook Page</a> <small>Facebook is rolling out some major changes to how Pages...</small></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://illuminea.com/social-media/facebook-ads-cant-estimate-reach-for-pages-with-hebrew-arabic-title/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Why Peter Shankman will hire a &#8220;social media expert&#8221;</title>
		<link>http://illuminea.com/new-media/peter-shankman-will-hire-social-media-expert/</link>
		<comments>http://illuminea.com/new-media/peter-shankman-will-hire-social-media-expert/#comments</comments>
		<pubDate>Mon, 23 May 2011 22:03:18 +0000</pubDate>
		<dc:creator>Illuminea Team</dc:creator>
				<category><![CDATA[New media]]></category>
		<category><![CDATA[social marketing]]></category>
		<category><![CDATA[Social Media]]></category>
		<category><![CDATA[social SEO]]></category>

		<guid isPermaLink="false">http://illuminea.com/?p=2788</guid>
		<description><![CDATA[A few days ago, Peter Shankman wrote a post lambasting all “social media experts” as irrelevant and worthy of dying in a fire. So Peter….you don’t like ‘em, eh? But if you read through his post, it seems clear that he actually thinks that social media activity is important, he just doesn’t like the way [...]
Related posts:<ol>
<li><a href='http://illuminea.com/new-media/blogging-and-social-media-for-marketing-and-creating-videos-presentations-from-techshoret/' rel='bookmark' title='Blogging and social media for marketing and creating videos &#8211; presentations from Techshoret'>Blogging and social media for marketing and creating videos &#8211; presentations from Techshoret</a> <small>About a month ago I spoke at the Techshoret Conference...</small></li>
<li><a href='http://illuminea.com/social-media/what-social-media-marketing-is-not-affilicon/' rel='bookmark' title='What social media marketing is NOT &#8211; my presentation at Affilicon 2009'>What social media marketing is NOT &#8211; my presentation at Affilicon 2009</a> <small>For the second year running I had the opportunity to...</small></li>
<li><a href='http://illuminea.com/new-media/gm-expands-social-media-marketing-strategyand-sees-sales-up/' rel='bookmark' title='GM expands social media marketing strategy&#8230;and sees sales up'>GM expands social media marketing strategy&#8230;and sees sales up</a> <small>GM is one of the few automobile giants who has...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>A few days ago, Peter Shankman <a href="http://shankman.com/i-will-never-hire-a-social-media-expert-and-neither-should-you/" target="_blank">wrote a post</a> lambasting all “social media experts” as irrelevant and worthy of dying in a fire. So Peter….you don’t like ‘em, eh?</p>
<p>But if you read through his post, it seems clear that he actually thinks that social media activity is important, he just doesn’t like the way it’s often done: he doesn’t like when marketers aren’t transparent, are irrelevant, can’t write, and don’t know their customer. Oh, and he also thinks marketers shouldn’t forget about the end goal of making money while engaged in all the social media coolness. Well, anyone who conducts marketing activities like that is not only a poor social media marketer; they are a terrible marketing professional and should find another profession. ASAP.</p>
<p>So let’s assume that most people involved in social media marketing on a professional level have half a brain and understand the basics of marketing: if the goal of marketing is to make money, is social media the way to go? Studies repeatedly show that the online marketing activities with the best ROI are search engine optimization (SEO) and email marketing. Social media comes in way after them. So how is the social media frenzy justified?</p>
<p>Here’s how:</p>
<h2>Social Media is the new Website</h2>
<p>It is hard to prove that websites make money for companies. I don&#8217;t mean ecommerce sites, but sites that say who the company is, what they do, etc. Yes, these types of websites can be optimized for conversions, but in many cases they&#8217;re not. And even if they are, do the few clients who were directly and measurably converted by the website (i.e. they contacted the company via a form on the site and eventually became a customer) justify the costs of maintaining a good corporate site? The answer is yes: websites are important, and it&#8217;s accepted that every company and organization needs one. The reason for that is that it serves an important supportive role in sales &#8211; it&#8217;s an important stage that potential customers go through to assess whether a company is right for them. Social media marketing is approaching that same level &#8211; an important supportive element in marketing and sales, that potential customers, and existing customers, seek out.</p>
<h2>Social Media Makes SEO and Email Marketing Better</h2>
<p>Social media activity is increasingly being shown to be an <a title="Facebook and SEO" href="http://www.huomah.com/Search-Engines/Search-Engine-Optimization/Facebook-and-SEO.html" target="_blank">important</a> <a title="Facebook Like’s Impact on SEO" href="http://www.blueglass.com/blog/facebook-likes-impact-on-seo/" target="_blank">signal</a> in a site&#8217;s ranking; it can also be a relatively large source of traffic to a site (which is generally the goal of SEO &#8211; to increase traffic to a site). Social media &#8220;outposts&#8221; can also help you increase your email marketing mailing list by encouraging people to sign up, and sharing past newsletters.</p>
<h2>Social Media is the New &#8220;New&#8221;</h2>
<p>Social media marketing is so new, and changing all the time (thanks facebook), that it’s impossible to know where it’s headed and what the potential really is. The only way to find out is to test, and then test some more. Like in every other area of online marketing, discovering new opportunities demands a few brave souls who are willing to risk their marketing budget and take the plunge. They’re definitely not idiots: they’re trailblazers. They should be applauded, not ridiculed. This is a necessary part of innovation.</p>
<p>Social media is not just a cool new toy – it’s a new and important part of the web. And people who understand it &#8211; as part of the online marketing mix &#8211; will be hired.</p>
<p>Related posts:<ol>
<li><a href='http://illuminea.com/new-media/blogging-and-social-media-for-marketing-and-creating-videos-presentations-from-techshoret/' rel='bookmark' title='Blogging and social media for marketing and creating videos &#8211; presentations from Techshoret'>Blogging and social media for marketing and creating videos &#8211; presentations from Techshoret</a> <small>About a month ago I spoke at the Techshoret Conference...</small></li>
<li><a href='http://illuminea.com/social-media/what-social-media-marketing-is-not-affilicon/' rel='bookmark' title='What social media marketing is NOT &#8211; my presentation at Affilicon 2009'>What social media marketing is NOT &#8211; my presentation at Affilicon 2009</a> <small>For the second year running I had the opportunity to...</small></li>
<li><a href='http://illuminea.com/new-media/gm-expands-social-media-marketing-strategyand-sees-sales-up/' rel='bookmark' title='GM expands social media marketing strategy&#8230;and sees sales up'>GM expands social media marketing strategy&#8230;and sees sales up</a> <small>GM is one of the few automobile giants who has...</small></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://illuminea.com/new-media/peter-shankman-will-hire-social-media-expert/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>How to Add a Suggest to Friends Tab on a Facebook Page</title>
		<link>http://illuminea.com/social-media/how-to-add-a-suggest-to-friends-tab-on-a-facebook-page/</link>
		<comments>http://illuminea.com/social-media/how-to-add-a-suggest-to-friends-tab-on-a-facebook-page/#comments</comments>
		<pubDate>Thu, 17 Feb 2011 08:15:20 +0000</pubDate>
		<dc:creator>Rebecca Markowitz</dc:creator>
				<category><![CDATA[Social Media]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[fbml]]></category>
		<category><![CDATA[invite friends]]></category>
		<category><![CDATA[suggest to friends]]></category>

		<guid isPermaLink="false">http://illuminea.com/?p=2576</guid>
		<description><![CDATA[Facebook is rolling out some major changes to how Pages work. Some are good, some not. The good changes include the new layout of facebook Pages with the tabs on the left sidebar instead of at the top, and, starting March 11, 2011, the ability to use iframes, HTML, Javascript and CSS without the FBML [...]
Related posts:<ol>
<li><a href='http://illuminea.com/social-media/image-map-in-fbml-tab-facebook/' rel='bookmark' title='How to create an image map for a static FBML tab on a facebook page'>How to create an image map for a static FBML tab on a facebook page</a> <small>When creating custom FBML tabs for facebook pages, it can...</small></li>
<li><a href='http://illuminea.com/facebook-2/facebook-apps-invasion-of-privacy/' rel='bookmark' title='Are you letting all of facebook look over your shoulder as you read?'>Are you letting all of facebook look over your shoulder as you read?</a> <small>One of the latest types of apps that have emerged...</small></li>
<li><a href='http://illuminea.com/social-media/facebook-community-pages-brands-privacy/' rel='bookmark' title='Facebook Community Pages and Connections: what it means for brands, reputation management, and privacy'>Facebook Community Pages and Connections: what it means for brands, reputation management, and privacy</a> <small>Facebook made some drastic changes to its services and features...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><img class="size-full wp-image-2587 alignnone" title="invitefriends" src="http://illuminea.com/new08/wp-content/uploads/2011/02/invitefriends1.png" alt="invitefriends1 How to Add a Suggest to Friends Tab on a Facebook Page" width="400" height="276" /></p>
<p>Facebook is rolling out some major changes to how Pages work. Some are good, some not. The good changes include the new layout of facebook Pages with the tabs on the left sidebar instead of at the top, and, starting March 11, 2011, the ability to use <a href="http://socialmediaseo.net/2011/02/10/facebook-fan-pages-new-update/">iframes, HTML, Javascript and CSS</a> without the FBML App! This is going to totally change how you can develop facebook Pages! Party time!</p>
<p>One of the recent changes in the &#8220;not so great&#8221; category is facebook&#8217;s decision to <a href="http://www.allfacebook.com/facebook-hides-suggest-page-to-friends-feature-2011-01">remove the &#8220;Suggest to Friends&#8221; link</a> on facebook Pages. Admins of a page can still access this feature in the Edit Page area, but fans cannot. So, we&#8217;ve been flooded with requests to add an Invite Friends Tab to facebook Pages.  Here are the steps for how to create the Invite Friends Tab on a facebook Page, but keep in mind that as of March 11, 2011, facebook will be deprecating the FBML App.</p>
<ol>
<li> Go to  <a href="http://www.facebook.com/apps/application.php?id=4949752878">Static FBML App</a> and click on Add to Page in the top left corner of the page. You will then see a list of your facebook pages.  Click “Add to Page” to add the  application.</li>
<li>FBML is now added to your page.</li>
<li>Go to the facebook Page you&#8217;re working on and click Edit Page.</li>
<li>Click on Apps.</li>
<li>Click on the FBML Apps and click on Go to App.</li>
<li>Give the Tab a title like &#8220;Suggest to Friends.&#8221;</li>
<li>Copy and Paste the below code replacing illuminea with your organization.<br />
<strong>Important</strong>! The action URL on line 3 of the code MUST be <strong>http</strong>://example.com and NOT http://www.example.com. No WWW welcome at this party. <strong><br />
</strong><br />
If you don&#8217;t follow these rules, you will get an error that says &#8220;Sorry, your request <em>could not</em> be processed. Please try again.&#8221;</p>
<pre>
&lt;fb:request-form
method="post"
action="http://facebook.com/illuminea"
type="illuminea"
invite="true"
content="Connect with iluminea
&lt;fb:req-choice url=http://www.facebook.com/illuminea label='Go' /&gt; "&gt;
&lt;fb:multi-friend-selector actiontext="Invite your friends to connect with illuminea" rows="3" cols="3" showborder="true" /&gt;
&lt;/fb:request-form&gt;</pre>
</li>
<li>Save Changes.</li>
<li>Go to Edit Page &gt; Apps &gt; Click on the Suggest to Friends App you created &gt; Go to Edit Settings and click &#8220;Add&#8221; where it says Available (see screenshot).<br />
<a href="../wp-content/uploads/2011/02/available1.png"><img title="available" src="http://illuminea.com/new08/wp-content/uploads/2011/02/available1.png" alt="available1 How to Add a Suggest to Friends Tab on a Facebook Page" width="212" height="71" /></a></li>
<li>You can see this in action on <a href="http://www.facebook.com/illuminea#%21/illuminea?sk=app_6009294086">illuminea&#8217;s facebook Page</a>.</li>
<li>When your friend receives the invitation it says &#8220;Friend has invited you to &#8220;Static FBML&#8221;. Not so pretty so for now make sure your message text is really good! I hope there will be a better solution for this.<br />
<a href="../wp-content/uploads/2011/02/invited1.png"><img title="invited" src="../wp-content/uploads/2011/02/invited1.png" alt="invited1 How to Add a Suggest to Friends Tab on a Facebook Page" width="589" height="75" /></a></li>
</ol>
<p>Related posts:<ol>
<li><a href='http://illuminea.com/social-media/image-map-in-fbml-tab-facebook/' rel='bookmark' title='How to create an image map for a static FBML tab on a facebook page'>How to create an image map for a static FBML tab on a facebook page</a> <small>When creating custom FBML tabs for facebook pages, it can...</small></li>
<li><a href='http://illuminea.com/facebook-2/facebook-apps-invasion-of-privacy/' rel='bookmark' title='Are you letting all of facebook look over your shoulder as you read?'>Are you letting all of facebook look over your shoulder as you read?</a> <small>One of the latest types of apps that have emerged...</small></li>
<li><a href='http://illuminea.com/social-media/facebook-community-pages-brands-privacy/' rel='bookmark' title='Facebook Community Pages and Connections: what it means for brands, reputation management, and privacy'>Facebook Community Pages and Connections: what it means for brands, reputation management, and privacy</a> <small>Facebook made some drastic changes to its services and features...</small></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://illuminea.com/social-media/how-to-add-a-suggest-to-friends-tab-on-a-facebook-page/feed/</wfw:commentRss>
		<slash:comments>32</slash:comments>
		</item>
		<item>
		<title>SphinnCon search marketing conference coming back to Israel</title>
		<link>http://illuminea.com/marketing/sphinncon-search-marketing-conference-coming-back-to-israel/</link>
		<comments>http://illuminea.com/marketing/sphinncon-search-marketing-conference-coming-back-to-israel/#comments</comments>
		<pubDate>Wed, 29 Dec 2010 07:00:44 +0000</pubDate>
		<dc:creator>MiriamSchwab</dc:creator>
				<category><![CDATA[Marketing]]></category>
		<category><![CDATA[business events]]></category>
		<category><![CDATA[networking]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[SphinnCon Israel]]></category>

		<guid isPermaLink="false">http://illuminea.com/?p=2462</guid>
		<description><![CDATA[SphinnCon is coming back to Israel on January 9, 2011, and it’s a conference that I think any one who is serious about search marketing should seriously consider attending. What is SphinnCon? Have you ever heard of SMX? Well, SMX (Search Marketing Expo) is “the [my bold] original and best search marketing event.” We in [...]
Related posts:<ol>
<li><a href='http://illuminea.com/israel/sphinncon-israel-coming-upand-not-a-woman-to-be-seen-on-a-panel/' rel='bookmark' title='SphinnCon Israel coming up&#8230;and not a woman to be seen (on a panel)'>SphinnCon Israel coming up&#8230;and not a woman to be seen (on a panel)</a> <small>SphinnCon Israel is sold out! SphinnCon Israel is a SphinnCon...</small></li>
<li><a href='http://illuminea.com/web/barry-schwartz-sphinncon-israel/' rel='bookmark' title='SphinnCon Israel review part 1: Barry Schwartz&#8217;s introduction'>SphinnCon Israel review part 1: Barry Schwartz&#8217;s introduction</a> <small>I know this is way overdue, but I actually have...</small></li>
<li><a href='http://illuminea.com/web/sphinncon-israel-summarymore-to-come-later/' rel='bookmark' title='SphinnCon Israel summary&#8230;more to come later'>SphinnCon Israel summary&#8230;more to come later</a> <small>As I wrote a few days ago, SphinnCon came to...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><a title="SphinnCon Israel" href="http://searchmarketingexpo.com/sphinncon" target="_blank"><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border-width: 0px;" title="sphinncon" src="http://illuminea.com/new08/wp-content/uploads/2010/12/sphinncon.jpg" border="0" alt="sphinncon SphinnCon search marketing conference coming back to Israel" width="323" height="91" /></a></p>
<p><a title="SphinnCon Israel" href="http://searchmarketingexpo.com/sphinncon" target="_blank"></a><a title="SphinnCon Israel" href="http://searchmarketingexpo.com/sphinncon" target="_blank">SphinnCon</a> is coming back to Israel on January 9, 2011, and it’s a conference that I think any one who is serious about search marketing should seriously consider attending.</p>
<h2>What is SphinnCon?</h2>
<p>Have you ever heard of <a title="The World's Leading Search Engine Marketing Conference" href="http://searchmarketingexpo.com/" target="_blank">SMX</a>? Well, SMX (Search Marketing Expo) is “<strong>the</strong> [my bold] original and best search marketing event.” We in Israel are lucky since SphinnCon is a unique SMX-related event that takes place outside of the US, and as far as I know it so far has only happened here.</p>
<p>SphinnCon Israel is the premier networking event designed for SEOs, SEMs, SMOs and affiliate marketers to exchange ideas, influence the industry and build their networks. Get a full day of sessions and keynotes (and snacks) from some of the industry’s leading experts, from Israel and abroad. For example, this year’s speakers include Sam Michaelson from <a href="http://www.fiveblocks.com/">Five Blocks</a> (who’s always entertaining), Olivier Amar from <a href="http://www.pointupmedia.com/">PointUp Media</a>, Branko Rihtman (active on Twitter as <a href="http://twitter.com/neyne/" target="_blank">@neyne</a>) from <a href="http://www.whiteweb.com/">Whiteweb</a>, Dixon Jones from <a href="http://www.receptional.com/">Receptional Ltd.</a>, Eli Feldblum from <a href="http://www.rankabove.com/">RankAbove</a>, Kevin Gibbons from <a href="http://www.seoptimise.com/">SEOptimise</a>, and more. <a title="Chris Sherman" href="http://searchwise.net/bio.html">Chris Sherman</a>, the Executive Editor Search Engine Land &amp; President of Searchwise, is also coming, which is cool, along with Kaspar Szymanski, Google Search Quality Strategist from Google Dublin Office. What a lineup!</p>
<p><img class="alignleft" style="margin-left: 5px; margin-right: 5px; border: 0px initial initial;" title="Cartoon Barry" src="http://farm3.static.flickr.com/2180/2197704323_96ecfa79f4_m.jpg" border="0" alt="2197704323 96ecfa79f4 m SphinnCon search marketing conference coming back to Israel" hspace="5" width="57" height="57" />The whole thing is being programmed by the awesome <a href="http://www.cartoonbarry.com/" target="_blank">Barry Schwartz</a> (also known as <a href="http://twitter.com/rustybrick" target="_blank">@RustyBrick</a>), who is a leading personality in the world of search engine marketing thanks to his work at <a href="http://www.rustybrick.com/" target="_blank">RustyBrick</a>, his very popular site <a href="http://www.seroundtable.com/" target="_blank">The Search Engine Roundtable</a> (which just got a site redo on a custom CMS – check it out), and his multitudinous writings on <a href="http://searchengineland.com/" target="_blank">Search Engine Land</a>.</p>
<p>(I’ve always wanted to use the word “multitudinous” and now I have. Success.)</p>
<h2>And I’m speaking there…</h2>
<p>I’m speaking on the first and last panels at the conference: at 9 am on SEO Tips, and at 4:30 pm I’m moderating the panel on Social Media in SEM &amp; Search. Which basically means I’ll be there all day! See the <a href="http://searchmarketingexpo.com/sphinncon" target="_blank">full schedule</a>.</p>
<h2>How to register</h2>
<p>If all of this sounds good, you can <a href="https://www.rustybrick.com/sphinncon/" target="_blank">register here</a>. Attendance costs $100, which is not cheap for an Israeli conference, but considering it’s an SMX conference, and the leading people from the industry who are coming from overseas and Israel, and how useful and enjoyable the last SphinnCons were (see my posts reviewing the previous <a title="SphinnCon posts on illuminea blog" href="http://illuminea.com/tag/sphinncon-israel/">SphinnCon </a>events), it’s worth considering.</p>
<p>Related posts:<ol>
<li><a href='http://illuminea.com/israel/sphinncon-israel-coming-upand-not-a-woman-to-be-seen-on-a-panel/' rel='bookmark' title='SphinnCon Israel coming up&#8230;and not a woman to be seen (on a panel)'>SphinnCon Israel coming up&#8230;and not a woman to be seen (on a panel)</a> <small>SphinnCon Israel is sold out! SphinnCon Israel is a SphinnCon...</small></li>
<li><a href='http://illuminea.com/web/barry-schwartz-sphinncon-israel/' rel='bookmark' title='SphinnCon Israel review part 1: Barry Schwartz&#8217;s introduction'>SphinnCon Israel review part 1: Barry Schwartz&#8217;s introduction</a> <small>I know this is way overdue, but I actually have...</small></li>
<li><a href='http://illuminea.com/web/sphinncon-israel-summarymore-to-come-later/' rel='bookmark' title='SphinnCon Israel summary&#8230;more to come later'>SphinnCon Israel summary&#8230;more to come later</a> <small>As I wrote a few days ago, SphinnCon came to...</small></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://illuminea.com/marketing/sphinncon-search-marketing-conference-coming-back-to-israel/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>New! Course in WordPress web design and development</title>
		<link>http://illuminea.com/blogging/new-course-in-wordpress-web-design-and-development/</link>
		<comments>http://illuminea.com/blogging/new-course-in-wordpress-web-design-and-development/#comments</comments>
		<pubDate>Tue, 28 Dec 2010 08:29:37 +0000</pubDate>
		<dc:creator>Deena</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Events]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[building websites]]></category>
		<category><![CDATA[course]]></category>
		<category><![CDATA[education]]></category>
		<category><![CDATA[website development]]></category>
		<category><![CDATA[wordpress course]]></category>

		<guid isPermaLink="false">http://illuminea.com/?p=2454</guid>
		<description><![CDATA[illuminea college is offering an amazing course through which you&#8217;ll learn all the basics you need to know in order to get a website up and running using WordPress. Why WordPress? WordPress is an open source Content Management System (CMS). Basically this means that regular people like you and me can, relatively very easily, build [...]
Related posts:<ol>
<li><a href='http://illuminea.com/blogging/illuminea-has-a-new-site-design/' rel='bookmark' title='illuminea has a new site design!'>illuminea has a new site design!</a> <small>Yes, we&#8217;ve revamped our website, and it&#8217;s about time! If...</small></li>
<li><a href='http://illuminea.com/blogging/why-cant-i-embed-youtube-videos-in-wordpress/' rel='bookmark' title='Why can&#8217;t I embed YouTube videos in WordPress?'>Why can&#8217;t I embed YouTube videos in WordPress?</a> <small>About a year ago, WordPress added a feature that made...</small></li>
<li><a href='http://illuminea.com/blogging/why-dont-israelis-design-for-firefox/' rel='bookmark' title='Why don&#8217;t Israelis Design for Firefox?'>Why don&#8217;t Israelis Design for Firefox?</a> <small>I love Firefox. I loved it before version 2.0, and...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><a href="http://college.illuminea.com"><img class="alignright size-medium wp-image-2455" title="illuminea college logo" src="http://illuminea.com/new08/wp-content/uploads/2010/12/illuminea-college-logo-300x213.png" alt="illuminea college logo 300x213 New! Course in WordPress web design and development" width="300" height="213" /></a>illuminea college is offering an amazing course through which you&#8217;ll learn all the basics you need to know in order to get a website up and running using WordPress.</p>
<h4>Why WordPress?</h4>
<p>WordPress is an <a href="http://en.wikipedia.org/wiki/Open_source" target="_blank">open source</a> <a href="http://en.wikipedia.org/wiki/Content_management_system" target="_blank">Content Management System</a> (CMS). Basically this means that regular people like you and me can, relatively very easily, build and tweak websites that are cool, clear, professional and unique.</p>
<h4>What is the course exactly?</h4>
<p><strong>When:</strong> Starts Feb. 15, 2011. 9:30am-1:30pm Tuesdays for 8 weeks.</p>
<p><strong>Where: </strong><a href="http://illuminea.com/contact-us/" target="_self">Our office in Jerusalem</a></p>
<p><strong>What:</strong> Here is the course outline:</p>
<ol>
<li>HTML</li>
<li>CSS</li>
<li>How do websites and internet work? (And how to get mine to work)</li>
<li>Familiarizing yourself with WordPress part 1</li>
<li>Familiarizing yourself with WordPress part 2</li>
<li>Working with template files</li>
<li>Programming 101</li>
<li>Social networks, SEO, RSS&#8230;</li>
</ol>
<p><strong>Who&#8217;s teaching?</strong> Us, the illuminea team, will be teaching the course. We are the ones who work with WordPress every day and are very excited to share our knowledge with others!</p>
<p><strong>Price:</strong> The course is 4,300 NIS though you&#8217;ll get a 10% discount if you sign up before January 13 and a 15% discount if you&#8217;re already an illuminea client. You will receive three months free hosting of your website and a certificate at the end.</p>
<h4>Language</h4>
<p>We decided that we&#8217;ll first offer the course in Hebrew. You can see <a href="http://college.illuminea.com/" target="_self">our landing page for the course here</a>.</p>
<p>Please <a href="mailto:admin@illuminea.com">let us know</a> if you have any questions and/or if you may be interested in attending this or a different course later on in English.</p>
<p>Related posts:<ol>
<li><a href='http://illuminea.com/blogging/illuminea-has-a-new-site-design/' rel='bookmark' title='illuminea has a new site design!'>illuminea has a new site design!</a> <small>Yes, we&#8217;ve revamped our website, and it&#8217;s about time! If...</small></li>
<li><a href='http://illuminea.com/blogging/why-cant-i-embed-youtube-videos-in-wordpress/' rel='bookmark' title='Why can&#8217;t I embed YouTube videos in WordPress?'>Why can&#8217;t I embed YouTube videos in WordPress?</a> <small>About a year ago, WordPress added a feature that made...</small></li>
<li><a href='http://illuminea.com/blogging/why-dont-israelis-design-for-firefox/' rel='bookmark' title='Why don&#8217;t Israelis Design for Firefox?'>Why don&#8217;t Israelis Design for Firefox?</a> <small>I love Firefox. I loved it before version 2.0, and...</small></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://illuminea.com/blogging/new-course-in-wordpress-web-design-and-development/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Why can&#8217;t I comment on a photo I&#8217;m tagged in on Facebook?!</title>
		<link>http://illuminea.com/social-media/commenting-on-a-photo-in-facebook/</link>
		<comments>http://illuminea.com/social-media/commenting-on-a-photo-in-facebook/#comments</comments>
		<pubDate>Thu, 23 Dec 2010 09:04:45 +0000</pubDate>
		<dc:creator>Deena</dc:creator>
				<category><![CDATA[Social Media]]></category>
		<category><![CDATA[commenting]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[facebook rules]]></category>
		<category><![CDATA[photos]]></category>
		<category><![CDATA[tagging]]></category>

		<guid isPermaLink="false">http://illuminea.com/?p=2407</guid>
		<description><![CDATA[Ever have that issue on Facebook? You see you&#8217;re tagged in a photo and want to join in the happy powwow going on underneath but for some reason you&#8217;re not being given the option to comment&#8230; Logic might tell you that you should be able to comment on a photo you were tagged in but actually that [...]
No related posts.]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-medium wp-image-2408" title="like button" src="http://illuminea.com/new08/wp-content/uploads/2010/12/like-button-300x180.png" alt="like button 300x180 Why cant I comment on a photo Im tagged in on Facebook?!" width="240" height="144" />Ever have that issue on <a href="http://facebook.com" target="_blank">Facebook</a>? You see you&#8217;re tagged in a photo and want to join in the happy powwow going on underneath but for some reason you&#8217;re not being given the option to comment&#8230;</p>
<p>Logic might tell you that you should be able to comment on a photo you were tagged in but actually that is not what gives you the ability to comment. What will allow you to partake in discussions under a photograph with your lovely face in it is if you &#8220;Like&#8221; or are Facebook friends with the person or entity that posted the photo on Facebook.</p>
<p>So <em>that&#8217;s</em> what wasn&#8217;t working!</p>
<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://illuminea.com/social-media/commenting-on-a-photo-in-facebook/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cellcom Media Conference: all that talk about social media didn&#8217;t really help</title>
		<link>http://illuminea.com/social-media/cellcom-media-conference-foursquarem-mishap/</link>
		<comments>http://illuminea.com/social-media/cellcom-media-conference-foursquarem-mishap/#comments</comments>
		<pubDate>Wed, 17 Nov 2010 14:00:56 +0000</pubDate>
		<dc:creator>MiriamSchwab</dc:creator>
				<category><![CDATA[Social Media]]></category>
		<category><![CDATA[Cellcom]]></category>
		<category><![CDATA[Cellcom Media Conference]]></category>
		<category><![CDATA[Chad Stoller]]></category>
		<category><![CDATA[Dennis Crowley]]></category>
		<category><![CDATA[Foursquare]]></category>
		<category><![CDATA[Piers Fawkes]]></category>

		<guid isPermaLink="false">http://illuminea.com/?p=2333</guid>
		<description><![CDATA[Yesterday I attended the Cellcom Media Conference at Tel Aviv University. I’m assuming that Cellcom produces this mega event every year in order to strengthen its brand perception in the market. They almost managed to do that at yesterday’s event – if only they hadn’t ended up acting so cellphone-company-ish at the end. Free lunch, [...]
Related posts:<ol>
<li><a href='http://illuminea.com/social-media/social-media-marketing-quickstart-guide/' rel='bookmark' title='A quick-start guide to social media marketing'>A quick-start guide to social media marketing</a> <small>Have you ever wanted to follow what&#8217;s being said about...</small></li>
<li><a href='http://illuminea.com/social-media/israeli-photo-contests-show-brave-use-of-social-media-2/' rel='bookmark' title='Israeli photo contests show brave use of social media.'>Israeli photo contests show brave use of social media.</a> <small>We&#8217;re always on the lookout for interesting uses of social...</small></li>
<li><a href='http://illuminea.com/social-media/what-social-media-marketing-is-not-affilicon/' rel='bookmark' title='What social media marketing is NOT &#8211; my presentation at Affilicon 2009'>What social media marketing is NOT &#8211; my presentation at Affilicon 2009</a> <small>For the second year running I had the opportunity to...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.cellcom.co.il/media/2010/pages/default.aspx" target="_blank"><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px;" title="??? ????? ?????" src="http://illuminea.com/new08/wp-content/uploads/2010/11/cellcom-media-conference-2010.jpg" border="0" alt="cellcom media conference 2010 Cellcom Media Conference: all that talk about social media didnt really help" width="454" height="57" /></a></p>
<p>Yesterday I attended the <a title="??? ????? ????? 2010" href="http://www.cellcom.co.il/media/2010/pages/default.aspx" target="_blank">Cellcom Media Conference</a> at Tel Aviv University. I’m assuming that Cellcom produces this mega event every year in order to strengthen its brand perception in the market. They almost managed to do that at yesterday’s event – if only they hadn’t ended up acting so cellphone-company-ish at the end.</p>
<h2>Free lunch, great speakers: so far so good</h2>
<p>Cellcom, one of Israel’s big-three cellphone companies, holds this conference every year, and this was the third one. It’s the first time I was invited to attend this free event and when I saw that Dennis Crowley from <a href="http://foursquare.com" target="_blank">Foursquare</a> was speaking, I jumped on the opportunity to hear him in person.</p>
<p>I got there for lunch (after getting lost – WITH my GPS), and was completely overwhelmed. The lobby was full of people swarming around (the Foursquare <a title="Foursquare Swarm Badge" href="http://www.4squarebadges.com/foursquare-badge-list/swarm-badge/" target="_blank">Swarm badge</a> awarded to conference attendees was fitting) and lining up to get lunch. I could barely find a place to just stand and have a phone call without getting bumped. Cellcom had obviously gone all out, with one of the nicest venues I’ve seen for a conference, an amazing lunch, about 1000 participants, and top-level speakers they flew in from overseas.</p>
<p>Despite the crowd I did manage to run into a few people I knew, who told me that the morning sessions were mostly good. These sessions included <a title="Jeremy Gutsche" href="http://www.jeremygutsche.com/" target="_blank">Jeremy Gutsche</a>, founder of <a href="http://www.trendhunter.com/" target="_blank">TrendHunter.com</a>; <a title="Phil McKinney" href="http://philmckinney.com/" target="_blank">Phil McKinney</a>, CTO for HP&#8217;s Personal Systems Group; <a href="http://uk.linkedin.com/in/kahinavandyke" target="_blank">Kahina van Dyke</a>, EVP and General Manager at MasterCard (at least they had one woman speaker); and <a title="Anthony E. Zuiker" href="http://en.wikipedia.org/wiki/Anthony_E._Zuiker" target="_blank">Anthony E. Zuiker</a> the creator and producer of the television series <a title="CSI Television Series" href="http://en.wikipedia.org/wiki/CSI:_Crime_Scene_Investigation" target="_blank">CSI</a>.</p>
<div class="wp-caption alignright" style="width: 250px"><a href="http://illuminea.com/new08/wp-content/uploads/2010/11/chad-stoller-cellcome-confe.jpg"><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px initial initial;" title="Chad Stoller speaking at Cellcom Media Conference" src="http://illuminea.com/new08/wp-content/uploads/2010/11/chad-stoller-cellcome-confe_thumb.jpg" border="0" alt="chad stoller cellcome confe thumb Cellcom Media Conference: all that talk about social media didnt really help" width="240" height="180" align="right" /></a><p class="wp-caption-text">Chad Stoller speaking at Cellcom Media Conference</p></div>
<p>After lunch we all filed in to the hall for the next lectures. The first speaker, <a href="http://twitter.com/cstoller" target="_blank">Chad Stoller</a> from BBDO, was really good and managed to keep his cool and sense of humor despite major technical issues with the projector. He spoke about how social media is changing the world of advertising, and showed the example of how BBDO implemented a facebook connection on BlueRay disks for the popular TV series Trueblood that allowed users to interact with the show and share scenes with friends on facebook. I particularly liked this idea of his: We used to <strong>gather then share</strong> &#8211; i.e. invite everyone over to see our photos. Now we <strong>share then gather</strong> – i.e. we post stuff online, and people gather around it.</p>
<div class="wp-caption alignleft" style="width: 250px"><a href="http://illuminea.com/new08/wp-content/uploads/2010/11/piers-fawkes-cellcome-confe.jpg"><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px initial initial;" title="Piers Fawkes speaking at Cellcom Media Conference" src="http://illuminea.com/new08/wp-content/uploads/2010/11/piers-fawkes-cellcome-confe_thumb.jpg" border="0" alt="piers fawkes cellcome confe thumb Cellcom Media Conference: all that talk about social media didnt really help" width="240" height="180" align="left" /></a><p class="wp-caption-text">Piers Fawkes speaking at Cellcom Media Conference</p></div>
<p>Next we had Piers Fawkes from <a title="PSFK" href="http://www.psfk.com" target="_blank">PSFK</a>, a highly influential guy from a highly influential trends and research group. He spoke to us (in a lovely British accent) about ways that retailers are integrating social media in their marketing activities. He brought some interesting examples, but overall I was generally too busy being appalled by the obsessive shopping culture in the US, where young girls’ main weekend activities are shopping and then showing people their plunder on YouTube. And we wonder why there aren’t more women in upper management, or why the US hasn’t had a female president. Yuck.</p>
<h2>Cellcom needs to learn some social media lessons</h2>
<p>During Piers’ talk I checked twitter to see what people were saying about the conference, and saw the following from <a href="http://www.dvirreznik.com/" target="_blank">Dvir Reznik</a>:</p>
<p>http://twitter.com/#!/dvirreznik/status/4496142742061056</p>
<p>Apparently, Dennis Crowley wasn’t actually showing up at the conference – he was to speak via video conference.</p>
<p>Here’s what Crowley had to say about this:</p>
<p>http://twitter.com/#!/dens/status/4511795494522880</p>
<div class="wp-caption alignleft" style="width: 250px"><a href="http://illuminea.com/new08/wp-content/uploads/2010/11/dennis-crowley-cellcome-con.jpg"><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px initial initial;" title="Dennis Crowley Video Lecture at Cellcom Conference" src="http://illuminea.com/new08/wp-content/uploads/2010/11/dennis-crowley-cellcome-con_thumb.jpg" border="0" alt="dennis crowley cellcome con thumb Cellcom Media Conference: all that talk about social media didnt really help" width="240" height="180" align="right" /></a><p class="wp-caption-text">Foursquare's Dennis Crowley on video at Cellcom Conference</p></div>
<p>Having a speaker via videoconference is totally legitimate. But at least let people know &#8211; I mean, we&#8217;re all going to realize what&#8217;s really happening at some point. Cellcom listed Crowley with the rest of their speakers, so we all assumed that he’d be speaking in person too. This type of behavior on the side of Cellcom was inconsiderate and not-quite-honest. This type of not-quite-honestness reminded me, and others, of the many encounters we’ve had with Israel’s not-quite-honest cellphone companies:</p>
<p>http://twitter.com/#!/itamarw/status/4513870500597760</p>
<p>An overriding theme of the conference was social media. And overall, the conference was pretty good on that level: they invited “influencers” (there were many impressive people there) to a free conference, treated us all really well and gave us great content. But not being up front about Crowley was a <em><a title="What does fashla mean?" href="http://www.highwaygirl.com/archive/000833.html" target="_blank">fashla</a></em>. Why not just tell it like it is? In the end, we felt like we’d been had.</p>
<p><a title="??????? ?????? ??????? ????? ?? ????? ???? ???? ?????" href="http://www.facebook.com/note.php?note_id=459470621605&amp;notif_t=like" target="_blank">Yaron Orenstein summed it up</a> well on facebook (my translation from Hebrew):</p>
<blockquote><p>Cellcom, who knew that Crowley would draw a lot of interest, put his talk at the end of the day in order to “secure” a captive audience. This is without doubt demeaning and exploitative behavior on the side of Cellcom.</p></blockquote>
<p>I still appreciated the conference, so thank you Cellcom. I really enjoyed it. But maybe in the future, try to adopt the transparent style of social media that was so expounded upon all day, and don’t try to hide things, k?</p>
<p>Related posts:<ol>
<li><a href='http://illuminea.com/social-media/social-media-marketing-quickstart-guide/' rel='bookmark' title='A quick-start guide to social media marketing'>A quick-start guide to social media marketing</a> <small>Have you ever wanted to follow what&#8217;s being said about...</small></li>
<li><a href='http://illuminea.com/social-media/israeli-photo-contests-show-brave-use-of-social-media-2/' rel='bookmark' title='Israeli photo contests show brave use of social media.'>Israeli photo contests show brave use of social media.</a> <small>We&#8217;re always on the lookout for interesting uses of social...</small></li>
<li><a href='http://illuminea.com/social-media/what-social-media-marketing-is-not-affilicon/' rel='bookmark' title='What social media marketing is NOT &#8211; my presentation at Affilicon 2009'>What social media marketing is NOT &#8211; my presentation at Affilicon 2009</a> <small>For the second year running I had the opportunity to...</small></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://illuminea.com/social-media/cellcom-media-conference-foursquarem-mishap/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Lessons from the decline of Yahoo! [VIDEO and INFOGRAPHIC]</title>
		<link>http://illuminea.com/business/lessons-from-the-decline-of-yahoo-video-and-infographic/</link>
		<comments>http://illuminea.com/business/lessons-from-the-decline-of-yahoo-video-and-infographic/#comments</comments>
		<pubDate>Sun, 14 Nov 2010 08:30:38 +0000</pubDate>
		<dc:creator>MiriamSchwab</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[infographic]]></category>
		<category><![CDATA[innovation]]></category>
		<category><![CDATA[search]]></category>
		<category><![CDATA[warren buffett]]></category>
		<category><![CDATA[Yahoo!]]></category>

		<guid isPermaLink="false">http://illuminea.com/?p=2276</guid>
		<description><![CDATA[Yahoo! is the company that brought us web search, and many other innovative tools like Yahoo! Site Explorer (for analyzing web sites for SEO), SearchMonkey, BOSS (Build your Own Search Service), Yahoo! Pipes (mashup and filter RSS feeds). It is also the company that failed to meet revenue projections for the past quarter, and has [...]
No related posts.]]></description>
			<content:encoded><![CDATA[<p>Yahoo! is the company that brought us web search, and many other innovative tools like <a title="Yahoo! Site Explorer" href="https://siteexplorer.search.yahoo.com/new/mysites" target="_blank">Yahoo! Site Explorer</a> (for analyzing web sites for SEO), <a href="http://developer.yahoo.com/searchmonkey/">SearchMonkey</a>, <a href="http://developer.yahoo.com/search/boss/">BOSS (Build your Own Search Service)</a>, <a href="http://pipes.yahoo.com/pipes/" target="_blank">Yahoo! Pipes</a> (mashup and filter RSS feeds). It is also the company that failed to meet revenue projections for the past quarter, and has slowly and then quickly lost search market share over the years to upstart <a title="Google" href="http://google.com" target="_blank">Google</a>, who now holds a scary 65% of the search market.</p>
<p>My how the mighty have fallen. Wait, quite a lot of mighty have fallen lately. There’s the monstrous financial firms on Wall Street that came tumbling down at the beginning of the latest economic crisis. How about <a title="Apple Passes Microsoft as No. 1 in Tech" href="http://www.nytimes.com/2010/05/27/technology/27apple.html" target="_blank">Apple overtaking Microsoft in May as the world’s most valuable technology company</a>? Or <a href="http://www.blockbuster.com/" target="_blank">Blockbuster</a> – remember them (we still have them here – till Netflix comes to Israel…we’re waiting)? Unable to keep up with <a href="http://www.netflix.com/" target="_blank">Netflix</a> their stock was recently <a title="Blockbuster stock to be delisted from NYSE" href="http://news.cnet.com/8301-13506_3-20009607-17.html" target="_blank">delisted from the New York Stock Exchange</a>. And then of course there’s <a href="http://www.amazon.com/" target="_blank">Amazon</a>, the online book store that everybody said would never beat their brick-and-mortar competitors. Etc.</p>
<h2>Warren Buffett and Companies with “Moats”</h2>
<p>All of these companies were “<a href="http://en.wikipedia.org/wiki/Too_big_to_fail" target="_blank">too big to fail</a>.” And yet they did fail – spectacularly. Why?</p>
<p>Warren Buffett talks about how he likes to invest in companies that have a “moat” around them. What he means is that they are so strong and well defended, their competitors can’t threaten them. These moats should preferably surround a fancy castle, which is run by an honest, hard-working and able duke. If the moat is big and full of alligators, even better. See the video below where Buffett expands upon this idea during a talk to MBA students in Canada (it’s worth watching <a title="Warren Buffett MBA Talk - Part 1" href="http://www.youtube.com/watch?v=DfuXKpMFUjc&amp;feature=related" target="_blank">all 10 videos</a> – Buffett’s awesome):</p>
<div id="scid:5737277B-5D6D-4f48-ABFC-DD9C333F4C5D:41e5a23c-b53f-4e66-944d-3b6f9005f915" class="wlWriterEditableSmartContent" style="margin: 0px; display: inline; float: none; padding: 0px;">
<div><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="448" height="252" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="src" value="http://www.youtube.com/v/r7m7ifUz7r0?hl=en&amp;hd=1" /><embed type="application/x-shockwave-flash" width="448" height="252" src="http://www.youtube.com/v/r7m7ifUz7r0?hl=en&amp;hd=1"></embed></object></div>
<div style="width: 448px; clear: both; font-size: 0.8em;">Buffett on choosing companies to invest in</div>
</div>
<p>But note how he says that companies need to defend their moats. Just because you have a moat, you can’t sit back on your laurels and assume you’ve won. Defending the moat involves innovating, and making the right management and business decisions.</p>
<h2>Dear Israel: please have mercy on small businesses</h2>
<p>Aside from that lesson, there’s one more lesson that I wish governments, particularly Israel’s, would heed: don’t put all your eggs in the big-business basket. Governments and banks tend to favor the big guys – with credit and tenders and good interest rates and overlooking accounting inconsistencies. But there’s no mercy for the small business. Between all the taxes, the lack of financing and the “take-no-prisoners” attitude, it’s a tough ride. And yet it’s known that small businesses employ the most people in our economy.</p>
<p>So elected representatives: please consider going easier on small businesses. We are, after all, the lifeblood of the economy.</p>
<h2>Yahoo!’s demise in pictures</h2>
<p>To sum this all up, here’s a snazzy infographic depicting the rise and fall of Yahoo!:</p>
<p><a href="http://www.scores.org/graphics/yahoo/"><img style="border: 0pt none;" src="http://www.scores.org/graphics/yahoo/the-brutal-decline-of-yahoo.jpg" border="0" alt="the brutal decline of yahoo Lessons from the decline of Yahoo! [VIDEO and INFOGRAPHIC]" width="540" height="3208" title="Lessons from the decline of Yahoo! [VIDEO and INFOGRAPHIC]" /></a></p>
<p><a href="http://www.scores.org/graphics/">Research</a> by <a href="http://www.scores.org/">Scores.org</a></p>
<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://illuminea.com/business/lessons-from-the-decline-of-yahoo-video-and-infographic/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The password nightmare</title>
		<link>http://illuminea.com/web/the-password-nightmare/</link>
		<comments>http://illuminea.com/web/the-password-nightmare/#comments</comments>
		<pubDate>Tue, 09 Nov 2010 07:20:20 +0000</pubDate>
		<dc:creator>Deena</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[digital inspiration]]></category>
		<category><![CDATA[internet safety]]></category>
		<category><![CDATA[labnol]]></category>
		<category><![CDATA[mozilla]]></category>
		<category><![CDATA[passwords]]></category>
		<category><![CDATA[strong password]]></category>

		<guid isPermaLink="false">http://illuminea.com/?p=2170</guid>
		<description><![CDATA[Anyone who uses the Internet more than a few minutes per day knows what a nightmare passwords are. The importance of creating really complex and confusing passwords is clear. And, of course, we should use lots of different passwords for different sites and not write them down anywhere. Yeah right. If you were to follow [...]
Related posts:<ol>
<li><a href='http://illuminea.com/israel/the-joynightmare-of-self-employment-in-israel/' rel='bookmark' title='The Joy/Nightmare of Self-Employment in Israel'>The Joy/Nightmare of Self-Employment in Israel</a> <small>About two years ago I decided that conventional employment was...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Anyone who uses the Internet more than a few minutes per day knows what a nightmare passwords are. The importance of creating really complex and confusing passwords is clear. And, of course, we should use lots of different passwords for different sites and not write them down anywhere.</p>
<p>Yeah right.</p>
<p>If you were to follow all those rules, I think you&#8217;d end up spending the rest of your life guessing and retrieving your passwords.</p>
<p>Lost cause, ay?</p>
<p>But maybe there is a good solution now. I read a blog post on <a href="http://labnol.org">Digital Inspiration</a> called <a href="http://www.labnol.org/internet/different-passwords-for-websites/">Choosing Different Passwords for Different Websites</a>. They showed this cute, short video by Mozilla that gives tips on how to create safe passwords.</p>
<div id="scid:5737277B-5D6D-4f48-ABFC-DD9C333F4C5D:8894b825-5bd3-4b1f-a691-97695b90b030" class="wlWriterEditableSmartContent" style="margin: 0px; display: inline; float: none; padding: 0px;">
<div><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="448" height="252" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="src" value="http://www.youtube.com/v/COU5T-Wafa4?hl=en&amp;hd=1" /><embed type="application/x-shockwave-flash" width="448" height="252" src="http://www.youtube.com/v/COU5T-Wafa4?hl=en&amp;hd=1"></embed></object></div>
<div style="width: 448px; clear: both; font-size: .8em;">How to Choose Strong Passwords–by Mozilla</div>
</div>
<p>In this video they tell us that in order to make a strong password, you take the following steps:</p>
<ol>
<li>Pick a phrase that&#8217;s easy to remember. For example: What&#8217;s love got to do with it?</li>
<li>Change any possible words to numbers: What&#8217;s love got 2 do with it?</li>
<li>Use the first letter of each word: Wlg2dwi?</li>
<li>Add some special characters: ###Wlg2dwi?$$$ &#8211; This is a customizable password.</li>
<li>Add a prefix or suffix made from the name of the website. So, for Facebook: ###Wlg2dwi?$$$FB</li>
</ol>
<p>Could these tips alleviate the need to have a place where you save all your passwords? Honestly, I have the feeling most of us are too lazy to actually take their advice, but it does seem to be good advice.</p>
<p>Will you try to implement these rules to your passwords?</p>
<p>Related posts:<ol>
<li><a href='http://illuminea.com/israel/the-joynightmare-of-self-employment-in-israel/' rel='bookmark' title='The Joy/Nightmare of Self-Employment in Israel'>The Joy/Nightmare of Self-Employment in Israel</a> <small>About two years ago I decided that conventional employment was...</small></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://illuminea.com/web/the-password-nightmare/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Why the new Facebook groups suck</title>
		<link>http://illuminea.com/social-media/why-new-facebook-groups-suck/</link>
		<comments>http://illuminea.com/social-media/why-new-facebook-groups-suck/#comments</comments>
		<pubDate>Mon, 08 Nov 2010 08:00:20 +0000</pubDate>
		<dc:creator>Deena</dc:creator>
				<category><![CDATA[Social Media]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[facebook groups]]></category>

		<guid isPermaLink="false">http://illuminea.com/?p=2168</guid>
		<description><![CDATA[The suckiness of Facebook groups is not a new subject. But now Facebook groups have gone through one of those facelifts that leaves the person still looking like themselves, just way more freaky. So let&#8217;s take a moment to make fun of the &#8220;new and improved&#8221; Facebook group. What are the changes? It actually took [...]
Related posts:<ol>
<li><a href='http://illuminea.com/social-media/starting-a-facebook-group-is-not-a-social-media-strategy/' rel='bookmark' title='Starting a facebook group is not a social media strategy'>Starting a facebook group is not a social media strategy</a> <small>First, a story: Almost a year ago, I met with...</small></li>
<li><a href='http://illuminea.com/social-media/facebook-ads-cant-estimate-reach-for-pages-with-hebrew-arabic-title/' rel='bookmark' title='Facebook Ads can&rsquo;t estimate reach for Pages with Hebrew or Arabic in the title'>Facebook Ads can&rsquo;t estimate reach for Pages with Hebrew or Arabic in the title</a> <small>Someone recently asked a question on the Digital Eve Israel...</small></li>
<li><a href='http://illuminea.com/social-media/commenting-on-a-photo-in-facebook/' rel='bookmark' title='Why can&#8217;t I comment on a photo I&#8217;m tagged in on Facebook?!'>Why can&#8217;t I comment on a photo I&#8217;m tagged in on Facebook?!</a> <small>Ever have that issue on Facebook? You see you&#8217;re tagged...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>The suckiness of Facebook groups is not a new subject. But now <a title="New Groups: Stay Closer to Groups of People in Your Life" href="http://www.facebook.com/blog.php?post=434700832130" target="_blank">Facebook groups have gone through one of those facelifts</a> that leaves the person still looking like themselves, just way more freaky. So let&#8217;s take a moment to make fun of the &#8220;new and improved&#8221;<a title="New Groups design" href="http://www.facebook.com/help/?page=1193" target="_blank"> Facebook group</a>.</p>
<h2>What are the changes?</h2>
<p>It actually took me around a week to find out about the changes but once I found out, it was clear as day that something was fishy in Facebook land.</p>
<p>I woke up and found my email inbox all but flooded with messages mainly from strangers that looked something like this:</p>
<p><a href="http://illuminea.com/new08/wp-content/uploads/2010/10/fb-group-emails.png"><img style="background-image: none; margin: 5px 5px 0px 0px; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border-width: 0px;" title="fb group emails" src="http://illuminea.com/new08/wp-content/uploads/2010/10/fb-group-emails_thumb.png" border="0" alt="fb group emails thumb Why the new Facebook groups suck" width="498" height="344" /></a></p>
<p>Turned out that Facebook had made the following quite anthropologically interesting change:</p>
<p><strong>People can now add their Facebook friends to groups without the friend’s permission. </strong></p>
<p>To be clear, in general, there is almost nothing I’d <em>ever </em>want to do to anyone without their permission. And now, if I ever want to invite someone to a Facebook group, I am basically “forced” to force them into the group. No more suggestions. That would just be too civil, wouldn’t it?</p>
<h2>The new automatic settings</h2>
<p>Wait. It gets more amusing (and then more amusing). So now this person is in a group without even being aware of it. Now to add to the pushiness, the automatic notification setting is that members of Facebook groups receive messages to their email every time someone posts or comments there. Every time.</p>
<p>That explained all the emails I’d received. Mind you, 99% of them were not about the group but instead attacks on the creator of the group for adding all of us without our permission. (I stood up for him, explaining that it wasn’t his fault, but Facebook’s fault. Aren’t I kind?)</p>
<p>As for this notifications setting, it’s very easy to change but you’ve gotta be on the ball or else it’s very annoying. You just click on “Edit Settings” in the upper right-hand corner of the page when you’re in the group, then a window pops up and you edit it as you wish.</p>
<p><a href="http://illuminea.com/new08/wp-content/uploads/2010/10/fb-group-change-settings.png"><img style="background-image: none; margin: 5px 5px 0px 0px; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border-width: 0px;" title="fb group change settings" src="http://illuminea.com/new08/wp-content/uploads/2010/10/fb-group-change-settings_thumb.png" border="0" alt="fb group change settings thumb Why the new Facebook groups suck" width="508" height="210" /></a></p>
<h2>The grand finale – I’ll never ever forgive you!</h2>
<p>Now, ready for this? This is the other end of the new ability to add people without their permission.</p>
<p>If my lovely friend added me to a group and I decided I am not interested in that group, I can opt out. That makes sense. The crazy part is that this means that my possibly-well-meaning friend will never be allowed to add me to another group again. Ever!</p>
<p>I must say that this part of the new set-up makes me think that whoever was behind it has super unhealthy personal relationships. Because seriously, assuming I am not on bad terms with any of my Facebook friends (I hope I’d remove anyone with whom I don’t want to be communicating at all), why would I want this to be so final? I probably opted out just because the group is not of interest to me. That doesn’t mean I never want my friend to be able to recommend any group to me ever again!</p>
<p>This, of course, is not to mention the fact that if, to begin with, the friend was sending me a suggestion instead of a forced joining, this wouldn’t even be an issue.</p>
<p>This change is actually childish, though even children usually only <em>talk</em> like that (“I <em>never</em> want to play with you <em>again</em>!”) and then 10 minutes later they’re playing as if nothing happened.</p>
<h2>I do wish I wasn’t married to Facebook</h2>
<p>So, those are some of the latest changes. I read <a href="http://searchengineland.com/blame-one-of-calacaniss-own-5000-facebook-friends-for-putting-him-in-the-nambla-group-52524"><span style="color: #000000;">a seriously lol-ful blog post</span></a> about these changes by Danny Sullivan. The title is too long to quote here (I’d have to start paying for real estate) but it’s a great story about someone (true story) who was added to some highly embarrassing group just to prove the point I’m trying to prove here (that Facebook Groups are evil, of course).</p>
<p>Facebook so often does things that are so unfriendly that an urge arises from deep within me to leave Facebook. And then I remember… Too bad I have close to 90 photo albums and so much other information there. (I would absolutely love to have a way to download all my info from Facebook so I have it somewhere other than there.)</p>
<p>So instead of wishing I could leave, I just wish that Facebook would head on down to someone else’s office, say, Google, and ask them for some tips on how to make changes that gently fall into place and make the user’s experience just that much more pleasant and fun, instead of making changes that sort of slap you in the Face and make you wish you could take the Book and slap them back.</p>
<p>P.S. All of this is not to mention that really Facebook should take the pluses of groups and the pluses of pages and just put them together into one. But that&#8217;s for another post.</p>
<p>Related posts:<ol>
<li><a href='http://illuminea.com/social-media/starting-a-facebook-group-is-not-a-social-media-strategy/' rel='bookmark' title='Starting a facebook group is not a social media strategy'>Starting a facebook group is not a social media strategy</a> <small>First, a story: Almost a year ago, I met with...</small></li>
<li><a href='http://illuminea.com/social-media/facebook-ads-cant-estimate-reach-for-pages-with-hebrew-arabic-title/' rel='bookmark' title='Facebook Ads can&rsquo;t estimate reach for Pages with Hebrew or Arabic in the title'>Facebook Ads can&rsquo;t estimate reach for Pages with Hebrew or Arabic in the title</a> <small>Someone recently asked a question on the Digital Eve Israel...</small></li>
<li><a href='http://illuminea.com/social-media/commenting-on-a-photo-in-facebook/' rel='bookmark' title='Why can&#8217;t I comment on a photo I&#8217;m tagged in on Facebook?!'>Why can&#8217;t I comment on a photo I&#8217;m tagged in on Facebook?!</a> <small>Ever have that issue on Facebook? You see you&#8217;re tagged...</small></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://illuminea.com/social-media/why-new-facebook-groups-suck/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Automattic creates a vertical blog source with FoodPress on WordPress.com</title>
		<link>http://illuminea.com/wordpress/automattic-creates-a-vertical-blog-source-with-foodpress-on-wordpress-com/</link>
		<comments>http://illuminea.com/wordpress/automattic-creates-a-vertical-blog-source-with-foodpress-on-wordpress-com/#comments</comments>
		<pubDate>Sun, 07 Nov 2010 08:00:44 +0000</pubDate>
		<dc:creator>MiriamSchwab</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[automattic]]></category>
		<category><![CDATA[food]]></category>
		<category><![CDATA[food blogging]]></category>
		<category><![CDATA[foodpress]]></category>
		<category><![CDATA[wordpress.com]]></category>

		<guid isPermaLink="false">http://illuminea.com/?p=2205</guid>
		<description><![CDATA[Automattic, the company behind WordPress and WordPress.com has taken a new direction in its activity with the announcement of a new website called FoodPress.com. FoodPress features blog posts aggregated from food blogs sitting on WordPress.com, and that&#8217;s what makes it so interesting. It&#8217;s a new venture into the world of verticals, sites that concentrate on a certain [...]
Related posts:<ol>
<li><a href='http://illuminea.com/blogging/mapping-a-wordpress-com-blog-from-scratch-part-one-purchasing-a-domain-name/' rel='bookmark' title='Mapping a wordpress.com blog from scratch: Part one &#8211; purchasing a domain name'>Mapping a wordpress.com blog from scratch: Part one &#8211; purchasing a domain name</a> <small>Who is this tutorial for? This tutorial is helpful to...</small></li>
<li><a href='http://illuminea.com/blogging/mapping-a-wordpress-com-blog-from-scratch-part-two-the-mapping/' rel='bookmark' title='Mapping a wordpress.com blog from scratch: Part two &#8211; the mapping'>Mapping a wordpress.com blog from scratch: Part two &#8211; the mapping</a> <small>Read part one here in order to learn how to...</small></li>
<li><a href='http://illuminea.com/blogging/4-steps-to-a-really-professional-blog-rpb/' rel='bookmark' title='4 steps to a really professional blog (RPB)'>4 steps to a really professional blog (RPB)</a> <small>More and more professionals are starting their own blogs. There...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><a title="FoodPress" href="http://foodpress.com"><img class="alignleft size-full wp-image-2206" title="foodpress" src="http://illuminea.com/new08/wp-content/uploads/2010/11/foodpress.png" alt="foodpress Automattic creates a vertical blog source with FoodPress on WordPress.com" width="284" height="78" /></a><a title="Automattic" href="http://automattic.com">Automattic</a>, the company behind <a title="WordPress" href="http://wordpress.org">WordPress</a> and <a title="WordPress.com" href="http://wordpress.com">WordPress.com</a> has taken a new direction in its activity with the <a href="http://en.blog.wordpress.com/2010/11/01/introducing-foodpress/">announcement</a> of a new website called <a href="http://FoodPress.com">FoodPress.com</a>. FoodPress features blog posts aggregated from food blogs sitting on <a href="http://WordPress.com">WordPress.com</a>, and that&#8217;s what makes it so interesting. It&#8217;s a new venture into the world of verticals, sites that concentrate on a certain topic, with posts sucked in from other sources. The potential for these sites is huge and almost limitless: sites could be about fashion, dating, parenthood, startups, web development, etc. etc. But one of the things that makes this source interesting is that it&#8217;s not machine-made: posts are chosen by the FoodPress editor Jane Maynard who is scanning tag pages related to food like food, recipes and baking.</p>
<p>This venture is win-win for Automattic and for the bloggers on WordPress.com. Automattic is showing the love to its bloggers, by giving them the opportunity to get more exposure for their posts. This encourages bloggers to open blogs on WordPress.com and stay there, which is good for Automattic since many of those bloggers are or may become <a title="WordPress.com upgrades" href="http://en.support.wordpress.com/upgrades/">paying customers</a>.</p>
<p>Darnell Clayton over at the Blog Herald <a title="FoodPress By WordPress (An Automattic Treat)" href="http://www.blogherald.com/2010/11/02/foodpress-by-wordpress-an-automattic-treat/" target="_blank">wonders whether Automattic will open up the site to self-hosted WordPress users</a>. I can&#8217;t see that happening since I think the point of this is to support the WordPress.com community. However, maybe there&#8217;s an opportunity here for someone to start a site like this for WordPress.org users&#8230;</p>
<p>Related posts:<ol>
<li><a href='http://illuminea.com/blogging/mapping-a-wordpress-com-blog-from-scratch-part-one-purchasing-a-domain-name/' rel='bookmark' title='Mapping a wordpress.com blog from scratch: Part one &#8211; purchasing a domain name'>Mapping a wordpress.com blog from scratch: Part one &#8211; purchasing a domain name</a> <small>Who is this tutorial for? This tutorial is helpful to...</small></li>
<li><a href='http://illuminea.com/blogging/mapping-a-wordpress-com-blog-from-scratch-part-two-the-mapping/' rel='bookmark' title='Mapping a wordpress.com blog from scratch: Part two &#8211; the mapping'>Mapping a wordpress.com blog from scratch: Part two &#8211; the mapping</a> <small>Read part one here in order to learn how to...</small></li>
<li><a href='http://illuminea.com/blogging/4-steps-to-a-really-professional-blog-rpb/' rel='bookmark' title='4 steps to a really professional blog (RPB)'>4 steps to a really professional blog (RPB)</a> <small>More and more professionals are starting their own blogs. There...</small></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://illuminea.com/wordpress/automattic-creates-a-vertical-blog-source-with-foodpress-on-wordpress-com/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced
Database Caching 3/96 queries in 0.026 seconds using disk: basic
Object Caching 17445/17457 objects using disk: basic

Served from: illuminea.com @ 2012-05-21 11:04:27 -->
