<?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>DjeeDjee, blogs in English about IT Development</title>
	<atom:link href="http://blog.djeedjee.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.djeedjee.com</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Wed, 14 Apr 2010 16:28:00 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Google charts in Extjs</title>
		<link>http://blog.djeedjee.com/internet/google-charts-in-extjs/</link>
		<comments>http://blog.djeedjee.com/internet/google-charts-in-extjs/#comments</comments>
		<pubDate>Wed, 14 Apr 2010 16:28:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Extjs]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[charts in extjs google]]></category>
		<category><![CDATA[extjs dom charts google]]></category>
		<category><![CDATA[google charts in extjs]]></category>

		<guid isPermaLink="false">http://blog.djeedjee.com/internet/google-charts-in-extjs/</guid>
		<description><![CDATA[I wanted for Extjs a “free” solution for charts and my eye fell on Google Charts]]></description>
			<content:encoded><![CDATA[<p><a href="http://blog.djeedjee.com/wp-content/uploads/image9.png"><img style="border-right-width: 0px; margin: 0px 0px 10px 20px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" align="right" src="http://blog.djeedjee.com/wp-content/uploads/image_thumb5.png" width="240" height="88" /></a> </p>
<p>Currently I am working on a bigger project where Extjs has an important role. Up to now I had no experience with it charts capabilities. From an earlier work experience I knew Fusion Charts, but I was looking for something “for free”, so my eye fell on Google Charts.</p>
<p> <span id="more-68"></span><br />
<h2>No working right away</h2>
<p>My usual search on internet led to <a title="Ext Charting and Mapping with Google Visualizations" href="http://www.extjs.com/blog/2008/10/13/google-visualization/" target="_blank">this contribution on the Extjs website</a>. So I started the effort to make it work in the latest Extjs release 3.2. </p>
<p>After creating a test environment, where I downloaded the extension from the website I was hoping that it would work immediately, but it didn’t. The demo on <a title="Demo op de Extjs site" href="http://www.extjs.com/playpen/google-visualization/gvisualization.html" target="_blank">this link</a>, is using Extjs release 2.2. </p>
<h2></h2>
<h2>Respect the DOM please</h2>
<p>I will keep this story short, but a small argument I have for all who put their effort on maintaining a framework like Extjs, or any other framework. It would be also nice if any modifications to the DOM in relation to the core of a product is well documented, in a kind of history matrix. </p>
<p>It would be great if modifications to objects and functions leave the DOM manipulations more intact in relation with the prior release. I think that many bugs can be addressed to this DOM manipulations. It makes versions also not downwards compatible. This time the pain was just one (1) word that made the difference between working and frustration. </p>
<h2>The right type.type<a title="Google Chart Tools" href="http://code.google.com/apis/charttools/" target="_blank"><img style="border-right-width: 0px; margin: 0px 0px 0px 10px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" align="right" src="http://blog.djeedjee.com/wp-content/uploads/image10.png" width="240" height="178" /></a> </h2>
<p>Reason why it was not functioning was a modification in the DOM outcome for Ext.StoreMgr and the function fields.get(). The user extension for Google Charts misinterpreted the column information send to the Google API.</p>
<p>In de original javascript ext.ux.gvisualizationpanel.js (line 23) you can find:</p>
<p> <code>tbl.addColumn(convert[<strong>f.type</strong>], c.label || c, id);</code>
<div>For version 3.2 of Ext this has to be:</div>
<p> <code>tbl.addColumn(convert[<strong>f.type.type</strong>], c.label || c, id);</code><br />
<h2>&#160;</h2>
<h2>Links</h2>
<ul>
<li>Demo version Extjs 3.2 : <a title="Demo charts voor Extjs 3.2" href="http://loadthis.info/ext-ux/samples/gvisualization-sample.htm" target="_blank">Demo</a> </li>
<li>Demo version Extjs 2.2: <a title="Demo Charts voor Extjs 2.2" href="http://www.extjs.com/playpen/google-visualization/gvisualization.html" target="_blank">Demo</a> </li>
<li>Download of the Extension (3.2): <a title="Download charts extensie voor Extjs 3.2" href="http://loadthis.info/ext-ux/samples/ext.ux.gvisualizations.zip" target="_blank">Download</a> </li>
<li>Download of the Extension (2.2): <a title="Download charts extensie voor Extjs 2.2" href="http://www.extjs.com/blog/2008/10/13/google-visualization/" target="_blank">Download</a> </li>
<li>Extjs Framework website: <a href="http://www.extjs.com">http://www.extjs.com</a> </li>
<li>Google Charts API documentation: <a title="Documentatie Google Charts API (Engels)" href="http://code.google.com/apis/visualization/documentation/using_overview.html" target="_blank">Documentation (Engels)</a> </li>
</ul>
<h4>Credits</h4>
<p>Aaron Conran (<a title="Twitter for Aaron Conran" href="http://twitter.com/aconran" target="_blank">twitter</a>)</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.djeedjee.com/internet/google-charts-in-extjs/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Windows Livewriter spelling other than English</title>
		<link>http://blog.djeedjee.com/software/spelling-live-writer/</link>
		<comments>http://blog.djeedjee.com/software/spelling-live-writer/#comments</comments>
		<pubDate>Tue, 06 Apr 2010 17:52:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[spelling live writer in german or dutch]]></category>
		<category><![CDATA[windows live writer spelling]]></category>

		<guid isPermaLink="false">http://blog.djeedjee.com/software/spelling-live-writer/</guid>
		<description><![CDATA[For blogging I use Windows Live Writer, it’s free to download and use. It is a a nice product from Microsoft. It was a problem to me that I could do a spellingcheck in English but not in Dutch and German.]]></description>
			<content:encoded><![CDATA[<p><a href="http://blog.djeedjee.com/wp-content/uploads/image6.png"><img style="border-right-width: 0px; margin: 0px 15px 0px 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" align="left" src="http://blog.djeedjee.com/wp-content/uploads/image_thumb4.png" width="81" height="81" /></a>For blogging I use Windows Live Writer, it’s free to download and use. It is a a nice product from Microsoft. But it was a problem to me that I could do a spelling check in English but not in Dutch and German. If you have this too, well that’s history after this read.&#160; </p>
<p> <span id="more-59"></span><br />
<h2></h2>
<h2>Dictionaries</h2>
<p>At the bottom of this post you will find some links with the required dictionaries for English, German and Dutch. Download the required one and unzip it on your desktop or some other temporary folder.</p>
<p>Now copy the unzipped files into folder: C:\Program Files\Windows Live\Writer\Dictionaries. </p>
<p>Restart Windows Live Writer and you will have the following dictionaries:</p>
<p><img style="border-right-width: 0px; margin: 2px 25px 5px 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" align="left" src="http://blog.djeedjee.com/wp-content/uploads/image7.png" width="244" height="188" /> </p>
<p>You can check this with menu: Extra, Options, Spelling (or in the language in which you have installed Live writer).</p>
<p>That’s all folks!!!</p>
<h2></h2>
<h2>&#160;</h2>
<h2>&#160;</h2>
<h2>&#160;</h2>
<h2>&#160;</h2>
<h2>&#160;</h2>
<h2>Links</h2>
<ul>
<li><a title="Dictionairies Windows Live Writer" href="http://www.djeedjee.com/wp-content/uploads/lw_dictionaries.zip" target="_blank">Dictionaries (English, Dutch and German)</a>&#160; </li>
<li><a title="Dictionairies Windows Live Writer (Engels)" href="http://www.djeedjee.com/wp-content/uploads/lw_english.zip" target="_blank">Dictionaries (English)</a> </li>
<li><a title="Dictionairies Windows Live Writer (Nederlands)" href="http://www.djeedjee.com/wp-content/uploads/lw_nederlands.zip" target="_blank">Dictionaries (Dutch)</a> </li>
<li><a title="Dictionairies Windows Live Writer (Duits)" href="http://www.djeedjee.com/wp-content/uploads/lw_deutsch.zip" target="_blank">Dictionaries (German)</a>&#160;&#160; </li>
<li>Download link Live Writer: <a title="Windows Live Download" href="http://download.live.com/writer" target="_blank">download</a> </li>
</ul>
<p> <!--aiospwlwbstart<br />
aiosp_title=Windows Livewriter Spelling in andere taal<br />
aiosp_keywords=Windows Livewriter spelling Duits, Windows Livewriter spelling Engels<br />
aiosp_description=Windows Livewrite spelling in Duits Engels en Nederlands<br />
aiospwlwbsend--></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.djeedjee.com/software/spelling-live-writer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Youtube player for Extjs version 3 (updated)</title>
		<link>http://blog.djeedjee.com/web-development/ext-youtube-player/</link>
		<comments>http://blog.djeedjee.com/web-development/ext-youtube-player/#comments</comments>
		<pubDate>Sat, 03 Apr 2010 20:43:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Extjs]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[extjs 3 youtube player working]]></category>
		<category><![CDATA[youtube player for extjs]]></category>

		<guid isPermaLink="false">http://blog.djeedjee.com/web-development/ext-youtube-player/</guid>
		<description><![CDATA[Youtube player for Extjs Javascript RIA Framework]]></description>
			<content:encoded><![CDATA[<p><a title="Gentle Giant on Reflection, Youtube" href="http://www.youtube.com/watch?v=V5nBTvwYEww" target="_blank"><img style="border-bottom: 0px; border-left: 0px; margin: 10px 10px 5px 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" align="left" src="http://blog.djeedjee.com/wp-content/uploads/image8.png" width="219" height="178" /></a></p>
<p>For an application we are developing at the moment for our company, I needed an integrated player for youtube movies. Condition was however, that it could run in an Extjs version 3.2 panel (or window). I started to look on internet (where else?), for I thought that this certainly must have tried once. I was a bit surprised that there’s no standard widget for this in Extjs. Read how easy it is to use in your own applications. I will stick as much as possible to the integration, skipping explanations on why it is working, for we want to see movies, don’t we?</p>
<p> <span id="more-38"></span><br />
<h2>Why this update?</h2>
<p>I have updated this article because version 3.2 of Extjs is official and the developer of this Youtube extension Thorsten Suckow-Homberg updated the player and resolved some bugs. Thanks goes to him for this.</p>
<h3>Google applications</h3>
<p>The player uses the Google API for Youtube (<a title="http://code.google.com/intl/nl-NL/apis/youtube/overview.html" href="http://code.google.com/intl/nl-NL/apis/youtube/overview.html" target="_blank">Youtube API&#8217;s and Tools</a>). A lot of documentation is available at the Google site, on how to use this API. Don’t worry, I won’t bother you with that. I will explain now how you can include the player successfully into your own applications. </p>
<p>The files and also the demo are based on the original extension of Thorsten Suckow-Homberg, so we grant him all the credits he deserves (<a title="http://www.siteartwork.de/youtubeplayer/" href="http://www.siteartwork.de/youtubeplayer/" target="_blank">Extjs Ext.ux.YoutubePlayer</a>). Thanks again for the last modifications.</p>
<p>I have to say that player just works fine, but possibly can do much more, because all the possibilities of the API have not been explored yet. I am open for any useful suggestions.</p>
<h3>Install</h3>
<p>The supplied demo is starting a player in an Ext.Window, but you can also assign the player to a panel. Please let me know, if you would like to see me write a post on this.</p>
<h3>Location of the Ext files</h3>
<div class="geshi no html">
<div class="head"><head></div>
<ol>
<li class="li1">
<div class="de1">&#8230; </div>
</li>
<li class="li1">
<div class="de1">&nbsp;&lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;xxx/ext-3.2.0/resources/css/ext-all.css&quot; /&gt;</div>
</li>
<li class="li1">
<div class="de1">&nbsp;&lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;./extension/css/ext-ux-youtubeplayer-all.css&quot; /&gt; </div>
</li>
<li class="li1">
<div class="de1">&nbsp;&lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;./extension/css/ext-ux-youtubeplayer-control.css&quot; /&gt;</div>
</li>
<li class="li1">
<div class="de1">&nbsp;&lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;./extension/css/ext-ux-youtubeplayer.css&quot; /&gt; </div>
</li>
<li class="li1">
<div class="de1">&nbsp;&lt;!&#8211; your usual ext stuff &#8211;&gt; &nbsp; &nbsp;</div>
</li>
<li class="li1">
<div class="de1">&nbsp;&lt;script type=&quot;text/javascript&quot; src=&quot;xxx/ext-3.2.0/adapter/ext/ext-base.js&quot;&gt;&lt;/script&gt;</div>
</li>
<li class="li1">
<div class="de1">&nbsp;&lt;script type=&quot;text/javascript&quot; src=&quot;xxx/ext-3.2.0/ext-all-debug.js&quot;&gt;&lt;/script&gt; </div>
</li>
<li class="li1">
<div class="de1">&nbsp;&lt;!&#8211; YoutubePlayer stuff &#8211; js &amp; css &#8211;&gt;</div>
</li>
<li class="li1">
<div class="de1">&nbsp;&lt;script type=&quot;text/javascript&quot; src=&quot;./extension/ext-ux-youtubeplayer.js&quot;&gt;&lt;/script&gt;</div>
</li>
<li class="li1">
<div class="de1">&nbsp;&lt;script type=&quot;text/javascript&quot; src=&quot;./extension/ext-ux-youtubeplayer-control.js&quot;&gt;&lt;/script&gt;</div>
</li>
<li class="li1">
<div class="de1">&nbsp;</div>
</li>
<li class="li1">
<div class="de1">enz&#8230;</div>
</li>
</ol>
</div>
<p>Make sure that downloaded code in the right relation with extjs (ext-3.2 in the sample shown). The core files of Extjs are not part of downloads (I have included a link to the Extjs download pages). </p>
<ul>
<li>Make sure that both extensions (ux) are also in the proper relation to your index.php or whatever file you are using to declare these files. I have called the directory “extensions”, but it can also be called “ux”, as long as the system can find it back at runtime. </li>
<li><a href="http://blog.djeedjee.com/wp-content/uploads/image1.png"><img style="border-right-width: 0px; margin: 2px 0px 5px 10px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" align="right" src="http://blog.djeedjee.com/wp-content/uploads/image_thumb.png" width="240" height="141" /></a>The with the demo delivered index.php plays a movie of the fantastic band Gentle Giant in an Ext.Window. You can modify this to your own purpose. </li>
<li><strong>Attention please</strong>: all files mentioned are in lowercase. This is because I experienced problems after transferring the files to the webserver of my provider. Some files were not recognized at runtime, when camel-case was used in the file names. </li>
</ul>
<h3>Demo</h3>
<p>A working demo is available at <a title="Working demo of Extjs Youtube Player" href="http://www.enovision.net/mistube/working-new/" target="_blank">demo</a>. This demo is running with Extjs 3.2.0. You can read a post on this matter here:: <a title="http://www.extjs.com/forum/showthread.php?t=93971" href="http://www.extjs.com/forum/showthread.php?t=93971" target="_blank">Post about small bugs in version 3.2</a>. </p>
<h3>Downloads</h3>
<ul>
<li>Extjs core version 3.2.0: <a title="http://www.extjs.com/products/extjs/download.php?dl=extjs320" href="http://www.extjs.com/products/extjs/download.php?dl=extjs320" target="_blank">Link to download (3.2.0)</a> </li>
<li>Youtube player for version 3.2 (excluding extjs core file and the required modified ext-all-debug.js !!: <a title="http://www.djeedjee.com/wp-content/uploads/youtubeplayer_3.2.zip" href="http://www.djeedjee.com/wp-content/uploads/youtubeplayer_3.2.zip" target="_blank">download</a> </li>
</ul>
<h3><span style="color: #ff7f00">Next time more CodeIgniter</span></h3>
<p>In a next post I will write about how you can cooperate CodeIgniter with ExtJS in addressing the Youtube API and use the results in a “view” visualized by an ExtJS application.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.djeedjee.com/web-development/ext-youtube-player/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Something good can&#8217;t come for free</title>
		<link>http://blog.djeedjee.com/business/something-good-is-not-for-free/</link>
		<comments>http://blog.djeedjee.com/business/something-good-is-not-for-free/#comments</comments>
		<pubDate>Sun, 28 Mar 2010 10:00:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[Economy]]></category>
		<category><![CDATA[ICT]]></category>

		<guid isPermaLink="false">http://blog.djeedjee.com/business/something-good-is-not-for-free/</guid>
		<description><![CDATA[It is time to get some understanding in the world, that something good can’t come for free.]]></description>
			<content:encoded><![CDATA[<p><a href="http://blog.djeedjee.com/wp-content/uploads/image3.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; margin-left: 0px; border-left-width: 0px; margin-right: 0px" title="image" border="0" alt="image" align="left" src="http://blog.djeedjee.com/wp-content/uploads/image_thumb1.png" width="142" height="150" /></a> I would like to recommend the following reading <a title="what should i be charging for webdesign" href="http://www.jameslarkin.ie/2010/02/14/what-should-i-be-charging-for-webdesign" target="_blank">what should i be charging for webdesign</a>. I think it is time that a crusade is started (against who?). This, to protect all creativity that apparently to the meaning of too many have to come too often for just a little or even for free. It is time to get some understanding in this world, that something good can’t come for free. </p>
<p>The reason for this post is an email I got from a site called Myhammer in Germany (find the URL yourself, no help from here). Read why I think&#160; IT creativity and effort is not taken serious anymore.</p>
<p> <span id="more-52"></span><br />
<h2>A beggar’s banquet</h2>
<h2><a href="http://blog.djeedjee.com/wp-content/uploads/image4.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://blog.djeedjee.com/wp-content/uploads/image_thumb2.png" width="582" height="139" /></a> </h2>
<p>Now let’s look at first one, a PHP job for an estimate of 500 Euro. </p>
<p><a href="http://blog.djeedjee.com/wp-content/uploads/image5.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://blog.djeedjee.com/wp-content/uploads/image_thumb3.png" width="584" height="314" /></a> </p>
<p>Translated: we are looking for someone for our project that knows PHP and .NET to create an application for the intake of sport bets in internet. We are looking for a long cooperation. The price is per month. Who has to bring the materials? The one that accepts the project assignment.</p>
<h2></h2>
</p>
<h2>Blame</h2>
<p>I don’t blame the ones who are asking for someone here. But my goodness, everyone’s job skills are protected in Germany (where I have my business), but what about IT skills. So the guy next door who also knows how to PHP can also apply here. That’s fine, as long he is paying taxes too and is not working for a few bucks per hour and two tickets to the cinema. We have people calling us, if we can do a website for 150 Euro. Companies decide on price, that’s fine. But stop comparing IT deliveries like they are packs of butter from a supermarket. You never let your house done like that. </p>
<h2>Protection</h2>
<p>I am a liberal business man. I have my own IT company. We definitely need competition to even keep us sharp, but I don’t like it at all that I have to compete with schoolboys and other people who own a laptop and don’t earn a living from it, but do it for fun. </p>
<h2>“Cheapi”stan</h2>
<p>I am offering myself as a lawyer (Anwalt). I haven’t learned for this, I know about some law, but I don’t make a regular living from it (I am in IT, but see it as hobby). I think by presenting myself like that I am in trouble soon, for it is illegal. Or I would like to renovate my office and I hire a couple of people from “Cheapi”stan. I think after day one I have the authorities already on my doorstep (informed by the union, perhaps), asking what’s happening here, because none of the carpenters look German. Ok, I have understanding for this and it is supposed to be like that to some extent, but than please help me to keep my yard also free from IT-yunkies and low-budget programming amateurs. I really hope that all people find their hapiness, but going into a global price war on development is in my belief not bringing this closer.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.djeedjee.com/business/something-good-is-not-for-free/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HidemyIP (sequal on watching foreign TV streams)</title>
		<link>http://blog.djeedjee.com/software/hidemyip-sucks-sequal-tv-stream/</link>
		<comments>http://blog.djeedjee.com/software/hidemyip-sucks-sequal-tv-stream/#comments</comments>
		<pubDate>Thu, 18 Feb 2010 09:33:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[hidemyip sucks]]></category>

		<guid isPermaLink="false">http://blog.djeedjee.com/software/hidemyip-sucks-sequal-tv-stream/</guid>
		<description><![CDATA[hidemyip sucks! Don't buy this product, it is a scam after 3 days the party is over]]></description>
			<content:encoded><![CDATA[<p><a href="http://blog.djeedjee.com/wp-content/uploads/iamangry.jpg"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; margin-left: 0px; border-left-width: 0px; margin-right: 0px" title="Anger" border="0" alt="Anger" align="right" src="http://blog.djeedjee.com/wp-content/uploads/iamangry_thumb.jpg" width="178" height="240" /></a> A few days ago I have written about the software Hidemyip (<a href="http://www.hidemyip.com" target="_blank">www.hidemyip.com</a>). I have enjoyed speed skating from Germany, but the party seems to be over. After a 3 day trial the premium options have disappeared and now whatever I try, I don’t get any IP-address any more from the Netherlands. I counted 6 different addresses (2x UK, 2x USA and 2x Canada). This software is what we call “a scam”. Luring customers into buying the premium services. So my advise (after great enthusiasm), KEEP YOUR HANDS OFF this. Don’t encourage the makers greed by buying a far to expensive premium service. </p>
<p>To the makers of hidemyip (Americans by the way, from California) I would say. You sunshine boys made great software, a real party, pitty that the light went out already after 3 days.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.djeedjee.com/software/hidemyip-sucks-sequal-tv-stream/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to watch Dutch TV, Olympic speed skating from outside Holland</title>
		<link>http://blog.djeedjee.com/lifestyle/hide-my-ip/</link>
		<comments>http://blog.djeedjee.com/lifestyle/hide-my-ip/#comments</comments>
		<pubDate>Mon, 15 Feb 2010 09:46:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Lifestyle]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[dutch tv streaming]]></category>
		<category><![CDATA[ip hiding]]></category>
		<category><![CDATA[nederlandse tv vanuit duitsland]]></category>
		<category><![CDATA[olympic speedskating]]></category>

		<guid isPermaLink="false">http://blog.djeedjee.com/lifestyle/hide-my-ip/</guid>
		<description><![CDATA[How to get an IP address from another geographical location, then where you are at the moment.]]></description>
			<content:encoded><![CDATA[<p><a href="http://images.google.nl/imgres?imgurl=http://jarrod.stanley4.com/GreekWebPage/Olympic%2520Truce%2520Emblem.jpg&amp;imgrefurl=http://wallofspeech.blogspot.com/&amp;usg=__UFKv-_QuSDT86hN7HMU60cnPXko=&amp;h=300&amp;w=300&amp;sz=27&amp;hl=nl&amp;start=18&amp;um=1&amp;itbs=1&amp;tbnid=4Ka6PkgwNHIn2M:&amp;tbnh=116&amp;tbnw=116&amp;prev=/images%3Fq%3Dolympic%26imgtbs%3Dz%26hl%3Dnl%26sa%3DN%26tbo%3D1%26um%3D1"><img style="display: inline; margin-left: 0px; margin-right: 0px" align="right" src="http://t2.gstatic.com/images?q=tbn:4Ka6PkgwNHIn2M:http://jarrod.stanley4.com/GreekWebPage/Olympic%2520Truce%2520Emblem.jpg" width="116" height="116" /></a>This post is about something completely different than the usual stuff. I am Dutch and I am a big fan of speedskating (congratulations Sven Kramer with your marveleous victory on the 5K). But in Germany they don’t like it so much as we do. When I look on the Dutch public TV site, I found out that I am not aloud to watch speedskating from their site, based on my geographical location. This time is not about etnic or religious background, but just that I am 150km from the border of my mothers’ country. So I started to look for a solution and I found it…</p>
<p> <span id="more-21"></span><br />
<h2></h2>
<h2>Hide my IP or rather fake my location</h2>
<p>The solution is very simple, but there is a lot of fuzz about it on different kind of websites. The solution I found is not free, but for $ 29,95 I watch the Olympics now in the Dutch language (and HD).</p>
<p>The program I downloaded from <a title="http://www.hide-my-ip.com/" href="http://www.hide-my-ip.com/" target="_blank">Hide My IP</a>. You can try it for a month (don’t know what happens if you de-install it and re-install it, if the month re-news again). So I tried it, next to some other software for the “secret hide my ip” business.</p>
<h2>Does it work?</h2>
<p>Oh yes, it works. It works very well indeed. After the installation you are asked if you want to unlock, buy or try the software. Well, first try it I would say. </p>
<p><a href="http://blog.djeedjee.com/wp-content/uploads/hidemyip.gif"><img style="border-bottom: 0px; border-left: 0px; margin: 2px 2px 5px 0px; display: inline; border-top: 0px; border-right: 0px" title="hidemyip" border="0" alt="hidemyip" align="left" src="http://blog.djeedjee.com/wp-content/uploads/hidemyip_thumb.gif" width="242" height="227" /></a> </p>
<p>Although I have hidden the real IP numbers, this sample shows pretty good what can be expected. In this case, my Germany IP would be masked by a Dutch (fake, but real IP). Now were there in the beginning some situations where it didn’t hide. </p>
<p>Don’t hide with your browsers open. And don’t install more than one versions and de-install none. Install as clean as you can.</p>
<h2>Torrent</h2>
<p>Why not get one with a torrent and save me the money. Well, if you like to have your PC infected, then please go ahead and do so. Most of the torrents I have found regarding this kind of software, were full of spyware, viruses and other sick stuff. Save yourself the effort.</p>
<h2>Premium Service</h2>
<p>The maker of the software also offers a premium service where you can include MSN, Skype and Outlook to become a real James Bond on the internet, but my only purpose is to fake my geography and that can also be done with the standard version. The premium version has an annual (very expensive) fee and the standard version is a one time price. The makers could be a little bit more specific though, about their conditions.</p>
<h2>No premium service and still going Dutch?</h2>
<p>When you switch of the premium service, which can be switched on when first installed, the “desired location” is de-activated. Then it’s going to be a bit retrying, because you have to refresh the IP address until it selects one from the desired country (don’t expect to find an IP-address from China here). I think that is a big BOOO&#160; to the makers, for this is one of the big advantages why you buy this software.</p>
<h2>Legal</h2>
<p>Is it legal? I really don’t know. I think it’s legal to hide your IP, but it&#160; gets tricky at the moment you are doing stuff with it that was not legal from the start. Is it legal to watch the Olympics in this way? Well, I think that Pierre de Coubertin didn’t start these games to let commerce rule over it. Skating is holy for the Dutch, something they want to do a lot for to see the winners.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.djeedjee.com/lifestyle/hide-my-ip/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Freeware ERP from Romania based on Extjs</title>
		<link>http://blog.djeedjee.com/web-development/freeware-erp-gebaseerd-op-extjs/</link>
		<comments>http://blog.djeedjee.com/web-development/freeware-erp-gebaseerd-op-extjs/#comments</comments>
		<pubDate>Fri, 12 Feb 2010 12:54:32 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[cluj napoca]]></category>
		<category><![CDATA[erp]]></category>
		<category><![CDATA[extjs]]></category>
		<category><![CDATA[iasi]]></category>
		<category><![CDATA[romania]]></category>
		<category><![CDATA[timisoara]]></category>

		<guid isPermaLink="false">http://blog.djeedjee.com/web-development/freeware-erp-gebaseerd-op-extjs/</guid>
		<description><![CDATA[On my endless search for freeware (or almost free) software I found this application. It is originated from Romania. The software shows us a fantastic view on the possibilities of building applications with the Extjs framework. Although I have to be fair to say I only had a brief view at the deeper contents of [...]]]></description>
			<content:encoded><![CDATA[<p><img hspace="5" alt="RVX Screenshot" align="left" src="http://www.rvxmanager.com/img/rvx_mainframe.jpg" width="300" height="181" />On my endless search for freeware (or almost free) software I found this application. It is originated from Romania. The software shows us a fantastic view on the possibilities of building applications with the Extjs framework. Although I have to be fair to say I only had a brief view at the deeper contents of the package, I have to admit that it is a fine piece of work. <a href="http://www.rvxmanager.com" target="_blank">www.rvxmanager.com</a>. Also the supporting website deserves to get a big compliment. </p>
</p>
<p> <span id="more-18"></span>
</p>
<h2>IT in Romania</h2>
<p>It still is highly underestimated when something has it’s origin from Romania. This is however in many cases very unjust. Especially when we talk about ICT developments. Romania has some very good universities (Iasi, Cluj Napoca, Timisoara and Bucureşti) and in the town called in Iaşi (pronounce&#160; i-jasj) in the far north-east of the country, originates currently a real Balkan silicon valley. The software I found is a very positive signal from this highly underestimated country.</p>
<p>RVX Manager is a standard, open and flexible ERP solution with de capacity to adjust to the used business processes. It is free-of-charge, so much cheaper is hardly impossible. RVX Manager contains standard business processes like:</p>
<ul>
<li>stock management </li>
<li>finance and control </li>
<li>human resource management </li>
<li>asset management<img hspace="5" alt="" align="right" src="http://www.djeedjee.com/wp-content/uploads/ScreenHunter_12%20Jan_%2026%2000_10.gif" width="226" height="91" /> </li>
</ul>
<p>The adapted standard business model fits for every regular commercial company. It is however possible to modify the model to more complex situations. According to the makers of RVX Manager, it is designed as an open system, but can be extended with plug-ins, special fields, documents, functions, reports and custom made software modules. De company itself offers their services to support more complex implementations.</p>
<h3>Technique of the software</h3>
<p>RVX Manager is developed with freeware technology like PHP and MySQL and is executed with the use of a&#160; web browser (no doubt). The customer/user can keep the costs low. For those who love a nice frontend, the software is offering a lot . You definitely recognize the capabilities as they are offered within the ExtJS framework.</p>
<h3>Useful Links<img class="zemanta-pixie-img" alt="" src="http://img.zemanta.com/pixy.gif?x-id=9772d5b7-24f4-8f0e-9f59-1455fcaf43f5" /></h3>
</p>
</p>
<ul>
<li><a href="http://www.rvxmanager.com" target="_blank">www.rvxmanager.com</a> </li>
<li><a href="http://www.extjs.com" target="_blank">www.extjs.com</a> </li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://blog.djeedjee.com/web-development/freeware-erp-gebaseerd-op-extjs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Superscript formule with Excel</title>
		<link>http://blog.djeedjee.com/office/superscript-in-formula-with-excel/</link>
		<comments>http://blog.djeedjee.com/office/superscript-in-formula-with-excel/#comments</comments>
		<pubDate>Fri, 12 Feb 2010 12:28:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Office]]></category>
		<category><![CDATA[formula in Excel]]></category>
		<category><![CDATA[PowrDipper in Excel]]></category>
		<category><![CDATA[trademark in Excel]]></category>

		<guid isPermaLink="false">http://blog.djeedjee.com/office/superscript-in-formula-with-excel/</guid>
		<description><![CDATA[A simple explanation how to put special character in an Excel formula.]]></description>
			<content:encoded><![CDATA[<p><img hspace="5" alt="Trademark Symbol" align="right" src="http://www.djeedjee.com/wp-content/uploads/TMsymbol2.jpg" width="200" height="150" />
<p>For an Excel document I had to add a trademark to a text in Superscript. This spreadsheet however was multilanguage and the style of a superscript (TM) is not translated/converted in a formula. But with a bit of Google I have found the solution. Here is how I did it.</p>
</p>
<p> <span id="more-15"></span>
</p>
<h2>The trademark in a formula</h2>
<blockquote><p><code></code></p>
</blockquote>
<p><code>=&quot;Portable PowrDipper&quot;&amp;CHAR(153)&amp;&quot; &amp; Sprayer&quot;&amp;CHAR(153)</code></p>
<p>leads to: Portable PowrDipper<sup>TM</sup> &amp; Sprayer<sup>TM</sup></p>
<p>So when you put this in let’s say cell A1 and in cell A2 you put =A1, then in A2 the special characters are nicely converted.</p>
<h3>More special characters</h3>
<p><big><code>Euro € 0128        <br />Ellipsis … 0133         <br />Dagger † 0134         <br />Double Dagger ‡ 0135         <br />Bullet • 0149         <br />Trademark ™ 0153         <br />Cents ¢ 0162         <br />Pounds £ 0163         <br />Yen ¥ 0165         <br />Copyright © 0169         <br />Registered ® 0174         <br />Plus/Minus ± 0177         <br />Paragraph ¶ 0182         <br />Degree ° 0176 </code></big></p>
<p>Just add the number behind the character in your Excel formula.</p>
<h3>Useful links</h3>
<p><a href="http://www.cpearson.com/excel/chars.htm">http://www.cpearson.com/excel/chars.htm</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.djeedjee.com/office/superscript-in-formula-with-excel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to make a simple page ear in Joomla</title>
		<link>http://blog.djeedjee.com/web-development/page-ear-in-joomla/</link>
		<comments>http://blog.djeedjee.com/web-development/page-ear-in-joomla/#comments</comments>
		<pubDate>Fri, 12 Feb 2010 12:03:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Joomla]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[module manager]]></category>
		<category><![CDATA[simple page ear in joomla]]></category>
		<category><![CDATA[webpicasso]]></category>

		<guid isPermaLink="false">http://blog.djeedjee.com/web-development/page-ear-in-joomla/</guid>
		<description><![CDATA[A clear explanation how to produce a page ear on your site in Joomla.]]></description>
			<content:encoded><![CDATA[<p><img style="width: 175px; height: 162px" hspace="5" alt="Een pagina ear pealer voor Joomla" align="left" src="http://www.djeedjee.com/wp-content/uploads/ScreenHunter_15%20Jan_%2026%2000_45.gif" />
<p>What exactly is a “page ear”? Well that are those nice page flips, mostly on the right top of a web page. They are there to invite you to click on it, for getting some more “hidden” information (shown with some animation). As a sample I have used the “donkey-ears”&#160; from <a href="http://www.webpicasso.de/blog/pageear-free-peel-away-ad/" target="_blank">http://www.webpicasso.de/blog/pageear-free-peel-away-ad/</a>. It’s free-of-charge as long as you keep the copyright in the javascript.</p>
<p>Personally I am allergic for software that looks nice in a demo, but in your situation just don’t works. Even worse is when the manual also useless is. So I know, I create some expectation here. I will explain how my “ear” works (related to our website <a href="http://www.rjb-europe.com" target="_blank">http://www.rjb-europe.com</a>).</p>
<p> <span id="more-13"></span>
<p>In the initial file delivered throught the webpicasso stie were a few small errors. Well in our example they are out (watch the cow). Whenever it should not work, please let me know, then I will try to help. But be careful, it’s for Joomla, not for WordPress.</p>
</p>
<h2>The module</h2>
<ul>
<li>Download the file (zip file at the end of this article) place this on your desktop (temporarily). </li>
<li>Go to the Joomla backend (administrator) and find the menu for install/de-install. </li>
<li>Install the files you put on your desktop. </li>
<li>Go to the <strong>Module Manager</strong> and activate the module. </li>
</ul>
<p>Now comes the triggy part:</p>
<ul>
<li>Open with an editor (for example the free of charge and great <a href="http://www.pspad.com" target="_blank">PSPAD</a>) the index.php file from the template&#160; (in: /templates/yourtemplate-here/). So not the index.php of the Joomla installation. </li>
<li>Add the following lines (everything after &lt;body&gt;) : </li>
</ul>
<pre>&lt;body&gt;&#160; &lt;div class=&quot;pageear&quot;&gt;
&lt;jdoc:include type=&quot;modules&quot; name=&quot;&lt;span style=&quot;background-color: yellow;&quot;&gt;advert1&lt;/span&gt;&quot; /&gt;
&lt;/div&gt;</pre>
<ul>
<li>As you can see I have used zone &quot;advert1&quot; (this is a zone available in my template, but I have not uesed for something else) </li>
<li>Save your index.php to the place where it came from on your webserver </li>
<li>In the module mod_pageear you open: pageear.js (/modules/mod_pageear/). In this file you should edit untill you see the following: </li>
</ul>
<p><code><span style="background-color: yellow"><strong>var SiteRoot = '/modules/mod_pageear/';</strong></span></code> </p>
<p>// URL zum kleinen Bild / URL to small image<br />
  <br />var pagearSmallImg = SiteRoot+&#8217;<span style="background-color: yellow">ear.jpg</span>&#8216;; </p>
<p>// URL zu pageear_s.swf / URL to small pageear swf </p>
<p>var pagearSmallSwf = SiteRoot+&#8217;pageear_s.swf&#8217;;</p>
<p>// URL zum großen Bild / URL to big image<br />
  <br />var pagearBigImg = SiteRoot+&#8217;<span style="background-color: yellow">peal.jpg</span>&#8216;; </p>
<p>// URL zu pageear_b.swf / URL to big pageear swf </p>
<p>var pagearBigSwf = SiteRoot+&#8217;pageear_b.swf&#8217;;</p>
</p>
<h3>Small explanation</h3>
<p>the variable SiteRoot (respect the character casting of small and big characters) tells the system where the module resources (pictures and flash) can be found. I have replaced the names of the images in our example by: ear.jpg (the ear) and peal.jpg (the peal down).</p>
<h3>the images</h3>
<p>So the images are:</p>
<ul>
<li>ear.jpg = the ear = 100&#215;100 pixels </li>
<li>peal.jpg = peal down = 500&#215;500 pixels (save the cow peal.jpg from <a href="http://www.rjb-europe.com">www.rjb-europe.com</a> and you can see what you can spend on your own design) </li>
</ul>
<h3>de Module download file</h3>
<p>download: <a href="http://www.djeedjee.com/wp-content/uploads/mod_pageear.zip" target="_blank">the Joomla Page Ear Module</a></p>
<div class="zemanta-pixie"><img class="zemanta-pixie-img" alt="" src="http://img.zemanta.com/pixy.gif?x-id=3cc20887-c34d-8789-a85b-803d5513db40" /></div>
<div class="zemanta-pixie">Have fun! Please send me a comment or email, where on internet your own “ear” can be found.</div>
]]></content:encoded>
			<wfw:commentRss>http://blog.djeedjee.com/web-development/page-ear-in-joomla/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>DjeeDjee blogs now also in English</title>
		<link>http://blog.djeedjee.com/general/now-also-in-english/</link>
		<comments>http://blog.djeedjee.com/general/now-also-in-english/#comments</comments>
		<pubDate>Thu, 11 Feb 2010 21:44:43 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Bad Salzuflen]]></category>
		<category><![CDATA[bigger audience]]></category>
		<category><![CDATA[djeedjee]]></category>
		<category><![CDATA[web development]]></category>

		<guid isPermaLink="false">http://blog.djeedjee.com/?p=8</guid>
		<description><![CDATA[After starting www.djeedjee.com in Dutch (Nederlands) a while ago, this blog will be completely in English]]></description>
			<content:encoded><![CDATA[<p>My name is Johan van de Merwe and I am living in Bad Salzuflen, Germany. I was born however in a town called Nijverdal in the Netherlands. You probably never heard of me and that is fine. But now that you are here on my blog, I hope you will come back once in a while.</p>
<p>My other blog is <a href="http://www.djeedjee.com">www.djeedjee.com</a> and that is completely in the Dutch (Nederlandse) language. The blog is about all that is interesting about developing for the web, mainly web applications, based on frameworks like jQuery, CodeIgniter and ExtJS.</p>
<p>As a challenge to see if I can reach a bigger audience (for I want to learn also something myself) I have decided to also blog in English. This blog will not be a one-to-one translation of the Dutch blog, but also have it’s own thing once in a while. In next few days, I will add quickly more content and hopefully together with the readers produce something nice.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.djeedjee.com/general/now-also-in-english/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

