<?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>Jeez Tech &#187; Windows</title>
	<atom:link href="http://jeez.eu/tag/windows/feed/" rel="self" type="application/rss+xml" />
	<link>http://jeez.eu</link>
	<description>Jeez Aggressive Technology</description>
	<lastBuildDate>Mon, 24 May 2010 13:41:51 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='jeez.eu' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
		<item>
		<title>IE Only, Cool Features, That Should Exist On Other Browsers Too</title>
		<link>http://jeez.eu/2009/10/16/ie-only-cool-features-that-should-exist-on-other-browsers-too/</link>
		<comments>http://jeez.eu/2009/10/16/ie-only-cool-features-that-should-exist-on-other-browsers-too/#comments</comments>
		<pubDate>Fri, 16 Oct 2009 17:13:47 +0000</pubDate>
		<dc:creator>Kerasiotis Vasileios</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Chrome]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[Opera]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://jeez.eu/?p=604</guid>
		<description><![CDATA[OK Internet Explorer (mainly &#60;7 ) is the source of headache for most of us.  The box model, [...]]]></description>
			<content:encoded><![CDATA[<p>OK Internet Explorer (mainly &lt;7 ) is the source of headache for most of us.  The box model, the transparency problem and it&#8217;s poor CSS support have made designers hack their code to have their designs look the same (not always though) on IE as they would on all other browsers. But, there are some awesome, IE specific, features that should be present on other browsers too. In this article, we will list some IE features that Firefox, Opera and other browsers should have.</p>
<h3>The CSS Filter Property</h3>
<p>Internet Explorer supports a <em>filter:command</em> style CSS property that can add some style to HTML elements on your pages. For example you can create a fade effect on any block element on your pages with:</p>
<pre class="brush: css;">ELEMENT {filter: Chroma(Color=#C1DEFF) Alpha(Opacity=200, FinishOpacity=0, Style=2, StartX=gradient start X position, StartY=gradient starting Y position, FinishX=gradient finishing X position, FinishY=gradient finishing Y position)
}</pre>
<p>where &#8220;ELEMENT&#8221; is any block element. You can use the above code to transform this image:</p>
<p><a href="http://jeez.eu/wp-content/uploads/2009/10/test.jpg" rel="lightbox[604]"><img class="alignnone size-full wp-image-605" title="test" src="http://jeez.eu/wp-content/uploads/2009/10/test.jpg" alt="test" width="360" height="471" /></a></p>
<p>to something like this:</p>
<p><a href="http://jeez.eu/wp-content/uploads/2009/10/effected.jpg" rel="lightbox[604]"><img class="alignnone size-full wp-image-609" title="effected" src="http://jeez.eu/wp-content/uploads/2009/10/effected.jpg" alt="effected" width="381" height="489" /></a></p>
<p>You can also create gradient div elements with the same trick. Another great method of the filter property is &#8220;<strong>filter:gray</strong>&#8221; which, when used on images, the images will be gray-scaled. So by doing this:</p>
<pre class="brush: css;">img{
filter:gray;
}</pre>
<p>will display the image like this:</p>
<p><a href="http://jeez.eu/wp-content/uploads/2009/10/grayed.jpg" rel="lightbox[604]"><img class="alignnone size-full wp-image-610" title="grayed" src="http://jeez.eu/wp-content/uploads/2009/10/grayed.jpg" alt="grayed" width="359" height="470" /></a></p>
<p>while by using the &#8220;<strong>filter:fliph</strong>&#8221; or &#8220;<strong>filter:flipv</strong>&#8221; methods, the images will be flipped horizontally and vertically accordingly. The next cool filter method is &#8220;<strong>filter:invert</strong>&#8221; which when used on images, would display the image like this:</p>
<p><a href="http://jeez.eu/wp-content/uploads/2009/10/inverted.jpg" rel="lightbox[604]"><img class="alignnone size-full wp-image-608" title="inverted" src="http://jeez.eu/wp-content/uploads/2009/10/inverted.jpg" alt="inverted" width="362" height="470" /></a></p>
<p>Another image transformation can be achieved with &#8220;<strong>filter:wave</strong>&#8220;. You might have guessed what this method does but if you didn&#8217;t, put this code in your page:</p>
<pre class="brush: css;">
img{
filter:wave(Strength=5,lightstrength=15)
}
</pre>
<p>and you should get an image with a wave effect like this:</p>
<p><a href="http://jeez.eu/wp-content/uploads/2009/10/wave.jpg" rel="lightbox[604]"><img class="alignnone size-full wp-image-611" title="wave" src="http://jeez.eu/wp-content/uploads/2009/10/wave.jpg" alt="wave" width="362" height="471" /></a></p>
<p>A method similar to the &#8220;filter:invert&#8221; method is &#8220;<strong>filter:xray</strong>&#8221; which produces the following effect:</p>
<p><a href="http://jeez.eu/wp-content/uploads/2009/10/xray.jpg" rel="lightbox[604]"><img class="alignnone size-full wp-image-612" title="xray" src="http://jeez.eu/wp-content/uploads/2009/10/xray.jpg" alt="xray" width="361" height="466" /></a></p>
<p>wait.. There&#8217;s some more.</p>
<p>You can pixelate any image with this code:</p>
<pre class="brush: css;">img{
 filter:progid:DXImageTransform.Microsoft.Pixelate(maxsquare=6)
}</pre>
<p>eg:</p>
<p><a href="http://jeez.eu/wp-content/uploads/2009/10/pixels.jpg" rel="lightbox[604]"><img class="alignnone size-full wp-image-613" title="pixels" src="http://jeez.eu/wp-content/uploads/2009/10/pixels.jpg" alt="pixels" width="359" height="471" /></a></p>
<p>add some blur with &#8220;<strong>filter:blur(strength=VALUE)</strong>&#8220;:</p>
<pre class="brush: css;">img{
blur(Strength=&quot;50&quot;)
}</pre>
<p><a href="http://jeez.eu/wp-content/uploads/2009/10/blur.jpg" rel="lightbox[604]"><img class="alignnone size-full wp-image-614" title="blur" src="http://jeez.eu/wp-content/uploads/2009/10/blur.jpg" alt="blur" width="360" height="469" /></a></p>
<p>or add some glowing effects to some text and keep the text selectable as shown here:</p>
<p><a href="http://jeez.eu/wp-content/uploads/2009/10/glow.png" rel="lightbox[604]"><img class="alignnone size-full wp-image-615" title="glow" src="http://jeez.eu/wp-content/uploads/2009/10/glow.png" alt="glow" width="202" height="72" /></a></p>
<p>with this code:</p>
<pre class="brush: css;">p{
filter: glow(Color=&quot;#000eee&quot;,Strength=&quot;6&quot;);
 width:200px;
 font-size:30px;
}</pre>
<p>and adding shadows to text can be done with this code:</p>
<pre class="brush: css;">p{
filter: dropShadow(color=&quot;#ddd0d0&quot;,offX=&quot;2&quot;,offY=&quot;2&quot;);
 width:200px;
 font-size:40px;
}</pre>
<p>The result is not 100% what we expected though since the transformation sharpens our text:</p>
<p><a href="http://jeez.eu/wp-content/uploads/2009/10/shadow.png" rel="lightbox[604]"><img class="alignnone size-full wp-image-616" title="shadow" src="http://jeez.eu/wp-content/uploads/2009/10/shadow.png" alt="shadow" width="205" height="139" /></a></p>
<p>The <a title="MSDN about filter" href="http://msdn.microsoft.com/en-us/library/ms532849%28VS.85%29.aspx" target="_blank">MSDN</a> site has a lot of info about the filter property and some other <a title="CSS Reference" href="http://msdn.microsoft.com/en-us/library/ms531209%28VS.85%29.aspx" target="_blank">IE specific CSS properties</a> in case you are interested in it.</p>
<p>We do not advise you to use any of these CSS properties on your pages here. We are just trying to show that some of these properties could be added to other browsers too, since most of them have to do with presentation and style. For example why use a heavy JS library to add some effects like fade or gray-scale when you can do it with 1 line of text?</p>
<p>For flame lovers:</p>
<p>We use Opera (70%) and FireFox (30%). So, no IE lovers here&#8230;</p>
<img src="http://jeez.eu/?ak_action=api_record_view&id=604&type=feed" alt="" /><p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fjeez.eu%2F2009%2F10%2F16%2Fie-only-cool-features-that-should-exist-on-other-browsers-too%2F&amp;linkname=IE%20Only%2C%20Cool%20Features%2C%20That%20Should%20Exist%20On%20Other%20Browsers%20Too"><img src="http://jeez.eu/wp-content/plugins/add-to-any/share_save_256_24.png" width="256" height="24" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://jeez.eu/2009/10/16/ie-only-cool-features-that-should-exist-on-other-browsers-too/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Reviewing Handy Backup &amp; 3 Full Licenced Copies Give Away</title>
		<link>http://jeez.eu/2009/10/12/reviewing-handy-backup-3-full-licenced-copies-give-away/</link>
		<comments>http://jeez.eu/2009/10/12/reviewing-handy-backup-3-full-licenced-copies-give-away/#comments</comments>
		<pubDate>Mon, 12 Oct 2009 16:21:03 +0000</pubDate>
		<dc:creator>Kerasiotis Vasileios</dc:creator>
				<category><![CDATA[Tools]]></category>
		<category><![CDATA[Backup]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://jeez.eu/?p=580</guid>
		<description><![CDATA[Your computer setup is a reflection of you. Sure, everyone has their documents folder, their pictures folder, their [...]]]></description>
			<content:encoded><![CDATA[<p>Your computer setup is a reflection of you. Sure, everyone has their documents folder, their pictures folder, their office applications &#8211; but that&#8217;s where most similarities end. Think about it, your Photoshop settings, IM tweaks, browser preferences&#8230; everything is set up just the way you like it. Wouldn&#8217;t it be great if you could keep a backup of everything?<br />
Most backup software out there treats your data like big, faceless chunks of memory. They perform brute backups of your hard drive without regard to the fact that you did, really, truly, have things just the way you liked &#8216;em!.</p>
<p><a href="http://jeez.eu/wp-content/uploads/2009/10/handybackup-pro-631.png" rel="lightbox[580]"><img class="alignnone size-large wp-image-583" title="handybackup-pro-631" src="http://jeez.eu/wp-content/uploads/2009/10/handybackup-pro-631-600x450.png" alt="handybackup-pro-631" width="600" height="450" /></a></p>
<p>This is where <a title="Handy Backup" href="http://www.handybackup.net/" target="_blank">Handy Backup</a>™ comes in to play. Handy Backup is a different kind of backup application. It&#8217;s fully extensible, featuring free plug-ins that are designed to completely backup not only data, but also the settings, playlists, skins, and other specifics of the individual applications that you&#8217;ve tweaked to perfection.<br />
Handy Backup includes plug-ins for all of the popular programs (such as Outlook and Windows Mail), and if you don&#8217;t see what you need, you can actually create your own plug-in (as an XML specification) for that special app.</p>
<h3>Get a Full Licenced copy of Handy Backup.</h3>
<p><a title="Novosoft LLC" href="http://novosoft.net/" target="_blank">Novosoft LLC</a> kindly provided to us a full version of Handy Backup for review. We also managed to get 3 more <a title="Handy Backup Pro" href="http://www.handybackup.net/handybackup-professional.shtml" target="_blank">Handy Backup Professional</a> licences for our readers. Winners also get free unlimited support. So, if you want to get a full registered copy of this awesome tool, you can post a comment on this article using this pattern (<em>Follow this pattern to help us easily identify your participation. Every comment will be in the lottery</em>):</p>
<p><em>&#8220;For Handy Backup Pro Licenced Copy&#8221;<br />
</em></p>
<p>Don&#8217;t forget to fill in a valid email in order to contact you if you are a winner. The winners will be announced at October 25 and the lottery will be held using the random number generator at <a title="Random Number Service" href="http://www.random.org/" target="_blank">www.random.org</a>.</p>
<h3>Features</h3>
<p>Besides files, folders and HDD images, the program features plug-ins for backing up MS Exchange, MS SQL, DB2 databases and Lotus Notes/Domino data stored on the central server. Also, you can back up Oracle database and ODBC-compatible databases that can be located on both local server and remote workstations.</p>
<p>Data transferred to the central server can be stored on the widest range of backup media: you can backup to FTP, SFTP, Network, FireWire and USB hard/flash drives, CD, DVD, Blu-Ray, HD DVD and much more. Detailed online help is available.</p>
<p>Comprehensible user interface provides easy step-by-step adjustment of network backup, with options of compression, encryption and flexible task scheduling. E-mail notifications, command line interface and log file generation ease task management by system administrator.</p>
<p>Centralized workstation backup and an ability of fast system recovery distinguish Handy Backup Server from other network backup software. The utility proudly carries the &#8220;Certified for Windows Vista&#8221; and &#8220;Works with Windows Server 2008&#8243; logos and is acknowledged as one of the best tools for backup and recovery of the entire office network or a local server.</p>
<h3>Plugins Creation</h3>
<p>Creating a plugin for Handy Backup requires only some basic XML knowledge. Say for example that you need to keep a backup of your custom application files and settings. Then, the best thing to do, is to create an XML file with your application&#8217;s path and special settings and you are ready to go. The best part of the process, is that if you submit the plugin to Novosoft and, it works correctly, you will get a full licence of &#8220;Handy Backup Full&#8221;. So in other words, you can win $199 by just creating a plugin!</p>
<p>So, lets see how you can create one. Each plug-in represents a well-formed XML document written according to XML 1.0 specification (http://www.w3.org/TR/xml). The plugin must contain the following essential parts &#8211; Prolog and only one root element (which looks like &lt;root&gt;&lt;/root&gt;). The root element must contain only one Description and several Backup elements. Prolog is the xml specification:</p>
<pre class="brush: xml;">&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot;?&gt;</pre>
<p>The root part consists of two elements. These are:</p>
<ul>
<li>The Description element and,</li>
<li>the Backup element.</li>
</ul>
<p><strong>The Description Element</strong></p>
<p>The description element is used to provide information about the plugin. There are four child elements available:</p>
<ul>
<li>Name &#8211; application name, for which plug-in is created.</li>
<li>Group &#8211; category name that contains this application.</li>
<li>Version &#8211; compatible application versions, for which plug-in is created.</li>
<li>Author &#8211; plug-in author name.</li>
</ul>
<p>Here is an example Description element for an imaginary application:</p>
<pre class="brush: xml;">&lt;Description&gt;
&lt;Name&gt;Fractals Creator Pro&lt;/Name&gt;
&lt;Group&gt;Drawing&lt;/Group&gt;
&lt;Version&gt;2.0.1&lt;/Version&gt;
&lt;Author&gt;Joe Doe&lt;/Author&gt;
&lt;/Description&gt;</pre>
<p><strong>The Backup Element</strong></p>
<p>This element contains the information about the data, that this plugin backups. There may be several elements. It is obligatory to indicate the attribute id, which identifies the element unambiguously, even if there is only 1 Backup element.This element also consists of child elements:</p>
<ul>
<li>Path<br />
It contains the information for determining full path to the folder, where the application which we backup is installed. This path may be used with the help of the expression &#8220;$PATH$&#8221; within the limits of the element. There may be several Path elements; the real application path is determined by the first correct element. Available child elements within the Path element include:</p>
<ul>
<li>Type &#8211; the type of a search algorithm. The possible values 1,2,3 (The types are explained in detail later in this article)</li>
<li>KeyPath &#8211; the relative registry path.</li>
<li>KeyValue &#8211; the name of a registry value.</li>
<li>FileName &#8211; the name of a file.</li>
<li>IncludeSub &#8211; the registry search optimization parameter (to include subdirectories or not). The possible values are true and false and, can only be used if the type is set to 3.</li>
</ul>
</li>
<li>File &#8211; Contains the path to the file, which must be backed up.</li>
<li>Folder &#8211; Contains the path to the folder, which must be backed up. All the subdirectories of the stated directory are always backed up.</li>
<li>Registry &#8211; Contains the path to the registry key, which must be backed up. The subkeys of the stated key are always backed up.</li>
</ul>
<p>Here is an example Backup element for an imaginary application:</p>
<pre class="brush: xml;">&lt;Backup id=&quot;Main&quot;&gt;
&lt;Path&gt;
&lt;Type&gt;1&lt;/Type&gt;
&lt;FileName&gt;fractalspro.exe&lt;/FileName&gt;
&lt;KeyPath&gt;fractalspro.exe&lt;/KeyPath&gt;
&lt;KeyValue/&gt;
&lt;/Path&gt;
&lt;Folder&gt;$PATH$\&lt;/Folder&gt;
&lt;Folder&gt;$APPDATA$\fractalspro\&lt;/Folder&gt;
&lt;Path&gt;
&lt;Type&gt;3&lt;/Type&gt;
&lt;KeyPath&gt;HKEY_CURRENT_USER\Software\fractals\fractalspro\&lt;/KeyPath&gt;
&lt;KeyValue/&gt;
&lt;FileName/&gt;
&lt;IncludeSub&gt;TRUE&lt;/IncludeSub&gt;
&lt;/Path&gt;
&lt;Folder&gt;$PATH$\&lt;/Folder&gt;
&lt;Registry&gt;HKEY_CURRENT_USER\Software\fractals\fractalspro\&lt;/Registry&gt;
&lt;IncludeSub&gt;TRUE&lt;/IncludeSub&gt;
&lt;/Backup&gt;</pre>
<p>So putting the two elements together we get the full plugin file:</p>
<pre class="brush: xml;">&lt;root&gt;
&lt;Description&gt;
&lt;Name&gt;Fractals Creator Pro&lt;/Name&gt;
&lt;Group&gt;Drawing&lt;/Group&gt;
&lt;Version&gt;2.0.1&lt;/Version&gt;
&lt;Author&gt;Joe Doe&lt;/Author&gt;
&lt;/Description&gt;
&lt;Backup id=&quot;Main&quot;&gt;
&lt;Path&gt;
&lt;Type&gt;1&lt;/Type&gt;
&lt;FileName&gt;fractalspro.exe&lt;/FileName&gt;
&lt;KeyPath&gt;fractalspro.exe&lt;/KeyPath&gt;
&lt;KeyValue/&gt;
&lt;/Path&gt;
&lt;Folder&gt;$PATH$\&lt;/Folder&gt;
&lt;Folder&gt;$APPDATA$\fractalspro\&lt;/Folder&gt;
&lt;Path&gt;
&lt;Type&gt;3&lt;/Type&gt;
&lt;KeyPath&gt;HKEY_CURRENT_USER\Software\fractals\fractalspro\&lt;/KeyPath&gt;
&lt;KeyValue/&gt;
&lt;FileName/&gt;
&lt;IncludeSub&gt;TRUE&lt;/IncludeSub&gt;
&lt;/Path&gt;
&lt;Folder&gt;$PATH$\&lt;/Folder&gt;
&lt;Registry&gt;HKEY_CURRENT_USER\Software\fractals\fractalspro\&lt;/Registry&gt;
&lt;IncludeSub&gt;TRUE&lt;/IncludeSub&gt;
&lt;/Backup&gt;
&lt;/root&gt;</pre>
<h3>Enviromental Variables and Types</h3>
<p>In the plugin&#8217;s creation process, you will need to know what types of search algorithms are available and which variables you can use to create it. The algorithm types are:</p>
<ol>
<li>There is a key search in the path of the Registry &#8220;HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\&lt;KeyPath&gt;&#8221;. If the key is found, we look for the variable &lt;KeyValue&gt; in this key. If there is the variable, we read it. There must be the path to the folder where the program is located. We look for the file &lt;FileName&gt; on this path. If this file exists, it means this is the needed path. Hence, the search is unzipped.</li>
<li>There is a search of the key, containing the information about the file extension associated with the program, in the path of the Registry &#8220;HKEY_CLASSES_ROOT\&lt;KeyPath&gt;&#8221;. If the key is found, we look for the variable &lt;KeyValue&gt; in this key. If there is the variable, we read it. There must be the path to the folder, where it is the program, in the following format: &lt;the path to the folred&gt;, &lt;identifier &gt;. We look for file &lt;FileName&gt; on this path. If this file exists, it means that this is the needed path. Hence, the search is unzipped.</li>
<li>There is a key search in the path of the Registry &#8220;&lt;KeyPath&gt;&#8221;. If the key is found, we look for the variable &lt;KeyValue&gt; in this key. If there is the variable, we read it. There must be the path to the folder, where it is the program. We look for the file &lt;FileName&gt; on this path. If this file exists, it means this is the needed path. Hence, the search is unzipped. If the value&lt;IncludeSub&gt;=TRUE, then, if the search fails, there is the search of values of all keys included in &lt;KeyPath&gt;.</li>
</ol>
<p><strong>And some Windows enviromental variables</strong>:</p>
<ul>
<li>$PATH$ &#8211; path to the folder, where the program is installed. It is determined in the element &lt;Path&gt;.</li>
<li>$ADMINTOOLS$ &#8211; File system directory that is used to store administrative tools for an individual user</li>
<li>$ALTSTARTUP$ &#8211; File system directory that corresponds to the user&#8217;s nonlocalized Startup program group.</li>
<li>$APPDATA$ &#8211; File system directory that serves as a common repository for application-specific data. A typical path is C:\Documents and Settings\username\Application Data</li>
<li>$CDBURN_AREA$ &#8211; File system folder used to hold data for burning to a CD. Typically [User Profile Folder]\Local Settings\Applications Data\Microsoft\CD Burning.</li>
<li>$COMMON_ADMINTOOLS$ &#8211; File system directory containing administrative tools for all users of the computer.</li>
<li>$COMMON_ALTSTARTUP$ &#8211; File system directory that corresponds to the nonlocalized Startup program group for all users. Valid only for Windows NT® systems.</li>
<li>$COMMON_APPDATA$ &#8211; Application data for all users. A typical path is C:\Documents and Settings\All Users\Application Data.</li>
<li>$COMMON_DESKTOPDIRECTORY$ &#8211; File system directory that contains files and folders that appear on the desktop for all users. A typical path is C:\Documents and Settings\All Users\Desktop. Valid only for Windows NT® systems.</li>
<li>$COMMON_DOCUMENTS$ &#8211; File system directory that contains documents that are common to all users. Typical paths are C:\Documents and Settings\All Users\Documents.</li>
<li>$COMMON_FAVORITES$ &#8211; File system directory that serves as a common repository for all users&#8217; favorite items. Valid only for Windows NT® systems.</li>
<li>$ COMMON_MUSIC$ &#8211; My Music folder for all users.</li>
<li>$COMMON_PICTURES$ &#8211; My Pictures folder for all users.</li>
<li>$COMMON_PROGRAMS$ &#8211; File system directory that contains the directories for the common program groups that appear in the Start Menu for all users. A typical path is C:\Documents and Settings\All Users\Start Menu\Programs. Valid only for Windows NT systems.</li>
<li>$COMMON_STARTMENU$ &#8211; File system directory that contains the programs and folders that appear on the Start Menu for all users. A typical path is C:\Documents and Settings\All Users\Start Menu. Valid only for Windows NT systems.</li>
<li>$COMMON_STARTUP$ &#8211; File system directory that contains the programs that appear in the Startup folder for all users. A typical path is C:\Documents and Settings\All Users\Start Menu\Programs\Startup. Valid only for Windows NT systems.</li>
<li>$DESKTOP$ &#8211; Windows desktop-virtual folder that is the root of the name space.</li>
<li>$FAVORITES$ &#8211; File system directory that serves as a common repository for the user&#8217;s favorite items. A typical path is C:\Documents and Settings\username\Favorites.</li>
<li>$FONTS$ &#8211; Virtual folder that contains fonts. A typical path is C:\WINNT\Fonts.</li>
<li>$HISTORY$ &#8211; File system directory that serves as a common repository for Internet history items.</li>
<li>$INTERNET_CACHE$ &#8211; File system directory that serves as a common repository for temporary Internet files. A typical path is C:\Documents and Settings\username\Temporary Internet Files.</li>
<li>$LOCAL_APPDATA$ &#8211; File system directory that serves as a data repository for local (nonroaming) applications. A typical path is C:\Documents and Settings\username\Local Settings\Application Data.</li>
<li>$MYMUSIC$ &#8211; File system directory that serves as a common repository for music files. A typical path is C:\My Music.</li>
<li>$MYPICTURES$ &#8211; My Pictures folder. A typical path is C:\Documents and Settings\username\My Documents\My Pictures.</li>
<li>$MYVIDEO$ &#8211; File system directory that serves as a common repository for video files.</li>
<li>$NETHOOD$ &#8211; A file system folder that contains the link objects that can exist in the My Network Places virtual folder. A typical path is C:\Documents and Settings\username\NetHood.</li>
<li>$STARTMENU$ &#8211; File system directory that contains Start Menu items. A typical path is C:\Documents and Settings\username\Start Menu.</li>
<li>$STARTUP$ &#8211; File system directory that corresponds to the user&#8217;s Startup program group. The system starts these programs whenever any user logs onto Microsoft® Windows NT® or starts Microsoft® Windows® 98. A typical path is C:\Documents and Settings\username\Start Menu\Programs\Startup.</li>
<li>$SYSTEM$ &#8211; System folder. A typical path is C:\WINNT\SYSTEM32</li>
<li>$WINDOWS$ &#8211; Windows directory or SYSROOT. This corresponds to the %windir% or %SYSTEMROOT% environment variables. A typical path is C:\WINNT.</li>
</ul>
<p>If you want to test Handy Backup, you can download a <a title="Download Handy Backup Trial" href="http://www.handybackup.net/download.shtml" target="_blank">full-featured 30-days trial</a> and share your impressions with us.</p>
<img src="http://jeez.eu/?ak_action=api_record_view&id=580&type=feed" alt="" /><p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fjeez.eu%2F2009%2F10%2F12%2Freviewing-handy-backup-3-full-licenced-copies-give-away%2F&amp;linkname=Reviewing%20Handy%20Backup%20%26%23038%3B%203%20Full%20Licenced%20Copies%20Give%20Away"><img src="http://jeez.eu/wp-content/plugins/add-to-any/share_save_256_24.png" width="256" height="24" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://jeez.eu/2009/10/12/reviewing-handy-backup-3-full-licenced-copies-give-away/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>A Look Into Debuggers and Their Features</title>
		<link>http://jeez.eu/2009/09/28/a-look-into-debuggers-and-their-features/</link>
		<comments>http://jeez.eu/2009/09/28/a-look-into-debuggers-and-their-features/#comments</comments>
		<pubDate>Mon, 28 Sep 2009 08:46:02 +0000</pubDate>
		<dc:creator>Kerasiotis Vasileios</dc:creator>
				<category><![CDATA[Tools]]></category>
		<category><![CDATA[C++]]></category>
		<category><![CDATA[Developing]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://jeez.eu/?p=440</guid>
		<description><![CDATA[Programming requires essential tools that will aid your knowledge into creating applications that work as supposed to. The [...]]]></description>
			<content:encoded><![CDATA[<p>Programming requires essential tools that will aid your knowledge into creating applications that work as supposed to. The most essential tool is definetely the debugger. We take a look at some noticable debuggers and some of their basic features.</p>
<p><a title="AppPuncher" href="http://www.themidnightcoders.com/products/ria-apppuncher/overview.html" target="_blank">AppPuncher</a> &#8211; Client/server debugging system for Flex, Flash and Silverlight</p>
<p>The architectural complexity of RIAs calls for special approaches in running tests and achieving quality assurance. For instance, an application may support different workflows based on the role of the user working with the application.</p>
<p>Key Features are:</p>
<ul>
<li>Support for AMF, RTMP, HTTP and XML/REST protocols</li>
<li>Intuitive and intelligent native and browser-based interfaces</li>
<li>Test Repository facilitates collaboration and test coordination</li>
<li>Play-and-Record facilitates recreation of events for troubleshooting</li>
<li>Test Scheduler for automated testing</li>
<li>Load Testing Engine coordinates thousands of concurrent client</li>
<li>connections for realistic load testing</li>
<li>Server Monitor facilitates isolation of performance problems</li>
<li>Report Manager provides flexible reporting options</li>
</ul>
<p><a title="DBG" href="http://www.php-debugger.com/dbg/" target="_blank">DBG</a></p>
<p>DBG is a a full-featured php debugger, an interactive tool that helps you debugging php scripts. It works on a production and/or development WEB server and allows you debug your scripts locally or remotely, from an IDE or console. It is the debugger used in NuSphere&#8217;s PhpED (a commercial IDE for PHP).</p>
<p>Features:</p>
<ul>
<li>steping</li>
<li>breakpoints</li>
<li>conditional breakpoints</li>
<li>watches</li>
<li>call-stack</li>
<li>error tracing</li>
<li>just-in-time debugging</li>
<li>profiler</li>
<li>global breakpoints</li>
<li>change execution point</li>
</ul>
<p><a title="Data Display Debugger" href="http://www.gnu.org/software/ddd/" target="_blank">DDD</a> &#8211; Data Display Debugger</p>
<p>GNU DDD is a graphical front-end for command-line debuggers such as GDB, DBX, WDB, Ladebug, JDB, XDB, the Perl debugger, the bash debugger bashdb, the GNU Make debugger remake, or the Python debugger pydb. Besides &#8220;usual&#8221; front-end features such as viewing source texts, DDD has become famous through its interactive graphical data display, where data structures are displayed as graphs.</p>
<p><a title="Allinea" href="http://www.allinea.com/index.php?page=48" target="_blank">Allinea</a> &#8211; Distributed Debugging Tool</p>
<p>DDT, the Distributed Debugging Tool is a comprehensive graphical debugger for scalar, multi-threaded and large-scale parallel applications that are written in C, C++ and Fortran. A programmable STL Wizard enables you to view C++ Standard Template Library variables like the abstract data they represent, viewing lists, maps, sets, multimaps, pairs, deques and strings easily. It is also extensible to let you visualize your own complex classes as you would like.</p>
<p><a title="Opera Dragonfly" href="http://dev.opera.com/articles/view/introduction-to-opera-dragonfly/" target="_blank">Opera Dragonfly</a></p>
<p>In version 9.5, Opera introduced Dragonfly, a full-fledged online debugging tool, that allows debugging of the HTML DOM, Javascript, CSS and much more. For example, a user can set breakpoints, alter scripts on-the-fly and execute statements in the current environment from a console. Opera&#8217;s implementation of the developer tools allows remote debugging, which is the ability to debug, from a desktop Opera instance, a webpage running anywhere, like a mobile device or another computer. Opera Dragonfly is included in versions 9.5 and up.</p>
<p>Features:</p>
<ul>
<li>JavaScript debugger</li>
<li>DOM inspector</li>
<li>CSS inspector</li>
<li>Command Line to allow commands to be inputed</li>
<li>Error Console that outputs validation errors and warnings exhibited by the CSS and JavaScript connected with the page</li>
<li>Proxy to allow debugging directly on mobile devices</li>
</ul>
<p><a title="Coldfusion" href="http://www.adobe.com/products/coldfusion/" target="_blank">FusionDebug</a></p>
<p>FusionDebug an interactive step debugger for Adobe ColdFusion and Railo CFML Engine. Step through code line-by-line, step into, step over or out of code to better understand how CFML code is running. FusionDebug can be used as an alternative to using CFOUTPUT/CFDUMP statements.</p>
<p>Features:</p>
<ul>
<li>Support for CF frameworks and Adobe Flex Builder 2</li>
<li>Comes with a full installer which includes a complete IDE containing CFEclipse</li>
<li>Step through code line-by-line (where needed)</li>
<li>Drill into variables and scopes</li>
<li>Run to line functionality</li>
<li>Associate custom file extensions with FusionDebug</li>
<li>Set breaks on runtime custom exceptions</li>
<li>View stack traces</li>
</ul>
<p><a title="TotalView" href="http://www.totalviewtech.com/products/totalview.html" target="_blank">TotalView</a> &#8211; Parallel and Thread Debugger</p>
<p>TotalView is a GUI-based source code defect analysis tool that gives you unprecedented control over processes and thread execution and visibility into program state and variables.<br />
It allows you to debug one or many processes and/or threads with complete control over program execution.  You can reproduce and troubleshoot difficult problems that can occur in concurrent programs that take advantage of threads, OpenMP, MPI, or computational accelerators.</p>
<p><a title="GNU Debugger" href="http://www.gnu.org/software/gdb/" target="_blank">GDB</a></p>
<p>GDB, the GNU Project debugger, allows you to see what is going on `inside&#8217; another program while it executes &#8212; or what another program was doing at the moment it crashed.<br />
GDB can do four main kinds of things (plus other things in support of these) to help you catch bugs in the act:</p>
<ul>
<li> Start your program, specifying anything that might affect its behavior.</li>
<li> Make your program stop on specified conditions.</li>
<li> Examine what has happened, when your program has stopped.</li>
<li> Change things in your program, so you can experiment with correcting the effects of one bug and go on to learn about another.</li>
</ul>
<p>The program being debugged can be written in Ada, C, C++, Objective-C, Pascal (and many other languages). Those programs might be executing on the same machine as GDB (native) or on another machine (remote). GDB can run on most popular UNIX and Microsoft Windows variants.</p>
<p><a title="Insure++" href="http://www.parasoft.com/jsp/products/home.jsp?product=Insure" target="_blank">Insure++</a></p>
<p>Insure++ is a memory debugger computer program, used by software developers to detect various errors in programs written in C and C++. It is made by Parasoft, and is functionally similar to other memory debuggers, such as Purify and Valgrind.</p>
<p>Features:</p>
<ul>
<li>Corrupted heap and stack memory</li>
<li>Use of uninitialized variables and objects</li>
<li>Array and string bounds errors on heap and stack</li>
<li>Use of dangling, NULL, and uninitialized pointers</li>
<li>All types of memory allocation and free errors or mismatches</li>
<li>All types of memory leaks</li>
<li>Type mismatches in global declarations, pointers, and function calls</li>
<li>Some varieties of dead code (compile-time)</li>
</ul>
<p><a title="IDA" href="http://www.hex-rays.com/idapro/" target="_blank">IDA</a> &#8211; Interactive Disassembler</p>
<p>The Interactive Disassembler, more commonly known as simply IDA, is a disassembler widely used for reverse engineering. It supports a variety of executable formats for different processors and operating systems. It also can be used as a debugger for Windows PE, Mac OS X Mach-O, and Linux ELF executables. A decompiler plugin for programs compiled with a C/C++ compiler is available at extra cost. The latest full version of Ida Pro is commercial software; an earlier and less capable version is available for download free of charge.</p>
<p>IDA performs much automatic code analysis, using cross-references between code sections, knowledge of parameters of API calls, and other information. However the nature of disassembly precludes total accuracy, and a great deal of human intervention is necessarily required; IDA has interactive functionality to aid in improving the disassembly. A typical IDA user will begin with an automatically generated disassembly listing and then convert sections from code to data and viceversa, rename, annotate, and otherwise add information to the listing, until it becomes clear what it does.</p>
<p><a title="Jswat" href="http://code.google.com/p/jswat/" target="_blank">JSwat</a></p>
<p>JSwat is a graphical Java debugger front-end, written to use the Java Platform Debugger Architecture and based on the NetBeans Platform. JSwat is open-source software and is freely available in both binary and source code form. Its features include sophisticated breakpoints; colorized source code display with code navigator; byte code viewer; movable display panels showing threads, call stack, visible variables, and loaded classes; command interface for more advanced features; and Java-like expression evaluation, including method invocation.</p>
<p>Features:</p>
<ul>
<li>breakpoints with conditionals and monitors</li>
<li>colorized source code display</li>
<li>graphical display panels showing threads, stack frames, visible variables, and loaded classes</li>
<li>command interface for more advanced features</li>
<li>Java-like expression evaluation, including method invocation.</li>
</ul>
<p><a title="Nevimer" href="http://projects.gnome.org/nemiver/" target="_blank">Nevimer</a></p>
<p>Nemiver is a standalone graphical C and C++ debugger that integrates well in the GNOME desktop environment. It currently features a backend which uses the well known GNU Debugger GDB.</p>
<p><a title="OllyDBG" href="http://www.ollydbg.de/" target="_blank">OllyDBG</a></p>
<p>OllyDbg is a debugger that emphasizes binary code analysis, which is useful when source code is not available. It traces registers, recognizes procedures, API calls, switches, tables, constants and strings, as well as locates routines from object files and libraries. According to the program&#8217;s help file, version 1.10 is the final 1.x release. Version 2.0 is in development and is being written from the ground up. The software is free of cost, but the shareware license requires users to register with the author.[2] The current version of OllyDbg cannot disassemble binaries compiled for 64 bit processors.</p>
<p>Features:</p>
<ul>
<li>Allows for user-defined labels, comments and function descriptions</li>
<li>Understands debugging information in Borland® format</li>
<li>Saves patches between sessions, writes them back to executable file and updates fixups</li>
<li>Open architecture &#8211; many third-party plugins are available</li>
<li>No installation &#8211; no trash in registry or system directories</li>
<li>Debugs multithread applications</li>
<li>Attaches to running programs</li>
<li>Configurable disassembler, supports both MASM and IDEAL formats</li>
<li>MMX, 3DNow! and SSE data types and instructions, including Athlon extensions</li>
<li>Full UNICODE support</li>
<li>Dynamically recognizes ASCII and UNICODE strings &#8211; also in Delphi format!</li>
<li>Recognizes complex code constructs, like call to jump to procedure</li>
<li>Decodes calls to more than 1900 standard API and 400 C functions</li>
<li>Gives context-sensitive help on API functions from external help file</li>
<li>Sets conditional, logging, memory and hardware breakpoints</li>
<li>Traces program execution, logs arguments of known functions</li>
<li>Shows fixups</li>
<li>Dynamically traces stack frames</li>
<li>Searches for imprecise commands and masked binary sequences</li>
<li>Searches whole allocated memory</li>
<li>Finds references to constant or address range</li>
<li>Examines and modifies memory, sets breakpoints and pauses program on-the-fly</li>
<li>Assembles commands into the shortest binary form</li>
<li>Starts from the floppy disk</li>
</ul>
<p>SoftICE (<a title="Softice" href="http://blogs.msdn.com/matt_pietrek/archive/2006/04/11/573621.aspx" target="_blank">Tribute</a>)</p>
<p>SoftICE is a kernel mode debugger for Microsoft Windows. Crucially, it is designed to run underneath Windows such that the operating system is unaware of its presence. Unlike an application debugger, SoftICE is capable of suspending all operations in Windows when instructed. For driver debugging this is critical due to how hardware is accessed and the kernel of the operating system functions. Because of its low-level capabilities.</p>
<p><a title="Valgrind" href="http://valgrind.org/" target="_blank">Valgrind</a></p>
<p>Valgrind is an award-winning instrumentation framework for building dynamic analysis tools. There are Valgrind tools that can automatically detect many memory management and threading bugs, and profile your programs in detail. You can also use Valgrind to build new tools.<br />
The Valgrind distribution currently includes six production-quality tools: a memory error detector, two thread error detectors, a cache and branch-prediction profiler, a call-graph generating cache profiler, and a heap profiler. It also includes two experimental tools: a heap/stack/global array overrun detector, and a SimPoint basic block vector generator. It runs on the following platforms: X86/Linux, AMD64/Linux, PPC32/Linux, PPC64/Linux, and X86/Darwin (Mac OS X).</p>
<p><a title="Xdebug" href="http://www.xdebug.org/" target="_blank">Xdebug</a></p>
<p>Xdebug is a php extension which provides debugging and profiling capabilities. It uses the DBGp debugging protocol.<br />
The debug information that Xdebug can provide includes the following:</p>
<ul>
<li> stack and function traces in error messages with:</li>
<li> full parameter display for user defined functions</li>
<li> function name, file name and line indications</li>
<li> support for member functions</li>
<li> memory allocation</li>
<li> protection for infinite recursions</li>
</ul>
<p>Xdebug also provides:</p>
<ul>
<li> profiling information for PHP scripts.</li>
<li> code coverage analysis</li>
<li> capabilities to debug your scripts interactively with a debugger front-end.</li>
</ul>
<p>Xdebug is also available via the PECL library</p>
<img src="http://jeez.eu/?ak_action=api_record_view&id=440&type=feed" alt="" /><p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fjeez.eu%2F2009%2F09%2F28%2Fa-look-into-debuggers-and-their-features%2F&amp;linkname=A%20Look%20Into%20Debuggers%20and%20Their%20Features"><img src="http://jeez.eu/wp-content/plugins/add-to-any/share_save_256_24.png" width="256" height="24" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://jeez.eu/2009/09/28/a-look-into-debuggers-and-their-features/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Excellent Trick on JPG Images. An Image That Contains Images</title>
		<link>http://jeez.eu/2009/09/22/excellent-trick-on-jpg-images-an-image-that-contains-images/</link>
		<comments>http://jeez.eu/2009/09/22/excellent-trick-on-jpg-images-an-image-that-contains-images/#comments</comments>
		<pubDate>Tue, 22 Sep 2009 17:19:11 +0000</pubDate>
		<dc:creator>Kerasiotis Vasileios</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://jeez.eu/?p=380</guid>
		<description><![CDATA[I don&#8217;t know how many of you know this trick. Did you know that you can hide a [...]]]></description>
			<content:encoded><![CDATA[<p>I don&#8217;t know how many of you know this trick. Did you know that you can hide a ZIP file inside a JPG image? It has been 10 or more years that i know this trick but never (hmm maybe not) have shared this with others.</p>
<p>Actually it is not a trick. It is a logical &#8220;file format&#8221; hack that allows you to add a zip file inside a JPEG image and use both of the formats by just renaming the file. It works 100% on Windows systems, hence these systems tend to identify the file format from the extension.</p>
<p>What we will create is a big image with 4 thumbnailed images that when renamed to main.zip it will include the thumbnail&#8217;s original images. For those that just want to see the final file, here it is:</p>
<p><a href="http://jeez.eu/wp-content/uploads/2009/09/main.jpg" rel="lightbox[380]"><img class="alignnone size-large wp-image-381" title="Download this image and rename it to main.zip" src="http://jeez.eu/wp-content/uploads/2009/09/main-600x460.jpg" alt="main" width="600" height="460" /></a></p>
<p>If you download this image (706kb) and rename it, you will be able to open the zip file and find the images included.</p>
<p>Now, if you want to see how this can happen, read on.</p>
<h3>What is going on?</h3>
<p>Plain simple explanation: The JPEG file format stores data on first bytes of the file and the ZIP file format stores data on the last ones. So you can add any info you want at the last bytes of a JPEG image and any info you want on the first bytes of a ZIP file.</p>
<h3>How ?</h3>
<p>Lets get 4 or more images, files, icons or any other file you want and zip them. Lets name the zip file as collection.zip . Then all you have to do is grab a JPEG image <a title="landscape" href="http://www.photo-mark.com/webpix/Landscape_Photography.jpg" target="_blank" rel="lightbox[380]">like this one</a> and open it up with a <a title="Hex Workshop" href="http://www.hexworkshop.com/" target="_blank">hex editor</a>.</p>
<p>Create a new file in the hex editor and copy and paste the image data in it:</p>
<p><a href="http://jeez.eu/wp-content/uploads/2009/09/hex.png" rel="lightbox[380]"><img class="alignnone size-large wp-image-382" title="hex" src="http://jeez.eu/wp-content/uploads/2009/09/hex-600x375.png" alt="hex" width="600" height="375" /></a></p>
<p>Do the same for the collection.zip file but paste the data on the bottom of the image data you pasted before. Now save the file from the File menu as landscape1.jpg</p>
<p>As you can see, the image can still be opened and viewed with no problems (except the filesize is bigger now). If you rename the file to landscape.zip, the image turns into a zip file that contains your images.</p>
<h3>Credits</h3>
<p>This trick originates from +mala back in 2003! If you like to learn more about file formats and other extremelly old but great stuff you can try and earn your passage to <a title="+Mala" href="http://3564020356.org/" target="_blank">+mala&#8217;s site</a>.</p>
<img src="http://jeez.eu/?ak_action=api_record_view&id=380&type=feed" alt="" /><p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fjeez.eu%2F2009%2F09%2F22%2Fexcellent-trick-on-jpg-images-an-image-that-contains-images%2F&amp;linkname=Excellent%20Trick%20on%20JPG%20Images.%20An%20Image%20That%20Contains%20Images"><img src="http://jeez.eu/wp-content/plugins/add-to-any/share_save_256_24.png" width="256" height="24" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://jeez.eu/2009/09/22/excellent-trick-on-jpg-images-an-image-that-contains-images/feed/</wfw:commentRss>
		<slash:comments>17</slash:comments>
		</item>
		<item>
		<title>Really Handy Visual Studio Open Source Plugins at Sourceforge</title>
		<link>http://jeez.eu/2009/09/20/really-handy-visual-studio-open-source-plugins-at-sourceforge/</link>
		<comments>http://jeez.eu/2009/09/20/really-handy-visual-studio-open-source-plugins-at-sourceforge/#comments</comments>
		<pubDate>Sun, 20 Sep 2009 12:04:20 +0000</pubDate>
		<dc:creator>Kerasiotis Vasileios</dc:creator>
				<category><![CDATA[Tools]]></category>
		<category><![CDATA[Developing]]></category>
		<category><![CDATA[IDE]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://jeez.eu/?p=347</guid>
		<description><![CDATA[Microsoft&#8217;s Visual Studio is a great framework to develop nearly anything you need. The open source world has [...]]]></description>
			<content:encoded><![CDATA[<p>Microsoft&#8217;s Visual Studio is a great framework to develop nearly anything you need. The open source world has some unique plugins for this awesome tool and most of these tools are really usefull. What really got our eye are:</p>
<h3><a title="Visual NUnit" href="http://sourceforge.net/projects/visualnunit/" target="_blank">Visual Nunit</a></h3>
<p><a href="http://jeez.eu/wp-content/uploads/2009/09/nunit.jpg" rel="lightbox[347]"><img class="alignnone size-full wp-image-348" title="nunit" src="http://jeez.eu/wp-content/uploads/2009/09/nunit.jpg" alt="nunit" width="596" height="480" /></a></p>
<p>Visual Nunit is NUnit integration for Visual Studio 2008. Provides convenient view to test cases and enables debugging tests easily inside development environment. Implemented as Visual Studio Integration Package.</p>
<p><a title="Download NUnit" href="Visual Nunit is NUnit integration for Visual Studio 2008. Provides convenient view to test cases and enables debugging tests easily inside development environment. Implemented as Visual Studio Integration Package." target="_blank">Download </a>| <a title="Screenshots" href="http://sourceforge.net/project/screenshots.php?group_id=266536" target="_blank">Screenshots </a>| <a title="Official Site" href="http://www.bubblecloud.org/visualnunit" target="_blank">Homepage</a></p>
<p>&nbsp;</p>
<h3><a title="GIMPVS" href="http://sourceforge.net/projects/gimp-vs/" target="_blank">GIMPVS</a></h3>
<p><a href="http://jeez.eu/wp-content/uploads/2009/09/gimpvs.jpg" rel="lightbox[347]"><img class="alignnone size-full wp-image-349" title="gimpvs" src="http://jeez.eu/wp-content/uploads/2009/09/gimpvs.jpg" alt="gimpvs" width="600" height="480" /></a></p>
<p>GIMPVS is Gimp Latest trunk compiled using Visual Studio 2005 and Visual Studio 2008 Editions. Entirely Compiled using Microsoft(TM) Compilers and linked against Microsoft(TM) Dynamic runtime libraries, GIMPVS is packaged for both Artists and Developers.</p>
<p><a title="Download GIMPVS" href="http://sourceforge.net/projects/gimp-vs/files/GIMPVS%202008/GIMPVS%202008%201.1/GIMPVS-Availability-Notice.txt/download" target="_blank">Download </a>| <a title="GIMPVS Screenshots" href="http://sourceforge.net/project/screenshots.php?group_id=209784" target="_blank">Screenshots </a>| <a title="Official Site" href="http://gimp-vs.sourceforge.net/" target="_blank">Homepage</a></p>
<p>&nbsp;</p>
<h3><a title="VisEmacs" href="http://sourceforge.net/projects/visemacs/" target="_blank">VisEmacs</a></h3>
<p>VisEmacs is a Visual Studio Add-In that allows Emacs to be integratedas the default text editor. It will be used instead of (or in addition to) the Visual Studio built-in editor.</p>
<p><a title="Download VisEmacs" href="http://sourceforge.net/projects/visemacs/files/visemacs3-docs/3.1.1/visemacs-3.1.1-docs.tgz/download" target="_blank">Download</a></p>
<p>&nbsp;</p>
<h3><a title="PHP IDE for VS" href="http://sourceforge.net/projects/dotview-ide/" target="_blank">PHP IDE / Editor : dotView Visual Studio</a></h3>
<p><a href="http://jeez.eu/wp-content/uploads/2009/09/dotnetphp.jpg" rel="lightbox[347]"><img class="alignnone size-full wp-image-350" title="dotnetphp" src="http://jeez.eu/wp-content/uploads/2009/09/dotnetphp.jpg" alt="dotnetphp" width="640" height="369" /></a></p>
<p>dotView Visual Studio is an open source IDE for dotView PHP framework. Main Functions : syntax highlight, break point and debug, integrating WAMP environement, and RAD tools. Support : PHP5, JS, CSS, HTML, XML, DOJO, JQUERY, SVN, FTP&#8230;</p>
<p><a title="Download dotView" href="http://sourceforge.net/projects/dotview-ide/files/alpha%20version/alpha-build-0.1.63/alpha-build-0.1.63.zip/download" target="_blank">Download</a> | <a title="Screenshots" href="http://sourceforge.net/project/screenshots.php?group_id=244464" target="_blank">Screenshots</a></p>
<p>&nbsp;</p>
<h3><a title=".Net Scripting Control" href="http://sourceforge.net/projects/scriptingcontro/" target="_blank">.Net Scripting Control</a></h3>
<p><a href="http://jeez.eu/wp-content/uploads/2009/09/dotnetcontrol.jpg" rel="lightbox[347]"><img class="alignnone size-full wp-image-351" title="dotnetcontrol" src="http://jeez.eu/wp-content/uploads/2009/09/dotnetcontrol.jpg" alt="dotnetcontrol" width="640" height="447" /></a></p>
<p>Features of MS Script control (Functions like AddObject) and some features of VSA/Visual Studio editor .Mini visual studio IDE build in single control with feature like AddObject from MS Script Control.</p>
<p><a title="Download .Net Scripting Control" href="http://sourceforge.net/projects/scriptingcontro/files/scriptingcontro/1st/Script_Control.zip/download" target="_blank">Download</a></p>
<p>&nbsp;</p>
<p><a title="VisualDDK" href="http://sourceforge.net/projects/visualddk/" target="_blank">VisualDDK</a></p>
<p><a href="http://jeez.eu/wp-content/uploads/2009/09/visualddk.jpg" rel="lightbox[347]"><img class="alignnone size-full wp-image-352" title="visualddk" src="http://jeez.eu/wp-content/uploads/2009/09/visualddk.jpg" alt="visualddk" width="640" height="470" /></a></p>
<p>The VisualDDK is a plugin for Microsoft Visual Studio allowing debugging device drivers right from the IDE. Additionally, a simple Driver Project Wizard is provided.</p>
<p><a title="Download VisualDDK" href="http://sourceforge.net/projects/visualddk/files/visualddk/1.2/VisualDDK-1.2-sources.zip/download" target="_blank">Download </a>| <a title="Screenshots" href="http://sourceforge.net/project/screenshots.php?group_id=258284" target="_blank">Screenshots </a>| <a title="Official Site" href="http://visualddk.sourceforge.net/" target="_blank">Homepage</a></p>
<p>&nbsp;</p>
<h3><a title="Phatstudio" href="http://sourceforge.net/projects/phatstudio/" target="_blank">PhatStudio</a></h3>
<p><a href="http://jeez.eu/wp-content/uploads/2009/09/phatstudio.jpg" rel="lightbox[347]"><img class="alignnone size-full wp-image-353" title="phatstudio" src="http://jeez.eu/wp-content/uploads/2009/09/phatstudio.jpg" alt="phatstudio" width="640" height="376" /></a></p>
<p>PhatStudio is a Visual Studio plugin which lets you quickly navigate to any file in your project in just a few keystrokes, even for very large projects.</p>
<p><a title="Download Phatstudio" href="http://sourceforge.net/projects/phatstudio/files/PhatStudio/v1.01/PhatStudio-1.01-src.zip/download" target="_blank">Download </a>| <a title="Screenshots" href="http://sourceforge.net/project/screenshots.php?group_id=250087" target="_blank">Screenshots </a>| <a title="Official Site" href="http://phatstudio.sourceforge.net/" target="_blank">Homepage</a></p>
<p>&nbsp;</p>
<h3><a title="Toolbar Editor" href="http://sourceforge.net/projects/tbeditor/" target="_blank">Toolbar Editor</a></h3>
<p><a href="http://jeez.eu/wp-content/uploads/2009/09/toolbareditor.jpg" rel="lightbox[347]"><img class="alignnone size-full wp-image-355" title="toolbareditor" src="http://jeez.eu/wp-content/uploads/2009/09/toolbareditor.jpg" alt="toolbareditor" width="479" height="473" /></a></p>
<p>A toolbar editor for Visual Studio. It can modify, add and create buttons, images and all that is needed for a toolbar.</p>
<p><a title="Download Toolbar Editor" href="http://sourceforge.net/projects/tbeditor/files/tbeditor/1.41/tbeditor-src_1.41_FULL.zip/download" target="_blank">Download </a>| <a title="Screenshots" href="http://sourceforge.net/project/screenshots.php?group_id=182693" target="_blank">Screenshots </a>| <a title="Official Site" href="http://tbeditor.sourceforge.net/" target="_blank">Homepage</a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<img src="http://jeez.eu/?ak_action=api_record_view&id=347&type=feed" alt="" /><p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fjeez.eu%2F2009%2F09%2F20%2Freally-handy-visual-studio-open-source-plugins-at-sourceforge%2F&amp;linkname=Really%20Handy%20Visual%20Studio%20Open%20Source%20Plugins%20at%20Sourceforge"><img src="http://jeez.eu/wp-content/plugins/add-to-any/share_save_256_24.png" width="256" height="24" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://jeez.eu/2009/09/20/really-handy-visual-studio-open-source-plugins-at-sourceforge/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Web Operating Systems flavors</title>
		<link>http://jeez.eu/2009/09/13/web-operating-systems-flavors/</link>
		<comments>http://jeez.eu/2009/09/13/web-operating-systems-flavors/#comments</comments>
		<pubDate>Sun, 13 Sep 2009 13:23:23 +0000</pubDate>
		<dc:creator>Kerasiotis Vasileios</dc:creator>
				<category><![CDATA[Services]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Desktop Enviroments]]></category>
		<category><![CDATA[GUI]]></category>
		<category><![CDATA[Operating Systems]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://jeez.eu/?p=163</guid>
		<description><![CDATA[As a big fun of operating systems, this article was very fun to write. In this article we [...]]]></description>
			<content:encoded><![CDATA[<p>As a big fun of operating systems, this article was very fun to write. In this article we will try to give you a taste of web operating systems. What you can do with them and where to find them.</p>
<p>Some of the OS mentioned, require that you register an account, while others require that you have a beta invitation.</p>
<h3><a title="Windows 4 All" href="http://windows4all.com/" target="_blank">Windows4all</a></h3>
<p><a href="http://jeez.eu/wp-content/uploads/2009/09/windows4all.png" rel="lightbox[163]"><img class="alignnone size-large wp-image-164" title="windows4all" src="http://jeez.eu/wp-content/uploads/2009/09/windows4all-600x298.png" alt="windows4all" width="600" height="298" /></a></p>
<p>Windows4all is a Microsoft Silverlight based online virtual operating system. Windows4all.com replicates the desktop environment of a modern operating system. The user can launch applications right away without installation.<br />
Application runs in Silverlight’s security sandbox. By default code is restricted from accessing user&#8217;s file system or doing anything that could hurt user&#8217;s machine. Besides desktop, taskbar, start menu and sidebar, currently it includes applications like:</p>
<ul>
<li> File Explorer</li>
<li> Internet Explorer</li>
<li>Video Player</li>
<li> Rich text editor</li>
<li> RSS reader</li>
<li> Chat</li>
<li> Notepad</li>
<li> Paint</li>
<li> Calculator</li>
<li> Games like Chess, Solitaire, Spider etc.</li>
</ul>
<p>The system also supports installing program functionality. But this program should be developed in Silverlight and be available in Internet or local file system.</p>
<h3><a title="G.ho.st" href="http://g.ho.st/?language=en" target="_blank">G.ho.st</a></h3>
<p><a href="http://jeez.eu/wp-content/uploads/2009/09/ghost.png" rel="lightbox[163]"><img class="alignnone size-large wp-image-165" title="ghost" src="http://jeez.eu/wp-content/uploads/2009/09/ghost-600x294.png" alt="ghost" width="600" height="294" /></a></p>
<p>The G.ho.st service provides, over the Internet, a working environment that mimics the classic desktop provided by personal computer operating systems. As an internet based service, users are able to create, save and return to a working environment from different physical computers and mobile phones. G.ho.st calls itself a Virtual Computer. In July 2009 the software entered beta stage development, and as of now it remains in this stage. The beta launch near Jerusalem was attended by Quartet Representative and former UK prime minister Tony Blair. The Company&#8217;s primary investor is Benchmark Capital.<br />
Such services are not considered operating systems in the traditional sense although they are sometimes referred to as Web Operating Systems. Whilst they can include a GUI (e.g. a desktop), a (virtual) file system, application management and security, they do not contain a kernel to interface with physical hardware. Therefore, to use the service an operating system is required, supporting at least a Web browser from which the service can be run.<br />
The G.ho.st Virtual Computer is hosted on Amazon Web Services and can be seen as utilizing Cloud computing on the backend and delivering a consumer version of cloud computing.</p>
<h3><a title="eyeOS" href="http://eyeos.org/" target="_blank">eyeOS</a></h3>
<p><a href="http://jeez.eu/wp-content/uploads/2009/09/eyeos.png" rel="lightbox[163]"><img class="alignnone size-large wp-image-166" title="eyeos" src="http://jeez.eu/wp-content/uploads/2009/09/eyeos-600x295.png" alt="eyeos" width="600" height="295" /></a></p>
<p>eyeOS is an open source web desktop following the cloud computing concept that leverages collaboration and communication among users. It is mainly written in PHP, XML, and JavaScript. It acts as a platform for web applications written using the eyeOS Toolkit. It includes a Desktop environment with 67 applications and system utilities. It is accessible by portable devices via its mobile front end.<br />
For developers, eyeOS provides the eyeOS Toolkit, a set of libraries and functions to develop applications for eyeOS. Using the integrated Portage-based eyeSoft system, one can create their own repository for eyeOS and distribute applications through it.<br />
Each core part of the desktop is its own application, using javascript to send server commands as the user interacts. As actions are performed using ajax (such as launching an application), it sends event information to the server. The server then sends back tasks for the client to do in XML format, such as drawing a widget.<br />
On the server, eyeOS uses XML files to store information. This makes it simple for a user to set up on the server, as it requires zero configuration other than the account information for the first user, making it simple to deploy. To avoid bottlenecks that flat files present, each user&#8217;s information and settings are stored in different files, preventing resource starvation from occurring.</p>
<h3><a title="Glide OS" href="http://www.glideos.com/" target="_blank">Glide OS</a></h3>
<p><a href="http://jeez.eu/wp-content/uploads/2009/09/glide.png" rel="lightbox[163]"><img class="alignnone size-large wp-image-167" title="glide" src="http://jeez.eu/wp-content/uploads/2009/09/glide-600x294.png" alt="glide" width="600" height="294" /></a></p>
<p>Glide OS is a Flash-based web desktop developed by Transmedia. It is notable for operating on both desktop operating systems and mobile operating systems. Glide OS is compatible with a variety of web browsers, including Internet Explorer, Firefox, Safari, and Chrome.<br />
Glide features a desktop-like interface which displays the Desktop, Glide HD, and Web Portal. Glide includes several web-based applications, including an integrated office suite, media player, photo editor, calendar software and webmail.</p>
<h3><a title="amoebaOS" href="http://amoebaos.org/" target="_blank">amoebaOS</a></h3>
<p><a href="http://jeez.eu/wp-content/uploads/2009/09/amoebaOS-RC1.png" rel="lightbox[163]"><img class="alignnone size-large wp-image-168" title="amoebaOS RC1" src="http://jeez.eu/wp-content/uploads/2009/09/amoebaOS-RC1-600x462.png" alt="amoebaOS RC1" width="600" height="462" /></a></p>
<p>This project requires that you have a beta invitation.</p>
<p>Once you&#8217;ve logged in, amoebaOS is 100% customizable. Every color, shape, button and window is generated using style information from a few Cascading Style Sheets. Applications that adhere to the styling guidelines are styled entirely by the System, and are thus configurable within System Preferences.<br />
Like the standard desktop Operating Systems, amoebaOS includes a suite of productivity applications as well as some other useful and interesting programs pre-installed.These default apps can be replaced with any alternatives provided by the community or other developers, or even with equivalent web-based applications that expose data APIs for integration into the OS. Since none of the included suite of programs require Adobe Flash to be installed, users can easily replace these with Flash-based alternatives if they feel that technology is better suited to their work flow.<br />
A lot of inspiration was drawn from the way Apple&#8217;s desktop Operating System manages applications, documents, windows, data and work flows. The primary areas where amoebaOS &#8220;shares common ground&#8221; with OS X are the application launcher, consistent unified menu, and the &#8220;A window is not an entire application&#8221; paradigm.<br />
amoebaOS opens up absolutely every detail of the Operating System through various JavaScript interfaces. Without going into too much detail, you are able to control and modify your Operating System with a level of access similar to using GreaseMonkey or browser add-ons.</p>
<h3><a title="OOS" href="http://oos.cc/login.html" target="_blank">Online Operating System (oos)</a></h3>
<p><a href="http://jeez.eu/wp-content/uploads/2009/09/oos.png" rel="lightbox[163]"><img class="alignnone size-large wp-image-169" title="oos" src="http://jeez.eu/wp-content/uploads/2009/09/oos-600x295.png" alt="oos" width="600" height="295" /></a></p>
<p>My favorite. This web os is in my humble opinion the easiest to work with.<br />
Every activated OOS account comes with 1 GB of disc space for your online photo album and your public homepage. Both are easily accessible for everyone via your personal domain http://&lt;username&gt;.oos.cc.</p>
<h3><a title="myGoya" href="http://www.mygoya.de/" target="_blank">myGoya</a></h3>
<p><a href="http://jeez.eu/wp-content/uploads/2009/09/myGoya.jpg" rel="lightbox[163]"><img class="alignnone size-large wp-image-170" title="myGoya" src="http://jeez.eu/wp-content/uploads/2009/09/myGoya-600x328.jpg" alt="myGoya" width="600" height="328" /></a></p>
<p>MyGOYA is a free online operating system. Your own personal desktop can be accessed from any Internet PC in the world and includes e-mail, chat, filesharing, calendar and an instant messenger. Manage your contacts from anywhere in the world.</p>
<h3><a title="Nivio" href="http://demo.nivio.com/" target="_blank">Nivio</a></h3>
<p><a href="http://jeez.eu/wp-content/uploads/2009/09/nivio.png" rel="lightbox[163]"><img class="alignnone size-large wp-image-171" title="nivio" src="http://jeez.eu/wp-content/uploads/2009/09/nivio-600x360.png" alt="nivio" width="600" height="360" /></a></p>
<p>Nivio is somehow a remote desktop powered by Java. So it is not so Web operating system as the others, but it is worth mentioning it here.<br />
Access your very own customized desktop from anywhere. Nivio gives you an online version of windows which can be accessed from any web browser.</p>
<img src="http://jeez.eu/?ak_action=api_record_view&id=163&type=feed" alt="" /><p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fjeez.eu%2F2009%2F09%2F13%2Fweb-operating-systems-flavors%2F&amp;linkname=Web%20Operating%20Systems%20flavors"><img src="http://jeez.eu/wp-content/plugins/add-to-any/share_save_256_24.png" width="256" height="24" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://jeez.eu/2009/09/13/web-operating-systems-flavors/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Some Great and Necessary plugins for Notepad++</title>
		<link>http://jeez.eu/2009/09/09/great-and-necessary-plugins-for-notepad-plus-plus/</link>
		<comments>http://jeez.eu/2009/09/09/great-and-necessary-plugins-for-notepad-plus-plus/#comments</comments>
		<pubDate>Wed, 09 Sep 2009 16:55:28 +0000</pubDate>
		<dc:creator>Kerasiotis Vasileios</dc:creator>
				<category><![CDATA[Tools]]></category>
		<category><![CDATA[Developing]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[Plugins]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://jeez.eu/?p=125</guid>
		<description><![CDATA[Notepad++ is a free (as in &#8220;free speech&#8221; and also as in &#8220;free beer&#8221;) source code editor and [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://jeez.eu/wp-content/uploads/2009/09/568395745.png" rel="lightbox[125]"><img class="alignright size-full wp-image-126" title="568395745" src="http://jeez.eu/wp-content/uploads/2009/09/568395745.png" alt="568395745" width="256" height="256" /></a>Notepad++ is a free (as in &#8220;free speech&#8221; and also as in &#8220;free beer&#8221;) source code editor and Notepad replacement that supports several languages. Running in the MS Windows environment, its use is governed by GPL License.<br />
Based on a powerful editing component Scintilla, Notepad++ is written in C++ and uses pure Win32 API and STL which ensures a higher execution speed and smaller program size. By optimizing as many routines as possible without losing user friendliness, Notepad++ is trying to reduce the world carbon dioxide emissions. When using less CPU power, the PC can throttle down and reduce power consumption, resulting in a greener environment.</p>
<p>Jeez Tech uses Notepad++ all the time, from programming to text writing and even for more things you can&#8217;t imagine&#8230; How? By using some of Notepad++&#8217;s plugins.</p>
<p>This is a list of the plugins we use:</p>
<ul>
<li><a title="Color Picker" href="http://sourceforge.net/projects/npp-plugins/files/ColorPicker/ColorPicker_130_dll.zip" target="_blank">Color Picker</a><br />
A colour picker which translates your selected colour in hexadecimal.</li>
<li><a title="Compare" href="http://sourceforge.net/projects/npp-plugins/files/ComparePlugin/Compare_1_5_5_UNI_dll.zip" target="_blank">Compare Plugin</a><br />
A very useful diff plugin to show the difference between 2 files (side by side).</li>
<li><a title="PHP Debugger" href="http://sourceforge.net/projects/npp-plugins/files/DBGP%20Plugin/DBGpPlugin_0_11b_dll.zip" target="_blank">DBGP</a><br />
This is a php debugger (XDebug) which talks DBGP protocol. Use this plugin to transform your Notepad++ to a php IDE.</li>
<li><a title="Explorer Plugin" href="http://sourceforge.net/projects/npp-plugins/files/Explorer/Explorer_1_8_2_UNI_dll.zip" target="_blank">Explorer</a><br />
Explorer plugin is a file browser. You can open whatever you want from it in Notepad++, just double click!</li>
<li><a title="FTP Synchronize" href="http://sourceforge.net/projects/npp-plugins/files/FTP_synchronize/FTP_synchronize_0_9_6_1_dll.zip" target="_blank">FTP Synchronize</a><br />
A FTP client which is integrated in Notepad++ seamlessly. Open a php file from a server of distance, modify it, save it and try it on your browser directly just like you work locally.</li>
<li><a title="Hex Editor" href="http://sourceforge.net/projects/npp-plugins/files/Hex%20Editor/HexEditor_0_9_4_UNI_dll.zip" target="_blank">Hex Editor</a><br />
It&#8217;s a damn good Hex Editor &#8211; works seamlessly with Notepad++</li>
<li><a title="Language Help" href="http://fstellari.googlepages.com/LanguageHelp_dll_1v32.zip" target="_blank">LanguageHelp</a><br />
LanguageHelp allows to run a language specific help file (CHM, HLP, PDF) and search for the keyword under the cursor. The latest versions allow also to show the help file as menu entries for quick launch.</li>
<li><a title="MultiClipboard" href="http://sourceforge.net/projects/npp-plugins/files/MultiClipboard/MultiClipboard_2.0.0_unicode_dll.zip" target="_blank">MultiClipboard</a><br />
MultiClipboard plugin implements multiple (10) text buffers that is filled up via copying and/or cutting of text.</li>
<li><a title="Npp Export" href="http://sourceforge.net/projects/npp-plugins/files/NppExport/NppExport_0_2_8_dll.zip" target="_blank">NppExport</a><br />
It allows you not only to save your source code as a html/rtf file, but also to copy your source code in the clipboard in RTF/HTML format, so you can paste it into your word processor (MS Word, Abiword, openoffice.org Writer) to get the same visual effect.</li>
<li><a title="Window Manager" href="http://sourceforge.net/projects/npp-plugins/files/WindowManager/WindowManager_1_2_2_UNI_dll.zip" target="_blank">Window Manager</a><br />
What if you can have a short overview of your open documents in Notepad++.This overview is dockable and gave you the full capability as the tabs have.</li>
<li><a title="XML Tools" href="http://sourceforge.net/projects/npp-plugins/files/XML%20Tools/xmltools_2.3.1_r697_unicode_alpha4.zip" target="_blank">XML Tools</a><br />
This plugin is a small set of useful tools for editing XML with Notepad++. The plugin is libXML2-based.</li>
</ul>
<p>Do you use any of these plugins? Do you use other plugins we might not be aware of? Please let us know.</p>
<img src="http://jeez.eu/?ak_action=api_record_view&id=125&type=feed" alt="" /><p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fjeez.eu%2F2009%2F09%2F09%2Fgreat-and-necessary-plugins-for-notepad-plus-plus%2F&amp;linkname=Some%20Great%20and%20Necessary%20plugins%20for%20Notepad%2B%2B"><img src="http://jeez.eu/wp-content/plugins/add-to-any/share_save_256_24.png" width="256" height="24" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://jeez.eu/2009/09/09/great-and-necessary-plugins-for-notepad-plus-plus/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Using MS Windows? No Problem. Just use KDE</title>
		<link>http://jeez.eu/2009/09/07/using-ms-windows-no-problem-just-use-kde/</link>
		<comments>http://jeez.eu/2009/09/07/using-ms-windows-no-problem-just-use-kde/#comments</comments>
		<pubDate>Mon, 07 Sep 2009 16:07:56 +0000</pubDate>
		<dc:creator>Kerasiotis Vasileios</dc:creator>
				<category><![CDATA[Tools]]></category>
		<category><![CDATA[Desktop Enviroments]]></category>
		<category><![CDATA[GUI]]></category>
		<category><![CDATA[KDE]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://jeez.eu/?p=79</guid>
		<description><![CDATA[Linux (all *nix as well) system users can choose which Desktop Enviroment to use. The most well known [...]]]></description>
			<content:encoded><![CDATA[<p>Linux (all *nix as well) system users can choose which Desktop Enviroment to use. The most well known enviroments are:</p>
<ul>
<li><a title="GNOME" href="http://en.wikipedia.org/wiki/GNOME">GNOME</a></li>
<li><a title="Enlightenment (window manager)" href="http://en.wikipedia.org/wiki/Enlightenment_%28window_manager%29">Enlightenment</a></li>
<li><a title="Xfce" href="http://en.wikipedia.org/wiki/Xfce">Xfce</a></li>
<li><a title="OpenWindows" href="http://en.wikipedia.org/wiki/OpenWindows">OpenWindows</a> and&nbsp;</li>
<li><a title="KDE" href="http://en.wikipedia.org/wiki/KDE">KDE</a></li>
</ul>
<p>KDE or the K Desktop Environment, is a network transparent contemporary desktop environment for UNIX workstations. KDE seeks to fulfill the need for an easy to use desktop for UNIX workstations, similar to desktop environments found on Macintosh and Microsoft Windows operating systems. The UNIX operating system is according to us the best available today. When it comes to stability, scalability and openness UNIX has no competition. In fact UNIX has been the undisputed choice of information technology professionals for many years. The lack of an easy to use contemporary desktop environment, however, has prevented UNIX from finding its way onto desktops of typical computer users in offices and homes. UNIX today dominates the server market and is the preferred computing platform for computing professionals and scientists alike. The Internet, a household name traces its heritage to UNIX. In spite of such ubiquitous creations from the UNIX community, average computer users still expect it to be difficult to use and often stay away. This fact is particularly unfortunate since a number of implementations of UNIX, all of which are of exceptional quality and stability (Debian GNU/Linux, FreeBSD, NetBSD etc.) are freely available off the Internet.</p>
<h3>KDE looks great but I use MS Windows&#8230;</h3>
<p>No problem at all. You can use KDE on MS Windows too!!<br />
At <a title="KDE for Windows" href="http://windows.kde.org" target="_blank">http://windows.kde.org</a> the KDE team tries to port the KDE enviroment to the Windows system.The KDE on Windows Project is aimed at native porting of the KDE applications to MS Windows. Currently Windows 2000, XP, 2003 and Vista are supported.<br />
We tried it, and it works great. You can also try it by <a title="KDE-Installer" href="http://www.winkde.org/pub/kde/ports/win32/installer/kdewin-installer-gui-latest.exe" target="_blank">downloading the KDE-Installer</a> and follow the on screen instructions as you would with any other MS Windows app.</p>
<p>This is how we did it:</p>
<h3>Running the Installer</h3>
<p><a href="http://jeez.eu/wp-content/uploads/2009/09/kde-installer.png" rel="lightbox[79]"><img class="alignnone size-large wp-image-81" title="kde installer" src="http://jeez.eu/wp-content/uploads/2009/09/kde-installer-600x382.png" alt="kde installer" width="600" height="382" /></a></p>
<h3>Choosing Applications to install</h3>
<p><a href="http://jeez.eu/wp-content/uploads/2009/09/kde-installer2.png" rel="lightbox[79]"><img class="alignnone size-large wp-image-82" title="kde installer2" src="http://jeez.eu/wp-content/uploads/2009/09/kde-installer2-600x381.png" alt="kde installer2" width="600" height="381" /></a></p>
<h3>Dependencies</h3>
<p><a href="http://jeez.eu/wp-content/uploads/2009/09/kde-installer3.png" rel="lightbox[79]"><img class="alignnone size-large wp-image-83" title="kde installer3" src="http://jeez.eu/wp-content/uploads/2009/09/kde-installer3-600x380.png" alt="kde installer3" width="600" height="380" /></a></p>
<h3>Downloading Packages</h3>
<p><a href="http://jeez.eu/wp-content/uploads/2009/09/kde-installer4.png" rel="lightbox[79]"><img class="alignnone size-large wp-image-84" title="kde installer4" src="http://jeez.eu/wp-content/uploads/2009/09/kde-installer4-600x381.png" alt="kde installer4" width="600" height="381" /></a></p>
<h3>Installation Completed</h3>
<p><a href="http://jeez.eu/wp-content/uploads/2009/09/kde-installer5.png" rel="lightbox[79]"><img class="alignnone size-large wp-image-85" title="kde installer5" src="http://jeez.eu/wp-content/uploads/2009/09/kde-installer5-600x380.png" alt="kde installer5" width="600" height="380" /></a></p>
<p>Now all the packages you selected are available from the Windows Start Menu:</p>
<p><a href="http://jeez.eu/wp-content/uploads/2009/09/kde-start-menu.png" rel="lightbox[79]"><img class="alignnone size-full wp-image-86" title="kde start menu" src="http://jeez.eu/wp-content/uploads/2009/09/kde-start-menu.png" alt="kde start menu" width="504" height="271" /></a></p>
<p>Awesome Utilities:</p>
<p><a href="http://jeez.eu/wp-content/uploads/2009/09/kde-start-menu1.png" rel="lightbox[79]"><img class="alignnone size-full wp-image-87" title="kde start menu1" src="http://jeez.eu/wp-content/uploads/2009/09/kde-start-menu1.png" alt="kde start menu1" width="213" height="184" /></a></p>
<p>Now you are ready to run applications like:</p>
<p><strong>Konqueror (Web Browser)</strong></p>
<p><a href="http://jeez.eu/wp-content/uploads/2009/09/konqueror.png" rel="lightbox[79]"><img class="alignnone size-large wp-image-88" title="konqueror" src="http://jeez.eu/wp-content/uploads/2009/09/konqueror-600x328.png" alt="konqueror" width="600" height="328" /></a></p>
<p><strong>Dolphin (File Manager. MS Explorer like):</strong></p>
<p><a href="http://jeez.eu/wp-content/uploads/2009/09/dolphin.png" rel="lightbox[79]"><img class="alignnone size-large wp-image-89" title="dolphin" src="http://jeez.eu/wp-content/uploads/2009/09/dolphin-600x362.png" alt="dolphin" width="600" height="362" /></a></p>
<p>and one of our favorite KDE Apps&#8230; <strong>Kate:</strong></p>
<p><a href="http://jeez.eu/wp-content/uploads/2009/09/kate.png" rel="lightbox[79]"><img class="alignnone size-large wp-image-90" title="kate" src="http://jeez.eu/wp-content/uploads/2009/09/kate-600x434.png" alt="kate" width="600" height="434" /></a></p>
<img src="http://jeez.eu/?ak_action=api_record_view&id=79&type=feed" alt="" /><p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fjeez.eu%2F2009%2F09%2F07%2Fusing-ms-windows-no-problem-just-use-kde%2F&amp;linkname=Using%20MS%20Windows%3F%20No%20Problem.%20Just%20use%20KDE"><img src="http://jeez.eu/wp-content/plugins/add-to-any/share_save_256_24.png" width="256" height="24" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://jeez.eu/2009/09/07/using-ms-windows-no-problem-just-use-kde/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
	</channel>
</rss>
