<?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>mars69</title>
	<atom:link href="http://www.mars69.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.mars69.com</link>
	<description>web design and development</description>
	<lastBuildDate>Mon, 30 Aug 2010 16:06:46 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Dual Boot Windows 7 with XP</title>
		<link>http://www.mars69.com/2010/08/dual-boot-windows7-xp/</link>
		<comments>http://www.mars69.com/2010/08/dual-boot-windows7-xp/#comments</comments>
		<pubDate>Mon, 30 Aug 2010 15:27:27 +0000</pubDate>
		<dc:creator>mars69</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.mars69.com/?p=142</guid>
		<description><![CDATA[If you install Windows XP operating system on a Windows 7-based computer, Windows 7 no longer starts. In this case, only the Windows XP operating system starts.]]></description>
			<content:encoded><![CDATA[<p><strong>Initial conditions:</strong></p>
<ol>
<li>C:\ drive to install  Windows 7,</li>
<li>drive for example F:\ ready to install Windows XP.</li>
</ol>
<p><strong>Problem:</strong></p>
<p>If you install Windows XP operating  system on a Windows 7-based computer, Windows 7 no longer starts. In this case, only the Windows XP operating system starts.</p>
<p><strong>Solution for dual boot Windows 7 with XP:</strong></p>
<ol>
<li>Start Windows 7 System Recovery Discs and repair existing Windows 7 instalation (if you don&#8217;t have any, you can <a href="http://neosmart.net/blog/2009/windows-7-system-repair-discs/">download Windows 7 System Recovery Discs</a>).</li>
<li>As administrator copy file F:\ntldr and F:\boot.ini into root C: (because to run a version of Windows operating systems based on Microsoft Windows NT, these files are necessary).</li>
<li>Edit file C:\boot.ini
<pre>[boot loader]
timeout=<strong>30</strong>
default=multi(0)disk(0)rdisk(0)partition(<strong>3</strong>)\WINDOWS
[operating systems]
multi(0)disk(0)rdisk(0)partition(<strong>3</strong>)\WINDOWS="<strong>Windows XP</strong>" /fastdetect /NoExecute=OptIn</pre>
<p>Note: You can change bold written text, partition number depends on the partitioning:</p>
<pre>default=multi(0)disk(0)rdisk(0)partition(<strong>2</strong>)\WINDOWS</pre>
</li>
<li>Restart the  computer.</li>
</ol>
<p><strong>Post-installation  verification:</strong><br />
<a rel="attachment wp-att-153" href="http://www.mars69.com/2010/08/dual-boot-windows7-xp/cmd_bcdedit/"><img class="alignright size-thumbnail wp-image-153" title="bcdedit.exe" src="http://www.mars69.com/wp-content/uploads/2010/08/cmd_bcdedit-200x147.png" alt="bcdedit.exe" width="200" height="147" /></a>Click <strong>Start</strong>, click <strong>Accessories</strong>, right-click the command-prompt  shortcut, and then click <strong>Run as Administrator</strong>. Use Bcdedit.exe for verification entry in the BCD Boot.ini file for the earlier version of the Windows  operating system, more <a href="http://support.microsoft.com/?scid=kb%3Ben-us%3B919529&amp;x=18&amp;y=10">http://support.microsoft.com/?scid=kb%3Ben-us%3B919529&amp;x=18&amp;y=10</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mars69.com/2010/08/dual-boot-windows7-xp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Stop search engines indexing your web</title>
		<link>http://www.mars69.com/2010/02/stop-search-engines-indexing-web/</link>
		<comments>http://www.mars69.com/2010/02/stop-search-engines-indexing-web/#comments</comments>
		<pubDate>Wed, 17 Feb 2010 20:26:44 +0000</pubDate>
		<dc:creator>mars69</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://www.mars69.com/?p=120</guid>
		<description><![CDATA[/robots.txt – robots exclusion file
Use page meta tags robots
Password protected web – web server solution
Password protected web - cms solution
Computers and Humans apart]]></description>
			<content:encoded><![CDATA[<h2>1 Theoretical possibility</h2>
<h3>1.1 /robots.txt &#8211; robots exclusion file</h3>
<p>Create file <em>/robots.txt</em>:</p>
<pre>User-agent: *
Disallow: /</pre>
<p>Search Engine Support: Google, Yahoo, Bing, &#8230;</p>
<h3>1.2 Use page meta tags robots</h3>
<pre>&lt;meta name="robots" content="noindex,nofollow" /&gt;</pre>
<h2>2 The only sure method</h2>
<h3>2.1 Password protected web &#8211; web server solution</h3>
<p>Example for Apache server: <a href="http://httpd.apache.org/docs/2.0/programs/htpasswd.html">httpd.apache.org/docs/2.0/programs/htpasswd.html</a></p>
<p>Create a file called <em>.htpasswd</em>:</p>
<pre>user1:nbGwQ3aJkq3qE (e.g. user1:encrypt password1)</pre>
<p>KxS Password Encrypter: <a href="http://www.kxs.net/support/htaccess_pw.html">www.kxs.net/support/htaccess_pw.html</a></p>
<p>Create a file <em>.htaccess</em>:</p>
<pre>AuthName "Restricted Area"
AuthType Basic
AuthUserFile /mysite/.htpasswd
AuthGroupFile /dev/null
require valid-user</pre>
<p>Upload <em>.htpasswd</em> (best) to the root or a non publically accessible directory on your server.<br />
Upload <em>.htaccess</em> to the directory you wish to protect.</p>
<h3>2.2 Password protected web &#8211; cms solution</h3>
<p>Protected area for registered users dependent on a specific CMS.</p>
<h3>2.3 Computers and Humans apart</h3>
<p>Captcha: <a href="http://en.wikipedia.org/wiki/CAPTCHA">en.wikipedia.org/wiki/CAPTCHA</a></p>
<p>reCaptcha: <a href="http://recaptcha.net/">recaptcha.net</a></p>
<p>Hidden tag: <a href="http://15daysofjquery.com/safer-contact-forms-without-captchas/11/">15daysofjquery.com/safer-contact-forms-without-captchas/11/</a></p>
<p>Captcha alternatives: <a href="http://www.arraystudio.com/as-workshop/the-captcha-alternatives.html">www.arraystudio.com/as-workshop/the-captcha-alternatives.html</a></p>
<p><em><strong>Sources:</strong><br />
</em></p>
<p><em>Detailed description of 6 methods to control what and how your content appears in search engines &#8211; <a href="http://www.antezeta.com/blog/avoid-search-engine-indexing">6 ways to stop Google and other search engines from indexing your site | Antezeta Web Marketing</a>.</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mars69.com/2010/02/stop-search-engines-indexing-web/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Optimize Your Web Site</title>
		<link>http://www.mars69.com/2010/01/how-to-optimize-web-site/</link>
		<comments>http://www.mars69.com/2010/01/how-to-optimize-web-site/#comments</comments>
		<pubDate>Thu, 21 Jan 2010 00:09:10 +0000</pubDate>
		<dc:creator>mars69</dc:creator>
				<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://www.mars69.com/?p=108</guid>
		<description><![CDATA[How develop web page with best performance? Here are Best Practices for Speeding Up Your Web Site. Page Speed is an open-source Firefox/Firebug Add-on.]]></description>
			<content:encoded><![CDATA[<p>How develop web page with best performance?</p>
<ul>
<li><a href="http://code.google.com/speed/page-speed/docs/rules_intro.html">Web Performance Best Practices.</a></li>
<li><a href="http://developer.yahoo.com/performance/rules.html">Best Practices for Speeding Up Your Web Site.</a></li>
<li><a href="http://code.google.com/speed/page-speed/">Page Speed is an open-source Firefox/Firebug Add-on.</a></li>
</ul>
<blockquote><p>For web sites, speed may be feature #1. Users hate waiting, we get frustrated by buffering videos and pages that pop together as images slowly load. It’s a jarring (aka bad) user experience.</p></blockquote>
<p>Time invested in site optimization is well worth it, so let’s dive in:</p>
<ul>
<li><a href="http://www.slideshare.net/stoyan/high-performance-web-pages-20-new-best-practices">High Performance Web Pages &#8211; 20 new best practices</a> (slideshare)</li>
<li><a href="http://betterexplained.com/articles/speed-up-your-javascript-load-time/">Speed Up Your Javascript Load Time.</a></li>
<li><a href="http://betterexplained.com/articles/how-to-optimize-your-site-with-gzip-compression/">How To Optimize Your Site With GZIP Compression.</a></li>
<li><a href="http://betterexplained.com/articles/how-to-optimize-your-site-with-http-caching/">How To Optimize Your Site With HTTP Caching.</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.mars69.com/2010/01/how-to-optimize-web-site/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Video mapping the trend of visual art</title>
		<link>http://www.mars69.com/2009/12/video-mapping-projection/</link>
		<comments>http://www.mars69.com/2009/12/video-mapping-projection/#comments</comments>
		<pubDate>Tue, 29 Dec 2009 15:02:13 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Graphic design]]></category>
		<category><![CDATA[Videomapping]]></category>

		<guid isPermaLink="false">http://www.mars69.com/?p=44</guid>
		<description><![CDATA[Video mapping the trend of visual art that uses the projection of free space on any objects, such as facades or interiors of buildings. To realize the need for a strong projectors, the corresponding software and darkness, or at least dim. To prepare high-quality screening is required prior knowledge of the scene, are often created [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Video mapping</strong> the trend of visual art that uses the projection of free space on any objects, such as facades or interiors of buildings. To realize the need for a strong projectors, the corresponding software and darkness, or at least dim. To prepare high-quality screening is required prior knowledge of the scene, are often created 3D models of space within the building or facade, to obtain a perfect fusion of light opera with a scene. The result then recalls the film sequence in which the real background blended with a virtual plot, such as the facade of the emerging individual bricks, in the windows are people and objects fly out, of the roof flowing waterfall, etc.</p>
<p>Generally, the main purpose of mapping the video projections which cooperate with the selected object and seek to dismantle the perception of the viewer&#8217;s perspective. With projectors can fold and highlight jakkýkoliv shape, line or space. Everything becomes an illusion.</p>
<h2>Projection on Buildings</h2>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="580" height="360" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/O0XKmU5hF5s&amp;hl=en_GB&amp;fs=1&amp;color1=0x2b405b&amp;color2=0x6b8ab6&amp;border=1" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="580" height="360" src="http://www.youtube.com/v/O0XKmU5hF5s&amp;hl=en_GB&amp;fs=1&amp;color1=0x2b405b&amp;color2=0x6b8ab6&amp;border=1" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<h2>Video mapping Object 3D</h2>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="445" height="364" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/jOEWRiCwzjo&amp;hl=en_GB&amp;fs=1&amp;color1=0x2b405b&amp;color2=0x6b8ab6&amp;border=1" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="445" height="364" src="http://www.youtube.com/v/jOEWRiCwzjo&amp;hl=en_GB&amp;fs=1&amp;color1=0x2b405b&amp;color2=0x6b8ab6&amp;border=1" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.mars69.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.mars69.com/2009/12/video-mapping-projection/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Regular Expression RegExp Tool</title>
		<link>http://www.mars69.com/2009/12/regexp-tool/</link>
		<comments>http://www.mars69.com/2009/12/regexp-tool/#comments</comments>
		<pubDate>Tue, 29 Dec 2009 14:00:58 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[RegExp]]></category>

		<guid isPermaLink="false">http://www.mars69.com/?p=34</guid>
		<description><![CDATA[This tool is designed to help developers learn, practice, and compose regular expressions.
The HiFi RegExp tool is 100% JavaScript using jQuery.]]></description>
			<content:encoded><![CDATA[<p>Regular expressions can be a pain. This tool is designed to help developers learn, practice, and compose regular expressions.</p>
<p><a href="http://gethifi.com/regexp/">http://gethifi.com/regexp/</a></p>
<p>The HiFi RegExp tool is 100% JavaScript using jQuery.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mars69.com/2009/12/regexp-tool/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to resize a VMware Linux virtual disk?</title>
		<link>http://www.mars69.com/2009/12/resize-vmware-linux-virtual-disk/</link>
		<comments>http://www.mars69.com/2009/12/resize-vmware-linux-virtual-disk/#comments</comments>
		<pubDate>Tue, 29 Dec 2009 13:05:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[VMware]]></category>

		<guid isPermaLink="false">http://www.mars69.com/?p=23</guid>
		<description><![CDATA[On your host resize the virtual device’s virtual disk (example for create 10GB disk). command: vmware-vdiskmanager -x 10GB myvirtual.vmdk On your virtual server resize filesystem (example for default instalation of CentOS 5). Check filesystem data command: df -h Add a new partition command: fdisk /dev/sda (p &#8211; print the partition table; n &#8211; add a [...]]]></description>
			<content:encoded><![CDATA[<h2>On your host</h2>
<p>resize the virtual device’s virtual disk (example for create 10GB disk).</p>
<pre>command: vmware-vdiskmanager -x 10GB myvirtual.vmdk</pre>
<h2>On your virtual server</h2>
<p>resize filesystem (example for default instalation of CentOS 5).</p>
<p>Check filesystem data</p>
<pre>command: df -h</pre>
<ol>
<li>Add a new partition
<pre>command: fdisk /dev/sda</pre>
<p>(p &#8211; print the partition table; n &#8211; add a new partition; t &#8211; change a partition&#8217;s system id, e.g. 8e Linux LVM; w &#8211; write table to disk and exit)</li>
<li>Reboot
<pre>command: reboot</pre>
</li>
<li>Create physical volume
<pre>command: pvcreate /dev/sda3</pre>
</li>
<li>Extend volume group
<pre>command: vgextend VolGroup00 /dev/sda3</pre>
</li>
<li>Extend logical volume
<pre>command: lvextend -l +100%free /dev/VolGroup00/LogVol00 /dev/sda3</pre>
</li>
<li>Resize filesystem
<pre>command: resize2fs /dev/VolGroup00/LogVol00</pre>
</li>
</ol>
<p>Check filesystem data</p>
<pre>command: df -h</pre>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.mars69.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.mars69.com/2009/12/resize-vmware-linux-virtual-disk/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
