<?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>Thiez Multimedia - Blog</title>
	<atom:link href="http://thiez.com/blog/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://thiez.com/blog</link>
	<description>Sharing ideas and thoughts.</description>
	<lastBuildDate>Wed, 23 Nov 2011 13:49:38 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>jQuery tooltip plugin from CSSGlobe.com with browser edge detection</title>
		<link>http://thiez.com/blog/?p=39</link>
		<comments>http://thiez.com/blog/?p=39#comments</comments>
		<pubDate>Thu, 17 Nov 2011 19:55:15 +0000</pubDate>
		<dc:creator>Dani Szwarc</dc:creator>
				<category><![CDATA[Web development]]></category>

		<guid isPermaLink="false">http://thiez.com/blog/?p=39</guid>
		<description><![CDATA[
<div class="twitterbutton" style="float: right; padding-left: 5px;"><a href="http://twitter.com/share?url=http://thiez.com/blog/?p=39&amp;text=jQuery tooltip plugin from CSSGlobe.com with browser edge detection&amp;via=ThiezMultimedia&amp;related=DolcePixel"><img align="right" src="http://thiez.com/blog/wp-content/plugins//easy-twitter-button/i/buttons/en/tweetn.png" style="border: none;" alt="" /></a></div>
Hello everybody, it has been a long time since my last post. Here I go again today because I&#8217;ve found a great jQuery tooltip script at cssglobe.com and made a change to have it detect the edge of the browser and change the position of the tooltip (large image in this case). First of all, [...]
<div class="twitterbutton" style="float: right; padding-left: 5px;"><a href="http://twitter.com/share?url=http://thiez.com/blog/?p=39&amp;text=jQuery tooltip plugin from CSSGlobe.com with browser edge detection&amp;via=ThiezMultimedia&amp;related=DolcePixel"><img align="right" src="http://thiez.com/blog/wp-content/plugins//easy-twitter-button/i/buttons/en/tweetn.png" style="border: none;" alt="" /></a></div>
]]></description>
			<content:encoded><![CDATA[
<div class="twitterbutton" style="float: right; padding-left: 5px;"><a href="http://twitter.com/share?url=http://thiez.com/blog/?p=39&amp;text=jQuery tooltip plugin from CSSGlobe.com with browser edge detection&amp;via=ThiezMultimedia&amp;related=DolcePixel"><img align="right" src="http://thiez.com/blog/wp-content/plugins//easy-twitter-button/i/buttons/en/tweetn.png" style="border: none;" alt="" /></a></div>
<p>Hello everybody, it has been a long time since my last post. Here I go again today because I&#8217;ve found a great jQuery tooltip script at cssglobe.com and made a change to have it detect the edge of the browser and change the position of the tooltip (large image in this case).</p>
<p>First of all, I want to thank Alen Grekalic for the plugin and also Nando Fernández, from disenando.com for helping me to understand how to get it done.</p>
<p>Please check <a title="toolTip" href="http://cssglobe.com/post/1695/easiest-tooltip-and-image-preview-using-jquery" target="_blank">here</a> for the original post from cssglobe.com.</p>
<p>The code for the plugin is this:</p>
<p>&lt;code&gt;</p>
<pre id="line1">/*
 * Image preview script
 * powered by jQuery (http://www.jquery.com)
 *
 * written by Alen Grakalic (http://cssglobe.com)
 *
 * for more info visit http://cssglobe.com/post/1695/easiest-tooltip-and-image-preview-using-jquery
 *
 */

this.imagePreview = function(){
	/* CONFIG */

		xOffset = 30;
		yOffset = 10;

		// these 2 variable determine popup's distance from the cursor
		// you might want to adjust to get the right result

	/* END CONFIG */
	$("a.preview").hover(function(e){
		this.t = this.title;
		this.title = "";
		var c = (this.t != "") ? "&lt;br/&gt;" + this.t : "";
		$("body").append("&lt;p id='preview'&gt;&lt;img src='"+ this.href +"' alt='Image preview' /&gt;"+ c +"&lt;/p&gt;");
		$("#preview")
			.css("top",(e.pageY - yOffset) + "px")
			.css("left",(e.pageX + xOffset) + "px")
			.fadeIn("fast");
    },
	function(){
		this.title = this.t;
		$("#preview").remove();
    });
	$("a.preview").mousemove(function(e){
		$("#preview")
			.css("top",(e.pageY - yOffset) + "px")
			.css("left",(e.pageX + xOffset) + "px");
	});
};

// starting the script on page load
$(document).ready(function(){
	imagePreview();
});</pre>
<p>&lt;/code&gt;</p>
<p>The way I&#8217;m using this plugin is to show a photo gallery in a similar way iStockphoto.com does. There&#8217;s a bunch of thumbnails and when you roll over any of them, you will get a larger version of this image. If you keep moving the pointer of the mouse on top of the thumbnail, the image will move along. Now, if we are close to the edge of our browser window, in order to avoid the image to go &#8220;outside&#8221; the browser, we need to add some conditions before we tell the script how to display the enlarged image . We basically want to detect when the image is opening off the screen. What we are going to do is to detect if the thumbnail is close to the edge of our browser window.</p>
<p>&lt;code&gt;</p>
<p>if(e.pageX + xOffset &gt; $(document).width()){</p>
<p>}</p>
<p>&lt;/code&gt;</p>
<p>where e.pageX is the position of the thumbnail and xOffset is how far from it the image will open.</p>
<p>Then, inside the condition we request to get the position of the enlarged image either to the left or right, depending how close we are from the edge and how big our image will be. So if your enlarged image is supposed to be 500 pixels wide, then the IF should read something like:</p>
<p>&lt;code&gt;</p>
<p>if(e.pageX + 500 + xOffset &gt; $(document).width()){</p>
<p>$(&#8220;#preview&#8221;)<br />
.css(&#8220;top&#8221;,(e.pageY &#8211; yOffset) + &#8220;px&#8221;)<br />
.css(&#8220;left&#8221;,(e.pageX + (-xOffset-400))  + &#8220;px&#8221;)<br />
.fadeIn(&#8220;fast&#8221;);</p>
<p>} else {</p>
<p>$(&#8220;#preview&#8221;)<br />
.css(&#8220;top&#8221;,(e.pageY &#8211; yOffset) + &#8220;px&#8221;)<br />
.css(&#8220;left&#8221;,(e.pageX + xOffset) + &#8220;px&#8221;)</p>
<p>.fadeIn(&#8220;fast&#8221;);</p>
<p>}</p>
<p>&lt;/code&gt;</p>
<p>Please note the &#8220;-xOffset-400&#8243; I&#8217;ve added to the code. You might need to play with those values in order to get the image in the place you want it to be. Also, remember that we will need to add the similar changes to the &#8220;mousemove&#8221; event in order to get the same effect when we move the mouse over the images.</p>
<p>Please take a look at the final script:</p>
<p>&lt;code&gt;</p>
<p>/*<br />
* Image preview script<br />
* powered by jQuery (http://www.jquery.com)<br />
*<br />
* written by Alen Grakalic (http://cssglobe.com)<br />
*<br />
* for more info visit http://cssglobe.com/post/1695/easiest-tooltip-and-image-preview-using-jquery<br />
*<br />
*/</p>
<p>this.imagePreview = function(){</p>
<p>/* CONFIG */</p>
<p>xOffset = 30;<br />
yOffset = 10;</p>
<p>// these 2 variable determine popup&#8217;s distance from the cursor<br />
// you might want to adjust to get the right result</p>
<p>/* END CONFIG */<br />
$(&#8220;a.preview&#8221;).hover(function(e){</p>
<p>this.t = this.title;<br />
this.title = &#8220;&#8221;;<br />
var c = (this.t != &#8220;&#8221;) ? &#8220;&lt;br/&gt;&#8221; + this.t : &#8220;&#8221;;</p>
<p>$(&#8220;body&#8221;).append(&#8220;&lt;p id=&#8217;preview&#8217;&gt;&lt;img src=&#8217;&#8221;+ this.href +&#8221;&#8216; alt=&#8217;Image preview&#8217; /&gt;&#8221;+ c +&#8221;&lt;/p&gt;&#8221;);</p>
<p>if(e.pageX + 500 + xOffset &gt; $(document).width()){</p>
<p>$(&#8220;#preview&#8221;)<br />
.css(&#8220;top&#8221;,(e.pageY &#8211; yOffset) + &#8220;px&#8221;)<br />
.css(&#8220;left&#8221;,(e.pageX + (-xOffset-400))  + &#8220;px&#8221;)</p>
<p>.fadeIn(&#8220;fast&#8221;);</p>
<p>} else {</p>
<p>$(&#8220;#preview&#8221;)<br />
.css(&#8220;top&#8221;,(e.pageY &#8211; yOffset) + &#8220;px&#8221;)<br />
.css(&#8220;left&#8221;,(e.pageX + xOffset) + &#8220;px&#8221;)</p>
<p>.fadeIn(&#8220;fast&#8221;);</p>
<p>}<br />
},<br />
function(){<br />
this.title = this.t;<br />
$(&#8220;#preview&#8221;).remove();<br />
});<br />
$(&#8220;a.preview&#8221;).mousemove(function(e){<br />
if(e.pageX + 500 + xOffset &gt; $(document).width()){<br />
$(&#8220;#preview&#8221;)<br />
.css(&#8220;top&#8221;,(e.pageY &#8211; yOffset) + &#8220;px&#8221;)<br />
.css(&#8220;left&#8221;,(e.pageX + (-xOffset-400))  + &#8220;px&#8221;);<br />
}else{<br />
$(&#8220;#preview&#8221;)<br />
.css(&#8220;top&#8221;,(e.pageY &#8211; yOffset) + &#8220;px&#8221;)<br />
.css(&#8220;left&#8221;,(e.pageX + xOffset) + &#8220;px&#8221;);<br />
}<br />
});<br />
};</p>
<p>// starting the script on page load<br />
$(document).ready(function(){<br />
imagePreview();<br />
});</p>
<p>&lt;/code&gt;</p>
<p>You may need to repeat these steps if your images are going off window in the lower edge.</p>
<p>I hope this helps someone and again, thank you to the owner of this script, mister Alen Grekalic and also Nando Fernández for pointing this out.</p>

<div class="twitterbutton" style="float: right; padding-left: 5px;"><a href="http://twitter.com/share?url=http://thiez.com/blog/?p=39&amp;text=jQuery tooltip plugin from CSSGlobe.com with browser edge detection&amp;via=ThiezMultimedia&amp;related=DolcePixel"><img align="right" src="http://thiez.com/blog/wp-content/plugins//easy-twitter-button/i/buttons/en/tweetn.png" style="border: none;" alt="" /></a></div>
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fthiez.com%2Fblog%2F%3Fp%3D39&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light&amp;height=80" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:450px; height:80px;" allowTransparency="true"></iframe>]]></content:encoded>
			<wfw:commentRss>http://thiez.com/blog/?feed=rss2&#038;p=39</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>My wishes for 2011: let them come true</title>
		<link>http://thiez.com/blog/?p=36</link>
		<comments>http://thiez.com/blog/?p=36#comments</comments>
		<pubDate>Wed, 12 Jan 2011 18:16:18 +0000</pubDate>
		<dc:creator>Dani Szwarc</dc:creator>
				<category><![CDATA[Social media]]></category>

		<guid isPermaLink="false">http://thiez.com/blog/?p=36</guid>
		<description><![CDATA[
<div class="twitterbutton" style="float: right; padding-left: 5px;"><a href="http://twitter.com/share?url=http://thiez.com/blog/?p=36&amp;text=My wishes for 2011: let them come true&amp;via=ThiezMultimedia&amp;related=DolcePixel"><img align="right" src="http://thiez.com/blog/wp-content/plugins//easy-twitter-button/i/buttons/en/tweetn.png" style="border: none;" alt="" /></a></div>
Don’t let anyone or anything prevent you from dreaming. Not on this holiday season. As a matter of fact, never. Let the illusion put a smile on your face once again. Let the joy fill your corners. Let your wishes come true so you can have more wishes. Let the ideas flow. Listen to that [...]
<div class="twitterbutton" style="float: right; padding-left: 5px;"><a href="http://twitter.com/share?url=http://thiez.com/blog/?p=36&amp;text=My wishes for 2011: let them come true&amp;via=ThiezMultimedia&amp;related=DolcePixel"><img align="right" src="http://thiez.com/blog/wp-content/plugins//easy-twitter-button/i/buttons/en/tweetn.png" style="border: none;" alt="" /></a></div>
]]></description>
			<content:encoded><![CDATA[
<div class="twitterbutton" style="float: right; padding-left: 5px;"><a href="http://twitter.com/share?url=http://thiez.com/blog/?p=36&amp;text=My wishes for 2011: let them come true&amp;via=ThiezMultimedia&amp;related=DolcePixel"><img align="right" src="http://thiez.com/blog/wp-content/plugins//easy-twitter-button/i/buttons/en/tweetn.png" style="border: none;" alt="" /></a></div>
<p>Don’t let anyone or anything prevent you from dreaming. Not on this holiday season. As a matter of fact, never. Let the illusion put a smile on your face once again. Let the joy fill your corners. Let your wishes come true so you can have more wishes. Let the ideas flow. Listen to that song that makes you smile. Listen to it again so you keep smiling. Jump for joy. Cry tears of happiness. Write a poem. Don’t surrender. Even when things look messy and difficult, don&#8217;t retreat, don&#8217;t give up. Do not surrender.</p>

<div class="twitterbutton" style="float: right; padding-left: 5px;"><a href="http://twitter.com/share?url=http://thiez.com/blog/?p=36&amp;text=My wishes for 2011: let them come true&amp;via=ThiezMultimedia&amp;related=DolcePixel"><img align="right" src="http://thiez.com/blog/wp-content/plugins//easy-twitter-button/i/buttons/en/tweetn.png" style="border: none;" alt="" /></a></div>
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fthiez.com%2Fblog%2F%3Fp%3D36&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light&amp;height=80" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:450px; height:80px;" allowTransparency="true"></iframe>]]></content:encoded>
			<wfw:commentRss>http://thiez.com/blog/?feed=rss2&#038;p=36</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Marathon of events &#8211; planned and unplanned</title>
		<link>http://thiez.com/blog/?p=32</link>
		<comments>http://thiez.com/blog/?p=32#comments</comments>
		<pubDate>Mon, 20 Dec 2010 21:21:27 +0000</pubDate>
		<dc:creator>Dani Szwarc</dc:creator>
				<category><![CDATA[Social media]]></category>

		<guid isPermaLink="false">http://thiez.com/blog/?p=32</guid>
		<description><![CDATA[
<div class="twitterbutton" style="float: right; padding-left: 5px;"><a href="http://twitter.com/share?url=http://thiez.com/blog/?p=32&amp;text=Marathon of events &#8211; planned and unplanned&amp;via=ThiezMultimedia&amp;related=DolcePixel"><img align="right" src="http://thiez.com/blog/wp-content/plugins//easy-twitter-button/i/buttons/en/tweetn.png" style="border: none;" alt="" /></a></div>
Here I go again. I wasn&#8217;t planning to write about this subject, but it&#8217;s something I want to do now because it has been a great experience. During the last two weeks I was working on three different Web Development projects as well as some packaging projects. I had planned my schedule in order to [...]
<div class="twitterbutton" style="float: right; padding-left: 5px;"><a href="http://twitter.com/share?url=http://thiez.com/blog/?p=32&amp;text=Marathon of events &#8211; planned and unplanned&amp;via=ThiezMultimedia&amp;related=DolcePixel"><img align="right" src="http://thiez.com/blog/wp-content/plugins//easy-twitter-button/i/buttons/en/tweetn.png" style="border: none;" alt="" /></a></div>
]]></description>
			<content:encoded><![CDATA[
<div class="twitterbutton" style="float: right; padding-left: 5px;"><a href="http://twitter.com/share?url=http://thiez.com/blog/?p=32&amp;text=Marathon of events &#8211; planned and unplanned&amp;via=ThiezMultimedia&amp;related=DolcePixel"><img align="right" src="http://thiez.com/blog/wp-content/plugins//easy-twitter-button/i/buttons/en/tweetn.png" style="border: none;" alt="" /></a></div>
<p>Here I go again. I wasn&#8217;t planning to write about this subject, but it&#8217;s something I want to do now because it has been a great experience.</p>
<p>During the last two weeks I was working on three different Web Development projects as well as some packaging projects. I had planned my schedule in order to fit everything and to deliver in time. I knew I had a couple of clients visiting as well hence I&#8217;ve included two business lunches on my plans. I&#8217;m glad, really glad I made plans.</p>
<p>The day after my first meeting with my client took place, my 5 years-old son got the flu. My studio is at home, so I was able to manage it, working and spending time with him. Things were falling into schedule, my son was happy I was also playing with him, everything seems to be as planned..until the unplanned&#8230;I got the flu.</p>
<p>The first day was relatively ok, I had fever but I was able to work. The second day I couldn&#8217;t leave my bed. At that point, I knew I was running a little bit behind schedule and also, at that point, my 2 years-old got it too. And then my wife. I&#8217;m glad the cats were ok all the time.</p>
<p>What it helped me to accomplish what I have planned &#8211; and this is the reason I&#8217;m writing this &#8211; is the relationship with my clients. I speak to them almost everyday. I visit them at least once a week. We team up, we build strong relationships.</p>
<p>Strong relationships allow me to get more work. They allow me to buy more time when unplanned events take place. They also get me recommended. Strong relationships allow me to manage stress when a marathon of events like the one I wrote here, takes place.</p>

<div class="twitterbutton" style="float: right; padding-left: 5px;"><a href="http://twitter.com/share?url=http://thiez.com/blog/?p=32&amp;text=Marathon of events &#8211; planned and unplanned&amp;via=ThiezMultimedia&amp;related=DolcePixel"><img align="right" src="http://thiez.com/blog/wp-content/plugins//easy-twitter-button/i/buttons/en/tweetn.png" style="border: none;" alt="" /></a></div>
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fthiez.com%2Fblog%2F%3Fp%3D32&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light&amp;height=80" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:450px; height:80px;" allowTransparency="true"></iframe>]]></content:encoded>
			<wfw:commentRss>http://thiez.com/blog/?feed=rss2&#038;p=32</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Web applications: when are they useful</title>
		<link>http://thiez.com/blog/?p=25</link>
		<comments>http://thiez.com/blog/?p=25#comments</comments>
		<pubDate>Sat, 27 Nov 2010 22:30:29 +0000</pubDate>
		<dc:creator>Dani Szwarc</dc:creator>
				<category><![CDATA[Web development]]></category>
		<category><![CDATA[Web application]]></category>

		<guid isPermaLink="false">http://thiez.com/blog/?p=25</guid>
		<description><![CDATA[
<div class="twitterbutton" style="float: right; padding-left: 5px;"><a href="http://twitter.com/share?url=http://thiez.com/blog/?p=25&amp;text=Web applications: when are they useful&amp;via=ThiezMultimedia&amp;related=DolcePixel"><img align="right" src="http://thiez.com/blog/wp-content/plugins//easy-twitter-button/i/buttons/en/tweetn.png" style="border: none;" alt="" /></a></div>
Throughout my working life I came across many clients who wanted to have the ability to track whatever was related to their businesses. A construction company wanted to keep track of the working places, workers, material expenses, construction schedule, etc. A commercial dishwasher company wanted to track the service calls and issues per unit. A [...]
<div class="twitterbutton" style="float: right; padding-left: 5px;"><a href="http://twitter.com/share?url=http://thiez.com/blog/?p=25&amp;text=Web applications: when are they useful&amp;via=ThiezMultimedia&amp;related=DolcePixel"><img align="right" src="http://thiez.com/blog/wp-content/plugins//easy-twitter-button/i/buttons/en/tweetn.png" style="border: none;" alt="" /></a></div>
]]></description>
			<content:encoded><![CDATA[
<div class="twitterbutton" style="float: right; padding-left: 5px;"><a href="http://twitter.com/share?url=http://thiez.com/blog/?p=25&amp;text=Web applications: when are they useful&amp;via=ThiezMultimedia&amp;related=DolcePixel"><img align="right" src="http://thiez.com/blog/wp-content/plugins//easy-twitter-button/i/buttons/en/tweetn.png" style="border: none;" alt="" /></a></div>
<p>Throughout my working life I came across many clients who wanted to have the ability to track whatever was related to their businesses.</p>
<p>A construction company wanted to keep track of the working places, workers, material expenses, construction schedule, etc.</p>
<p>A commercial dishwasher company wanted to track the service calls and issues per unit.</p>
<p>A physiotherapy clinic wanted to keep track of the medical history of its patients, the time spent by the specialist with each patient, etc.</p>
<p>And like these companies, I can mention some more. So I built the applications. Over the time I noticed that some of my clients never used the web applications. They were very intuitive and easy to use and I did the delivery with a manual on how to use them. But they were left empty, no info was being entered to it.</p>
<p>It was weird. A web application can simplify your work.  it can improve your productivity. Well, not always. And that&#8217;s the reason of this post. There many variables involved when using a web application.</p>
<p>For instance, if your company is a small company and all your staff is overwhelm, who would enter the information to the application? If inputting data to it takes you away from the actual work, for how long would you do it? My experience says a couple of months. No more than that. And believe me, the application was very simple to use.</p>
<p>So after trying to understand the reasons these applications weren&#8217;t being used, I came up with some conclusions (please correct me if I&#8217;m wrong, you web applications gurus) &#8211; A web application is useful if:</p>
<ul>
<li>you take calls to log problems.</li>
<li>your web site needs a shopping cart.</li>
<li>you write down important information on the first piece of paper you find close to you (i.e. child registration on a day care center).</li>
<li>you need to use the saved data to create reports or statistics (a company was using the web application to track defective units per shipment from the factory. After 6 months of analyzing the info reported. they decided to change manufacturers).</li>
</ul>
<p>If your company is in any of the above mentioned situations, of course,  you can contact me <img src='http://thiez.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> .</p>

<div class="twitterbutton" style="float: right; padding-left: 5px;"><a href="http://twitter.com/share?url=http://thiez.com/blog/?p=25&amp;text=Web applications: when are they useful&amp;via=ThiezMultimedia&amp;related=DolcePixel"><img align="right" src="http://thiez.com/blog/wp-content/plugins//easy-twitter-button/i/buttons/en/tweetn.png" style="border: none;" alt="" /></a></div>
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fthiez.com%2Fblog%2F%3Fp%3D25&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light&amp;height=80" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:450px; height:80px;" allowTransparency="true"></iframe>]]></content:encoded>
			<wfw:commentRss>http://thiez.com/blog/?feed=rss2&#038;p=25</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A “mini you” talking to the audiences? Add chroma key to your site!</title>
		<link>http://thiez.com/blog/?p=21</link>
		<comments>http://thiez.com/blog/?p=21#comments</comments>
		<pubDate>Tue, 23 Nov 2010 16:04:35 +0000</pubDate>
		<dc:creator>Dani Szwarc</dc:creator>
				<category><![CDATA[Social media]]></category>
		<category><![CDATA[Web development]]></category>
		<category><![CDATA[Chroma Key]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Video]]></category>

		<guid isPermaLink="false">http://thiez.com/blog/?p=21</guid>
		<description><![CDATA[
<div class="twitterbutton" style="float: right; padding-left: 5px;"><a href="http://twitter.com/share?url=http://thiez.com/blog/?p=21&amp;text=A “mini you” talking to the audiences? Add chroma key to your site!&amp;via=ThiezMultimedia&amp;related=DolcePixel"><img align="right" src="http://thiez.com/blog/wp-content/plugins//easy-twitter-button/i/buttons/en/tweetn.png" style="border: none;" alt="" /></a></div>
A while ago a client approached me with a very interesting project: he wanted a website where he could talk to his visitors. Very exiting project considering he is a Public Speaker. I remember he told me &#8220;that&#8217;s what I do for a living, I talk to people&#8221;. That&#8217;s how we started to plan his [...]
<div class="twitterbutton" style="float: right; padding-left: 5px;"><a href="http://twitter.com/share?url=http://thiez.com/blog/?p=21&amp;text=A “mini you” talking to the audiences? Add chroma key to your site!&amp;via=ThiezMultimedia&amp;related=DolcePixel"><img align="right" src="http://thiez.com/blog/wp-content/plugins//easy-twitter-button/i/buttons/en/tweetn.png" style="border: none;" alt="" /></a></div>
]]></description>
			<content:encoded><![CDATA[
<div class="twitterbutton" style="float: right; padding-left: 5px;"><a href="http://twitter.com/share?url=http://thiez.com/blog/?p=21&amp;text=A “mini you” talking to the audiences? Add chroma key to your site!&amp;via=ThiezMultimedia&amp;related=DolcePixel"><img align="right" src="http://thiez.com/blog/wp-content/plugins//easy-twitter-button/i/buttons/en/tweetn.png" style="border: none;" alt="" /></a></div>
<p>A while ago a client approached me with a very interesting project: he wanted a website where he could talk to his visitors. Very exiting project considering he is a Public Speaker. I remember he told me &#8220;that&#8217;s what I do for a living, I talk to people&#8221;. That&#8217;s how we started to plan his website. You can see it <a title="Ennio Vita-Finzi" href="http://www.theinternationalspeaker.com" target="_blank">here</a>.</p>
<p>By using chroma key video on your website you are talking directly to your potential clients. You are looking to them directly into their eyes. You are selling your products or services in an attractive way. I say &#8220;attractive&#8221; because it is innovative, eye-catching and it can be used to enhance your website effectiveness.</p>
<p>If you checked the previous link, you were able to see Ennio Vita-Finzi  &#8220;walking on&#8221; to his website and present his message to a new visitor. He also interacted with students in the classroom and also with a group of participants in a conference, all during the same video.</p>
<p>This technology allows you to speak to your potential clients by appearing almost anywhere on your website. And the most beautiful feature is the possibility of adding almost any type of background to it, both still or animated.</p>
<p>When working with chroma key, the possibilities are endless, they go along with the creativity involved in the process.</p>

<div class="twitterbutton" style="float: right; padding-left: 5px;"><a href="http://twitter.com/share?url=http://thiez.com/blog/?p=21&amp;text=A “mini you” talking to the audiences? Add chroma key to your site!&amp;via=ThiezMultimedia&amp;related=DolcePixel"><img align="right" src="http://thiez.com/blog/wp-content/plugins//easy-twitter-button/i/buttons/en/tweetn.png" style="border: none;" alt="" /></a></div>
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fthiez.com%2Fblog%2F%3Fp%3D21&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light&amp;height=80" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:450px; height:80px;" allowTransparency="true"></iframe>]]></content:encoded>
			<wfw:commentRss>http://thiez.com/blog/?feed=rss2&#038;p=21</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Why we need Coaching</title>
		<link>http://thiez.com/blog/?p=13</link>
		<comments>http://thiez.com/blog/?p=13#comments</comments>
		<pubDate>Tue, 16 Nov 2010 15:03:10 +0000</pubDate>
		<dc:creator>Dani Szwarc</dc:creator>
				<category><![CDATA[Web development]]></category>

		<guid isPermaLink="false">http://thiez.com/blog/?p=13</guid>
		<description><![CDATA[
<div class="twitterbutton" style="float: right; padding-left: 5px;"><a href="http://twitter.com/share?url=http://thiez.com/blog/?p=13&amp;text=Why we need Coaching&amp;via=ThiezMultimedia&amp;related=DolcePixel"><img align="right" src="http://thiez.com/blog/wp-content/plugins//easy-twitter-button/i/buttons/en/tweetn.png" style="border: none;" alt="" /></a></div>
Yesterday it was a good day. A great day I would say. I&#8217;m in the process of rebuilding my site and relaunching the company. I need to grow the income, I want to make it work. After changing the design towards a more modern, web 2.0 and social media oriented concept, I showed it to [...]
<div class="twitterbutton" style="float: right; padding-left: 5px;"><a href="http://twitter.com/share?url=http://thiez.com/blog/?p=13&amp;text=Why we need Coaching&amp;via=ThiezMultimedia&amp;related=DolcePixel"><img align="right" src="http://thiez.com/blog/wp-content/plugins//easy-twitter-button/i/buttons/en/tweetn.png" style="border: none;" alt="" /></a></div>
]]></description>
			<content:encoded><![CDATA[
<div class="twitterbutton" style="float: right; padding-left: 5px;"><a href="http://twitter.com/share?url=http://thiez.com/blog/?p=13&amp;text=Why we need Coaching&amp;via=ThiezMultimedia&amp;related=DolcePixel"><img align="right" src="http://thiez.com/blog/wp-content/plugins//easy-twitter-button/i/buttons/en/tweetn.png" style="border: none;" alt="" /></a></div>
<p>Yesterday it was a good day. A great day I would say.</p>
<p>I&#8217;m in the process of rebuilding my site and relaunching the company. I need to grow the income, I want to make it work.</p>
<p>After changing the design towards a more modern, web 2.0 and social media oriented concept, I showed it to a couple of friends and colleagues to get some feedback. Fito, who&#8217;s my best friend and has been in the real state insdustry for almost 10 years, was not blown from his chair. He pointed out about marketing shortcomings. Then he asked me about my product. &#8220;Why your product would be the chosen one?&#8221; he shot. Touché. It was hard to get a clear answer about it. Even though I feel I have a nice and solid product to sell, I couldn&#8217;t answer to that question.</p>
<p>Then I spoke to Augusto. I was watching Inspector Gadget when he developed and sold his first system. He has a lot of experience. We were chatting about my product, his product and what could we do together. After understanding that even though we both are developers, we are in different markets, I started again asking myself what&#8217;s my market. Are the small companies in need of a site that won&#8217;t handle more than 200 clients? Are &#8220;one man shop&#8221; entrepreneurs needing a design?</p>
<p>My last feedback came from Bruno. He wasn&#8217;t shocked about the site either. He said is lacking energy, magic, something that will keep the potential client, the visitor, asking for more.</p>
<p>I have to admit that I feel a bit lost. Well, a lot. Augusto talked to me about coaching. I know I need coaching. When there&#8217;s a lot of information around your head and you can&#8217;t grab it, when you just read the headlines of what you would like to do, but you never jump into it, you need coaching.</p>
<p>So what is Coaching anyway?</p>
<p>Some things I&#8217;ve found online:</p>
<p>It helps you solve everyday situations that make you shake or make you question things.</p>
<ul>
<li>You have a love or family conflict, coaching can help.</li>
<li>You think you are not capable of something, coaching can help.</li>
<li>You want a career change but you feel lost, coaching can help.</li>
</ul>
<p>The coach is a person that helps you understanding your decisions, guides you through work meetings, observes your development while with clients and helps you improve and reinforce your strategy.</p>
<p>Let&#8217;s see how coaching works for me. I just found this link. I haven&#8217;t used her services but she gives a very good idea about why Coaching is important:</p>
<p>http://www.passionforbusiness.com/</p>

<div class="twitterbutton" style="float: right; padding-left: 5px;"><a href="http://twitter.com/share?url=http://thiez.com/blog/?p=13&amp;text=Why we need Coaching&amp;via=ThiezMultimedia&amp;related=DolcePixel"><img align="right" src="http://thiez.com/blog/wp-content/plugins//easy-twitter-button/i/buttons/en/tweetn.png" style="border: none;" alt="" /></a></div>
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fthiez.com%2Fblog%2F%3Fp%3D13&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light&amp;height=80" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:450px; height:80px;" allowTransparency="true"></iframe>]]></content:encoded>
			<wfw:commentRss>http://thiez.com/blog/?feed=rss2&#038;p=13</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Ride the opportunity bus</title>
		<link>http://thiez.com/blog/?p=9</link>
		<comments>http://thiez.com/blog/?p=9#comments</comments>
		<pubDate>Fri, 12 Nov 2010 16:24:02 +0000</pubDate>
		<dc:creator>Dani Szwarc</dc:creator>
				<category><![CDATA[Social media]]></category>

		<guid isPermaLink="false">http://thiez.com/blog/?p=9</guid>
		<description><![CDATA[
<div class="twitterbutton" style="float: right; padding-left: 5px;"><a href="http://twitter.com/share?url=http://thiez.com/blog/?p=9&amp;text=Ride the opportunity bus&amp;via=ThiezMultimedia&amp;related=DolcePixel"><img align="right" src="http://thiez.com/blog/wp-content/plugins//easy-twitter-button/i/buttons/en/tweetn.png" style="border: none;" alt="" /></a></div>
Ok people, here we go towards a new direction. Thiez Multimedia is taking the social media bus and I know we still have a very long journey ahead. And that&#8217;s what we want to do. We want to enjoy every minute of it. We want to explore the opportunities this path has for us. Then [...]
<div class="twitterbutton" style="float: right; padding-left: 5px;"><a href="http://twitter.com/share?url=http://thiez.com/blog/?p=9&amp;text=Ride the opportunity bus&amp;via=ThiezMultimedia&amp;related=DolcePixel"><img align="right" src="http://thiez.com/blog/wp-content/plugins//easy-twitter-button/i/buttons/en/tweetn.png" style="border: none;" alt="" /></a></div>
]]></description>
			<content:encoded><![CDATA[
<div class="twitterbutton" style="float: right; padding-left: 5px;"><a href="http://twitter.com/share?url=http://thiez.com/blog/?p=9&amp;text=Ride the opportunity bus&amp;via=ThiezMultimedia&amp;related=DolcePixel"><img align="right" src="http://thiez.com/blog/wp-content/plugins//easy-twitter-button/i/buttons/en/tweetn.png" style="border: none;" alt="" /></a></div>
<p>Ok people, here we go towards a new direction.</p>
<p>Thiez Multimedia is taking the social media bus and I know we still have a very long journey ahead. And that&#8217;s what we want to do. We want to enjoy every minute of it. We want to explore the opportunities this path has for us. Then we start brainstorming. Oh, yes. Brainstorming is key. We sit down, we put on the table all the ideas we came up with, we connect them, we polish them and the we let it rest for a couple of hours (days).</p>
<p>The passion drawn at this stage is our drug that keeps us going, hungry for more. And more is what we go for. More PASSION, more BRAINSTORMING, more BUILDING.</p>
<p>Those words and concepts will define this new journey we are taking now.</p>

<div class="twitterbutton" style="float: right; padding-left: 5px;"><a href="http://twitter.com/share?url=http://thiez.com/blog/?p=9&amp;text=Ride the opportunity bus&amp;via=ThiezMultimedia&amp;related=DolcePixel"><img align="right" src="http://thiez.com/blog/wp-content/plugins//easy-twitter-button/i/buttons/en/tweetn.png" style="border: none;" alt="" /></a></div>
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fthiez.com%2Fblog%2F%3Fp%3D9&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light&amp;height=80" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:450px; height:80px;" allowTransparency="true"></iframe>]]></content:encoded>
			<wfw:commentRss>http://thiez.com/blog/?feed=rss2&#038;p=9</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

