<?xml version="1.0"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title> blog</title>
		<link>http://www.zool.in.ua/home-en-US/</link>
		<atom:link href="http://www.zool.in.ua/home-en-US/" rel="self" type="application/rss+xml" />
		<description></description>

		
		<item>
			<title>PHP quirks: a caveat with array string keys and an &#39;array_shift&#39; call</title>
			<link>http://www.zool.in.ua/home-en-US/string-keys-and-array-reindex-php-caveat/</link>
			<description>
&lt;p&gt;What do you think the following code snippet prints?&lt;/p&gt;
&lt;pre&gt;// Fill the array (each array element has the same value as a key)&lt;br/&gt;foreach(array('07', '08', '09', '10') as $n){&lt;br/&gt;  $a[$n] = $n;&lt;br/&gt;}&lt;br/&gt;&lt;br/&gt;// Delete the first element from the array&lt;br/&gt;array_shift($a);&lt;br/&gt;// Print a value of the element with a key of '10'&lt;br/&gt;echo $a['10'];&lt;br/&gt;&lt;/pre&gt;
&lt;p&gt;If you, like me, think that the element of the array with a key of '&lt;em&gt;10&lt;/em&gt;' has a string value of &quot;&lt;em&gt;10&lt;/em&gt;&quot;, then you're unfortunately wrong. But now you've got a reason to read the article further... [&lt;a href=&quot;http://www.zool.in.ua/home-en-US/string-keys-and-array-reindex-php-caveat/&quot;&gt;&lt;i&gt;read more&lt;/i&gt;&lt;/a&gt;]&lt;/p&gt;</description>
			<pubDate>Tue, 24 Jan 2012 01:28:16 +0200</pubDate>
			
			
			<guid>http://www.zool.in.ua/home-en-US/string-keys-and-array-reindex-php-caveat/</guid>
		</item>
		
		<item>
			<title>How to install Windows update files quickly</title>
			<link>http://www.zool.in.ua/home-en-US/quick-installation-of-windows-update-files-en/</link>
			<description>
&lt;p&gt;So you have a folder with &lt;em&gt;&lt;strong&gt;Windows Update Files&lt;/strong&gt;&lt;/em&gt; (e.g. downloaded from &lt;strong&gt;Microsoft Update Center&lt;/strong&gt;):&lt;/p&gt;
&lt;pre&gt;...&lt;br/&gt;WindowsXP-KB938464-v2-x86-RUS.exe&lt;br/&gt;WindowsXP-KB944043-v3-x86-RUS.exe&lt;br/&gt;WindowsXP-KB946648-x86-RUS.exe&lt;br/&gt;WindowsXP-KB950762-x86-RUS.exe&lt;br/&gt;WindowsXP-KB950974-x86-RUS.exe&lt;br/&gt;...&lt;br/&gt;... &lt;em&gt;(a lot of files)&lt;br/&gt;&lt;/em&gt;&lt;/pre&gt;
&lt;p&gt;If you have such a folder, then it's logical to install all the files and it's better to install them automatically, with a single command line... [&lt;a href=&quot;http://www.zool.in.ua/home-en-US/quick-installation-of-windows-update-files-en/&quot;&gt;&lt;i&gt;read more&lt;/i&gt;&lt;/a&gt;]&lt;/p&gt;</description>
			<pubDate>Fri, 11 Nov 2011 15:59:29 +0200</pubDate>
			
			
			<guid>http://www.zool.in.ua/home-en-US/quick-installation-of-windows-update-files-en/</guid>
		</item>
		
		<item>
			<title>GeForce2 MX400 video drivers for Windows 7</title>
			<link>http://www.zool.in.ua/home-en-US/geforce2-mx400-windows-7-drivers/</link>
			<description>&lt;p&gt;I've just finished installing &lt;strong&gt;&lt;em&gt;Windows 7&lt;/em&gt;&lt;/strong&gt; on a system with an ancient video card – &lt;strong&gt;&lt;em&gt;GeForce2 MX400&lt;/em&gt;&lt;/strong&gt;. It wasn't very easy, so I decided to write down my experience to the blog... [&lt;a href=&quot;http://www.zool.in.ua/home-en-US/geforce2-mx400-windows-7-drivers/&quot;&gt;&lt;i&gt;read more&lt;/i&gt;&lt;/a&gt;]&lt;/p&gt;</description>
			<pubDate>Sun, 16 Oct 2011 01:26:47 +0300</pubDate>
			
			
			<guid>http://www.zool.in.ua/home-en-US/geforce2-mx400-windows-7-drivers/</guid>
		</item>
		
		<item>
			<title>How to remove &quot;Your website URL&quot; field from comment forms in Silverstripe CMS</title>
			<link>http://www.zool.in.ua/home-en-US/silverstripe-your-website-url-removing/</link>
			<description>&lt;p&gt;It's obvious that “&lt;strong&gt;&lt;em&gt;Your website URL&lt;/em&gt;&lt;/strong&gt;” field in &lt;strong&gt;Silverstripe &lt;/strong&gt;comment forms is a plum for spammers, so let's remove this field... [&lt;a href=&quot;http://www.zool.in.ua/home-en-US/silverstripe-your-website-url-removing/&quot;&gt;&lt;i&gt;read more&lt;/i&gt;&lt;/a&gt;]&lt;/p&gt;</description>
			<pubDate>Thu, 22 Sep 2011 00:03:12 +0300</pubDate>
			
			
			<guid>http://www.zool.in.ua/home-en-US/silverstripe-your-website-url-removing/</guid>
		</item>
		
		<item>
			<title>Copying records from one table to another: INSERT from SELECT in SQL</title>
			<link>http://www.zool.in.ua/home-en-US/insert-from-select/</link>
			<description>
&lt;p&gt;If you find yourself writing something like the following code, try to stop and think for a while (the example uses &lt;strong&gt;&lt;em&gt;PHP Database Objects&lt;/em&gt;&lt;/strong&gt; extension)... [&lt;a href=&quot;http://www.zool.in.ua/home-en-US/insert-from-select/&quot;&gt;&lt;i&gt;read more&lt;/i&gt;&lt;/a&gt;]&lt;/p&gt;</description>
			<pubDate>Wed, 24 Aug 2011 16:09:59 +0300</pubDate>
			
			
			<guid>http://www.zool.in.ua/home-en-US/insert-from-select/</guid>
		</item>
		
		<item>
			<title>Silverstripe (Blog module): localisation of  Tag Cloud widget</title>
			<link>http://www.zool.in.ua/home-en-US/silverstripe-blog-tag-cloud-localisation/</link>
			<description>&lt;p&gt;In current version of Silverstripe's Blog module it's impossible to show non-latin tags in Tag Cloud widget &lt;span class=&quot;nobr&quot;&gt;— you'll see garbage instead of them&lt;/span&gt;:&lt;img class=&quot;center&quot; src=&quot;http://www.zool.in.ua/assets/Uploads/Blog/silverstripe-blog-tag-cloud-localisation/bad-tags.jpg&quot; alt=&quot;Garbage in Tag Cloud widget&quot; title=&quot;Garbage in Tag Cloud widget&quot; width=&quot;248&quot; height=&quot;153&quot;/&gt; [&lt;a href=&quot;http://www.zool.in.ua/home-en-US/silverstripe-blog-tag-cloud-localisation/&quot;&gt;&lt;i&gt;read more&lt;/i&gt;&lt;/a&gt;]&lt;/p&gt;</description>
			<pubDate>Sun, 21 Aug 2011 14:46:18 +0300</pubDate>
			
			
			<guid>http://www.zool.in.ua/home-en-US/silverstripe-blog-tag-cloud-localisation/</guid>
		</item>
		
		<item>
			<title>Opera 11 won&#39;t start on Windows</title>
			<link>http://www.zool.in.ua/home-en-US/opera-11-wont-start-on-windows/</link>
			<description>
&lt;p&gt;Today I've faced with a problem – Opera 11 couldn't start on Windows XP and showed the following error... [&lt;a href=&quot;http://www.zool.in.ua/home-en-US/opera-11-wont-start-on-windows/&quot;&gt;&lt;i&gt;read more&lt;/i&gt;&lt;/a&gt;]&lt;/p&gt;</description>
			<pubDate>Sat, 02 Jul 2011 22:35:22 +0300</pubDate>
			
			
			<guid>http://www.zool.in.ua/home-en-US/opera-11-wont-start-on-windows/</guid>
		</item>
		
		<item>
			<title>Video Camera for Skype: using a video camera as a web-camera</title>
			<link>http://www.zool.in.ua/home-en-US/videocam-as-web-cam-en/</link>
			<description>&lt;p&gt;The following works also in other applications (not only in Skype) that use a web-cam and don't work with your video-camera connected to your PC through FireWire (for example)... [&lt;a href=&quot;http://www.zool.in.ua/home-en-US/videocam-as-web-cam-en/&quot;&gt;&lt;i&gt;read more&lt;/i&gt;&lt;/a&gt;]&lt;/p&gt;</description>
			<pubDate>Sat, 26 Feb 2011 04:52:12 +0200</pubDate>
			
			
			<guid>http://www.zool.in.ua/home-en-US/videocam-as-web-cam-en/</guid>
		</item>
		
		<item>
			<title>Silverstripe: How to insert Google Analytics code (or any other custom code) at the end of a head section?</title>
			<link>http://www.zool.in.ua/home-en-US/silverstripe-custom-code-head-insertion/</link>
			<description>&lt;p&gt;By default &lt;strong&gt;Silverstripe CMS&lt;/strong&gt; doesn't have any means to place a custom javascript snippet at the very end of the head section just before &quot;&amp;lt;/head&amp;gt;&quot; closing tag. I faced with this today because I wanted to put Google Analytics tracker code there. Of course, I know that technically one can place this code anywhere, but I had problems with my statistics and I wanted to be sure that I did everything as Google said... [&lt;a href=&quot;http://www.zool.in.ua/home-en-US/silverstripe-custom-code-head-insertion/&quot;&gt;&lt;i&gt;read more&lt;/i&gt;&lt;/a&gt;]&lt;/p&gt;</description>
			<pubDate>Sun, 13 Feb 2011 03:48:43 +0200</pubDate>
			
			
			<guid>http://www.zool.in.ua/home-en-US/silverstripe-custom-code-head-insertion/</guid>
		</item>
		
		<item>
			<title>Site Upgrade</title>
			<link>http://www.zool.in.ua/home-en-US/site-upgrade/</link>
			<description>&lt;p&gt;The site has been migrated to a new engine. Now it's Silverstripe CMF with standard skin BlackCandy... [&lt;a href=&quot;http://www.zool.in.ua/home-en-US/site-upgrade/&quot;&gt;&lt;i&gt;read more&lt;/i&gt;&lt;/a&gt;]&lt;/p&gt;</description>
			<pubDate>Mon, 07 Feb 2011 15:26:07 +0200</pubDate>
			
			
			<guid>http://www.zool.in.ua/home-en-US/site-upgrade/</guid>
		</item>
		

	</channel>
</rss>
