<?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/"
	>

<channel>
	<title>Nathalie Magniez* Next Generation Marketing</title>
	<atom:link href="http://www.nathaliemagniez.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.nathaliemagniez.com</link>
	<description>Be the choice !</description>
	<pubDate>Mon, 12 Jul 2010 13:51:56 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>My next book: work smarter</title>
		<link>http://www.nathaliemagniez.com/articles/my-next-book-work-smarter/</link>
		<comments>http://www.nathaliemagniez.com/articles/my-next-book-work-smarter/#comments</comments>
		<pubDate>Mon, 12 Jul 2010 13:36:32 +0000</pubDate>
		<dc:creator>Nathalie</dc:creator>
		
		<category><![CDATA[Articles]]></category>

		<category><![CDATA[book]]></category>

		<category><![CDATA[efficiency]]></category>

		<category><![CDATA[goals]]></category>

		<category><![CDATA[management]]></category>

		<category><![CDATA[organization]]></category>

		<category><![CDATA[time]]></category>

		<guid isPermaLink="false">http://www.nathaliemagniez.com/?p=349</guid>
		<description><![CDATA[Started  
I have started to write my next book about how to be more efficient, more organized, in order to reach our objectives. For a long time, this has been a key question for me. How can I do what I want to do despite what seems to me the endless possibilities of emergency [...]]]></description>
			<content:encoded><![CDATA[<p>Started <img src='http://www.nathaliemagniez.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>I have started to write my next book about how to be more efficient, more organized, in order to reach our objectives. For a long time, this has been a key question for me. How can I do what I want to do despite what seems to me the endless possibilities of emergency and disruption&#8230; Since 5 years, I have been reading many, many books about it, and finally by picking a little bit of each, I have been able to have a method which works <img src='http://www.nathaliemagniez.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>So, I&#8217;m preparing a complete toolbox of the tools that I&#8217;m using, how I&#8217;m using them and why I&#8217;m using them.</p>
<p>Now, everyday, I use <a title="Go to www.750words.com in a new window" href="http://www.750words.com" target="_blank">750words.com</a> to write my book. It is also a nice coincidence that <a title="View Jason theodor answer in a new window" href="http://www.formspring.me/jtheodor/q/787441128?utm_medium=email&amp;utm_source=notifications&amp;utm_campaign=answered" target="_blank">Jason Theodor</a> proposed this week-end to ask him a question and he&#8217;ll come back with 10 ideas.</p>
<p>Here are his 10 ideas for my book title: 10 Ideas in 10 Minutes™ for Book Titles are Work Efficiency:</p>
<p>1. Being Efficient at Work [the obvious one!]<br />
2. Work to Live: How to shorten your time at the office to lengthen your  life<br />
3. The Right Tool for the Job: How to Save Time At Work<br />
4. Work-arounds: Tips and Tricks for Efficient Employment<br />
5. Take Some of the Work Out of Work<br />
6. Work, Work, Work. That&#8217;s Not All You Should Do.<br />
7. Post-its™ Are Your Friends - and other lessons from a life at work<br />
8. Short-cuts from Nine to Five<br />
9. The Evolution of Work<br />
10. Work Smarter, Not Harder</p>
<p>I highly recommend you to have a look at his<a title="View Jason Theodor's slide on Creativity" href="http://www.slideshare.net/jted/the-creative-method-v2" target="_blank"> slides on creativity</a>.</p>
<p>The book will be out 1st December, countdown in the right column.</p>
<p>Don&#8217;t hesitate to send me your experience or the tools you&#8217;re using. I&#8217;ll create a group to share them soon.</p>
<p><script type="text/javascript"><!--
//######################################################################################
// Author: ricocheting.com
// For: public release (freeware)
// Date: 4/24/2003 (update: 6/26/2009)
// Description: displays the amount of time until the "dateFuture" entered below.</p>
<p>// NOTE: the month entered must be one less than current month. ie; 0=January, 11=December
// NOTE: the hour is in 24 hour format. 0=12am, 15=3pm etc
// format: dateFuture = new Date(year,month-1,day,hour,min,sec)
// example: dateFuture = new Date(2003,03,26,14,15,00) = April 26, 2003 - 2:15:00 pm</p>
<p>dateFuture = new Date(2010,11,1,24,00,00);</p>
<p>// TESTING: comment out the line below to print out the "dateFuture" for testing purposes
document.write(dateFuture +"
");</p>
<p>//###################################
//nothing beyond this point
function GetCount(){</p>
<p>	dateNow = new Date();									//grab current date
	amount = dateFuture.getTime() - dateNow.getTime();		//calc milliseconds between dates
	delete dateNow;</p>
<p>	// time is already past
	if(amount < 0){
		document.getElementById('countbox').innerHTML="Now!";
	}
	// date is still good
	else{
		days=0;hours=0;mins=0;secs=0;out="";</p>
<p>		amount = Math.floor(amount/1000);//kill the "milliseconds" so just secs</p>
<p>		days=Math.floor(amount/86400);//days
		amount=amount%86400;</p>
<p>		hours=Math.floor(amount/3600);//hours
		amount=amount%3600;</p>
<p>		mins=Math.floor(amount/60);//minutes
		amount=amount%60;</p>
<p>		secs=Math.floor(amount);//seconds</p>
<p>		if(days != 0){out += days +" day"+((days!=1)?"s":"")+", ";}
		if(days != 0 || hours != 0){out += hours +" hour"+((hours!=1)?"s":"")+", ";}
		if(days != 0 || hours != 0 || mins != 0){out += mins +" minute"+((mins!=1)?"s":"")+", ";}
		out += secs +" seconds";
		document.getElementById('countbox').innerHTML=out;</p>
<p>		setTimeout("GetCount()", 1000);
	}
}</p>
<p>window.onload=GetCount;//call when everything has loaded
// --></script></p>
]]></content:encoded>
			<wfw:commentRss>http://www.nathaliemagniez.com/articles/my-next-book-work-smarter/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Linchpin Meetup in Geneva</title>
		<link>http://www.nathaliemagniez.com/cartoons/linchpin-meetup-in-geneva/</link>
		<comments>http://www.nathaliemagniez.com/cartoons/linchpin-meetup-in-geneva/#comments</comments>
		<pubDate>Fri, 11 Jun 2010 13:03:14 +0000</pubDate>
		<dc:creator>Nathalie</dc:creator>
		
		<category><![CDATA[Cartoons]]></category>

		<category><![CDATA[geneva]]></category>

		<category><![CDATA[meetup]]></category>

		<category><![CDATA[seth godin]]></category>

		<guid isPermaLink="false">http://www.nathaliemagniez.com/?p=346</guid>
		<description><![CDATA[I have been quite busy since several weeks not really posting anymore.
Shortly, I&#8217;m working on a marketing mission (can not say more but it&#8217;s nearly done).
I&#8217;m also preparing the Cloud and ICT 2.0 Summit with the European Tech Tour Association (don&#8217;t hesitate to contact me if you&#8217;re willing to know more about it and if [...]]]></description>
			<content:encoded><![CDATA[<p>I have been quite busy since several weeks not really posting anymore.</p>
<p>Shortly, I&#8217;m working on a marketing mission (can not say more but it&#8217;s nearly done).</p>
<p>I&#8217;m also preparing the Cloud and ICT 2.0 Summit with the <a href="http://www.techtour.com" target="_blank">European Tech Tour Association</a> (don&#8217;t hesitate to contact me if you&#8217;re willing to know more about it and if you&#8217;re interested in becoming a sponsor :). This gives me the opportunity to attend the Nordic Tech Tour next week.</p>
<p>There is also a complete redesign of Bloobble in the pipe. I&#8217;m so pleased to work on it with <a title="Patricia, experience designer" href="http://www.experiencedesigners.net" target="_blank">Patricia Gallot-Lavallée, best experience designer</a>. Some are talking about creativity, she is doing it!</p>
<p>And I&#8217;m also about to start a new activity, but I&#8217;ll tell you more about that in due time.</p>
<p>And as I&#8217;m a big fan of Seth Godin, I could not resist being part of this worldwide meetup around his latest book Linchpin. I&#8217;m organizing the one which will take place next monday at 8:00 pm in Geneva (Les Halles de l&#8217;Ile). Please come and let&#8217;s share <img src='http://www.nathaliemagniez.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><a href="http://www.nathaliemagniez.com/wp-content/uploads/2010/06/linchpin.png"><img class="aligncenter size-full wp-image-347" title="linchpin" src="http://www.nathaliemagniez.com/wp-content/uploads/2010/06/linchpin.png" alt="linchpin" width="520" height="348" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.nathaliemagniez.com/cartoons/linchpin-meetup-in-geneva/feed/</wfw:commentRss>
		</item>
		<item>
		<title>&#8220;Different&#8221;</title>
		<link>http://www.nathaliemagniez.com/articles/different/</link>
		<comments>http://www.nathaliemagniez.com/articles/different/#comments</comments>
		<pubDate>Fri, 05 Mar 2010 08:44:48 +0000</pubDate>
		<dc:creator>Nathalie</dc:creator>
		
		<category><![CDATA[Articles]]></category>

		<guid isPermaLink="false">http://www.nathaliemagniez.com/?p=344</guid>
		<description><![CDATA[I like the work done by Xplane on Vizualization. They have just done a new marketing video for Youngme Moon latest book &#8220;Different&#8221; on differentiation in business.

]]></description>
			<content:encoded><![CDATA[<p>I like the work done by Xplane on Vizualization. They have just done a new marketing video for Youngme Moon latest book &#8220;Different&#8221; on differentiation in business.</p>
<p><object width="640" height="385"><param name="movie" value="http://www.youtube.com/v/26PVrm4iLA0&#038;hl=fr_FR&#038;fs=1&#038;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/26PVrm4iLA0&#038;hl=fr_FR&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="640" height="385"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.nathaliemagniez.com/articles/different/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Make your presentation stick</title>
		<link>http://www.nathaliemagniez.com/slideology/make-your-presentation-stick/</link>
		<comments>http://www.nathaliemagniez.com/slideology/make-your-presentation-stick/#comments</comments>
		<pubDate>Thu, 11 Feb 2010 16:52:54 +0000</pubDate>
		<dc:creator>Nathalie</dc:creator>
		
		<category><![CDATA[Slide:ology]]></category>

		<category><![CDATA[presentation]]></category>

		<category><![CDATA[tools]]></category>

		<guid isPermaLink="false">http://www.nathaliemagniez.com/?p=338</guid>
		<description><![CDATA[There are several ways to ensure people will remember your presentation. One of them is to use different tools.

Instead of it being linear (like Powerpoint or Keynote), you can arrange the pages in a grid or checker board, in a non linear way .
From any page, then, I can go back, forward, up or down, [...]]]></description>
			<content:encoded><![CDATA[<p>There are several ways to ensure people will remember your presentation. One of them is to use different tools.</p>
<p><span id="more-338"></span></p>
<p>Instead of it being linear (like Powerpoint or Keynote), you can arrange the pages in a grid or checker board, in a non linear way .</p>
<p>From any page, then, I can go back, forward, up or down, and the four diagonals as well. So depending on the conversation I&#8217;m having with my audience, my &#8216;next&#8217; page can be any of them.</p>
<p>There are some nice tools already availableÂ  to do that.</p>
<p><strong>Prezi.com</strong></p>
<p><a title="Prezi web site" href="http://prezi.com" target="_blank">Prezi.com</a> is free if you agree to make your presentation public<strong>, </strong>whereas you have got 2 versions starting at $59/year.<strong> </strong></p>
<p>Just press the arrow below (one psuh = one view) to see this demo of Prezi.<strong><br />
</strong></p>
<div class="prezi-player"><!-- .prezi-player { width: 550px; } .prezi-player-links { text-align: center; } --><object width="550" height="400" data="http://prezi.com/bin/preziloader.swf" type="application/x-shockwave-flash"><param name="id" value="prezi_wesbmcijhqvx" /><param name="name" value="prezi_wesbmcijhqvx" /><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="bgcolor" value="#ffffff" /><param name="flashvars" value="prezi_id=wesbmcijhqvx&amp;lock_to_path=1&amp;color=ffffff&amp;autoplay=no" /><param name="src" value="http://prezi.com/bin/preziloader.swf" /></object></p>
<p><strong>Simpleviewer.net</strong></p>
<p><a title="Simpleviewer web site" href="http://www.simpleviewer.net" target="_blank">Simpleviewer</a> is offering several different players for free.</p>
<p>View the demo of their <a title="Tiltviewer demo" href="http://www.simpleviewer.net/tiltviewer/app/" target="_blank">tiltviewer</a>.</p>
<p>Please let me know if you use or know other tools like those ones!</p></div>
]]></content:encoded>
			<wfw:commentRss>http://www.nathaliemagniez.com/slideology/make-your-presentation-stick/feed/</wfw:commentRss>
		</item>
		<item>
		<title>When late is too late</title>
		<link>http://www.nathaliemagniez.com/cartoons/when-late-is-too-late/</link>
		<comments>http://www.nathaliemagniez.com/cartoons/when-late-is-too-late/#comments</comments>
		<pubDate>Wed, 13 Jan 2010 13:43:09 +0000</pubDate>
		<dc:creator>Nathalie</dc:creator>
		
		<category><![CDATA[Cartoons]]></category>

		<category><![CDATA[cartoon]]></category>

		<category><![CDATA[marketing]]></category>

		<category><![CDATA[time to market]]></category>

		<guid isPermaLink="false">http://www.nathaliemagniez.com/?p=335</guid>
		<description><![CDATA[
As we are still in January, I continue on my new year&#8217;s goals ideas  Did you include time to market in 2010 as one of your company goal?
Feel free to use in your presentation, to share&#8230;
]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.nathaliemagniez.com/wp-content/uploads/2010/01/merry-christmas.png"><img class="aligncenter size-medium wp-image-336" title="Time to market" src="http://www.nathaliemagniez.com/wp-content/uploads/2010/01/merry-christmas-300x200.png" alt="Time to market" width="300" height="200" /></a></p>
<p>As we are still in January, I continue on my new year&#8217;s goals ideas <img src='http://www.nathaliemagniez.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> Did you include time to market in 2010 as one of your company goal?</p>
<p>Feel free to use in your presentation, to share&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nathaliemagniez.com/cartoons/when-late-is-too-late/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Goals vs Resolutions</title>
		<link>http://www.nathaliemagniez.com/articles/goals-vs-resolutions/</link>
		<comments>http://www.nathaliemagniez.com/articles/goals-vs-resolutions/#comments</comments>
		<pubDate>Mon, 04 Jan 2010 17:14:47 +0000</pubDate>
		<dc:creator>Nathalie</dc:creator>
		
		<category><![CDATA[Articles]]></category>

		<category><![CDATA[2010]]></category>

		<category><![CDATA[goals]]></category>

		<category><![CDATA[settings]]></category>

		<guid isPermaLink="false">http://www.nathaliemagniez.com/?p=333</guid>
		<description><![CDATA[Setting goals is what January 1st is all about. Did you know that 95% of the people who set New Year&#8217;s resolution never follow through? So, over the last few years, Iâ€™ve practiced goals&#8217; setting instead of resolutions.
How can you set your goals
You need to start by setting tangible goals, SMART goals that can be [...]]]></description>
			<content:encoded><![CDATA[<p>Setting goals is what January 1st is all about. Did you know that 95% of the people who set New Year&#8217;s resolution never follow through? So, over the last few years, Iâ€™ve practiced goals&#8217; setting instead of resolutions.</p>
<p><strong>How can you set your goals</strong></p>
<p>You need to start by setting tangible goals, SMART goals that can be measured and have dates to accomplish tasks by. Personally, I like to set up 3 key goals, not more.</p>
<p>You also need to set the reason, the purpose, the motivation behind each of these goals.</p>
<p>Last, but not least, for each goal, you need to associate a detailed action plan.</p>
<p>I hope you give this some thought and consider sharing how you set your goals for 2010 here. Itâ€™s been very helpful to me over the last few years, and I predict itâ€™ll help me navigate the complexities of my upcoming 2010, as well.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nathaliemagniez.com/articles/goals-vs-resolutions/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to kill an idea</title>
		<link>http://www.nathaliemagniez.com/articles/how-to-kill-an-idea/</link>
		<comments>http://www.nathaliemagniez.com/articles/how-to-kill-an-idea/#comments</comments>
		<pubDate>Fri, 27 Nov 2009 09:37:01 +0000</pubDate>
		<dc:creator>Nathalie</dc:creator>
		
		<category><![CDATA[Articles]]></category>

		<category><![CDATA[idea]]></category>

		<category><![CDATA[management]]></category>

		<category><![CDATA[seth godin]]></category>

		<guid isPermaLink="false">http://www.nathaliemagniez.com/?p=330</guid>
		<description><![CDATA[Seth Godin used a quote that I really like: &#8220;Big ideas are&#8230;. little ideas that no one killed too soon.&#8221;
I just found the perfect illustration  (scott c &#124; via doobybrain).

]]></description>
			<content:encoded><![CDATA[<p>Seth Godin used a quote that I really like: &#8220;Big ideas are&#8230;. little ideas that no one killed too soon.&#8221;</p>
<p>I just found the perfect illustration <img src='http://www.nathaliemagniez.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> (<a href="http://scott-c.blogspot.com/" target="_blank">scott c</a> | via <a href="http://www.doobybrain.com/2009/11/14/how-to-kill-an-idea/" target="_blank">doobybrain</a>).</p>
<p><a href="http://www.nathaliemagniez.com/wp-content/uploads/2009/11/kill_ideas.jpg"><img class="aligncenter size-full wp-image-331" title="kill_ideas" src="http://www.nathaliemagniez.com/wp-content/uploads/2009/11/kill_ideas.jpg" alt="kill_ideas" width="500" height="1400" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.nathaliemagniez.com/articles/how-to-kill-an-idea/feed/</wfw:commentRss>
		</item>
		<item>
		<title>The Surprising Truth about What Motivates Us</title>
		<link>http://www.nathaliemagniez.com/cartoons/motivation/</link>
		<comments>http://www.nathaliemagniez.com/cartoons/motivation/#comments</comments>
		<pubDate>Thu, 26 Nov 2009 10:59:14 +0000</pubDate>
		<dc:creator>Nathalie</dc:creator>
		
		<category><![CDATA[Cartoons]]></category>

		<category><![CDATA[dan]]></category>

		<category><![CDATA[drive]]></category>

		<category><![CDATA[motivation]]></category>

		<category><![CDATA[pink]]></category>

		<guid isPermaLink="false">http://www.nathaliemagniez.com/?p=327</guid>
		<description><![CDATA[I had the chance to read Daniel Pink latest book &#8220;DRIVE&#8221; before its publication (end of December).
I&#8217;ll write a review soon, but in the mean time&#8230; a little cartoon!

Feel free to share or use in your presentation!
]]></description>
			<content:encoded><![CDATA[<p>I had the chance to read Daniel Pink latest book &#8220;DRIVE&#8221; before its publication (end of December).</p>
<p>I&#8217;ll write a review soon, but in the mean time&#8230; a little cartoon!</p>
<p style="text-align: center;"><a href="http://www.nathaliemagniez.com/wp-content/uploads/2009/11/danpink.png"><img class="aligncenter size-full wp-image-328" style="border: 1px solid black;" title="danpink" src="http://www.nathaliemagniez.com/wp-content/uploads/2009/11/danpink.png" alt="danpink" width="520" height="348" /></a></p>
<p style="text-align: left;"><em>Feel free to share or use in your presentation!</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.nathaliemagniez.com/cartoons/motivation/feed/</wfw:commentRss>
		</item>
		<item>
		<title>My Toastmasters Icebreaker Speech</title>
		<link>http://www.nathaliemagniez.com/toastmasters/icebreaker/</link>
		<comments>http://www.nathaliemagniez.com/toastmasters/icebreaker/#comments</comments>
		<pubDate>Tue, 24 Nov 2009 14:09:38 +0000</pubDate>
		<dc:creator>Nathalie</dc:creator>
		
		<category><![CDATA[Toastmasters]]></category>

		<category><![CDATA[icebreaker]]></category>

		<category><![CDATA[public]]></category>

		<category><![CDATA[speaking]]></category>

		<category><![CDATA[speech]]></category>

		<guid isPermaLink="false">http://www.nathaliemagniez.com/?p=320</guid>
		<description><![CDATA[Beginning of November, I gave my first formal speech at theÂ Toastmasters club I joined recently. The point of the speech is to talk for a few minutes about myself. Personally, I find talking about myself to be really tough. I could go on for hours about a technical subject, but having to bare personal information [...]]]></description>
			<content:encoded><![CDATA[<p>Beginning of November, I gave my first formal speech at theÂ <a href="http://intergeneva.freetoasthost.net/">Toastmasters club</a> I joined recently. The point of the speech is to talk for a few minutes about myself. Personally, I find talking about myself to be really tough. I could go on for hours about a technical subject, but having to bare personal information in front of others, on the spot, just seems much more difficult&#8230; So, I was Â very proud to receive the Best Speaker Ribbon for that speech <img src='http://www.nathaliemagniez.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p><span id="more-320"></span></p>
<p><span>â€œBe yourself, everyone else is already takenâ€. I love this quote from Oscar Wilde and I am here today to tell you a little bit about who I am, from A to Z.</span></p>
<p>Madam Toastmaster, fellows toastmasters and welcomed guests,</p>
<p>A is for Arthur, my 10 years old son, and</p>
<p>B is for Bath, the beautiful town in the UK where he is born.</p>
<p><span>C is for Cooking, an activity which I started very seriously when we moved to the UK&#8230;. <img src='http://www.nathaliemagniez.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </span></p>
<p><span>D is for Dreams&#8230; â€œLet me be a dreamerâ€ as per the famous the Supertrampâ€™ song. </span></p>
<p><span>E is for Ecosystem, business ecosystems. It is the subject Iâ€™m currently working on as a consultant,Â  organizing workshops to help companies develop their own ecosystem.</span></p>
<p><span>F is for French. I am born near Bordeaux where I spent my childhood. I have also lived near Paris, in Grenoble, in Bath, and now I am in geneva for 4 years now.</span></p>
<p><span>G is for geek. I am a geek.I share my office with a wifi rabbit, I read my books on an amazon kindle, I have an automated iRobotâ€™s hoover at home, I listen to podcasts on my iphone&#8230; </span></p>
<p><span>H is for high-tech. I have studied microelectronic at school and work in the semiconductor and electronic market since then.</span></p>
<p><span>I is for Ideas. I like Ideas. I believe that Big ideas are&#8230; small ideas that no one killed too soon.</span></p>
<p><span>J is for Job. I am Self employed marketing consultant.</span></p>
<p><span>K is for Kaizen. It is a japanese word which means &#8220;improvement&#8221; and is commonly used as â€œcontinuous improvement.â€ It is my philosophy, improve step-by-step, little-by-little every day. </span></p>
<p><span>L is for Life.Â Trying to &#8220;Live with Passion&#8221; as The Coach Tony Robbins keeps saying since 30 years.</span></p>
<p><span>M is Marketing. Even though I studied microelectronic,Â  I have been working as a technical marketing since 15 years now.</span></p>
<p><span>N is for Nespresso. â€œWhat else?â€. I am part of the success of Nespresso, you know&#8230;Â  Yeah, with myÂ  4 to 6 cups of coffee per day. </span></p>
<p><span>O is for Optimistic. Not only is the glass always half full, Iâ€™m sure I can find some â€œhappyâ€ around here somewhere for your glass as well..</span></p>
<p><span>P is for Painting.Â  I started painting this year, acrylic and oil&#8230; and I really like it.</span></p>
<p><span>Q is for Quick. I donâ€™t like to wait, I want quick results.</span></p>
<p><span>R is for read. You&#8217;ve heard of alcoholics. You&#8217;ve heard of workaholics. Well, I am a reader-aholic.</span></p>
<p><span>S is for Speaker of course. What Iâ€™d like to become, my goal for the next years, a professional speaker.</span></p>
<p><span>T is for Time. I have a problem with time, Iâ€™m sure my days don&#8217;t have 24hours&#8230;</span></p>
<p><span>U is for Ulysse, my 4 years old son. Life with him is already an odysseus.</span></p>
<p><span>V is for very, very happy to be here. </span></p>
<p><span>W is for webmaster. I launched a website to share industry presentations 2 years ago. It allowed me to meet many people virtually.</span></p>
<p><span>X is for Xtremely annoyed I canâ€™t find any good X-words</span></p>
<p><span>Y is for year. Each year I decide new things I want to do.</span></p>
<p><span>Z is for Ze end.</span></p>
<p>We have arrived, now, where we began. I told you 26 things about me, about who I am. Everyday, I try To truly be myself, as everyone else is already taken&#8230;</p>
<p>To find out more about Toastmasters:</p>
<ul>
<li><a title="Toastmasters article" href="http://sixminutes.dlugan.com/toastmasters-who-what-when-where-why-how/" target="_blank">Article from Andrew Dlugan</a></li>
<li><a title="Toastmasters International" href="http://toastmasters.org/" target="_blank">Toastmasters web site</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.nathaliemagniez.com/toastmasters/icebreaker/feed/</wfw:commentRss>
		</item>
		<item>
		<title>The Vitruvian Marketing Man</title>
		<link>http://www.nathaliemagniez.com/cartoons/the-vitruvian-marketing-man/</link>
		<comments>http://www.nathaliemagniez.com/cartoons/the-vitruvian-marketing-man/#comments</comments>
		<pubDate>Wed, 18 Nov 2009 09:23:00 +0000</pubDate>
		<dc:creator>Nathalie</dc:creator>
		
		<category><![CDATA[Cartoons]]></category>

		<category><![CDATA[business]]></category>

		<category><![CDATA[cartoon]]></category>

		<category><![CDATA[marketing]]></category>

		<category><![CDATA[vitruvian]]></category>

		<guid isPermaLink="false">http://www.nathaliemagniez.com/?p=315</guid>
		<description><![CDATA[Adapted from the Vitruvian man from Leonard de Vinci.Â What do you think characterize the &#8220;perfect&#8221; marketing person today  ?
Fell free to share or use in your presentations!
]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.nathaliemagniez.com/wp-content/uploads/2009/11/leonard-de-vinci1.jpg"><img class="aligncenter size-large wp-image-314" title="leonard-de-vinci1" src="http://www.nathaliemagniez.com/wp-content/uploads/2009/11/leonard-de-vinci1-1024x685.jpg" alt="leonard-de-vinci1" width="520" height="348" /></a>Adapted from the Vitruvian man from Leonard de Vinci.Â What do you think characterize the &#8220;perfect&#8221; marketing person today <img src='http://www.nathaliemagniez.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> ?</p>
<p><em>Fell free to share or use in your presentations!</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.nathaliemagniez.com/cartoons/the-vitruvian-marketing-man/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>

