<?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>intelligent e-Services &#187; Common</title>
	<atom:link href="https://ieservices.de/en/category/common/feed/" rel="self" type="application/rss+xml" />
	<link>https://ieservices.de/en/</link>
	<description>the new challenge for open minded people</description>
	<lastBuildDate>Fri, 10 Apr 2026 15:02:40 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>7 rules to work with highest performance in SQLite databases in Adobe AIR/Flex</title>
		<link>https://ieservices.de/en/2010/06/08/7-rules-to-work-with-highest-performance-in-sqlite-databases-in-adobe-airflex/</link>
		<comments>https://ieservices.de/en/2010/06/08/7-rules-to-work-with-highest-performance-in-sqlite-databases-in-adobe-airflex/#comments</comments>
		<pubDate>Tue, 08 Jun 2010 12:18:09 +0000</pubDate>
		<dc:creator>martin</dc:creator>
				<category><![CDATA[Common]]></category>
		<category><![CDATA[ActionScript 3]]></category>
		<category><![CDATA[AS3]]></category>
		<category><![CDATA[flex]]></category>
		<category><![CDATA[performace]]></category>
		<category><![CDATA[SQL transactions]]></category>
		<category><![CDATA[SQLite]]></category>
		<category><![CDATA[value object]]></category>

		<guid isPermaLink="false">http://ieservices.de/?p=580</guid>
		<description><![CDATA[<p>This article shows 7 rules how to get out the most of your SQLite application in AIR: Create VO&#8217;s (value objects or classes) for [...]</p>
<p>The post <a rel="nofollow" href="https://ieservices.de/en/2010/06/08/7-rules-to-work-with-highest-performance-in-sqlite-databases-in-adobe-airflex/">7 rules to work with highest performance in SQLite databases in Adobe AIR/Flex</a> appeared first on <a rel="nofollow" href="https://ieservices.de/en/">intelligent e-Services</a>.</p>
]]></description>
				<content:encoded><![CDATA[<p>This article shows 7 rules how to get out the most of your SQLite application in AIR:</p>
<ol>
<li>Create VO&#8217;s (value objects or classes) for each query extending a VO with contains at least the &#8220;ROWID&#8221;</li>
<li>Always use SQLStatement.itemClass and to query for an object &#8211; it automatically casts the</li>
<li>Use the &#8220;AS&#8221; alias in your SQL queries (e.g. SELECT count(name) AS &#8220;numberOfNames&#8221;) to fit it to your value object.</li>
<li>Use SQLConnection.<span>columnNameStyle</span> = SQLColumnNameStyle.SHORT as possible.</li>
<li>Try to avoid the same name in different tables (which has to be joined at one point)</li>
<li>Use SQL transactions: Start with <span>sqlConnection</span><span>.begin(); continue with &#8220;INSERT INTO (&#8216;firstName&#8217;) VALUES (&#8216;:firstName&#8217;) and SQLStatement.parameters[':firstName'] = VOList[numberOfVO][firstName];  and end with SQLConnection.commit();</span></li>
<li>If you want to get the current database Schema (&#8216;SELECT * FROM sqlite_master WHERE type = &#8220;table&#8221;&#8216;) open the database in read mode SQLConnection(_sqlFile, SQLMode.READ), load the Schema sqlConnection.loadSchema() and push SQLConnection.getSchemaResult() into an Array</li>
</ol>
<!-- Start Sociable --><div class="sociable"><div class="sociable_tagline"><a class='sociable_tagline' target='_blank' href='http://blogplay.com' style='font-size:11px;color:#333333;text-decoration:none'>Be Sociable, Share!</a></div><ul class='clearfix'><li><a title="Twitter" class="option1_16" style="background-position:-144px -16px" rel="nofollow" target="_blank" href="http://twitter.com/intent/tweet?text=7%20rules%20to%20work%20with%20highest%20performance%20in%20SQLite%20databases%20in%20Adobe%20AIR%2FFlex%20-%20https%3A%2F%2Fieservices.de%2Fen%2F2010%2F06%2F08%2F7-rules-to-work-with-highest-performance-in-sqlite-databases-in-adobe-airflex%2F%20(via%20@sociablesite)"></a></li><li><a title="Facebook" class="option1_16" style="background-position:-48px 0px" rel="nofollow" target="_blank" href="http://www.facebook.com/share.php?u=https%3A%2F%2Fieservices.de%2Fen%2F2010%2F06%2F08%2F7-rules-to-work-with-highest-performance-in-sqlite-databases-in-adobe-airflex%2F&amp;t=7%20rules%20to%20work%20with%20highest%20performance%20in%20SQLite%20databases%20in%20Adobe%20AIR%2FFlex"></a></li><li><a title="email" class="option1_16" style="background-position:-80px 0px" rel="nofollow" target="_blank" href="https://mail.google.com/mail/?view=cm&fs=1&to&su=7%20rules%20to%20work%20with%20highest%20performance%20in%20SQLite%20databases%20in%20Adobe%20AIR%2FFlex&body=https%3A%2F%2Fieservices.de%2Fen%2F2010%2F06%2F08%2F7-rules-to-work-with-highest-performance-in-sqlite-databases-in-adobe-airflex%2F&ui=2&tf=1&shva=1"></a></li><li><a class="option1_16" style="cursor:pointer;background-position:-64px 0px" rel="nofollow" title="Add to favorites - doesn't work in Chrome"  onClick="javascript:AddToFavorites();"></a></li><li><a title="StumbleUpon" class="option1_16" style="background-position:-112px -16px" rel="nofollow" target="_blank" href="http://www.stumbleupon.com/submit?url=https%3A%2F%2Fieservices.de%2Fen%2F2010%2F06%2F08%2F7-rules-to-work-with-highest-performance-in-sqlite-databases-in-adobe-airflex%2F&title=7%20rules%20to%20work%20with%20highest%20performance%20in%20SQLite%20databases%20in%20Adobe%20AIR%2FFlex"></a></li><li><a title="Delicious" class="option1_16" style="background-position:-16px 0px" rel="nofollow" target="_blank" href="http://delicious.com/post?url=https%3A%2F%2Fieservices.de%2Fen%2F2010%2F06%2F08%2F7-rules-to-work-with-highest-performance-in-sqlite-databases-in-adobe-airflex%2F&amp;title=7%20rules%20to%20work%20with%20highest%20performance%20in%20SQLite%20databases%20in%20Adobe%20AIR%2FFlex&amp;notes=This%20article%20shows%207%20rules%20how%20to%20get%20out%20the%20most%20of%20your%20SQLite%20application%20in%20AIR%3A%0D%0A%0D%0A%09Create%20VO%27s%20%28value%20objects%20or%20classes%29%20for%20each%20query%20extending%20a%20VO%20with%20contains%20at%20least%20the%20%22ROWID%22%0D%0A%09Always%20use%20SQLStatement.itemClass%20and%20to%20query%20for%20an%20"></a></li><li><a title="Google Reader" class="option1_16" style="background-position:-112px 0px" rel="nofollow" target="_blank" href="http://www.google.com/reader/link?url=https%3A%2F%2Fieservices.de%2Fen%2F2010%2F06%2F08%2F7-rules-to-work-with-highest-performance-in-sqlite-databases-in-adobe-airflex%2F&amp;title=7%20rules%20to%20work%20with%20highest%20performance%20in%20SQLite%20databases%20in%20Adobe%20AIR%2FFlex&amp;srcURL=https%3A%2F%2Fieservices.de%2Fen%2F2010%2F06%2F08%2F7-rules-to-work-with-highest-performance-in-sqlite-databases-in-adobe-airflex%2F&amp;srcTitle=intelligent+e-Services+the+new+challenge+for+open+minded+people"></a></li><li><a title="LinkedIn" class="option1_16" style="background-position:-144px 0px" rel="nofollow" target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=https%3A%2F%2Fieservices.de%2Fen%2F2010%2F06%2F08%2F7-rules-to-work-with-highest-performance-in-sqlite-databases-in-adobe-airflex%2F&amp;title=7%20rules%20to%20work%20with%20highest%20performance%20in%20SQLite%20databases%20in%20Adobe%20AIR%2FFlex&amp;source=intelligent+e-Services+the+new+challenge+for+open+minded+people&amp;summary=This%20article%20shows%207%20rules%20how%20to%20get%20out%20the%20most%20of%20your%20SQLite%20application%20in%20AIR%3A%0D%0A%0D%0A%09Create%20VO%27s%20%28value%20objects%20or%20classes%29%20for%20each%20query%20extending%20a%20VO%20with%20contains%20at%20least%20the%20%22ROWID%22%0D%0A%09Always%20use%20SQLStatement.itemClass%20and%20to%20query%20for%20an%20"></a></li><li><a title="BlinkList" class="option1_16" style="background-position:0px 0px" rel="nofollow" target="_blank" href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=https%3A%2F%2Fieservices.de%2Fen%2F2010%2F06%2F08%2F7-rules-to-work-with-highest-performance-in-sqlite-databases-in-adobe-airflex%2F&amp;Title=7%20rules%20to%20work%20with%20highest%20performance%20in%20SQLite%20databases%20in%20Adobe%20AIR%2FFlex"></a></li><li><a style="cursor:pointer" rel="nofollow" onMouseOut="fixOnMouseOut(document.getElementById('sociable-post-580'), event, 'post-580')" onMouseOver="more(this,'post-580')"><img style='padding-top: 0;margin-top:-2px' src='https://ieservices.de/wp-content/plugins/sociable/images/more.png'></a></li></ul><div onMouseout="fixOnMouseOut(this,event,'post-580')" id="sociable-post-580" style="display:none;">   

    <div style="top: auto; left: auto; display: block;" id="sociable">



		<div class="popup">

			<div class="content">

				<ul><li style="heigth:16px;width:16px"><a title="Myspace" class="option1_16" style="background-position:0px -16px" rel="nofollow" target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=https%3A%2F%2Fieservices.de%2Fen%2F2010%2F06%2F08%2F7-rules-to-work-with-highest-performance-in-sqlite-databases-in-adobe-airflex%2F&amp;t=7%20rules%20to%20work%20with%20highest%20performance%20in%20SQLite%20databases%20in%20Adobe%20AIR%2FFlex"></a></li><li style="heigth:16px;width:16px"><a title="Digg" class="option1_16" style="background-position:-32px 0px" rel="nofollow" target="_blank" href="http://digg.com/submit?phase=2&amp;url=https%3A%2F%2Fieservices.de%2Fen%2F2010%2F06%2F08%2F7-rules-to-work-with-highest-performance-in-sqlite-databases-in-adobe-airflex%2F&amp;title=7%20rules%20to%20work%20with%20highest%20performance%20in%20SQLite%20databases%20in%20Adobe%20AIR%2FFlex&amp;bodytext=This%20article%20shows%207%20rules%20how%20to%20get%20out%20the%20most%20of%20your%20SQLite%20application%20in%20AIR%3A%0D%0A%0D%0A%09Create%20VO%27s%20%28value%20objects%20or%20classes%29%20for%20each%20query%20extending%20a%20VO%20with%20contains%20at%20least%20the%20%22ROWID%22%0D%0A%09Always%20use%20SQLStatement.itemClass%20and%20to%20query%20for%20an%20"></a></li><li style="heigth:16px;width:16px"><a title="Reddit" class="option1_16" style="background-position:-64px -16px" rel="nofollow" target="_blank" href="http://reddit.com/submit?url=https%3A%2F%2Fieservices.de%2Fen%2F2010%2F06%2F08%2F7-rules-to-work-with-highest-performance-in-sqlite-databases-in-adobe-airflex%2F&amp;title=7%20rules%20to%20work%20with%20highest%20performance%20in%20SQLite%20databases%20in%20Adobe%20AIR%2FFlex"></a></li><li style="heigth:16px;width:16px"><a title="Google Bookmarks" class="option1_16" style="background-position:-96px 0px" rel="nofollow" target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=https%3A%2F%2Fieservices.de%2Fen%2F2010%2F06%2F08%2F7-rules-to-work-with-highest-performance-in-sqlite-databases-in-adobe-airflex%2F&amp;title=7%20rules%20to%20work%20with%20highest%20performance%20in%20SQLite%20databases%20in%20Adobe%20AIR%2FFlex&amp;annotation=This%20article%20shows%207%20rules%20how%20to%20get%20out%20the%20most%20of%20your%20SQLite%20application%20in%20AIR%3A%0D%0A%0D%0A%09Create%20VO%27s%20%28value%20objects%20or%20classes%29%20for%20each%20query%20extending%20a%20VO%20with%20contains%20at%20least%20the%20%22ROWID%22%0D%0A%09Always%20use%20SQLStatement.itemClass%20and%20to%20query%20for%20an%20"></a></li><li style="heigth:16px;width:16px"><a title="HackerNews" class="option1_16" style="background-position:-128px 0px" rel="nofollow" target="_blank" href="http://news.ycombinator.com/submitlink?u=https%3A%2F%2Fieservices.de%2Fen%2F2010%2F06%2F08%2F7-rules-to-work-with-highest-performance-in-sqlite-databases-in-adobe-airflex%2F&amp;t=7%20rules%20to%20work%20with%20highest%20performance%20in%20SQLite%20databases%20in%20Adobe%20AIR%2FFlex"></a></li><li style="heigth:16px;width:16px"><a title="MSNReporter" class="option1_16" style="background-position:-176px 0px" rel="nofollow" target="_blank" href="http://reporter.es.msn.com/?fn=contribute&amp;Title=7%20rules%20to%20work%20with%20highest%20performance%20in%20SQLite%20databases%20in%20Adobe%20AIR%2FFlex&amp;URL=https%3A%2F%2Fieservices.de%2Fen%2F2010%2F06%2F08%2F7-rules-to-work-with-highest-performance-in-sqlite-databases-in-adobe-airflex%2F&amp;cat_id=6&amp;tag_id=31&amp;Remark=This%20article%20shows%207%20rules%20how%20to%20get%20out%20the%20most%20of%20your%20SQLite%20application%20in%20AIR%3A%0D%0A%0D%0A%09Create%20VO%27s%20%28value%20objects%20or%20classes%29%20for%20each%20query%20extending%20a%20VO%20with%20contains%20at%20least%20the%20%22ROWID%22%0D%0A%09Always%20use%20SQLStatement.itemClass%20and%20to%20query%20for%20an%20"></a></li><li style="heigth:16px;width:16px"><a title="Sphinn" class="option1_16" style="background-position:-96px -16px" rel="nofollow" target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=https%3A%2F%2Fieservices.de%2Fen%2F2010%2F06%2F08%2F7-rules-to-work-with-highest-performance-in-sqlite-databases-in-adobe-airflex%2F"></a></li><li style="heigth:16px;width:16px"><a title="Posterous" class="option1_16" style="background-position:-32px -16px" rel="nofollow" target="_blank" href="http://posterous.com/share?linkto=https%3A%2F%2Fieservices.de%2Fen%2F2010%2F06%2F08%2F7-rules-to-work-with-highest-performance-in-sqlite-databases-in-adobe-airflex%2F&amp;title=7%20rules%20to%20work%20with%20highest%20performance%20in%20SQLite%20databases%20in%20Adobe%20AIR%2FFlex&amp;selection=This%20article%20shows%207%20rules%20how%20to%20get%20out%20the%20most%20of%20your%20SQLite%20application%20in%20AIR%3A%0D%0A%0D%0A%09Create%20VO%27s%20%28value%20objects%20or%20classes%29%20for%20each%20query%20extending%20a%20VO%20with%20contains%20at%20least%20the%20%22ROWID%22%0D%0A%09Always%20use%20SQLStatement.itemClass%20and%20to%20query%20for%20an%20"></a></li><li style="heigth:16px;width:16px"><a title="Tumblr" class="option1_16" style="background-position:-128px -16px" rel="nofollow" target="_blank" href="http://www.tumblr.com/share?v=3&amp;u=https%3A%2F%2Fieservices.de%2Fen%2F2010%2F06%2F08%2F7-rules-to-work-with-highest-performance-in-sqlite-databases-in-adobe-airflex%2F&amp;t=7%20rules%20to%20work%20with%20highest%20performance%20in%20SQLite%20databases%20in%20Adobe%20AIR%2FFlex&amp;s=This%20article%20shows%207%20rules%20how%20to%20get%20out%20the%20most%20of%20your%20SQLite%20application%20in%20AIR%3A%0D%0A%0D%0A%09Create%20VO%27s%20%28value%20objects%20or%20classes%29%20for%20each%20query%20extending%20a%20VO%20with%20contains%20at%20least%20the%20%22ROWID%22%0D%0A%09Always%20use%20SQLStatement.itemClass%20and%20to%20query%20for%20an%20"></a></li></ul>			

			</div>        

		  <a style="cursor:pointer" onclick="hide_sociable('post-580',true)" class="close">



		  <img onclick="hide_sociable('post-580',true)" title="close" src="https://ieservices.de/wp-content/plugins/sociable/images/closelabel.png">

		  </a>

		</div>

	</div> 

  </div></div><div class='sociable' style='float:none'><ul class='clearfix'><li id="Twitter_Counter"><a href="https://twitter.com/share" data-text="7 rules to work with highest performance in SQLite databases in Adobe AIR/Flex - https://ieservices.de/en/2010/06/08/7-rules-to-work-with-highest-performance-in-sqlite-databases-in-adobe-airflex/ (via #sociablesite)" data-url="https://ieservices.de/en/2010/06/08/7-rules-to-work-with-highest-performance-in-sqlite-databases-in-adobe-airflex/" class="twitter-share-button" data-count="horizontal">Tweet</a><script type="text/javascript" src="//platform.twitter.com/widgets.js"></script></li><li id="Facebook_Counter"><iframe src="//www.facebook.com/plugins/like.php?href=https://ieservices.de/en/2010/06/08/7-rules-to-work-with-highest-performance-in-sqlite-databases-in-adobe-airflex/&send=false&layout=button_count&show_faces=false&action=like&colorscheme=light&font" scrolling="no" frameborder="0" style="border:none; overflow:hidden;height:32px;width:100px" allowTransparency="true"></iframe></li><li id="Google_+"><!-- Google+1 button removed: no consent (GDPR Fix 4) --></li><li id="LinkedIn_Counter"><script src="http://platform.linkedin.com/in.js" type="text/javascript"></script><script type="IN/Share" data-url="https://ieservices.de/en/2010/06/08/7-rules-to-work-with-highest-performance-in-sqlite-databases-in-adobe-airflex/" data-counter="right"></script></li><li id="StumbleUpon_Counter"><script src="http://www.stumbleupon.com/hostedbadge.php?s=2&r=https://ieservices.de/en/2010/06/08/7-rules-to-work-with-highest-performance-in-sqlite-databases-in-adobe-airflex/"></script></li></ul></div><!-- End Sociable --><p>The post <a rel="nofollow" href="https://ieservices.de/en/2010/06/08/7-rules-to-work-with-highest-performance-in-sqlite-databases-in-adobe-airflex/">7 rules to work with highest performance in SQLite databases in Adobe AIR/Flex</a> appeared first on <a rel="nofollow" href="https://ieservices.de/en/">intelligent e-Services</a>.</p>
]]></content:encoded>
			<wfw:commentRss>https://ieservices.de/en/2010/06/08/7-rules-to-work-with-highest-performance-in-sqlite-databases-in-adobe-airflex/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>NativeMenu and CMD-Backspace #AS3</title>
		<link>https://ieservices.de/en/2010/06/03/nativemenu-and-cmd-backspace-as3/</link>
		<comments>https://ieservices.de/en/2010/06/03/nativemenu-and-cmd-backspace-as3/#comments</comments>
		<pubDate>Thu, 03 Jun 2010 11:51:30 +0000</pubDate>
		<dc:creator>martin</dc:creator>
				<category><![CDATA[Common]]></category>
		<category><![CDATA[ActionScript 3]]></category>
		<category><![CDATA[AS3]]></category>
		<category><![CDATA[flex]]></category>
		<category><![CDATA[NativeMenu]]></category>
		<category><![CDATA[NativeWindow]]></category>

		<guid isPermaLink="false">http://ieservices.de/?p=575</guid>
		<description><![CDATA[<p>If you are using var the NativeMenu on Mac and don&#8217;t know how to assign the backspace key, then you are here completely right. This [...]</p>
<p>The post <a rel="nofollow" href="https://ieservices.de/en/2010/06/03/nativemenu-and-cmd-backspace-as3/">NativeMenu and CMD-Backspace #AS3</a> appeared first on <a rel="nofollow" href="https://ieservices.de/en/">intelligent e-Services</a>.</p>
]]></description>
				<content:encoded><![CDATA[<p>If you are using <span>var the NativeMenu on Mac and don&#8217;t know how to assign the backspace key, then you are here completely right.</span></p>
<p><strong>This is how it works:</strong></p>
<p>You just to set keyEquivalent = &#8216;\b&#8217;  (On German Keyboard: Alt Gr &#8211; Shift &#8211; 7)</p>
<p><strong>Example:</strong></p>
<p>menuItem:NativeMenuItem = nativeMenu.addItem(<span>new</span> NativeMenuItem(<span>&#8220;MyMenuItem&#8221;</span>));</p>
<p>menuItem.keyEquivalentModifiers = [Keyboard.COMMAND];</p>
<p>menuItem.keyEquivalent = &#8216;\b&#8217;;</p>
<p>menuItem.enabled = <span>false</span>;</p>
<p>menuItem.addEventListener(Event.SELECT, eventHandler);</p>
<!-- Start Sociable --><div class="sociable"><div class="sociable_tagline"><a class='sociable_tagline' target='_blank' href='http://blogplay.com' style='font-size:11px;color:#333333;text-decoration:none'>Be Sociable, Share!</a></div><ul class='clearfix'><li><a title="Twitter" class="option1_16" style="background-position:-144px -16px" rel="nofollow" target="_blank" href="http://twitter.com/intent/tweet?text=NativeMenu%20and%20CMD-Backspace%20%23AS3%20-%20https%3A%2F%2Fieservices.de%2Fen%2F2010%2F06%2F03%2Fnativemenu-and-cmd-backspace-as3%2F%20(via%20@sociablesite)"></a></li><li><a title="Facebook" class="option1_16" style="background-position:-48px 0px" rel="nofollow" target="_blank" href="http://www.facebook.com/share.php?u=https%3A%2F%2Fieservices.de%2Fen%2F2010%2F06%2F03%2Fnativemenu-and-cmd-backspace-as3%2F&amp;t=NativeMenu%20and%20CMD-Backspace%20%23AS3"></a></li><li><a title="email" class="option1_16" style="background-position:-80px 0px" rel="nofollow" target="_blank" href="https://mail.google.com/mail/?view=cm&fs=1&to&su=NativeMenu%20and%20CMD-Backspace%20%23AS3&body=https%3A%2F%2Fieservices.de%2Fen%2F2010%2F06%2F03%2Fnativemenu-and-cmd-backspace-as3%2F&ui=2&tf=1&shva=1"></a></li><li><a class="option1_16" style="cursor:pointer;background-position:-64px 0px" rel="nofollow" title="Add to favorites - doesn't work in Chrome"  onClick="javascript:AddToFavorites();"></a></li><li><a title="StumbleUpon" class="option1_16" style="background-position:-112px -16px" rel="nofollow" target="_blank" href="http://www.stumbleupon.com/submit?url=https%3A%2F%2Fieservices.de%2Fen%2F2010%2F06%2F03%2Fnativemenu-and-cmd-backspace-as3%2F&title=NativeMenu%20and%20CMD-Backspace%20%23AS3"></a></li><li><a title="Delicious" class="option1_16" style="background-position:-16px 0px" rel="nofollow" target="_blank" href="http://delicious.com/post?url=https%3A%2F%2Fieservices.de%2Fen%2F2010%2F06%2F03%2Fnativemenu-and-cmd-backspace-as3%2F&amp;title=NativeMenu%20and%20CMD-Backspace%20%23AS3&amp;notes=If%20you%20are%20using%C2%A0var%20the%20NativeMenu%20on%20Mac%20and%20don%27t%20know%20how%20to%20assign%20the%20backspace%20key%2C%20then%20you%20are%20here%20completely%20right.%0D%0A%0D%0AThis%20is%20how%20it%20works%3A%0D%0A%0D%0AYou%20just%20to%20set%20keyEquivalent%20%3D%20%27%5Cb%27%20%C2%A0%28On%20German%20Keyboard%3A%20Alt%20Gr%20-%20Shift%20-%207%29%0D%0A%0D%0AExample%3A%0D%0A%0D"></a></li><li><a title="Google Reader" class="option1_16" style="background-position:-112px 0px" rel="nofollow" target="_blank" href="http://www.google.com/reader/link?url=https%3A%2F%2Fieservices.de%2Fen%2F2010%2F06%2F03%2Fnativemenu-and-cmd-backspace-as3%2F&amp;title=NativeMenu%20and%20CMD-Backspace%20%23AS3&amp;srcURL=https%3A%2F%2Fieservices.de%2Fen%2F2010%2F06%2F03%2Fnativemenu-and-cmd-backspace-as3%2F&amp;srcTitle=intelligent+e-Services+the+new+challenge+for+open+minded+people"></a></li><li><a title="LinkedIn" class="option1_16" style="background-position:-144px 0px" rel="nofollow" target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=https%3A%2F%2Fieservices.de%2Fen%2F2010%2F06%2F03%2Fnativemenu-and-cmd-backspace-as3%2F&amp;title=NativeMenu%20and%20CMD-Backspace%20%23AS3&amp;source=intelligent+e-Services+the+new+challenge+for+open+minded+people&amp;summary=If%20you%20are%20using%C2%A0var%20the%20NativeMenu%20on%20Mac%20and%20don%27t%20know%20how%20to%20assign%20the%20backspace%20key%2C%20then%20you%20are%20here%20completely%20right.%0D%0A%0D%0AThis%20is%20how%20it%20works%3A%0D%0A%0D%0AYou%20just%20to%20set%20keyEquivalent%20%3D%20%27%5Cb%27%20%C2%A0%28On%20German%20Keyboard%3A%20Alt%20Gr%20-%20Shift%20-%207%29%0D%0A%0D%0AExample%3A%0D%0A%0D"></a></li><li><a title="BlinkList" class="option1_16" style="background-position:0px 0px" rel="nofollow" target="_blank" href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=https%3A%2F%2Fieservices.de%2Fen%2F2010%2F06%2F03%2Fnativemenu-and-cmd-backspace-as3%2F&amp;Title=NativeMenu%20and%20CMD-Backspace%20%23AS3"></a></li><li><a style="cursor:pointer" rel="nofollow" onMouseOut="fixOnMouseOut(document.getElementById('sociable-post-575'), event, 'post-575')" onMouseOver="more(this,'post-575')"><img style='padding-top: 0;margin-top:-2px' src='https://ieservices.de/wp-content/plugins/sociable/images/more.png'></a></li></ul><div onMouseout="fixOnMouseOut(this,event,'post-575')" id="sociable-post-575" style="display:none;">   

    <div style="top: auto; left: auto; display: block;" id="sociable">



		<div class="popup">

			<div class="content">

				<ul><li style="heigth:16px;width:16px"><a title="Myspace" class="option1_16" style="background-position:0px -16px" rel="nofollow" target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=https%3A%2F%2Fieservices.de%2Fen%2F2010%2F06%2F03%2Fnativemenu-and-cmd-backspace-as3%2F&amp;t=NativeMenu%20and%20CMD-Backspace%20%23AS3"></a></li><li style="heigth:16px;width:16px"><a title="Digg" class="option1_16" style="background-position:-32px 0px" rel="nofollow" target="_blank" href="http://digg.com/submit?phase=2&amp;url=https%3A%2F%2Fieservices.de%2Fen%2F2010%2F06%2F03%2Fnativemenu-and-cmd-backspace-as3%2F&amp;title=NativeMenu%20and%20CMD-Backspace%20%23AS3&amp;bodytext=If%20you%20are%20using%C2%A0var%20the%20NativeMenu%20on%20Mac%20and%20don%27t%20know%20how%20to%20assign%20the%20backspace%20key%2C%20then%20you%20are%20here%20completely%20right.%0D%0A%0D%0AThis%20is%20how%20it%20works%3A%0D%0A%0D%0AYou%20just%20to%20set%20keyEquivalent%20%3D%20%27%5Cb%27%20%C2%A0%28On%20German%20Keyboard%3A%20Alt%20Gr%20-%20Shift%20-%207%29%0D%0A%0D%0AExample%3A%0D%0A%0D"></a></li><li style="heigth:16px;width:16px"><a title="Reddit" class="option1_16" style="background-position:-64px -16px" rel="nofollow" target="_blank" href="http://reddit.com/submit?url=https%3A%2F%2Fieservices.de%2Fen%2F2010%2F06%2F03%2Fnativemenu-and-cmd-backspace-as3%2F&amp;title=NativeMenu%20and%20CMD-Backspace%20%23AS3"></a></li><li style="heigth:16px;width:16px"><a title="Google Bookmarks" class="option1_16" style="background-position:-96px 0px" rel="nofollow" target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=https%3A%2F%2Fieservices.de%2Fen%2F2010%2F06%2F03%2Fnativemenu-and-cmd-backspace-as3%2F&amp;title=NativeMenu%20and%20CMD-Backspace%20%23AS3&amp;annotation=If%20you%20are%20using%C2%A0var%20the%20NativeMenu%20on%20Mac%20and%20don%27t%20know%20how%20to%20assign%20the%20backspace%20key%2C%20then%20you%20are%20here%20completely%20right.%0D%0A%0D%0AThis%20is%20how%20it%20works%3A%0D%0A%0D%0AYou%20just%20to%20set%20keyEquivalent%20%3D%20%27%5Cb%27%20%C2%A0%28On%20German%20Keyboard%3A%20Alt%20Gr%20-%20Shift%20-%207%29%0D%0A%0D%0AExample%3A%0D%0A%0D"></a></li><li style="heigth:16px;width:16px"><a title="HackerNews" class="option1_16" style="background-position:-128px 0px" rel="nofollow" target="_blank" href="http://news.ycombinator.com/submitlink?u=https%3A%2F%2Fieservices.de%2Fen%2F2010%2F06%2F03%2Fnativemenu-and-cmd-backspace-as3%2F&amp;t=NativeMenu%20and%20CMD-Backspace%20%23AS3"></a></li><li style="heigth:16px;width:16px"><a title="MSNReporter" class="option1_16" style="background-position:-176px 0px" rel="nofollow" target="_blank" href="http://reporter.es.msn.com/?fn=contribute&amp;Title=NativeMenu%20and%20CMD-Backspace%20%23AS3&amp;URL=https%3A%2F%2Fieservices.de%2Fen%2F2010%2F06%2F03%2Fnativemenu-and-cmd-backspace-as3%2F&amp;cat_id=6&amp;tag_id=31&amp;Remark=If%20you%20are%20using%C2%A0var%20the%20NativeMenu%20on%20Mac%20and%20don%27t%20know%20how%20to%20assign%20the%20backspace%20key%2C%20then%20you%20are%20here%20completely%20right.%0D%0A%0D%0AThis%20is%20how%20it%20works%3A%0D%0A%0D%0AYou%20just%20to%20set%20keyEquivalent%20%3D%20%27%5Cb%27%20%C2%A0%28On%20German%20Keyboard%3A%20Alt%20Gr%20-%20Shift%20-%207%29%0D%0A%0D%0AExample%3A%0D%0A%0D"></a></li><li style="heigth:16px;width:16px"><a title="Sphinn" class="option1_16" style="background-position:-96px -16px" rel="nofollow" target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=https%3A%2F%2Fieservices.de%2Fen%2F2010%2F06%2F03%2Fnativemenu-and-cmd-backspace-as3%2F"></a></li><li style="heigth:16px;width:16px"><a title="Posterous" class="option1_16" style="background-position:-32px -16px" rel="nofollow" target="_blank" href="http://posterous.com/share?linkto=https%3A%2F%2Fieservices.de%2Fen%2F2010%2F06%2F03%2Fnativemenu-and-cmd-backspace-as3%2F&amp;title=NativeMenu%20and%20CMD-Backspace%20%23AS3&amp;selection=If%20you%20are%20using%C2%A0var%20the%20NativeMenu%20on%20Mac%20and%20don%27t%20know%20how%20to%20assign%20the%20backspace%20key%2C%20then%20you%20are%20here%20completely%20right.%0D%0A%0D%0AThis%20is%20how%20it%20works%3A%0D%0A%0D%0AYou%20just%20to%20set%20keyEquivalent%20%3D%20%27%5Cb%27%20%C2%A0%28On%20German%20Keyboard%3A%20Alt%20Gr%20-%20Shift%20-%207%29%0D%0A%0D%0AExample%3A%0D%0A%0D"></a></li><li style="heigth:16px;width:16px"><a title="Tumblr" class="option1_16" style="background-position:-128px -16px" rel="nofollow" target="_blank" href="http://www.tumblr.com/share?v=3&amp;u=https%3A%2F%2Fieservices.de%2Fen%2F2010%2F06%2F03%2Fnativemenu-and-cmd-backspace-as3%2F&amp;t=NativeMenu%20and%20CMD-Backspace%20%23AS3&amp;s=If%20you%20are%20using%C2%A0var%20the%20NativeMenu%20on%20Mac%20and%20don%27t%20know%20how%20to%20assign%20the%20backspace%20key%2C%20then%20you%20are%20here%20completely%20right.%0D%0A%0D%0AThis%20is%20how%20it%20works%3A%0D%0A%0D%0AYou%20just%20to%20set%20keyEquivalent%20%3D%20%27%5Cb%27%20%C2%A0%28On%20German%20Keyboard%3A%20Alt%20Gr%20-%20Shift%20-%207%29%0D%0A%0D%0AExample%3A%0D%0A%0D"></a></li></ul>			

			</div>        

		  <a style="cursor:pointer" onclick="hide_sociable('post-575',true)" class="close">



		  <img onclick="hide_sociable('post-575',true)" title="close" src="https://ieservices.de/wp-content/plugins/sociable/images/closelabel.png">

		  </a>

		</div>

	</div> 

  </div></div><div class='sociable' style='float:none'><ul class='clearfix'><li id="Twitter_Counter"><a href="https://twitter.com/share" data-text="NativeMenu and CMD-Backspace #AS3 - https://ieservices.de/en/2010/06/03/nativemenu-and-cmd-backspace-as3/ (via #sociablesite)" data-url="https://ieservices.de/en/2010/06/03/nativemenu-and-cmd-backspace-as3/" class="twitter-share-button" data-count="horizontal">Tweet</a><script type="text/javascript" src="//platform.twitter.com/widgets.js"></script></li><li id="Facebook_Counter"><iframe src="//www.facebook.com/plugins/like.php?href=https://ieservices.de/en/2010/06/03/nativemenu-and-cmd-backspace-as3/&send=false&layout=button_count&show_faces=false&action=like&colorscheme=light&font" scrolling="no" frameborder="0" style="border:none; overflow:hidden;height:32px;width:100px" allowTransparency="true"></iframe></li><li id="Google_+"><!-- Google+1 button removed: no consent (GDPR Fix 4) --></li><li id="LinkedIn_Counter"><script src="http://platform.linkedin.com/in.js" type="text/javascript"></script><script type="IN/Share" data-url="https://ieservices.de/en/2010/06/03/nativemenu-and-cmd-backspace-as3/" data-counter="right"></script></li><li id="StumbleUpon_Counter"><script src="http://www.stumbleupon.com/hostedbadge.php?s=2&r=https://ieservices.de/en/2010/06/03/nativemenu-and-cmd-backspace-as3/"></script></li></ul></div><!-- End Sociable --><p>The post <a rel="nofollow" href="https://ieservices.de/en/2010/06/03/nativemenu-and-cmd-backspace-as3/">NativeMenu and CMD-Backspace #AS3</a> appeared first on <a rel="nofollow" href="https://ieservices.de/en/">intelligent e-Services</a>.</p>
]]></content:encoded>
			<wfw:commentRss>https://ieservices.de/en/2010/06/03/nativemenu-and-cmd-backspace-as3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Firefox Plugin: SqliteManager as Standalone app!</title>
		<link>https://ieservices.de/en/2010/06/02/firefox-plugin-sqlitemanager-as-winmaclinux-app/</link>
		<comments>https://ieservices.de/en/2010/06/02/firefox-plugin-sqlitemanager-as-winmaclinux-app/#comments</comments>
		<pubDate>Wed, 02 Jun 2010 16:48:26 +0000</pubDate>
		<dc:creator>martin</dc:creator>
				<category><![CDATA[Common]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Firefox addon]]></category>
		<category><![CDATA[SQLite]]></category>
		<category><![CDATA[SQLiteManager]]></category>
		<category><![CDATA[Standalone]]></category>
		<category><![CDATA[XULRunner]]></category>

		<guid isPermaLink="false">http://ieservices.de/?p=565</guid>
		<description><![CDATA[<p>Do you also like Firefox and it&#8217;s powerful addons? Are you also working with the powerful SQLiteManager (by Tarakant Tripathy, Mrinal Kant) addons? But sometimes [...]</p>
<p>The post <a rel="nofollow" href="https://ieservices.de/en/2010/06/02/firefox-plugin-sqlitemanager-as-winmaclinux-app/">Firefox Plugin: SqliteManager as Standalone app!</a> appeared first on <a rel="nofollow" href="https://ieservices.de/en/">intelligent e-Services</a>.</p>
]]></description>
				<content:encoded><![CDATA[<p>Do you also like Firefox and it&#8217;s powerful addons?</p>
<p>Are you also working with the powerful SQLiteManager (by Tarakant Tripathy, Mrinal Kant) addons?</p>
<p>But sometimes your Firefox is crashing &#8211; or you have just too many tabs &#8211; or it just takes forever to open up that thing?</p>
<p>So, before about half a year I figured out how you can run this plugin without the Firefox at all!</p>
<p>Like a real application!</p>
<p>How it works?</p>
<ol>
<li>You need the <a title="XULRunner" href="https://developer.mozilla.org/en/xulrunner">XULRunner</a> (an environment which can bootstrap XUL+XPCOM applications)</li>
<li>You need the searched plugin as XULRunner application (<a title="SQLiteManager" href="http://code.google.com/p/sqlite-manager/downloads/list?can=1&amp;q=&amp;colspec=Filename+Summary+Uploaded+Size+DownloadCount">SQLiteManager</a>)</li>
</ol>
<p><img class="alignnone" title="Mozilla addon SQLiteManager" src="https://addons.mozilla.org/img/uploads/previews/full/17/17038.png?modified=1193684094" alt="" width="567" height="426" /></p>
<p>So check out:</p>
<p><a title="http://code.google.com/p/sqlite-manager/wiki/XulrunnerApplication" href="http://code.google.com/p/sqlite-manager/wiki/XulrunnerApplication">http://code.google.com/p/sqlite-manager/wiki/XulrunnerApplication</a></p>
<!-- Start Sociable --><div class="sociable"><div class="sociable_tagline"><a class='sociable_tagline' target='_blank' href='http://blogplay.com' style='font-size:11px;color:#333333;text-decoration:none'>Be Sociable, Share!</a></div><ul class='clearfix'><li><a title="Twitter" class="option1_16" style="background-position:-144px -16px" rel="nofollow" target="_blank" href="http://twitter.com/intent/tweet?text=Firefox%20Plugin%3A%20SqliteManager%20as%20Standalone%20app%21%20-%20https%3A%2F%2Fieservices.de%2Fen%2F2010%2F06%2F02%2Ffirefox-plugin-sqlitemanager-as-winmaclinux-app%2F%20(via%20@sociablesite)"></a></li><li><a title="Facebook" class="option1_16" style="background-position:-48px 0px" rel="nofollow" target="_blank" href="http://www.facebook.com/share.php?u=https%3A%2F%2Fieservices.de%2Fen%2F2010%2F06%2F02%2Ffirefox-plugin-sqlitemanager-as-winmaclinux-app%2F&amp;t=Firefox%20Plugin%3A%20SqliteManager%20as%20Standalone%20app%21"></a></li><li><a title="email" class="option1_16" style="background-position:-80px 0px" rel="nofollow" target="_blank" href="https://mail.google.com/mail/?view=cm&fs=1&to&su=Firefox%20Plugin%3A%20SqliteManager%20as%20Standalone%20app%21&body=https%3A%2F%2Fieservices.de%2Fen%2F2010%2F06%2F02%2Ffirefox-plugin-sqlitemanager-as-winmaclinux-app%2F&ui=2&tf=1&shva=1"></a></li><li><a class="option1_16" style="cursor:pointer;background-position:-64px 0px" rel="nofollow" title="Add to favorites - doesn't work in Chrome"  onClick="javascript:AddToFavorites();"></a></li><li><a title="StumbleUpon" class="option1_16" style="background-position:-112px -16px" rel="nofollow" target="_blank" href="http://www.stumbleupon.com/submit?url=https%3A%2F%2Fieservices.de%2Fen%2F2010%2F06%2F02%2Ffirefox-plugin-sqlitemanager-as-winmaclinux-app%2F&title=Firefox%20Plugin%3A%20SqliteManager%20as%20Standalone%20app%21"></a></li><li><a title="Delicious" class="option1_16" style="background-position:-16px 0px" rel="nofollow" target="_blank" href="http://delicious.com/post?url=https%3A%2F%2Fieservices.de%2Fen%2F2010%2F06%2F02%2Ffirefox-plugin-sqlitemanager-as-winmaclinux-app%2F&amp;title=Firefox%20Plugin%3A%20SqliteManager%20as%20Standalone%20app%21&amp;notes=Do%20you%20also%20like%20Firefox%20and%20it%27s%20powerful%20addons%3F%0D%0A%0D%0AAre%20you%20also%20working%20with%20the%20powerful%20SQLiteManager%20%28by%20Tarakant%20Tripathy%2C%20Mrinal%20Kant%29%C2%A0addons%3F%0D%0A%0D%0ABut%20sometimes%20your%20Firefox%20is%20crashing%20-%20or%20you%20have%20just%20too%20many%20tabs%20-%20or%20it%20just%20takes%20fore"></a></li><li><a title="Google Reader" class="option1_16" style="background-position:-112px 0px" rel="nofollow" target="_blank" href="http://www.google.com/reader/link?url=https%3A%2F%2Fieservices.de%2Fen%2F2010%2F06%2F02%2Ffirefox-plugin-sqlitemanager-as-winmaclinux-app%2F&amp;title=Firefox%20Plugin%3A%20SqliteManager%20as%20Standalone%20app%21&amp;srcURL=https%3A%2F%2Fieservices.de%2Fen%2F2010%2F06%2F02%2Ffirefox-plugin-sqlitemanager-as-winmaclinux-app%2F&amp;srcTitle=intelligent+e-Services+the+new+challenge+for+open+minded+people"></a></li><li><a title="LinkedIn" class="option1_16" style="background-position:-144px 0px" rel="nofollow" target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=https%3A%2F%2Fieservices.de%2Fen%2F2010%2F06%2F02%2Ffirefox-plugin-sqlitemanager-as-winmaclinux-app%2F&amp;title=Firefox%20Plugin%3A%20SqliteManager%20as%20Standalone%20app%21&amp;source=intelligent+e-Services+the+new+challenge+for+open+minded+people&amp;summary=Do%20you%20also%20like%20Firefox%20and%20it%27s%20powerful%20addons%3F%0D%0A%0D%0AAre%20you%20also%20working%20with%20the%20powerful%20SQLiteManager%20%28by%20Tarakant%20Tripathy%2C%20Mrinal%20Kant%29%C2%A0addons%3F%0D%0A%0D%0ABut%20sometimes%20your%20Firefox%20is%20crashing%20-%20or%20you%20have%20just%20too%20many%20tabs%20-%20or%20it%20just%20takes%20fore"></a></li><li><a title="BlinkList" class="option1_16" style="background-position:0px 0px" rel="nofollow" target="_blank" href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=https%3A%2F%2Fieservices.de%2Fen%2F2010%2F06%2F02%2Ffirefox-plugin-sqlitemanager-as-winmaclinux-app%2F&amp;Title=Firefox%20Plugin%3A%20SqliteManager%20as%20Standalone%20app%21"></a></li><li><a style="cursor:pointer" rel="nofollow" onMouseOut="fixOnMouseOut(document.getElementById('sociable-post-565'), event, 'post-565')" onMouseOver="more(this,'post-565')"><img style='padding-top: 0;margin-top:-2px' src='https://ieservices.de/wp-content/plugins/sociable/images/more.png'></a></li></ul><div onMouseout="fixOnMouseOut(this,event,'post-565')" id="sociable-post-565" style="display:none;">   

    <div style="top: auto; left: auto; display: block;" id="sociable">



		<div class="popup">

			<div class="content">

				<ul><li style="heigth:16px;width:16px"><a title="Myspace" class="option1_16" style="background-position:0px -16px" rel="nofollow" target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=https%3A%2F%2Fieservices.de%2Fen%2F2010%2F06%2F02%2Ffirefox-plugin-sqlitemanager-as-winmaclinux-app%2F&amp;t=Firefox%20Plugin%3A%20SqliteManager%20as%20Standalone%20app%21"></a></li><li style="heigth:16px;width:16px"><a title="Digg" class="option1_16" style="background-position:-32px 0px" rel="nofollow" target="_blank" href="http://digg.com/submit?phase=2&amp;url=https%3A%2F%2Fieservices.de%2Fen%2F2010%2F06%2F02%2Ffirefox-plugin-sqlitemanager-as-winmaclinux-app%2F&amp;title=Firefox%20Plugin%3A%20SqliteManager%20as%20Standalone%20app%21&amp;bodytext=Do%20you%20also%20like%20Firefox%20and%20it%27s%20powerful%20addons%3F%0D%0A%0D%0AAre%20you%20also%20working%20with%20the%20powerful%20SQLiteManager%20%28by%20Tarakant%20Tripathy%2C%20Mrinal%20Kant%29%C2%A0addons%3F%0D%0A%0D%0ABut%20sometimes%20your%20Firefox%20is%20crashing%20-%20or%20you%20have%20just%20too%20many%20tabs%20-%20or%20it%20just%20takes%20fore"></a></li><li style="heigth:16px;width:16px"><a title="Reddit" class="option1_16" style="background-position:-64px -16px" rel="nofollow" target="_blank" href="http://reddit.com/submit?url=https%3A%2F%2Fieservices.de%2Fen%2F2010%2F06%2F02%2Ffirefox-plugin-sqlitemanager-as-winmaclinux-app%2F&amp;title=Firefox%20Plugin%3A%20SqliteManager%20as%20Standalone%20app%21"></a></li><li style="heigth:16px;width:16px"><a title="Google Bookmarks" class="option1_16" style="background-position:-96px 0px" rel="nofollow" target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=https%3A%2F%2Fieservices.de%2Fen%2F2010%2F06%2F02%2Ffirefox-plugin-sqlitemanager-as-winmaclinux-app%2F&amp;title=Firefox%20Plugin%3A%20SqliteManager%20as%20Standalone%20app%21&amp;annotation=Do%20you%20also%20like%20Firefox%20and%20it%27s%20powerful%20addons%3F%0D%0A%0D%0AAre%20you%20also%20working%20with%20the%20powerful%20SQLiteManager%20%28by%20Tarakant%20Tripathy%2C%20Mrinal%20Kant%29%C2%A0addons%3F%0D%0A%0D%0ABut%20sometimes%20your%20Firefox%20is%20crashing%20-%20or%20you%20have%20just%20too%20many%20tabs%20-%20or%20it%20just%20takes%20fore"></a></li><li style="heigth:16px;width:16px"><a title="HackerNews" class="option1_16" style="background-position:-128px 0px" rel="nofollow" target="_blank" href="http://news.ycombinator.com/submitlink?u=https%3A%2F%2Fieservices.de%2Fen%2F2010%2F06%2F02%2Ffirefox-plugin-sqlitemanager-as-winmaclinux-app%2F&amp;t=Firefox%20Plugin%3A%20SqliteManager%20as%20Standalone%20app%21"></a></li><li style="heigth:16px;width:16px"><a title="MSNReporter" class="option1_16" style="background-position:-176px 0px" rel="nofollow" target="_blank" href="http://reporter.es.msn.com/?fn=contribute&amp;Title=Firefox%20Plugin%3A%20SqliteManager%20as%20Standalone%20app%21&amp;URL=https%3A%2F%2Fieservices.de%2Fen%2F2010%2F06%2F02%2Ffirefox-plugin-sqlitemanager-as-winmaclinux-app%2F&amp;cat_id=6&amp;tag_id=31&amp;Remark=Do%20you%20also%20like%20Firefox%20and%20it%27s%20powerful%20addons%3F%0D%0A%0D%0AAre%20you%20also%20working%20with%20the%20powerful%20SQLiteManager%20%28by%20Tarakant%20Tripathy%2C%20Mrinal%20Kant%29%C2%A0addons%3F%0D%0A%0D%0ABut%20sometimes%20your%20Firefox%20is%20crashing%20-%20or%20you%20have%20just%20too%20many%20tabs%20-%20or%20it%20just%20takes%20fore"></a></li><li style="heigth:16px;width:16px"><a title="Sphinn" class="option1_16" style="background-position:-96px -16px" rel="nofollow" target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=https%3A%2F%2Fieservices.de%2Fen%2F2010%2F06%2F02%2Ffirefox-plugin-sqlitemanager-as-winmaclinux-app%2F"></a></li><li style="heigth:16px;width:16px"><a title="Posterous" class="option1_16" style="background-position:-32px -16px" rel="nofollow" target="_blank" href="http://posterous.com/share?linkto=https%3A%2F%2Fieservices.de%2Fen%2F2010%2F06%2F02%2Ffirefox-plugin-sqlitemanager-as-winmaclinux-app%2F&amp;title=Firefox%20Plugin%3A%20SqliteManager%20as%20Standalone%20app%21&amp;selection=Do%20you%20also%20like%20Firefox%20and%20it%27s%20powerful%20addons%3F%0D%0A%0D%0AAre%20you%20also%20working%20with%20the%20powerful%20SQLiteManager%20%28by%20Tarakant%20Tripathy%2C%20Mrinal%20Kant%29%C2%A0addons%3F%0D%0A%0D%0ABut%20sometimes%20your%20Firefox%20is%20crashing%20-%20or%20you%20have%20just%20too%20many%20tabs%20-%20or%20it%20just%20takes%20fore"></a></li><li style="heigth:16px;width:16px"><a title="Tumblr" class="option1_16" style="background-position:-128px -16px" rel="nofollow" target="_blank" href="http://www.tumblr.com/share?v=3&amp;u=https%3A%2F%2Fieservices.de%2Fen%2F2010%2F06%2F02%2Ffirefox-plugin-sqlitemanager-as-winmaclinux-app%2F&amp;t=Firefox%20Plugin%3A%20SqliteManager%20as%20Standalone%20app%21&amp;s=Do%20you%20also%20like%20Firefox%20and%20it%27s%20powerful%20addons%3F%0D%0A%0D%0AAre%20you%20also%20working%20with%20the%20powerful%20SQLiteManager%20%28by%20Tarakant%20Tripathy%2C%20Mrinal%20Kant%29%C2%A0addons%3F%0D%0A%0D%0ABut%20sometimes%20your%20Firefox%20is%20crashing%20-%20or%20you%20have%20just%20too%20many%20tabs%20-%20or%20it%20just%20takes%20fore"></a></li></ul>			

			</div>        

		  <a style="cursor:pointer" onclick="hide_sociable('post-565',true)" class="close">



		  <img onclick="hide_sociable('post-565',true)" title="close" src="https://ieservices.de/wp-content/plugins/sociable/images/closelabel.png">

		  </a>

		</div>

	</div> 

  </div></div><div class='sociable' style='float:none'><ul class='clearfix'><li id="Twitter_Counter"><a href="https://twitter.com/share" data-text="Firefox Plugin: SqliteManager as Standalone app! - https://ieservices.de/en/2010/06/02/firefox-plugin-sqlitemanager-as-winmaclinux-app/ (via #sociablesite)" data-url="https://ieservices.de/en/2010/06/02/firefox-plugin-sqlitemanager-as-winmaclinux-app/" class="twitter-share-button" data-count="horizontal">Tweet</a><script type="text/javascript" src="//platform.twitter.com/widgets.js"></script></li><li id="Facebook_Counter"><iframe src="//www.facebook.com/plugins/like.php?href=https://ieservices.de/en/2010/06/02/firefox-plugin-sqlitemanager-as-winmaclinux-app/&send=false&layout=button_count&show_faces=false&action=like&colorscheme=light&font" scrolling="no" frameborder="0" style="border:none; overflow:hidden;height:32px;width:100px" allowTransparency="true"></iframe></li><li id="Google_+"><!-- Google+1 button removed: no consent (GDPR Fix 4) --></li><li id="LinkedIn_Counter"><script src="http://platform.linkedin.com/in.js" type="text/javascript"></script><script type="IN/Share" data-url="https://ieservices.de/en/2010/06/02/firefox-plugin-sqlitemanager-as-winmaclinux-app/" data-counter="right"></script></li><li id="StumbleUpon_Counter"><script src="http://www.stumbleupon.com/hostedbadge.php?s=2&r=https://ieservices.de/en/2010/06/02/firefox-plugin-sqlitemanager-as-winmaclinux-app/"></script></li></ul></div><!-- End Sociable --><p>The post <a rel="nofollow" href="https://ieservices.de/en/2010/06/02/firefox-plugin-sqlitemanager-as-winmaclinux-app/">Firefox Plugin: SqliteManager as Standalone app!</a> appeared first on <a rel="nofollow" href="https://ieservices.de/en/">intelligent e-Services</a>.</p>
]]></content:encoded>
			<wfw:commentRss>https://ieservices.de/en/2010/06/02/firefox-plugin-sqlitemanager-as-winmaclinux-app/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>The Stand-sit-dynamic effect saves money</title>
		<link>https://ieservices.de/en/2010/05/29/the-stand-sit-dynamic-effect-saves-money/</link>
		<comments>https://ieservices.de/en/2010/05/29/the-stand-sit-dynamic-effect-saves-money/#comments</comments>
		<pubDate>Sat, 29 May 2010 18:28:51 +0000</pubDate>
		<dc:creator>martin</dc:creator>
				<category><![CDATA[Common]]></category>

		<guid isPermaLink="false">http://ieservices.de/?p=558</guid>
		<description><![CDATA[<p>17 employees participate in a survey over five year to work additionally with a high desk to increase the time of standing during the [...]</p>
<p>The post <a rel="nofollow" href="https://ieservices.de/en/2010/05/29/the-stand-sit-dynamic-effect-saves-money/">The Stand-sit-dynamic effect saves money</a> appeared first on <a rel="nofollow" href="https://ieservices.de/en/">intelligent e-Services</a>.</p>
]]></description>
				<content:encoded><![CDATA[<p class="bodytext"><span onmouseover="_tipon(this)" onmouseout="_tipoff()">17 employees participate in a survey over five year to work additionally with a high desk to increase the time of standing during the  work and also to decrease the time of sitting, as the bad habit while writing. Through that period the<span onmouseover="_tipon(this)" onmouseout="_tipoff()"> health status and health behavior was observed.</span> </span></p>
<p class="bodytext"><span onmouseover="_tipon(this)" onmouseout="_tipoff()"><span onmouseover="_tipon(this)" onmouseout="_tipoff()">The question on this study was:</span></span></p>
<ul>
<li><span onmouseover="_tipon(this)" onmouseout="_tipoff()">whether the stand-sit-dynamics is lived permanently</span></li>
<li><span onmouseover="_tipon(this)" onmouseout="_tipoff()">if the  satisfaction and welfare of employees will improve</span></li>
</ul>
<p><a href="http://www.officeplus.de/typo3temp/pics/8b293e2f05.jpg"><img src="http://www.officeplus.de/uploads/pics/langzeitstudie_3.jpg" alt="langzeitstudie_3.jpg" width="540" height="371" /></a></p>
<p>The result was:</p>
<ul>
<li>up to 60% of those polled where satisfied to work on a standing desk</li>
<li>3% increased their productivity on a high level</li>
<li>the overall job satisfaction got over 60%, for about 5% and substantiall</li>
</ul>
<p>(Source: http://translate.google.de/translate?js=y&amp;prev=_t&amp;hl=de&amp;ie=UTF-8&amp;layout=1&amp;eotf=1&amp;u=http%3A%2F%2Fwww.officeplus.de%2Fergonomiewissen%2Flangzeitstudie%2F&amp;sl=de&amp;tl=en)</p>
<!-- Start Sociable --><div class="sociable"><div class="sociable_tagline"><a class='sociable_tagline' target='_blank' href='http://blogplay.com' style='font-size:11px;color:#333333;text-decoration:none'>Be Sociable, Share!</a></div><ul class='clearfix'><li><a title="Twitter" class="option1_16" style="background-position:-144px -16px" rel="nofollow" target="_blank" href="http://twitter.com/intent/tweet?text=The%20Stand-sit-dynamic%20effect%20saves%20money%20-%20https%3A%2F%2Fieservices.de%2Fen%2F2010%2F05%2F29%2Fthe-stand-sit-dynamic-effect-saves-money%2F%20(via%20@sociablesite)"></a></li><li><a title="Facebook" class="option1_16" style="background-position:-48px 0px" rel="nofollow" target="_blank" href="http://www.facebook.com/share.php?u=https%3A%2F%2Fieservices.de%2Fen%2F2010%2F05%2F29%2Fthe-stand-sit-dynamic-effect-saves-money%2F&amp;t=The%20Stand-sit-dynamic%20effect%20saves%20money"></a></li><li><a title="email" class="option1_16" style="background-position:-80px 0px" rel="nofollow" target="_blank" href="https://mail.google.com/mail/?view=cm&fs=1&to&su=The%20Stand-sit-dynamic%20effect%20saves%20money&body=https%3A%2F%2Fieservices.de%2Fen%2F2010%2F05%2F29%2Fthe-stand-sit-dynamic-effect-saves-money%2F&ui=2&tf=1&shva=1"></a></li><li><a class="option1_16" style="cursor:pointer;background-position:-64px 0px" rel="nofollow" title="Add to favorites - doesn't work in Chrome"  onClick="javascript:AddToFavorites();"></a></li><li><a title="StumbleUpon" class="option1_16" style="background-position:-112px -16px" rel="nofollow" target="_blank" href="http://www.stumbleupon.com/submit?url=https%3A%2F%2Fieservices.de%2Fen%2F2010%2F05%2F29%2Fthe-stand-sit-dynamic-effect-saves-money%2F&title=The%20Stand-sit-dynamic%20effect%20saves%20money"></a></li><li><a title="Delicious" class="option1_16" style="background-position:-16px 0px" rel="nofollow" target="_blank" href="http://delicious.com/post?url=https%3A%2F%2Fieservices.de%2Fen%2F2010%2F05%2F29%2Fthe-stand-sit-dynamic-effect-saves-money%2F&amp;title=The%20Stand-sit-dynamic%20effect%20saves%20money&amp;notes=17%20employees%20participate%20in%20a%20survey%20over%20five%20year%20to%20work%20additionally%20with%20a%20high%20desk%20to%20increase%20the%20time%20of%20standing%20during%20the%20%C2%A0work%20and%20also%20to%20decrease%20the%20time%20of%20sitting%2C%20as%20the%20bad%20habit%20while%20writing.%20Through%20that%20period%20the%20health%20stat"></a></li><li><a title="Google Reader" class="option1_16" style="background-position:-112px 0px" rel="nofollow" target="_blank" href="http://www.google.com/reader/link?url=https%3A%2F%2Fieservices.de%2Fen%2F2010%2F05%2F29%2Fthe-stand-sit-dynamic-effect-saves-money%2F&amp;title=The%20Stand-sit-dynamic%20effect%20saves%20money&amp;srcURL=https%3A%2F%2Fieservices.de%2Fen%2F2010%2F05%2F29%2Fthe-stand-sit-dynamic-effect-saves-money%2F&amp;srcTitle=intelligent+e-Services+the+new+challenge+for+open+minded+people"></a></li><li><a title="LinkedIn" class="option1_16" style="background-position:-144px 0px" rel="nofollow" target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=https%3A%2F%2Fieservices.de%2Fen%2F2010%2F05%2F29%2Fthe-stand-sit-dynamic-effect-saves-money%2F&amp;title=The%20Stand-sit-dynamic%20effect%20saves%20money&amp;source=intelligent+e-Services+the+new+challenge+for+open+minded+people&amp;summary=17%20employees%20participate%20in%20a%20survey%20over%20five%20year%20to%20work%20additionally%20with%20a%20high%20desk%20to%20increase%20the%20time%20of%20standing%20during%20the%20%C2%A0work%20and%20also%20to%20decrease%20the%20time%20of%20sitting%2C%20as%20the%20bad%20habit%20while%20writing.%20Through%20that%20period%20the%20health%20stat"></a></li><li><a title="BlinkList" class="option1_16" style="background-position:0px 0px" rel="nofollow" target="_blank" href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=https%3A%2F%2Fieservices.de%2Fen%2F2010%2F05%2F29%2Fthe-stand-sit-dynamic-effect-saves-money%2F&amp;Title=The%20Stand-sit-dynamic%20effect%20saves%20money"></a></li><li><a style="cursor:pointer" rel="nofollow" onMouseOut="fixOnMouseOut(document.getElementById('sociable-post-558'), event, 'post-558')" onMouseOver="more(this,'post-558')"><img style='padding-top: 0;margin-top:-2px' src='https://ieservices.de/wp-content/plugins/sociable/images/more.png'></a></li></ul><div onMouseout="fixOnMouseOut(this,event,'post-558')" id="sociable-post-558" style="display:none;">   

    <div style="top: auto; left: auto; display: block;" id="sociable">



		<div class="popup">

			<div class="content">

				<ul><li style="heigth:16px;width:16px"><a title="Myspace" class="option1_16" style="background-position:0px -16px" rel="nofollow" target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=https%3A%2F%2Fieservices.de%2Fen%2F2010%2F05%2F29%2Fthe-stand-sit-dynamic-effect-saves-money%2F&amp;t=The%20Stand-sit-dynamic%20effect%20saves%20money"></a></li><li style="heigth:16px;width:16px"><a title="Digg" class="option1_16" style="background-position:-32px 0px" rel="nofollow" target="_blank" href="http://digg.com/submit?phase=2&amp;url=https%3A%2F%2Fieservices.de%2Fen%2F2010%2F05%2F29%2Fthe-stand-sit-dynamic-effect-saves-money%2F&amp;title=The%20Stand-sit-dynamic%20effect%20saves%20money&amp;bodytext=17%20employees%20participate%20in%20a%20survey%20over%20five%20year%20to%20work%20additionally%20with%20a%20high%20desk%20to%20increase%20the%20time%20of%20standing%20during%20the%20%C2%A0work%20and%20also%20to%20decrease%20the%20time%20of%20sitting%2C%20as%20the%20bad%20habit%20while%20writing.%20Through%20that%20period%20the%20health%20stat"></a></li><li style="heigth:16px;width:16px"><a title="Reddit" class="option1_16" style="background-position:-64px -16px" rel="nofollow" target="_blank" href="http://reddit.com/submit?url=https%3A%2F%2Fieservices.de%2Fen%2F2010%2F05%2F29%2Fthe-stand-sit-dynamic-effect-saves-money%2F&amp;title=The%20Stand-sit-dynamic%20effect%20saves%20money"></a></li><li style="heigth:16px;width:16px"><a title="Google Bookmarks" class="option1_16" style="background-position:-96px 0px" rel="nofollow" target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=https%3A%2F%2Fieservices.de%2Fen%2F2010%2F05%2F29%2Fthe-stand-sit-dynamic-effect-saves-money%2F&amp;title=The%20Stand-sit-dynamic%20effect%20saves%20money&amp;annotation=17%20employees%20participate%20in%20a%20survey%20over%20five%20year%20to%20work%20additionally%20with%20a%20high%20desk%20to%20increase%20the%20time%20of%20standing%20during%20the%20%C2%A0work%20and%20also%20to%20decrease%20the%20time%20of%20sitting%2C%20as%20the%20bad%20habit%20while%20writing.%20Through%20that%20period%20the%20health%20stat"></a></li><li style="heigth:16px;width:16px"><a title="HackerNews" class="option1_16" style="background-position:-128px 0px" rel="nofollow" target="_blank" href="http://news.ycombinator.com/submitlink?u=https%3A%2F%2Fieservices.de%2Fen%2F2010%2F05%2F29%2Fthe-stand-sit-dynamic-effect-saves-money%2F&amp;t=The%20Stand-sit-dynamic%20effect%20saves%20money"></a></li><li style="heigth:16px;width:16px"><a title="MSNReporter" class="option1_16" style="background-position:-176px 0px" rel="nofollow" target="_blank" href="http://reporter.es.msn.com/?fn=contribute&amp;Title=The%20Stand-sit-dynamic%20effect%20saves%20money&amp;URL=https%3A%2F%2Fieservices.de%2Fen%2F2010%2F05%2F29%2Fthe-stand-sit-dynamic-effect-saves-money%2F&amp;cat_id=6&amp;tag_id=31&amp;Remark=17%20employees%20participate%20in%20a%20survey%20over%20five%20year%20to%20work%20additionally%20with%20a%20high%20desk%20to%20increase%20the%20time%20of%20standing%20during%20the%20%C2%A0work%20and%20also%20to%20decrease%20the%20time%20of%20sitting%2C%20as%20the%20bad%20habit%20while%20writing.%20Through%20that%20period%20the%20health%20stat"></a></li><li style="heigth:16px;width:16px"><a title="Sphinn" class="option1_16" style="background-position:-96px -16px" rel="nofollow" target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=https%3A%2F%2Fieservices.de%2Fen%2F2010%2F05%2F29%2Fthe-stand-sit-dynamic-effect-saves-money%2F"></a></li><li style="heigth:16px;width:16px"><a title="Posterous" class="option1_16" style="background-position:-32px -16px" rel="nofollow" target="_blank" href="http://posterous.com/share?linkto=https%3A%2F%2Fieservices.de%2Fen%2F2010%2F05%2F29%2Fthe-stand-sit-dynamic-effect-saves-money%2F&amp;title=The%20Stand-sit-dynamic%20effect%20saves%20money&amp;selection=17%20employees%20participate%20in%20a%20survey%20over%20five%20year%20to%20work%20additionally%20with%20a%20high%20desk%20to%20increase%20the%20time%20of%20standing%20during%20the%20%C2%A0work%20and%20also%20to%20decrease%20the%20time%20of%20sitting%2C%20as%20the%20bad%20habit%20while%20writing.%20Through%20that%20period%20the%20health%20stat"></a></li><li style="heigth:16px;width:16px"><a title="Tumblr" class="option1_16" style="background-position:-128px -16px" rel="nofollow" target="_blank" href="http://www.tumblr.com/share?v=3&amp;u=https%3A%2F%2Fieservices.de%2Fen%2F2010%2F05%2F29%2Fthe-stand-sit-dynamic-effect-saves-money%2F&amp;t=The%20Stand-sit-dynamic%20effect%20saves%20money&amp;s=17%20employees%20participate%20in%20a%20survey%20over%20five%20year%20to%20work%20additionally%20with%20a%20high%20desk%20to%20increase%20the%20time%20of%20standing%20during%20the%20%C2%A0work%20and%20also%20to%20decrease%20the%20time%20of%20sitting%2C%20as%20the%20bad%20habit%20while%20writing.%20Through%20that%20period%20the%20health%20stat"></a></li></ul>			

			</div>        

		  <a style="cursor:pointer" onclick="hide_sociable('post-558',true)" class="close">



		  <img onclick="hide_sociable('post-558',true)" title="close" src="https://ieservices.de/wp-content/plugins/sociable/images/closelabel.png">

		  </a>

		</div>

	</div> 

  </div></div><div class='sociable' style='float:none'><ul class='clearfix'><li id="Twitter_Counter"><a href="https://twitter.com/share" data-text="The Stand-sit-dynamic effect saves money - https://ieservices.de/en/2010/05/29/the-stand-sit-dynamic-effect-saves-money/ (via #sociablesite)" data-url="https://ieservices.de/en/2010/05/29/the-stand-sit-dynamic-effect-saves-money/" class="twitter-share-button" data-count="horizontal">Tweet</a><script type="text/javascript" src="//platform.twitter.com/widgets.js"></script></li><li id="Facebook_Counter"><iframe src="//www.facebook.com/plugins/like.php?href=https://ieservices.de/en/2010/05/29/the-stand-sit-dynamic-effect-saves-money/&send=false&layout=button_count&show_faces=false&action=like&colorscheme=light&font" scrolling="no" frameborder="0" style="border:none; overflow:hidden;height:32px;width:100px" allowTransparency="true"></iframe></li><li id="Google_+"><!-- Google+1 button removed: no consent (GDPR Fix 4) --></li><li id="LinkedIn_Counter"><script src="http://platform.linkedin.com/in.js" type="text/javascript"></script><script type="IN/Share" data-url="https://ieservices.de/en/2010/05/29/the-stand-sit-dynamic-effect-saves-money/" data-counter="right"></script></li><li id="StumbleUpon_Counter"><script src="http://www.stumbleupon.com/hostedbadge.php?s=2&r=https://ieservices.de/en/2010/05/29/the-stand-sit-dynamic-effect-saves-money/"></script></li></ul></div><!-- End Sociable --><p>The post <a rel="nofollow" href="https://ieservices.de/en/2010/05/29/the-stand-sit-dynamic-effect-saves-money/">The Stand-sit-dynamic effect saves money</a> appeared first on <a rel="nofollow" href="https://ieservices.de/en/">intelligent e-Services</a>.</p>
]]></content:encoded>
			<wfw:commentRss>https://ieservices.de/en/2010/05/29/the-stand-sit-dynamic-effect-saves-money/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Combine states and transitions #flex</title>
		<link>https://ieservices.de/en/2010/05/26/combine-states-and-transitions-flex/</link>
		<comments>https://ieservices.de/en/2010/05/26/combine-states-and-transitions-flex/#comments</comments>
		<pubDate>Tue, 25 May 2010 23:50:41 +0000</pubDate>
		<dc:creator>martin</dc:creator>
				<category><![CDATA[Common]]></category>
		<category><![CDATA[flex]]></category>
		<category><![CDATA[flex 4]]></category>

		<guid isPermaLink="false">http://ieservices.de/?p=537</guid>
		<description><![CDATA[<p>The version of flex builder offers many new features. One really useful combination is the combination of states and transition. Comparing to the normal [...]</p>
<p>The post <a rel="nofollow" href="https://ieservices.de/en/2010/05/26/combine-states-and-transitions-flex/">Combine states and transitions #flex</a> appeared first on <a rel="nofollow" href="https://ieservices.de/en/">intelligent e-Services</a>.</p>
]]></description>
				<content:encoded><![CDATA[<p>The version of flex builder offers many new features.</p>
<p>One really useful combination is the combination of states and transition.</p>
<p>Comparing to the normal development process, complicated bit shifting for setting one pixel to another place &#8211; Flex shows how easy it could go:</p>
<p><object width="425" height="256" data="http://images.tv.adobe.com/swf/player.swf" type="application/x-shockwave-flash"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="FlashVars" value="fileID=6716&amp;context=78&amp;embeded=true&amp;environment=production" /><param name="src" value="http://images.tv.adobe.com/swf/player.swf" /><param name="flashvars" value="fileID=6716&amp;context=78&amp;embeded=true&amp;environment=production" /><param name="allowfullscreen" value="true" /></object></p>
<p><a href="http://tv.adobe.com/watch/codedependent/flex-4-states-and-transitions/">CodeDependent &#8211; Flex 4 States and Transitions | Adobe TV</a></p>
<!-- Start Sociable --><div class="sociable"><div class="sociable_tagline"><a class='sociable_tagline' target='_blank' href='http://blogplay.com' style='font-size:11px;color:#333333;text-decoration:none'>Be Sociable, Share!</a></div><ul class='clearfix'><li><a title="Twitter" class="option1_16" style="background-position:-144px -16px" rel="nofollow" target="_blank" href="http://twitter.com/intent/tweet?text=Combine%20states%20and%20transitions%20%23flex%20%20-%20https%3A%2F%2Fieservices.de%2Fen%2F2010%2F05%2F26%2Fcombine-states-and-transitions-flex%2F%20(via%20@sociablesite)"></a></li><li><a title="Facebook" class="option1_16" style="background-position:-48px 0px" rel="nofollow" target="_blank" href="http://www.facebook.com/share.php?u=https%3A%2F%2Fieservices.de%2Fen%2F2010%2F05%2F26%2Fcombine-states-and-transitions-flex%2F&amp;t=Combine%20states%20and%20transitions%20%23flex%20"></a></li><li><a title="email" class="option1_16" style="background-position:-80px 0px" rel="nofollow" target="_blank" href="https://mail.google.com/mail/?view=cm&fs=1&to&su=Combine%20states%20and%20transitions%20%23flex%20&body=https%3A%2F%2Fieservices.de%2Fen%2F2010%2F05%2F26%2Fcombine-states-and-transitions-flex%2F&ui=2&tf=1&shva=1"></a></li><li><a class="option1_16" style="cursor:pointer;background-position:-64px 0px" rel="nofollow" title="Add to favorites - doesn't work in Chrome"  onClick="javascript:AddToFavorites();"></a></li><li><a title="StumbleUpon" class="option1_16" style="background-position:-112px -16px" rel="nofollow" target="_blank" href="http://www.stumbleupon.com/submit?url=https%3A%2F%2Fieservices.de%2Fen%2F2010%2F05%2F26%2Fcombine-states-and-transitions-flex%2F&title=Combine%20states%20and%20transitions%20%23flex%20"></a></li><li><a title="Delicious" class="option1_16" style="background-position:-16px 0px" rel="nofollow" target="_blank" href="http://delicious.com/post?url=https%3A%2F%2Fieservices.de%2Fen%2F2010%2F05%2F26%2Fcombine-states-and-transitions-flex%2F&amp;title=Combine%20states%20and%20transitions%20%23flex%20&amp;notes=The%20version%20of%20flex%20builder%20offers%20many%20new%20features.%0D%0A%0D%0AOne%20really%20useful%20combination%20is%20the%20combination%20of%20states%20and%20transition.%0D%0A%0D%0AComparing%20to%20the%20normal%20development%20process%2C%20complicated%20bit%20shifting%20for%20setting%20one%20pixel%20to%20another%20place%20-%20Flex"></a></li><li><a title="Google Reader" class="option1_16" style="background-position:-112px 0px" rel="nofollow" target="_blank" href="http://www.google.com/reader/link?url=https%3A%2F%2Fieservices.de%2Fen%2F2010%2F05%2F26%2Fcombine-states-and-transitions-flex%2F&amp;title=Combine%20states%20and%20transitions%20%23flex%20&amp;srcURL=https%3A%2F%2Fieservices.de%2Fen%2F2010%2F05%2F26%2Fcombine-states-and-transitions-flex%2F&amp;srcTitle=intelligent+e-Services+the+new+challenge+for+open+minded+people"></a></li><li><a title="LinkedIn" class="option1_16" style="background-position:-144px 0px" rel="nofollow" target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=https%3A%2F%2Fieservices.de%2Fen%2F2010%2F05%2F26%2Fcombine-states-and-transitions-flex%2F&amp;title=Combine%20states%20and%20transitions%20%23flex%20&amp;source=intelligent+e-Services+the+new+challenge+for+open+minded+people&amp;summary=The%20version%20of%20flex%20builder%20offers%20many%20new%20features.%0D%0A%0D%0AOne%20really%20useful%20combination%20is%20the%20combination%20of%20states%20and%20transition.%0D%0A%0D%0AComparing%20to%20the%20normal%20development%20process%2C%20complicated%20bit%20shifting%20for%20setting%20one%20pixel%20to%20another%20place%20-%20Flex"></a></li><li><a title="BlinkList" class="option1_16" style="background-position:0px 0px" rel="nofollow" target="_blank" href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=https%3A%2F%2Fieservices.de%2Fen%2F2010%2F05%2F26%2Fcombine-states-and-transitions-flex%2F&amp;Title=Combine%20states%20and%20transitions%20%23flex%20"></a></li><li><a style="cursor:pointer" rel="nofollow" onMouseOut="fixOnMouseOut(document.getElementById('sociable-post-537'), event, 'post-537')" onMouseOver="more(this,'post-537')"><img style='padding-top: 0;margin-top:-2px' src='https://ieservices.de/wp-content/plugins/sociable/images/more.png'></a></li></ul><div onMouseout="fixOnMouseOut(this,event,'post-537')" id="sociable-post-537" style="display:none;">   

    <div style="top: auto; left: auto; display: block;" id="sociable">



		<div class="popup">

			<div class="content">

				<ul><li style="heigth:16px;width:16px"><a title="Myspace" class="option1_16" style="background-position:0px -16px" rel="nofollow" target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=https%3A%2F%2Fieservices.de%2Fen%2F2010%2F05%2F26%2Fcombine-states-and-transitions-flex%2F&amp;t=Combine%20states%20and%20transitions%20%23flex%20"></a></li><li style="heigth:16px;width:16px"><a title="Digg" class="option1_16" style="background-position:-32px 0px" rel="nofollow" target="_blank" href="http://digg.com/submit?phase=2&amp;url=https%3A%2F%2Fieservices.de%2Fen%2F2010%2F05%2F26%2Fcombine-states-and-transitions-flex%2F&amp;title=Combine%20states%20and%20transitions%20%23flex%20&amp;bodytext=The%20version%20of%20flex%20builder%20offers%20many%20new%20features.%0D%0A%0D%0AOne%20really%20useful%20combination%20is%20the%20combination%20of%20states%20and%20transition.%0D%0A%0D%0AComparing%20to%20the%20normal%20development%20process%2C%20complicated%20bit%20shifting%20for%20setting%20one%20pixel%20to%20another%20place%20-%20Flex"></a></li><li style="heigth:16px;width:16px"><a title="Reddit" class="option1_16" style="background-position:-64px -16px" rel="nofollow" target="_blank" href="http://reddit.com/submit?url=https%3A%2F%2Fieservices.de%2Fen%2F2010%2F05%2F26%2Fcombine-states-and-transitions-flex%2F&amp;title=Combine%20states%20and%20transitions%20%23flex%20"></a></li><li style="heigth:16px;width:16px"><a title="Google Bookmarks" class="option1_16" style="background-position:-96px 0px" rel="nofollow" target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=https%3A%2F%2Fieservices.de%2Fen%2F2010%2F05%2F26%2Fcombine-states-and-transitions-flex%2F&amp;title=Combine%20states%20and%20transitions%20%23flex%20&amp;annotation=The%20version%20of%20flex%20builder%20offers%20many%20new%20features.%0D%0A%0D%0AOne%20really%20useful%20combination%20is%20the%20combination%20of%20states%20and%20transition.%0D%0A%0D%0AComparing%20to%20the%20normal%20development%20process%2C%20complicated%20bit%20shifting%20for%20setting%20one%20pixel%20to%20another%20place%20-%20Flex"></a></li><li style="heigth:16px;width:16px"><a title="HackerNews" class="option1_16" style="background-position:-128px 0px" rel="nofollow" target="_blank" href="http://news.ycombinator.com/submitlink?u=https%3A%2F%2Fieservices.de%2Fen%2F2010%2F05%2F26%2Fcombine-states-and-transitions-flex%2F&amp;t=Combine%20states%20and%20transitions%20%23flex%20"></a></li><li style="heigth:16px;width:16px"><a title="MSNReporter" class="option1_16" style="background-position:-176px 0px" rel="nofollow" target="_blank" href="http://reporter.es.msn.com/?fn=contribute&amp;Title=Combine%20states%20and%20transitions%20%23flex%20&amp;URL=https%3A%2F%2Fieservices.de%2Fen%2F2010%2F05%2F26%2Fcombine-states-and-transitions-flex%2F&amp;cat_id=6&amp;tag_id=31&amp;Remark=The%20version%20of%20flex%20builder%20offers%20many%20new%20features.%0D%0A%0D%0AOne%20really%20useful%20combination%20is%20the%20combination%20of%20states%20and%20transition.%0D%0A%0D%0AComparing%20to%20the%20normal%20development%20process%2C%20complicated%20bit%20shifting%20for%20setting%20one%20pixel%20to%20another%20place%20-%20Flex"></a></li><li style="heigth:16px;width:16px"><a title="Sphinn" class="option1_16" style="background-position:-96px -16px" rel="nofollow" target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=https%3A%2F%2Fieservices.de%2Fen%2F2010%2F05%2F26%2Fcombine-states-and-transitions-flex%2F"></a></li><li style="heigth:16px;width:16px"><a title="Posterous" class="option1_16" style="background-position:-32px -16px" rel="nofollow" target="_blank" href="http://posterous.com/share?linkto=https%3A%2F%2Fieservices.de%2Fen%2F2010%2F05%2F26%2Fcombine-states-and-transitions-flex%2F&amp;title=Combine%20states%20and%20transitions%20%23flex%20&amp;selection=The%20version%20of%20flex%20builder%20offers%20many%20new%20features.%0D%0A%0D%0AOne%20really%20useful%20combination%20is%20the%20combination%20of%20states%20and%20transition.%0D%0A%0D%0AComparing%20to%20the%20normal%20development%20process%2C%20complicated%20bit%20shifting%20for%20setting%20one%20pixel%20to%20another%20place%20-%20Flex"></a></li><li style="heigth:16px;width:16px"><a title="Tumblr" class="option1_16" style="background-position:-128px -16px" rel="nofollow" target="_blank" href="http://www.tumblr.com/share?v=3&amp;u=https%3A%2F%2Fieservices.de%2Fen%2F2010%2F05%2F26%2Fcombine-states-and-transitions-flex%2F&amp;t=Combine%20states%20and%20transitions%20%23flex%20&amp;s=The%20version%20of%20flex%20builder%20offers%20many%20new%20features.%0D%0A%0D%0AOne%20really%20useful%20combination%20is%20the%20combination%20of%20states%20and%20transition.%0D%0A%0D%0AComparing%20to%20the%20normal%20development%20process%2C%20complicated%20bit%20shifting%20for%20setting%20one%20pixel%20to%20another%20place%20-%20Flex"></a></li></ul>			

			</div>        

		  <a style="cursor:pointer" onclick="hide_sociable('post-537',true)" class="close">



		  <img onclick="hide_sociable('post-537',true)" title="close" src="https://ieservices.de/wp-content/plugins/sociable/images/closelabel.png">

		  </a>

		</div>

	</div> 

  </div></div><div class='sociable' style='float:none'><ul class='clearfix'><li id="Twitter_Counter"><a href="https://twitter.com/share" data-text="Combine states and transitions #flex  - https://ieservices.de/en/2010/05/26/combine-states-and-transitions-flex/ (via #sociablesite)" data-url="https://ieservices.de/en/2010/05/26/combine-states-and-transitions-flex/" class="twitter-share-button" data-count="horizontal">Tweet</a><script type="text/javascript" src="//platform.twitter.com/widgets.js"></script></li><li id="Facebook_Counter"><iframe src="//www.facebook.com/plugins/like.php?href=https://ieservices.de/en/2010/05/26/combine-states-and-transitions-flex/&send=false&layout=button_count&show_faces=false&action=like&colorscheme=light&font" scrolling="no" frameborder="0" style="border:none; overflow:hidden;height:32px;width:100px" allowTransparency="true"></iframe></li><li id="Google_+"><!-- Google+1 button removed: no consent (GDPR Fix 4) --></li><li id="LinkedIn_Counter"><script src="http://platform.linkedin.com/in.js" type="text/javascript"></script><script type="IN/Share" data-url="https://ieservices.de/en/2010/05/26/combine-states-and-transitions-flex/" data-counter="right"></script></li><li id="StumbleUpon_Counter"><script src="http://www.stumbleupon.com/hostedbadge.php?s=2&r=https://ieservices.de/en/2010/05/26/combine-states-and-transitions-flex/"></script></li></ul></div><!-- End Sociable --><p>The post <a rel="nofollow" href="https://ieservices.de/en/2010/05/26/combine-states-and-transitions-flex/">Combine states and transitions #flex</a> appeared first on <a rel="nofollow" href="https://ieservices.de/en/">intelligent e-Services</a>.</p>
]]></content:encoded>
			<wfw:commentRss>https://ieservices.de/en/2010/05/26/combine-states-and-transitions-flex/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Work &amp; fun</title>
		<link>https://ieservices.de/en/2009/12/01/work-fun/</link>
		<comments>https://ieservices.de/en/2009/12/01/work-fun/#comments</comments>
		<pubDate>Tue, 01 Dec 2009 22:05:33 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Common]]></category>

		<guid isPermaLink="false">http://ieservices.de/2009/12/01/work-fun/</guid>
		<description><![CDATA[<p>On this very nice example you can figure out that work is just something hard &#38; exhausting when it makes no fun: Be Sociable, [...]</p>
<p>The post <a rel="nofollow" href="https://ieservices.de/en/2009/12/01/work-fun/">Work &#038; fun</a> appeared first on <a rel="nofollow" href="https://ieservices.de/en/">intelligent e-Services</a>.</p>
]]></description>
				<content:encoded><![CDATA[<p>On this very nice example you can figure out that work is just something hard &amp; exhausting when it makes no fun:</p>
<p><object width="560" height="340" data="http://www.youtube.com/v/2lXh2n0aPyw&amp;hl=en_US&amp;fs=1&amp;" type="application/x-shockwave-flash"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/2lXh2n0aPyw&amp;hl=en_US&amp;fs=1&amp;" /><param name="allowfullscreen" value="true" /></object></p>
<!-- Start Sociable --><div class="sociable"><div class="sociable_tagline"><a class='sociable_tagline' target='_blank' href='http://blogplay.com' style='font-size:11px;color:#333333;text-decoration:none'>Be Sociable, Share!</a></div><ul class='clearfix'><li><a title="Twitter" class="option1_16" style="background-position:-144px -16px" rel="nofollow" target="_blank" href="http://twitter.com/intent/tweet?text=Work%20%26%20fun%20-%20https%3A%2F%2Fieservices.de%2Fen%2F2009%2F12%2F01%2Fwork-fun%2F%20(via%20@sociablesite)"></a></li><li><a title="Facebook" class="option1_16" style="background-position:-48px 0px" rel="nofollow" target="_blank" href="http://www.facebook.com/share.php?u=https%3A%2F%2Fieservices.de%2Fen%2F2009%2F12%2F01%2Fwork-fun%2F&amp;t=Work%20%26%20fun"></a></li><li><a title="email" class="option1_16" style="background-position:-80px 0px" rel="nofollow" target="_blank" href="https://mail.google.com/mail/?view=cm&fs=1&to&su=Work%20%26%20fun&body=https%3A%2F%2Fieservices.de%2Fen%2F2009%2F12%2F01%2Fwork-fun%2F&ui=2&tf=1&shva=1"></a></li><li><a class="option1_16" style="cursor:pointer;background-position:-64px 0px" rel="nofollow" title="Add to favorites - doesn't work in Chrome"  onClick="javascript:AddToFavorites();"></a></li><li><a title="StumbleUpon" class="option1_16" style="background-position:-112px -16px" rel="nofollow" target="_blank" href="http://www.stumbleupon.com/submit?url=https%3A%2F%2Fieservices.de%2Fen%2F2009%2F12%2F01%2Fwork-fun%2F&title=Work%20%26%20fun"></a></li><li><a title="Delicious" class="option1_16" style="background-position:-16px 0px" rel="nofollow" target="_blank" href="http://delicious.com/post?url=https%3A%2F%2Fieservices.de%2Fen%2F2009%2F12%2F01%2Fwork-fun%2F&amp;title=Work%20%26%20fun&amp;notes=On%20this%20very%20nice%20example%20you%20can%20figure%20out%20that%20work%20is%20just%20something%20hard%20%26amp%3B%20exhausting%20when%20it%20makes%20no%20fun%3A%0D%0A%0D%0A"></a></li><li><a title="Google Reader" class="option1_16" style="background-position:-112px 0px" rel="nofollow" target="_blank" href="http://www.google.com/reader/link?url=https%3A%2F%2Fieservices.de%2Fen%2F2009%2F12%2F01%2Fwork-fun%2F&amp;title=Work%20%26%20fun&amp;srcURL=https%3A%2F%2Fieservices.de%2Fen%2F2009%2F12%2F01%2Fwork-fun%2F&amp;srcTitle=intelligent+e-Services+the+new+challenge+for+open+minded+people"></a></li><li><a title="LinkedIn" class="option1_16" style="background-position:-144px 0px" rel="nofollow" target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=https%3A%2F%2Fieservices.de%2Fen%2F2009%2F12%2F01%2Fwork-fun%2F&amp;title=Work%20%26%20fun&amp;source=intelligent+e-Services+the+new+challenge+for+open+minded+people&amp;summary=On%20this%20very%20nice%20example%20you%20can%20figure%20out%20that%20work%20is%20just%20something%20hard%20%26amp%3B%20exhausting%20when%20it%20makes%20no%20fun%3A%0D%0A%0D%0A"></a></li><li><a title="BlinkList" class="option1_16" style="background-position:0px 0px" rel="nofollow" target="_blank" href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=https%3A%2F%2Fieservices.de%2Fen%2F2009%2F12%2F01%2Fwork-fun%2F&amp;Title=Work%20%26%20fun"></a></li><li><a style="cursor:pointer" rel="nofollow" onMouseOut="fixOnMouseOut(document.getElementById('sociable-post-527'), event, 'post-527')" onMouseOver="more(this,'post-527')"><img style='padding-top: 0;margin-top:-2px' src='https://ieservices.de/wp-content/plugins/sociable/images/more.png'></a></li></ul><div onMouseout="fixOnMouseOut(this,event,'post-527')" id="sociable-post-527" style="display:none;">   

    <div style="top: auto; left: auto; display: block;" id="sociable">



		<div class="popup">

			<div class="content">

				<ul><li style="heigth:16px;width:16px"><a title="Myspace" class="option1_16" style="background-position:0px -16px" rel="nofollow" target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=https%3A%2F%2Fieservices.de%2Fen%2F2009%2F12%2F01%2Fwork-fun%2F&amp;t=Work%20%26%20fun"></a></li><li style="heigth:16px;width:16px"><a title="Digg" class="option1_16" style="background-position:-32px 0px" rel="nofollow" target="_blank" href="http://digg.com/submit?phase=2&amp;url=https%3A%2F%2Fieservices.de%2Fen%2F2009%2F12%2F01%2Fwork-fun%2F&amp;title=Work%20%26%20fun&amp;bodytext=On%20this%20very%20nice%20example%20you%20can%20figure%20out%20that%20work%20is%20just%20something%20hard%20%26amp%3B%20exhausting%20when%20it%20makes%20no%20fun%3A%0D%0A%0D%0A"></a></li><li style="heigth:16px;width:16px"><a title="Reddit" class="option1_16" style="background-position:-64px -16px" rel="nofollow" target="_blank" href="http://reddit.com/submit?url=https%3A%2F%2Fieservices.de%2Fen%2F2009%2F12%2F01%2Fwork-fun%2F&amp;title=Work%20%26%20fun"></a></li><li style="heigth:16px;width:16px"><a title="Google Bookmarks" class="option1_16" style="background-position:-96px 0px" rel="nofollow" target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=https%3A%2F%2Fieservices.de%2Fen%2F2009%2F12%2F01%2Fwork-fun%2F&amp;title=Work%20%26%20fun&amp;annotation=On%20this%20very%20nice%20example%20you%20can%20figure%20out%20that%20work%20is%20just%20something%20hard%20%26amp%3B%20exhausting%20when%20it%20makes%20no%20fun%3A%0D%0A%0D%0A"></a></li><li style="heigth:16px;width:16px"><a title="HackerNews" class="option1_16" style="background-position:-128px 0px" rel="nofollow" target="_blank" href="http://news.ycombinator.com/submitlink?u=https%3A%2F%2Fieservices.de%2Fen%2F2009%2F12%2F01%2Fwork-fun%2F&amp;t=Work%20%26%20fun"></a></li><li style="heigth:16px;width:16px"><a title="MSNReporter" class="option1_16" style="background-position:-176px 0px" rel="nofollow" target="_blank" href="http://reporter.es.msn.com/?fn=contribute&amp;Title=Work%20%26%20fun&amp;URL=https%3A%2F%2Fieservices.de%2Fen%2F2009%2F12%2F01%2Fwork-fun%2F&amp;cat_id=6&amp;tag_id=31&amp;Remark=On%20this%20very%20nice%20example%20you%20can%20figure%20out%20that%20work%20is%20just%20something%20hard%20%26amp%3B%20exhausting%20when%20it%20makes%20no%20fun%3A%0D%0A%0D%0A"></a></li><li style="heigth:16px;width:16px"><a title="Sphinn" class="option1_16" style="background-position:-96px -16px" rel="nofollow" target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=https%3A%2F%2Fieservices.de%2Fen%2F2009%2F12%2F01%2Fwork-fun%2F"></a></li><li style="heigth:16px;width:16px"><a title="Posterous" class="option1_16" style="background-position:-32px -16px" rel="nofollow" target="_blank" href="http://posterous.com/share?linkto=https%3A%2F%2Fieservices.de%2Fen%2F2009%2F12%2F01%2Fwork-fun%2F&amp;title=Work%20%26%20fun&amp;selection=On%20this%20very%20nice%20example%20you%20can%20figure%20out%20that%20work%20is%20just%20something%20hard%20%26amp%3B%20exhausting%20when%20it%20makes%20no%20fun%3A%0D%0A%0D%0A"></a></li><li style="heigth:16px;width:16px"><a title="Tumblr" class="option1_16" style="background-position:-128px -16px" rel="nofollow" target="_blank" href="http://www.tumblr.com/share?v=3&amp;u=https%3A%2F%2Fieservices.de%2Fen%2F2009%2F12%2F01%2Fwork-fun%2F&amp;t=Work%20%26%20fun&amp;s=On%20this%20very%20nice%20example%20you%20can%20figure%20out%20that%20work%20is%20just%20something%20hard%20%26amp%3B%20exhausting%20when%20it%20makes%20no%20fun%3A%0D%0A%0D%0A"></a></li></ul>			

			</div>        

		  <a style="cursor:pointer" onclick="hide_sociable('post-527',true)" class="close">



		  <img onclick="hide_sociable('post-527',true)" title="close" src="https://ieservices.de/wp-content/plugins/sociable/images/closelabel.png">

		  </a>

		</div>

	</div> 

  </div></div><div class='sociable' style='float:none'><ul class='clearfix'><li id="Twitter_Counter"><a href="https://twitter.com/share" data-text="Work & fun - https://ieservices.de/en/2009/12/01/work-fun/ (via #sociablesite)" data-url="https://ieservices.de/en/2009/12/01/work-fun/" class="twitter-share-button" data-count="horizontal">Tweet</a><script type="text/javascript" src="//platform.twitter.com/widgets.js"></script></li><li id="Facebook_Counter"><iframe src="//www.facebook.com/plugins/like.php?href=https://ieservices.de/en/2009/12/01/work-fun/&send=false&layout=button_count&show_faces=false&action=like&colorscheme=light&font" scrolling="no" frameborder="0" style="border:none; overflow:hidden;height:32px;width:100px" allowTransparency="true"></iframe></li><li id="Google_+"><!-- Google+1 button removed: no consent (GDPR Fix 4) --></li><li id="LinkedIn_Counter"><script src="http://platform.linkedin.com/in.js" type="text/javascript"></script><script type="IN/Share" data-url="https://ieservices.de/en/2009/12/01/work-fun/" data-counter="right"></script></li><li id="StumbleUpon_Counter"><script src="http://www.stumbleupon.com/hostedbadge.php?s=2&r=https://ieservices.de/en/2009/12/01/work-fun/"></script></li></ul></div><!-- End Sociable --><p>The post <a rel="nofollow" href="https://ieservices.de/en/2009/12/01/work-fun/">Work &#038; fun</a> appeared first on <a rel="nofollow" href="https://ieservices.de/en/">intelligent e-Services</a>.</p>
]]></content:encoded>
			<wfw:commentRss>https://ieservices.de/en/2009/12/01/work-fun/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Links I like</title>
		<link>https://ieservices.de/en/2009/10/22/links-i-like/</link>
		<comments>https://ieservices.de/en/2009/10/22/links-i-like/#comments</comments>
		<pubDate>Thu, 22 Oct 2009 00:37:01 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Common]]></category>

		<guid isPermaLink="false">http://ieservices.de/?p=516</guid>
		<description><![CDATA[<p>My 10 UNIX Command Line Mistakes Mac OSX Spotlight Secret Search Parameters Be Sociable, Share! Tweet</p>
<p>The post <a rel="nofollow" href="https://ieservices.de/en/2009/10/22/links-i-like/">Links I like</a> appeared first on <a rel="nofollow" href="https://ieservices.de/en/">intelligent e-Services</a>.</p>
]]></description>
				<content:encoded><![CDATA[<p><a href="http://www.cyberciti.biz/tips/my-10-unix-command-line-mistakes.html">My 10 UNIX Command Line Mistakes</a></p>
<p><a href="http://www.mcelhearn.com/?p=309">Mac OSX Spotlight Secret Search Parameters</a></p>
<!-- Start Sociable --><div class="sociable"><div class="sociable_tagline"><a class='sociable_tagline' target='_blank' href='http://blogplay.com' style='font-size:11px;color:#333333;text-decoration:none'>Be Sociable, Share!</a></div><ul class='clearfix'><li><a title="Twitter" class="option1_16" style="background-position:-144px -16px" rel="nofollow" target="_blank" href="http://twitter.com/intent/tweet?text=Links%20I%20like%20-%20https%3A%2F%2Fieservices.de%2Fen%2F2009%2F10%2F22%2Flinks-i-like%2F%20(via%20@sociablesite)"></a></li><li><a title="Facebook" class="option1_16" style="background-position:-48px 0px" rel="nofollow" target="_blank" href="http://www.facebook.com/share.php?u=https%3A%2F%2Fieservices.de%2Fen%2F2009%2F10%2F22%2Flinks-i-like%2F&amp;t=Links%20I%20like"></a></li><li><a title="email" class="option1_16" style="background-position:-80px 0px" rel="nofollow" target="_blank" href="https://mail.google.com/mail/?view=cm&fs=1&to&su=Links%20I%20like&body=https%3A%2F%2Fieservices.de%2Fen%2F2009%2F10%2F22%2Flinks-i-like%2F&ui=2&tf=1&shva=1"></a></li><li><a class="option1_16" style="cursor:pointer;background-position:-64px 0px" rel="nofollow" title="Add to favorites - doesn't work in Chrome"  onClick="javascript:AddToFavorites();"></a></li><li><a title="StumbleUpon" class="option1_16" style="background-position:-112px -16px" rel="nofollow" target="_blank" href="http://www.stumbleupon.com/submit?url=https%3A%2F%2Fieservices.de%2Fen%2F2009%2F10%2F22%2Flinks-i-like%2F&title=Links%20I%20like"></a></li><li><a title="Delicious" class="option1_16" style="background-position:-16px 0px" rel="nofollow" target="_blank" href="http://delicious.com/post?url=https%3A%2F%2Fieservices.de%2Fen%2F2009%2F10%2F22%2Flinks-i-like%2F&amp;title=Links%20I%20like&amp;notes=My%2010%20UNIX%20Command%20Line%20Mistakes%0D%0A%0D%0AMac%20OSX%20Spotlight%20Secret%20Search%20Parameters"></a></li><li><a title="Google Reader" class="option1_16" style="background-position:-112px 0px" rel="nofollow" target="_blank" href="http://www.google.com/reader/link?url=https%3A%2F%2Fieservices.de%2Fen%2F2009%2F10%2F22%2Flinks-i-like%2F&amp;title=Links%20I%20like&amp;srcURL=https%3A%2F%2Fieservices.de%2Fen%2F2009%2F10%2F22%2Flinks-i-like%2F&amp;srcTitle=intelligent+e-Services+the+new+challenge+for+open+minded+people"></a></li><li><a title="LinkedIn" class="option1_16" style="background-position:-144px 0px" rel="nofollow" target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=https%3A%2F%2Fieservices.de%2Fen%2F2009%2F10%2F22%2Flinks-i-like%2F&amp;title=Links%20I%20like&amp;source=intelligent+e-Services+the+new+challenge+for+open+minded+people&amp;summary=My%2010%20UNIX%20Command%20Line%20Mistakes%0D%0A%0D%0AMac%20OSX%20Spotlight%20Secret%20Search%20Parameters"></a></li><li><a title="BlinkList" class="option1_16" style="background-position:0px 0px" rel="nofollow" target="_blank" href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=https%3A%2F%2Fieservices.de%2Fen%2F2009%2F10%2F22%2Flinks-i-like%2F&amp;Title=Links%20I%20like"></a></li><li><a style="cursor:pointer" rel="nofollow" onMouseOut="fixOnMouseOut(document.getElementById('sociable-post-516'), event, 'post-516')" onMouseOver="more(this,'post-516')"><img style='padding-top: 0;margin-top:-2px' src='https://ieservices.de/wp-content/plugins/sociable/images/more.png'></a></li></ul><div onMouseout="fixOnMouseOut(this,event,'post-516')" id="sociable-post-516" style="display:none;">   

    <div style="top: auto; left: auto; display: block;" id="sociable">



		<div class="popup">

			<div class="content">

				<ul><li style="heigth:16px;width:16px"><a title="Myspace" class="option1_16" style="background-position:0px -16px" rel="nofollow" target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=https%3A%2F%2Fieservices.de%2Fen%2F2009%2F10%2F22%2Flinks-i-like%2F&amp;t=Links%20I%20like"></a></li><li style="heigth:16px;width:16px"><a title="Digg" class="option1_16" style="background-position:-32px 0px" rel="nofollow" target="_blank" href="http://digg.com/submit?phase=2&amp;url=https%3A%2F%2Fieservices.de%2Fen%2F2009%2F10%2F22%2Flinks-i-like%2F&amp;title=Links%20I%20like&amp;bodytext=My%2010%20UNIX%20Command%20Line%20Mistakes%0D%0A%0D%0AMac%20OSX%20Spotlight%20Secret%20Search%20Parameters"></a></li><li style="heigth:16px;width:16px"><a title="Reddit" class="option1_16" style="background-position:-64px -16px" rel="nofollow" target="_blank" href="http://reddit.com/submit?url=https%3A%2F%2Fieservices.de%2Fen%2F2009%2F10%2F22%2Flinks-i-like%2F&amp;title=Links%20I%20like"></a></li><li style="heigth:16px;width:16px"><a title="Google Bookmarks" class="option1_16" style="background-position:-96px 0px" rel="nofollow" target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=https%3A%2F%2Fieservices.de%2Fen%2F2009%2F10%2F22%2Flinks-i-like%2F&amp;title=Links%20I%20like&amp;annotation=My%2010%20UNIX%20Command%20Line%20Mistakes%0D%0A%0D%0AMac%20OSX%20Spotlight%20Secret%20Search%20Parameters"></a></li><li style="heigth:16px;width:16px"><a title="HackerNews" class="option1_16" style="background-position:-128px 0px" rel="nofollow" target="_blank" href="http://news.ycombinator.com/submitlink?u=https%3A%2F%2Fieservices.de%2Fen%2F2009%2F10%2F22%2Flinks-i-like%2F&amp;t=Links%20I%20like"></a></li><li style="heigth:16px;width:16px"><a title="MSNReporter" class="option1_16" style="background-position:-176px 0px" rel="nofollow" target="_blank" href="http://reporter.es.msn.com/?fn=contribute&amp;Title=Links%20I%20like&amp;URL=https%3A%2F%2Fieservices.de%2Fen%2F2009%2F10%2F22%2Flinks-i-like%2F&amp;cat_id=6&amp;tag_id=31&amp;Remark=My%2010%20UNIX%20Command%20Line%20Mistakes%0D%0A%0D%0AMac%20OSX%20Spotlight%20Secret%20Search%20Parameters"></a></li><li style="heigth:16px;width:16px"><a title="Sphinn" class="option1_16" style="background-position:-96px -16px" rel="nofollow" target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=https%3A%2F%2Fieservices.de%2Fen%2F2009%2F10%2F22%2Flinks-i-like%2F"></a></li><li style="heigth:16px;width:16px"><a title="Posterous" class="option1_16" style="background-position:-32px -16px" rel="nofollow" target="_blank" href="http://posterous.com/share?linkto=https%3A%2F%2Fieservices.de%2Fen%2F2009%2F10%2F22%2Flinks-i-like%2F&amp;title=Links%20I%20like&amp;selection=My%2010%20UNIX%20Command%20Line%20Mistakes%0D%0A%0D%0AMac%20OSX%20Spotlight%20Secret%20Search%20Parameters"></a></li><li style="heigth:16px;width:16px"><a title="Tumblr" class="option1_16" style="background-position:-128px -16px" rel="nofollow" target="_blank" href="http://www.tumblr.com/share?v=3&amp;u=https%3A%2F%2Fieservices.de%2Fen%2F2009%2F10%2F22%2Flinks-i-like%2F&amp;t=Links%20I%20like&amp;s=My%2010%20UNIX%20Command%20Line%20Mistakes%0D%0A%0D%0AMac%20OSX%20Spotlight%20Secret%20Search%20Parameters"></a></li></ul>			

			</div>        

		  <a style="cursor:pointer" onclick="hide_sociable('post-516',true)" class="close">



		  <img onclick="hide_sociable('post-516',true)" title="close" src="https://ieservices.de/wp-content/plugins/sociable/images/closelabel.png">

		  </a>

		</div>

	</div> 

  </div></div><div class='sociable' style='float:none'><ul class='clearfix'><li id="Twitter_Counter"><a href="https://twitter.com/share" data-text="Links I like - https://ieservices.de/en/2009/10/22/links-i-like/ (via #sociablesite)" data-url="https://ieservices.de/en/2009/10/22/links-i-like/" class="twitter-share-button" data-count="horizontal">Tweet</a><script type="text/javascript" src="//platform.twitter.com/widgets.js"></script></li><li id="Facebook_Counter"><iframe src="//www.facebook.com/plugins/like.php?href=https://ieservices.de/en/2009/10/22/links-i-like/&send=false&layout=button_count&show_faces=false&action=like&colorscheme=light&font" scrolling="no" frameborder="0" style="border:none; overflow:hidden;height:32px;width:100px" allowTransparency="true"></iframe></li><li id="Google_+"><!-- Google+1 button removed: no consent (GDPR Fix 4) --></li><li id="LinkedIn_Counter"><script src="http://platform.linkedin.com/in.js" type="text/javascript"></script><script type="IN/Share" data-url="https://ieservices.de/en/2009/10/22/links-i-like/" data-counter="right"></script></li><li id="StumbleUpon_Counter"><script src="http://www.stumbleupon.com/hostedbadge.php?s=2&r=https://ieservices.de/en/2009/10/22/links-i-like/"></script></li></ul></div><!-- End Sociable --><p>The post <a rel="nofollow" href="https://ieservices.de/en/2009/10/22/links-i-like/">Links I like</a> appeared first on <a rel="nofollow" href="https://ieservices.de/en/">intelligent e-Services</a>.</p>
]]></content:encoded>
			<wfw:commentRss>https://ieservices.de/en/2009/10/22/links-i-like/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Second release of ieservices-logo</title>
		<link>https://ieservices.de/en/2009/10/05/second-release-of-ieservices-logo/</link>
		<comments>https://ieservices.de/en/2009/10/05/second-release-of-ieservices-logo/#comments</comments>
		<pubDate>Mon, 05 Oct 2009 00:18:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Common]]></category>
		<category><![CDATA[DrawBerry]]></category>

		<guid isPermaLink="false">http://ieservices.de/?p=383</guid>
		<description><![CDATA[<p>DrawBerry is a really cool and flexible tool: Be Sociable, Share! Tweet</p>
<p>The post <a rel="nofollow" href="https://ieservices.de/en/2009/10/05/second-release-of-ieservices-logo/">Second release of ieservices-logo</a> appeared first on <a rel="nofollow" href="https://ieservices.de/en/">intelligent e-Services</a>.</p>
]]></description>
				<content:encoded><![CDATA[<p><a href="http://www.apple.com/downloads/macosx/imaging_3d/drawberry.html">DrawBerry</a> is a really cool and flexible tool:</p>
<p><img class="alignnone size-medium wp-image-380" title="ieservices_logo_20091005_0144_wbg" src="http://ieservices.de/wp-content/uploads/2009/10/ieservices_logo_20091006_1413.png" alt="ieservices_logo_20091006_1413.png" width="470" height="230" /></p>
<!-- Start Sociable --><div class="sociable"><div class="sociable_tagline"><a class='sociable_tagline' target='_blank' href='http://blogplay.com' style='font-size:11px;color:#333333;text-decoration:none'>Be Sociable, Share!</a></div><ul class='clearfix'><li><a title="Twitter" class="option1_16" style="background-position:-144px -16px" rel="nofollow" target="_blank" href="http://twitter.com/intent/tweet?text=Second%20release%20of%20ieservices-logo%20-%20https%3A%2F%2Fieservices.de%2Fen%2F2009%2F10%2F05%2Fsecond-release-of-ieservices-logo%2F%20(via%20@sociablesite)"></a></li><li><a title="Facebook" class="option1_16" style="background-position:-48px 0px" rel="nofollow" target="_blank" href="http://www.facebook.com/share.php?u=https%3A%2F%2Fieservices.de%2Fen%2F2009%2F10%2F05%2Fsecond-release-of-ieservices-logo%2F&amp;t=Second%20release%20of%20ieservices-logo"></a></li><li><a title="email" class="option1_16" style="background-position:-80px 0px" rel="nofollow" target="_blank" href="https://mail.google.com/mail/?view=cm&fs=1&to&su=Second%20release%20of%20ieservices-logo&body=https%3A%2F%2Fieservices.de%2Fen%2F2009%2F10%2F05%2Fsecond-release-of-ieservices-logo%2F&ui=2&tf=1&shva=1"></a></li><li><a class="option1_16" style="cursor:pointer;background-position:-64px 0px" rel="nofollow" title="Add to favorites - doesn't work in Chrome"  onClick="javascript:AddToFavorites();"></a></li><li><a title="StumbleUpon" class="option1_16" style="background-position:-112px -16px" rel="nofollow" target="_blank" href="http://www.stumbleupon.com/submit?url=https%3A%2F%2Fieservices.de%2Fen%2F2009%2F10%2F05%2Fsecond-release-of-ieservices-logo%2F&title=Second%20release%20of%20ieservices-logo"></a></li><li><a title="Delicious" class="option1_16" style="background-position:-16px 0px" rel="nofollow" target="_blank" href="http://delicious.com/post?url=https%3A%2F%2Fieservices.de%2Fen%2F2009%2F10%2F05%2Fsecond-release-of-ieservices-logo%2F&amp;title=Second%20release%20of%20ieservices-logo&amp;notes=DrawBerry%20is%20a%20really%20cool%20and%20flexible%20tool%3A%0D%0A%0D%0A"></a></li><li><a title="Google Reader" class="option1_16" style="background-position:-112px 0px" rel="nofollow" target="_blank" href="http://www.google.com/reader/link?url=https%3A%2F%2Fieservices.de%2Fen%2F2009%2F10%2F05%2Fsecond-release-of-ieservices-logo%2F&amp;title=Second%20release%20of%20ieservices-logo&amp;srcURL=https%3A%2F%2Fieservices.de%2Fen%2F2009%2F10%2F05%2Fsecond-release-of-ieservices-logo%2F&amp;srcTitle=intelligent+e-Services+the+new+challenge+for+open+minded+people"></a></li><li><a title="LinkedIn" class="option1_16" style="background-position:-144px 0px" rel="nofollow" target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=https%3A%2F%2Fieservices.de%2Fen%2F2009%2F10%2F05%2Fsecond-release-of-ieservices-logo%2F&amp;title=Second%20release%20of%20ieservices-logo&amp;source=intelligent+e-Services+the+new+challenge+for+open+minded+people&amp;summary=DrawBerry%20is%20a%20really%20cool%20and%20flexible%20tool%3A%0D%0A%0D%0A"></a></li><li><a title="BlinkList" class="option1_16" style="background-position:0px 0px" rel="nofollow" target="_blank" href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=https%3A%2F%2Fieservices.de%2Fen%2F2009%2F10%2F05%2Fsecond-release-of-ieservices-logo%2F&amp;Title=Second%20release%20of%20ieservices-logo"></a></li><li><a style="cursor:pointer" rel="nofollow" onMouseOut="fixOnMouseOut(document.getElementById('sociable-post-383'), event, 'post-383')" onMouseOver="more(this,'post-383')"><img style='padding-top: 0;margin-top:-2px' src='https://ieservices.de/wp-content/plugins/sociable/images/more.png'></a></li></ul><div onMouseout="fixOnMouseOut(this,event,'post-383')" id="sociable-post-383" style="display:none;">   

    <div style="top: auto; left: auto; display: block;" id="sociable">



		<div class="popup">

			<div class="content">

				<ul><li style="heigth:16px;width:16px"><a title="Myspace" class="option1_16" style="background-position:0px -16px" rel="nofollow" target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=https%3A%2F%2Fieservices.de%2Fen%2F2009%2F10%2F05%2Fsecond-release-of-ieservices-logo%2F&amp;t=Second%20release%20of%20ieservices-logo"></a></li><li style="heigth:16px;width:16px"><a title="Digg" class="option1_16" style="background-position:-32px 0px" rel="nofollow" target="_blank" href="http://digg.com/submit?phase=2&amp;url=https%3A%2F%2Fieservices.de%2Fen%2F2009%2F10%2F05%2Fsecond-release-of-ieservices-logo%2F&amp;title=Second%20release%20of%20ieservices-logo&amp;bodytext=DrawBerry%20is%20a%20really%20cool%20and%20flexible%20tool%3A%0D%0A%0D%0A"></a></li><li style="heigth:16px;width:16px"><a title="Reddit" class="option1_16" style="background-position:-64px -16px" rel="nofollow" target="_blank" href="http://reddit.com/submit?url=https%3A%2F%2Fieservices.de%2Fen%2F2009%2F10%2F05%2Fsecond-release-of-ieservices-logo%2F&amp;title=Second%20release%20of%20ieservices-logo"></a></li><li style="heigth:16px;width:16px"><a title="Google Bookmarks" class="option1_16" style="background-position:-96px 0px" rel="nofollow" target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=https%3A%2F%2Fieservices.de%2Fen%2F2009%2F10%2F05%2Fsecond-release-of-ieservices-logo%2F&amp;title=Second%20release%20of%20ieservices-logo&amp;annotation=DrawBerry%20is%20a%20really%20cool%20and%20flexible%20tool%3A%0D%0A%0D%0A"></a></li><li style="heigth:16px;width:16px"><a title="HackerNews" class="option1_16" style="background-position:-128px 0px" rel="nofollow" target="_blank" href="http://news.ycombinator.com/submitlink?u=https%3A%2F%2Fieservices.de%2Fen%2F2009%2F10%2F05%2Fsecond-release-of-ieservices-logo%2F&amp;t=Second%20release%20of%20ieservices-logo"></a></li><li style="heigth:16px;width:16px"><a title="MSNReporter" class="option1_16" style="background-position:-176px 0px" rel="nofollow" target="_blank" href="http://reporter.es.msn.com/?fn=contribute&amp;Title=Second%20release%20of%20ieservices-logo&amp;URL=https%3A%2F%2Fieservices.de%2Fen%2F2009%2F10%2F05%2Fsecond-release-of-ieservices-logo%2F&amp;cat_id=6&amp;tag_id=31&amp;Remark=DrawBerry%20is%20a%20really%20cool%20and%20flexible%20tool%3A%0D%0A%0D%0A"></a></li><li style="heigth:16px;width:16px"><a title="Sphinn" class="option1_16" style="background-position:-96px -16px" rel="nofollow" target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=https%3A%2F%2Fieservices.de%2Fen%2F2009%2F10%2F05%2Fsecond-release-of-ieservices-logo%2F"></a></li><li style="heigth:16px;width:16px"><a title="Posterous" class="option1_16" style="background-position:-32px -16px" rel="nofollow" target="_blank" href="http://posterous.com/share?linkto=https%3A%2F%2Fieservices.de%2Fen%2F2009%2F10%2F05%2Fsecond-release-of-ieservices-logo%2F&amp;title=Second%20release%20of%20ieservices-logo&amp;selection=DrawBerry%20is%20a%20really%20cool%20and%20flexible%20tool%3A%0D%0A%0D%0A"></a></li><li style="heigth:16px;width:16px"><a title="Tumblr" class="option1_16" style="background-position:-128px -16px" rel="nofollow" target="_blank" href="http://www.tumblr.com/share?v=3&amp;u=https%3A%2F%2Fieservices.de%2Fen%2F2009%2F10%2F05%2Fsecond-release-of-ieservices-logo%2F&amp;t=Second%20release%20of%20ieservices-logo&amp;s=DrawBerry%20is%20a%20really%20cool%20and%20flexible%20tool%3A%0D%0A%0D%0A"></a></li></ul>			

			</div>        

		  <a style="cursor:pointer" onclick="hide_sociable('post-383',true)" class="close">



		  <img onclick="hide_sociable('post-383',true)" title="close" src="https://ieservices.de/wp-content/plugins/sociable/images/closelabel.png">

		  </a>

		</div>

	</div> 

  </div></div><div class='sociable' style='float:none'><ul class='clearfix'><li id="Twitter_Counter"><a href="https://twitter.com/share" data-text="Second release of ieservices-logo - https://ieservices.de/en/2009/10/05/second-release-of-ieservices-logo/ (via #sociablesite)" data-url="https://ieservices.de/en/2009/10/05/second-release-of-ieservices-logo/" class="twitter-share-button" data-count="horizontal">Tweet</a><script type="text/javascript" src="//platform.twitter.com/widgets.js"></script></li><li id="Facebook_Counter"><iframe src="//www.facebook.com/plugins/like.php?href=https://ieservices.de/en/2009/10/05/second-release-of-ieservices-logo/&send=false&layout=button_count&show_faces=false&action=like&colorscheme=light&font" scrolling="no" frameborder="0" style="border:none; overflow:hidden;height:32px;width:100px" allowTransparency="true"></iframe></li><li id="Google_+"><!-- Google+1 button removed: no consent (GDPR Fix 4) --></li><li id="LinkedIn_Counter"><script src="http://platform.linkedin.com/in.js" type="text/javascript"></script><script type="IN/Share" data-url="https://ieservices.de/en/2009/10/05/second-release-of-ieservices-logo/" data-counter="right"></script></li><li id="StumbleUpon_Counter"><script src="http://www.stumbleupon.com/hostedbadge.php?s=2&r=https://ieservices.de/en/2009/10/05/second-release-of-ieservices-logo/"></script></li></ul></div><!-- End Sociable --><p>The post <a rel="nofollow" href="https://ieservices.de/en/2009/10/05/second-release-of-ieservices-logo/">Second release of ieservices-logo</a> appeared first on <a rel="nofollow" href="https://ieservices.de/en/">intelligent e-Services</a>.</p>
]]></content:encoded>
			<wfw:commentRss>https://ieservices.de/en/2009/10/05/second-release-of-ieservices-logo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>First release of the ieservices-logo</title>
		<link>https://ieservices.de/en/2009/09/01/first-release-of-the-ieservices-logo/</link>
		<comments>https://ieservices.de/en/2009/09/01/first-release-of-the-ieservices-logo/#comments</comments>
		<pubDate>Tue, 01 Sep 2009 14:44:54 +0000</pubDate>
		<dc:creator>martin</dc:creator>
				<category><![CDATA[Common]]></category>

		<guid isPermaLink="false">http://ieservices.de/?p=227</guid>
		<description><![CDATA[<p>After hours and hours, finally the first release of the ieservices-logo is out: Be Sociable, Share! Tweet</p>
<p>The post <a rel="nofollow" href="https://ieservices.de/en/2009/09/01/first-release-of-the-ieservices-logo/">First release of the ieservices-logo</a> appeared first on <a rel="nofollow" href="https://ieservices.de/en/">intelligent e-Services</a>.</p>
]]></description>
				<content:encoded><![CDATA[<p style="text-align: center;">After hours and hours, finally the first release of the ieservices-logo is out:<br />
<img class="aligncenter size-full wp-image-226" title="ieservices_logo_20090901_1622_wbg" src="http://ieservices.de/wp-content/uploads/2009/09/ieservices_logo_20090901_1622_wbg.png" alt="ieservices_logo_20090901_1622_wbg" width="531" height="252" /></p>
<!-- Start Sociable --><div class="sociable"><div class="sociable_tagline"><a class='sociable_tagline' target='_blank' href='http://blogplay.com' style='font-size:11px;color:#333333;text-decoration:none'>Be Sociable, Share!</a></div><ul class='clearfix'><li><a title="Twitter" class="option1_16" style="background-position:-144px -16px" rel="nofollow" target="_blank" href="http://twitter.com/intent/tweet?text=First%20release%20of%20the%20ieservices-logo%20-%20https%3A%2F%2Fieservices.de%2Fen%2F2009%2F09%2F01%2Ffirst-release-of-the-ieservices-logo%2F%20(via%20@sociablesite)"></a></li><li><a title="Facebook" class="option1_16" style="background-position:-48px 0px" rel="nofollow" target="_blank" href="http://www.facebook.com/share.php?u=https%3A%2F%2Fieservices.de%2Fen%2F2009%2F09%2F01%2Ffirst-release-of-the-ieservices-logo%2F&amp;t=First%20release%20of%20the%20ieservices-logo"></a></li><li><a title="email" class="option1_16" style="background-position:-80px 0px" rel="nofollow" target="_blank" href="https://mail.google.com/mail/?view=cm&fs=1&to&su=First%20release%20of%20the%20ieservices-logo&body=https%3A%2F%2Fieservices.de%2Fen%2F2009%2F09%2F01%2Ffirst-release-of-the-ieservices-logo%2F&ui=2&tf=1&shva=1"></a></li><li><a class="option1_16" style="cursor:pointer;background-position:-64px 0px" rel="nofollow" title="Add to favorites - doesn't work in Chrome"  onClick="javascript:AddToFavorites();"></a></li><li><a title="StumbleUpon" class="option1_16" style="background-position:-112px -16px" rel="nofollow" target="_blank" href="http://www.stumbleupon.com/submit?url=https%3A%2F%2Fieservices.de%2Fen%2F2009%2F09%2F01%2Ffirst-release-of-the-ieservices-logo%2F&title=First%20release%20of%20the%20ieservices-logo"></a></li><li><a title="Delicious" class="option1_16" style="background-position:-16px 0px" rel="nofollow" target="_blank" href="http://delicious.com/post?url=https%3A%2F%2Fieservices.de%2Fen%2F2009%2F09%2F01%2Ffirst-release-of-the-ieservices-logo%2F&amp;title=First%20release%20of%20the%20ieservices-logo&amp;notes=After%20hours%20and%20hours%2C%20finally%20the%20first%20release%20of%20the%20ieservices-logo%20is%20out%3A%0D%0A"></a></li><li><a title="Google Reader" class="option1_16" style="background-position:-112px 0px" rel="nofollow" target="_blank" href="http://www.google.com/reader/link?url=https%3A%2F%2Fieservices.de%2Fen%2F2009%2F09%2F01%2Ffirst-release-of-the-ieservices-logo%2F&amp;title=First%20release%20of%20the%20ieservices-logo&amp;srcURL=https%3A%2F%2Fieservices.de%2Fen%2F2009%2F09%2F01%2Ffirst-release-of-the-ieservices-logo%2F&amp;srcTitle=intelligent+e-Services+the+new+challenge+for+open+minded+people"></a></li><li><a title="LinkedIn" class="option1_16" style="background-position:-144px 0px" rel="nofollow" target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=https%3A%2F%2Fieservices.de%2Fen%2F2009%2F09%2F01%2Ffirst-release-of-the-ieservices-logo%2F&amp;title=First%20release%20of%20the%20ieservices-logo&amp;source=intelligent+e-Services+the+new+challenge+for+open+minded+people&amp;summary=After%20hours%20and%20hours%2C%20finally%20the%20first%20release%20of%20the%20ieservices-logo%20is%20out%3A%0D%0A"></a></li><li><a title="BlinkList" class="option1_16" style="background-position:0px 0px" rel="nofollow" target="_blank" href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=https%3A%2F%2Fieservices.de%2Fen%2F2009%2F09%2F01%2Ffirst-release-of-the-ieservices-logo%2F&amp;Title=First%20release%20of%20the%20ieservices-logo"></a></li><li><a style="cursor:pointer" rel="nofollow" onMouseOut="fixOnMouseOut(document.getElementById('sociable-post-227'), event, 'post-227')" onMouseOver="more(this,'post-227')"><img style='padding-top: 0;margin-top:-2px' src='https://ieservices.de/wp-content/plugins/sociable/images/more.png'></a></li></ul><div onMouseout="fixOnMouseOut(this,event,'post-227')" id="sociable-post-227" style="display:none;">   

    <div style="top: auto; left: auto; display: block;" id="sociable">



		<div class="popup">

			<div class="content">

				<ul><li style="heigth:16px;width:16px"><a title="Myspace" class="option1_16" style="background-position:0px -16px" rel="nofollow" target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=https%3A%2F%2Fieservices.de%2Fen%2F2009%2F09%2F01%2Ffirst-release-of-the-ieservices-logo%2F&amp;t=First%20release%20of%20the%20ieservices-logo"></a></li><li style="heigth:16px;width:16px"><a title="Digg" class="option1_16" style="background-position:-32px 0px" rel="nofollow" target="_blank" href="http://digg.com/submit?phase=2&amp;url=https%3A%2F%2Fieservices.de%2Fen%2F2009%2F09%2F01%2Ffirst-release-of-the-ieservices-logo%2F&amp;title=First%20release%20of%20the%20ieservices-logo&amp;bodytext=After%20hours%20and%20hours%2C%20finally%20the%20first%20release%20of%20the%20ieservices-logo%20is%20out%3A%0D%0A"></a></li><li style="heigth:16px;width:16px"><a title="Reddit" class="option1_16" style="background-position:-64px -16px" rel="nofollow" target="_blank" href="http://reddit.com/submit?url=https%3A%2F%2Fieservices.de%2Fen%2F2009%2F09%2F01%2Ffirst-release-of-the-ieservices-logo%2F&amp;title=First%20release%20of%20the%20ieservices-logo"></a></li><li style="heigth:16px;width:16px"><a title="Google Bookmarks" class="option1_16" style="background-position:-96px 0px" rel="nofollow" target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=https%3A%2F%2Fieservices.de%2Fen%2F2009%2F09%2F01%2Ffirst-release-of-the-ieservices-logo%2F&amp;title=First%20release%20of%20the%20ieservices-logo&amp;annotation=After%20hours%20and%20hours%2C%20finally%20the%20first%20release%20of%20the%20ieservices-logo%20is%20out%3A%0D%0A"></a></li><li style="heigth:16px;width:16px"><a title="HackerNews" class="option1_16" style="background-position:-128px 0px" rel="nofollow" target="_blank" href="http://news.ycombinator.com/submitlink?u=https%3A%2F%2Fieservices.de%2Fen%2F2009%2F09%2F01%2Ffirst-release-of-the-ieservices-logo%2F&amp;t=First%20release%20of%20the%20ieservices-logo"></a></li><li style="heigth:16px;width:16px"><a title="MSNReporter" class="option1_16" style="background-position:-176px 0px" rel="nofollow" target="_blank" href="http://reporter.es.msn.com/?fn=contribute&amp;Title=First%20release%20of%20the%20ieservices-logo&amp;URL=https%3A%2F%2Fieservices.de%2Fen%2F2009%2F09%2F01%2Ffirst-release-of-the-ieservices-logo%2F&amp;cat_id=6&amp;tag_id=31&amp;Remark=After%20hours%20and%20hours%2C%20finally%20the%20first%20release%20of%20the%20ieservices-logo%20is%20out%3A%0D%0A"></a></li><li style="heigth:16px;width:16px"><a title="Sphinn" class="option1_16" style="background-position:-96px -16px" rel="nofollow" target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=https%3A%2F%2Fieservices.de%2Fen%2F2009%2F09%2F01%2Ffirst-release-of-the-ieservices-logo%2F"></a></li><li style="heigth:16px;width:16px"><a title="Posterous" class="option1_16" style="background-position:-32px -16px" rel="nofollow" target="_blank" href="http://posterous.com/share?linkto=https%3A%2F%2Fieservices.de%2Fen%2F2009%2F09%2F01%2Ffirst-release-of-the-ieservices-logo%2F&amp;title=First%20release%20of%20the%20ieservices-logo&amp;selection=After%20hours%20and%20hours%2C%20finally%20the%20first%20release%20of%20the%20ieservices-logo%20is%20out%3A%0D%0A"></a></li><li style="heigth:16px;width:16px"><a title="Tumblr" class="option1_16" style="background-position:-128px -16px" rel="nofollow" target="_blank" href="http://www.tumblr.com/share?v=3&amp;u=https%3A%2F%2Fieservices.de%2Fen%2F2009%2F09%2F01%2Ffirst-release-of-the-ieservices-logo%2F&amp;t=First%20release%20of%20the%20ieservices-logo&amp;s=After%20hours%20and%20hours%2C%20finally%20the%20first%20release%20of%20the%20ieservices-logo%20is%20out%3A%0D%0A"></a></li></ul>			

			</div>        

		  <a style="cursor:pointer" onclick="hide_sociable('post-227',true)" class="close">



		  <img onclick="hide_sociable('post-227',true)" title="close" src="https://ieservices.de/wp-content/plugins/sociable/images/closelabel.png">

		  </a>

		</div>

	</div> 

  </div></div><div class='sociable' style='float:none'><ul class='clearfix'><li id="Twitter_Counter"><a href="https://twitter.com/share" data-text="First release of the ieservices-logo - https://ieservices.de/en/2009/09/01/first-release-of-the-ieservices-logo/ (via #sociablesite)" data-url="https://ieservices.de/en/2009/09/01/first-release-of-the-ieservices-logo/" class="twitter-share-button" data-count="horizontal">Tweet</a><script type="text/javascript" src="//platform.twitter.com/widgets.js"></script></li><li id="Facebook_Counter"><iframe src="//www.facebook.com/plugins/like.php?href=https://ieservices.de/en/2009/09/01/first-release-of-the-ieservices-logo/&send=false&layout=button_count&show_faces=false&action=like&colorscheme=light&font" scrolling="no" frameborder="0" style="border:none; overflow:hidden;height:32px;width:100px" allowTransparency="true"></iframe></li><li id="Google_+"><!-- Google+1 button removed: no consent (GDPR Fix 4) --></li><li id="LinkedIn_Counter"><script src="http://platform.linkedin.com/in.js" type="text/javascript"></script><script type="IN/Share" data-url="https://ieservices.de/en/2009/09/01/first-release-of-the-ieservices-logo/" data-counter="right"></script></li><li id="StumbleUpon_Counter"><script src="http://www.stumbleupon.com/hostedbadge.php?s=2&r=https://ieservices.de/en/2009/09/01/first-release-of-the-ieservices-logo/"></script></li></ul></div><!-- End Sociable --><p>The post <a rel="nofollow" href="https://ieservices.de/en/2009/09/01/first-release-of-the-ieservices-logo/">First release of the ieservices-logo</a> appeared first on <a rel="nofollow" href="https://ieservices.de/en/">intelligent e-Services</a>.</p>
]]></content:encoded>
			<wfw:commentRss>https://ieservices.de/en/2009/09/01/first-release-of-the-ieservices-logo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Interesting Videos</title>
		<link>https://ieservices.de/en/2009/07/14/interesting-videos/</link>
		<comments>https://ieservices.de/en/2009/07/14/interesting-videos/#comments</comments>
		<pubDate>Tue, 14 Jul 2009 20:18:17 +0000</pubDate>
		<dc:creator>martin</dc:creator>
				<category><![CDATA[Common]]></category>
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://ieservices.de/?p=133</guid>
		<description><![CDATA[<p>The world changes for a moment: barclays-fake Is there someone to be able to present something small, really big? Yes. they can: venablesbell And [...]</p>
<p>The post <a rel="nofollow" href="https://ieservices.de/en/2009/07/14/interesting-videos/">Interesting Videos</a> appeared first on <a rel="nofollow" href="https://ieservices.de/en/">intelligent e-Services</a>.</p>
]]></description>
				<content:encoded><![CDATA[<p>The world changes for a moment:</p>
<p><a href="http://www.fubiz.net/2009/07/13/barclays-fake/">barclays-fake</a></p>
<p>Is there someone to be able to present something small, really big?</p>
<p>Yes. they can:</p>
<p><a href="http://www.venablesbell.com">venablesbell</a></p>
<p>And if you wake up, check your oil:<br />
<a href="http://http://www.venablesbell.com/?page_id=2#/audi_horsehead">audi_horsehead</a></p>
<!-- Start Sociable --><div class="sociable"><div class="sociable_tagline"><a class='sociable_tagline' target='_blank' href='http://blogplay.com' style='font-size:11px;color:#333333;text-decoration:none'>Be Sociable, Share!</a></div><ul class='clearfix'><li><a title="Twitter" class="option1_16" style="background-position:-144px -16px" rel="nofollow" target="_blank" href="http://twitter.com/intent/tweet?text=Interesting%20Videos%20-%20https%3A%2F%2Fieservices.de%2Fen%2F2009%2F07%2F14%2Finteresting-videos%2F%20(via%20@sociablesite)"></a></li><li><a title="Facebook" class="option1_16" style="background-position:-48px 0px" rel="nofollow" target="_blank" href="http://www.facebook.com/share.php?u=https%3A%2F%2Fieservices.de%2Fen%2F2009%2F07%2F14%2Finteresting-videos%2F&amp;t=Interesting%20Videos"></a></li><li><a title="email" class="option1_16" style="background-position:-80px 0px" rel="nofollow" target="_blank" href="https://mail.google.com/mail/?view=cm&fs=1&to&su=Interesting%20Videos&body=https%3A%2F%2Fieservices.de%2Fen%2F2009%2F07%2F14%2Finteresting-videos%2F&ui=2&tf=1&shva=1"></a></li><li><a class="option1_16" style="cursor:pointer;background-position:-64px 0px" rel="nofollow" title="Add to favorites - doesn't work in Chrome"  onClick="javascript:AddToFavorites();"></a></li><li><a title="StumbleUpon" class="option1_16" style="background-position:-112px -16px" rel="nofollow" target="_blank" href="http://www.stumbleupon.com/submit?url=https%3A%2F%2Fieservices.de%2Fen%2F2009%2F07%2F14%2Finteresting-videos%2F&title=Interesting%20Videos"></a></li><li><a title="Delicious" class="option1_16" style="background-position:-16px 0px" rel="nofollow" target="_blank" href="http://delicious.com/post?url=https%3A%2F%2Fieservices.de%2Fen%2F2009%2F07%2F14%2Finteresting-videos%2F&amp;title=Interesting%20Videos&amp;notes=The%20world%20changes%20for%20a%20moment%3A%0D%0A%0D%0Abarclays-fake%0D%0A%0D%0AIs%20there%20someone%20to%20be%20able%20to%20present%20something%20small%2C%20really%20big%3F%0D%0A%0D%0AYes.%20they%20can%3A%0D%0A%0D%0Avenablesbell%0D%0A%0D%0AAnd%20if%20you%20wake%20up%2C%20check%20your%20oil%3A%0D%0Aaudi_horsehead"></a></li><li><a title="Google Reader" class="option1_16" style="background-position:-112px 0px" rel="nofollow" target="_blank" href="http://www.google.com/reader/link?url=https%3A%2F%2Fieservices.de%2Fen%2F2009%2F07%2F14%2Finteresting-videos%2F&amp;title=Interesting%20Videos&amp;srcURL=https%3A%2F%2Fieservices.de%2Fen%2F2009%2F07%2F14%2Finteresting-videos%2F&amp;srcTitle=intelligent+e-Services+the+new+challenge+for+open+minded+people"></a></li><li><a title="LinkedIn" class="option1_16" style="background-position:-144px 0px" rel="nofollow" target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=https%3A%2F%2Fieservices.de%2Fen%2F2009%2F07%2F14%2Finteresting-videos%2F&amp;title=Interesting%20Videos&amp;source=intelligent+e-Services+the+new+challenge+for+open+minded+people&amp;summary=The%20world%20changes%20for%20a%20moment%3A%0D%0A%0D%0Abarclays-fake%0D%0A%0D%0AIs%20there%20someone%20to%20be%20able%20to%20present%20something%20small%2C%20really%20big%3F%0D%0A%0D%0AYes.%20they%20can%3A%0D%0A%0D%0Avenablesbell%0D%0A%0D%0AAnd%20if%20you%20wake%20up%2C%20check%20your%20oil%3A%0D%0Aaudi_horsehead"></a></li><li><a title="BlinkList" class="option1_16" style="background-position:0px 0px" rel="nofollow" target="_blank" href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=https%3A%2F%2Fieservices.de%2Fen%2F2009%2F07%2F14%2Finteresting-videos%2F&amp;Title=Interesting%20Videos"></a></li><li><a style="cursor:pointer" rel="nofollow" onMouseOut="fixOnMouseOut(document.getElementById('sociable-post-133'), event, 'post-133')" onMouseOver="more(this,'post-133')"><img style='padding-top: 0;margin-top:-2px' src='https://ieservices.de/wp-content/plugins/sociable/images/more.png'></a></li></ul><div onMouseout="fixOnMouseOut(this,event,'post-133')" id="sociable-post-133" style="display:none;">   

    <div style="top: auto; left: auto; display: block;" id="sociable">



		<div class="popup">

			<div class="content">

				<ul><li style="heigth:16px;width:16px"><a title="Myspace" class="option1_16" style="background-position:0px -16px" rel="nofollow" target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=https%3A%2F%2Fieservices.de%2Fen%2F2009%2F07%2F14%2Finteresting-videos%2F&amp;t=Interesting%20Videos"></a></li><li style="heigth:16px;width:16px"><a title="Digg" class="option1_16" style="background-position:-32px 0px" rel="nofollow" target="_blank" href="http://digg.com/submit?phase=2&amp;url=https%3A%2F%2Fieservices.de%2Fen%2F2009%2F07%2F14%2Finteresting-videos%2F&amp;title=Interesting%20Videos&amp;bodytext=The%20world%20changes%20for%20a%20moment%3A%0D%0A%0D%0Abarclays-fake%0D%0A%0D%0AIs%20there%20someone%20to%20be%20able%20to%20present%20something%20small%2C%20really%20big%3F%0D%0A%0D%0AYes.%20they%20can%3A%0D%0A%0D%0Avenablesbell%0D%0A%0D%0AAnd%20if%20you%20wake%20up%2C%20check%20your%20oil%3A%0D%0Aaudi_horsehead"></a></li><li style="heigth:16px;width:16px"><a title="Reddit" class="option1_16" style="background-position:-64px -16px" rel="nofollow" target="_blank" href="http://reddit.com/submit?url=https%3A%2F%2Fieservices.de%2Fen%2F2009%2F07%2F14%2Finteresting-videos%2F&amp;title=Interesting%20Videos"></a></li><li style="heigth:16px;width:16px"><a title="Google Bookmarks" class="option1_16" style="background-position:-96px 0px" rel="nofollow" target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=https%3A%2F%2Fieservices.de%2Fen%2F2009%2F07%2F14%2Finteresting-videos%2F&amp;title=Interesting%20Videos&amp;annotation=The%20world%20changes%20for%20a%20moment%3A%0D%0A%0D%0Abarclays-fake%0D%0A%0D%0AIs%20there%20someone%20to%20be%20able%20to%20present%20something%20small%2C%20really%20big%3F%0D%0A%0D%0AYes.%20they%20can%3A%0D%0A%0D%0Avenablesbell%0D%0A%0D%0AAnd%20if%20you%20wake%20up%2C%20check%20your%20oil%3A%0D%0Aaudi_horsehead"></a></li><li style="heigth:16px;width:16px"><a title="HackerNews" class="option1_16" style="background-position:-128px 0px" rel="nofollow" target="_blank" href="http://news.ycombinator.com/submitlink?u=https%3A%2F%2Fieservices.de%2Fen%2F2009%2F07%2F14%2Finteresting-videos%2F&amp;t=Interesting%20Videos"></a></li><li style="heigth:16px;width:16px"><a title="MSNReporter" class="option1_16" style="background-position:-176px 0px" rel="nofollow" target="_blank" href="http://reporter.es.msn.com/?fn=contribute&amp;Title=Interesting%20Videos&amp;URL=https%3A%2F%2Fieservices.de%2Fen%2F2009%2F07%2F14%2Finteresting-videos%2F&amp;cat_id=6&amp;tag_id=31&amp;Remark=The%20world%20changes%20for%20a%20moment%3A%0D%0A%0D%0Abarclays-fake%0D%0A%0D%0AIs%20there%20someone%20to%20be%20able%20to%20present%20something%20small%2C%20really%20big%3F%0D%0A%0D%0AYes.%20they%20can%3A%0D%0A%0D%0Avenablesbell%0D%0A%0D%0AAnd%20if%20you%20wake%20up%2C%20check%20your%20oil%3A%0D%0Aaudi_horsehead"></a></li><li style="heigth:16px;width:16px"><a title="Sphinn" class="option1_16" style="background-position:-96px -16px" rel="nofollow" target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=https%3A%2F%2Fieservices.de%2Fen%2F2009%2F07%2F14%2Finteresting-videos%2F"></a></li><li style="heigth:16px;width:16px"><a title="Posterous" class="option1_16" style="background-position:-32px -16px" rel="nofollow" target="_blank" href="http://posterous.com/share?linkto=https%3A%2F%2Fieservices.de%2Fen%2F2009%2F07%2F14%2Finteresting-videos%2F&amp;title=Interesting%20Videos&amp;selection=The%20world%20changes%20for%20a%20moment%3A%0D%0A%0D%0Abarclays-fake%0D%0A%0D%0AIs%20there%20someone%20to%20be%20able%20to%20present%20something%20small%2C%20really%20big%3F%0D%0A%0D%0AYes.%20they%20can%3A%0D%0A%0D%0Avenablesbell%0D%0A%0D%0AAnd%20if%20you%20wake%20up%2C%20check%20your%20oil%3A%0D%0Aaudi_horsehead"></a></li><li style="heigth:16px;width:16px"><a title="Tumblr" class="option1_16" style="background-position:-128px -16px" rel="nofollow" target="_blank" href="http://www.tumblr.com/share?v=3&amp;u=https%3A%2F%2Fieservices.de%2Fen%2F2009%2F07%2F14%2Finteresting-videos%2F&amp;t=Interesting%20Videos&amp;s=The%20world%20changes%20for%20a%20moment%3A%0D%0A%0D%0Abarclays-fake%0D%0A%0D%0AIs%20there%20someone%20to%20be%20able%20to%20present%20something%20small%2C%20really%20big%3F%0D%0A%0D%0AYes.%20they%20can%3A%0D%0A%0D%0Avenablesbell%0D%0A%0D%0AAnd%20if%20you%20wake%20up%2C%20check%20your%20oil%3A%0D%0Aaudi_horsehead"></a></li></ul>			

			</div>        

		  <a style="cursor:pointer" onclick="hide_sociable('post-133',true)" class="close">



		  <img onclick="hide_sociable('post-133',true)" title="close" src="https://ieservices.de/wp-content/plugins/sociable/images/closelabel.png">

		  </a>

		</div>

	</div> 

  </div></div><div class='sociable' style='float:none'><ul class='clearfix'><li id="Twitter_Counter"><a href="https://twitter.com/share" data-text="Interesting Videos - https://ieservices.de/en/2009/07/14/interesting-videos/ (via #sociablesite)" data-url="https://ieservices.de/en/2009/07/14/interesting-videos/" class="twitter-share-button" data-count="horizontal">Tweet</a><script type="text/javascript" src="//platform.twitter.com/widgets.js"></script></li><li id="Facebook_Counter"><iframe src="//www.facebook.com/plugins/like.php?href=https://ieservices.de/en/2009/07/14/interesting-videos/&send=false&layout=button_count&show_faces=false&action=like&colorscheme=light&font" scrolling="no" frameborder="0" style="border:none; overflow:hidden;height:32px;width:100px" allowTransparency="true"></iframe></li><li id="Google_+"><!-- Google+1 button removed: no consent (GDPR Fix 4) --></li><li id="LinkedIn_Counter"><script src="http://platform.linkedin.com/in.js" type="text/javascript"></script><script type="IN/Share" data-url="https://ieservices.de/en/2009/07/14/interesting-videos/" data-counter="right"></script></li><li id="StumbleUpon_Counter"><script src="http://www.stumbleupon.com/hostedbadge.php?s=2&r=https://ieservices.de/en/2009/07/14/interesting-videos/"></script></li></ul></div><!-- End Sociable --><p>The post <a rel="nofollow" href="https://ieservices.de/en/2009/07/14/interesting-videos/">Interesting Videos</a> appeared first on <a rel="nofollow" href="https://ieservices.de/en/">intelligent e-Services</a>.</p>
]]></content:encoded>
			<wfw:commentRss>https://ieservices.de/en/2009/07/14/interesting-videos/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
