<?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>Andrey Vystavkin Blog</title>
	<atom:link href="http://j4vk.com/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://j4vk.com/wordpress</link>
	<description>IT, Programming, and just some stuff</description>
	<lastBuildDate>Wed, 10 Mar 2010 13:29:19 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Perl, from Excel to MySQL</title>
		<link>http://j4vk.com/wordpress/2010/03/10/perl-from-excel-to-mysql/</link>
		<comments>http://j4vk.com/wordpress/2010/03/10/perl-from-excel-to-mysql/#comments</comments>
		<pubDate>Wed, 10 Mar 2010 13:24:39 +0000</pubDate>
		<dc:creator>Andrey Vystavkin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Memo]]></category>
		<category><![CDATA[fun]]></category>
		<category><![CDATA[perl]]></category>

		<guid isPermaLink="false">http://j4vk.com/wordpress/?p=420</guid>
		<description><![CDATA[One of the reasons I like Perl &#8211; it&#8217;s really fast on solving daily routines. The request was to get a list of shipping flags from one of the websites to Excel and paste it to the site&#8217;s database. Quick and dirty solution:

#!/usr/bin/perl
&#160;
use strict;
use warnings;
use DBI;
use Spreadsheet::ParseExcel;
&#160;
my $file = 'flags.xls';
&#160;
my $xl_parser = Spreadsheet::ParseExcel-&#62;new&#40;&#41;;
&#160;
my $workbook = [...]]]></description>
			<content:encoded><![CDATA[<p>One of the reasons I like Perl &#8211; it&#8217;s really fast on solving daily routines. The request was to get a list of shipping flags from one of the websites to Excel and paste it to the site&#8217;s database. Quick and dirty solution:</p>

<div class="wp_syntax"><div class="code"><pre class="perl" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">#!/usr/bin/perl</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">use</span> strict<span style="color: #339933;">;</span>
<span style="color: #000000; font-weight: bold;">use</span> warnings<span style="color: #339933;">;</span>
<span style="color: #000000; font-weight: bold;">use</span> DBI<span style="color: #339933;">;</span>
<span style="color: #000000; font-weight: bold;">use</span> Spreadsheet<span style="color: #339933;">::</span><span style="color: #006600;">ParseExcel</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #b1b100;">my</span> <span style="color: #0000ff;">$file</span> <span style="color: #339933;">=</span> <span style="color: #ff0000;">'flags.xls'</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #b1b100;">my</span> <span style="color: #0000ff;">$xl_parser</span> <span style="color: #339933;">=</span> Spreadsheet<span style="color: #339933;">::</span><span style="color: #006600;">ParseExcel</span><span style="color: #339933;">-&gt;</span><span style="color: #006600;">new</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #b1b100;">my</span> <span style="color: #0000ff;">$workbook</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">$xl_parser</span><span style="color: #339933;">-&gt;</span><span style="color: #006600;">Parse</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">$file</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">my</span> <span style="color: #0000ff;">$worksheet</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">$workbook</span><span style="color: #339933;">-&gt;</span><span style="color: #006600;">worksheet</span><span style="color: #009900;">&#40;</span><span style="color: #ff0000;">'Sheet1'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #b1b100;">my</span> <span style="color: #009900;">&#40;</span><span style="color: #0000ff;">$c_min</span><span style="color: #339933;">,</span><span style="color: #0000ff;">$c_max</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">$worksheet</span><span style="color: #339933;">-&gt;</span><span style="color: #006600;">col_range</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">my</span> <span style="color: #009900;">&#40;</span><span style="color: #0000ff;">$r_min</span><span style="color: #339933;">,</span><span style="color: #0000ff;">$r_max</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">$worksheet</span><span style="color: #339933;">-&gt;</span><span style="color: #006600;">row_range</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #b1b100;">my</span> <span style="color: #0000ff;">@flags</span><span style="color: #339933;">;</span>  <span style="color: #666666; font-style: italic;"># used for storing an array of flags;</span>
&nbsp;
<span style="color: #b1b100;">for</span> <span style="color: #b1b100;">my</span> <span style="color: #0000ff;">$row</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">$r_min</span><span style="color: #339933;">..</span><span style="color: #0000ff;">$r_max</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
&nbsp;
    <span style="color: #b1b100;">for</span> <span style="color: #b1b100;">my</span> <span style="color: #0000ff;">$col</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">$c_min</span><span style="color: #339933;">..</span><span style="color: #0000ff;">$c_max</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
&nbsp;
        <span style="color: #b1b100;">my</span> <span style="color: #0000ff;">$cell</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">$worksheet</span><span style="color: #339933;">-&gt;</span><span style="color: #006600;">get_cell</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">$row</span><span style="color: #339933;">,</span><span style="color: #0000ff;">$col</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        <span style="color: #b1b100;">my</span> <span style="color: #0000ff;">$val</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">$cell</span><span style="color: #339933;">-&gt;</span><span style="color: #006600;">value</span><span style="color: #339933;">;</span>
&nbsp;
        <span style="color: #0000ff;">$val</span> <span style="color: #339933;">=~</span> <span style="color: #009966; font-style: italic;">s/^\s+(.*?)\s$//g</span><span style="color: #339933;">;</span>
&nbsp;
        <span style="color: #000066;">push</span> <span style="color: #0000ff;">@flags</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">$val</span><span style="color: #339933;">;</span>
        <span style="color: #666666; font-style: italic;">#some extras on different cells/etc/</span>
&nbsp;
    <span style="color: #009900;">&#125;</span>   
<span style="color: #009900;">&#125;</span>
&nbsp;
<span style="color: #b1b100;">my</span> <span style="color: #0000ff;">$dsn</span> <span style="color: #339933;">=</span> <span style="color: #ff0000;">&quot;DBI:mysql:database=db_blah;host=host;port=blah_port&quot;</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">my</span> <span style="color: #0000ff;">$dbh</span> <span style="color: #339933;">=</span> DBI<span style="color: #339933;">-&gt;</span><span style="color: #006600;">connect</span><span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">$dsn</span><span style="color: #339933;">,</span> <span style="color: #ff0000;">'usr_blah'</span><span style="color: #339933;">,</span> <span style="color: #ff0000;">'pwd_blah'</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">||</span> <span style="color: #000066;">die</span><span style="color: #009900;">&#40;</span><span style="color: #ff0000;">&quot;Couldn't connect to database<span style="color: #000099; font-weight: bold;">\n</span>&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
&nbsp;
<span style="color: #0000ff;">$dbh</span><span style="color: #339933;">-&gt;</span><span style="color: #006600;">do</span><span style="color: #009900;">&#40;</span><span style="color: #ff0000;">&quot;INSERT INTO flags(name) VALUES(&quot;</span><span style="color: #339933;">.</span><span style="color: #0000ff;">$dbh</span><span style="color: #339933;">-&gt;</span><span style="color: #006600;">quote</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">$_</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">.</span><span style="color: #ff0000;">&quot;)&quot;</span><span style="color: #009900;">&#41;</span> <span style="color: #b1b100;">for</span> <span style="color: #0000ff;">@flags</span><span style="color: #339933;">;</span></pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://j4vk.com/wordpress/2010/03/10/perl-from-excel-to-mysql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CakePHP: remove tmp folder from svn control</title>
		<link>http://j4vk.com/wordpress/2010/03/01/cakephp-remove-tmp-folder-from-svn-control/</link>
		<comments>http://j4vk.com/wordpress/2010/03/01/cakephp-remove-tmp-folder-from-svn-control/#comments</comments>
		<pubDate>Mon, 01 Mar 2010 11:35:40 +0000</pubDate>
		<dc:creator>Andrey Vystavkin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[cakephp]]></category>
		<category><![CDATA[svn]]></category>

		<guid isPermaLink="false">http://j4vk.com/wordpress/?p=415</guid>
		<description><![CDATA[We&#8217;d have to use propset command from SVN.

$#: cd /path/to/repository/cake_project
$#: svn delete app/tmp/*
$#: svn propset svn:ignore '*' tmp/

Now, after you commit the changes your tmp/files won&#8217;t be commited to the SVN repo.
]]></description>
			<content:encoded><![CDATA[<p>We&#8217;d have to use <a title="SVN reference on propset command" href="http://svnbook.red-bean.com/en/1.0/re23.html">propset</a> command from SVN.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #007800;">$#</span>: <span style="color: #7a0874; font-weight: bold;">cd</span> <span style="color: #000000; font-weight: bold;">/</span>path<span style="color: #000000; font-weight: bold;">/</span>to<span style="color: #000000; font-weight: bold;">/</span>repository<span style="color: #000000; font-weight: bold;">/</span>cake_project
<span style="color: #007800;">$#</span>: <span style="color: #c20cb9; font-weight: bold;">svn</span> delete app<span style="color: #000000; font-weight: bold;">/</span>tmp<span style="color: #000000; font-weight: bold;">/*</span>
<span style="color: #007800;">$#</span>: <span style="color: #c20cb9; font-weight: bold;">svn</span> propset <span style="color: #c20cb9; font-weight: bold;">svn</span>:ignore <span style="color: #ff0000;">'*'</span> tmp<span style="color: #000000; font-weight: bold;">/</span></pre></div></div>

<p>Now, after you commit the changes your tmp/files won&#8217;t be commited to the SVN repo.</p>
]]></content:encoded>
			<wfw:commentRss>http://j4vk.com/wordpress/2010/03/01/cakephp-remove-tmp-folder-from-svn-control/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>service mysqld restart: no file or directory</title>
		<link>http://j4vk.com/wordpress/2010/01/05/service-mysqld-restart-no-file-or-directory/</link>
		<comments>http://j4vk.com/wordpress/2010/01/05/service-mysqld-restart-no-file-or-directory/#comments</comments>
		<pubDate>Tue, 05 Jan 2010 08:25:20 +0000</pubDate>
		<dc:creator>Andrey Vystavkin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Memo]]></category>

		<guid isPermaLink="false">http://j4vk.com/wordpress/?p=410</guid>
		<description><![CDATA[rpm -qa &#124; grep mysql (find out the version of mysql you got)Somehow managed to break mysqld file (wow! applauses).
Errors received from &#8216;mysql -u &#60;username&#62; -p &#60;pass&#62;&#8217;:

ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/var/lib/mysql/mysql.sock'

On using &#8216;rpm -e mysql-server&#8217; was getting:

 error reading information on service mysqld: No such file or directory
error: [...]]]></description>
			<content:encoded><![CDATA[<p>rpm -qa | grep mysql (find out the version of mysql you got)Somehow managed to break mysqld file (wow! applauses).</p>
<p>Errors received from &#8216;mysql -u &lt;username&gt; -p &lt;pass&gt;&#8217;:<br />
<code><br />
<em>ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/var/lib/mysql/mysql.sock'</em><br />
</code><br />
On using &#8216;rpm -e mysql-server&#8217; was getting:<br />
<code><br />
<em> error reading information on service mysqld: No such file or directory<br />
error: %preun(mysql-server-3.23.58-4) scriptlet failed, exit status 1</em></code></p>
<p>The solution ended up in:</p>
<ul>
<li>rpm -qa | grep mysql (find out the version of mysql you got)</li>
<li>Get the right version of you <a title="MySQL Rpm database" href="http://rpm.pbone.net/index.php3/stat/3/srodzaj/1/search/config(MySQL-server)">RPM</a></li>
<li>rpm -Uhv &#8211;force mysql-server-xx.x.rpm</li>
<li>service mysqld restart</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://j4vk.com/wordpress/2010/01/05/service-mysqld-restart-no-file-or-directory/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Avatar: we want more!</title>
		<link>http://j4vk.com/wordpress/2009/12/21/avatar-we-want-more/</link>
		<comments>http://j4vk.com/wordpress/2009/12/21/avatar-we-want-more/#comments</comments>
		<pubDate>Mon, 21 Dec 2009 12:15:27 +0000</pubDate>
		<dc:creator>Andrey Vystavkin</dc:creator>
				<category><![CDATA[Heap]]></category>

		<guid isPermaLink="false">http://j4vk.com/wordpress/?p=408</guid>
		<description><![CDATA[
Yesterday, finally watched Avatar movie. I don&#8217;t want to talk on the story line &#8211; IMHO, everything was simply great. Hopefully, the story will continue, because ending this whole universe only with one movie would have been a crime!
What about:

It&#8217;s year 2154 &#8211; how far the humanity went in the Universe?
It&#8217;s been just the beginning [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft" title="Avatar movie cover from IMDB" src="http://ia.media-imdb.com/images/M/MV5BMTYwOTEwNjAzMl5BMl5BanBnXkFtZTcwODc5MTUwMw@@._V1._SX95_SY140_.jpg" alt="" width="95" height="140" /></p>
<p>Yesterday, finally watched Avatar movie. I don&#8217;t want to talk on the story line &#8211; IMHO, everything was simply great. Hopefully, the story will continue, because ending this whole universe only with one movie would have been a crime!</p>
<p>What about:</p>
<ol>
<li>It&#8217;s year 2154 &#8211; how far the humanity went in the Universe?</li>
<li>It&#8217;s been just the beginning of the story (aka first Dune movie). What about &#8220;they&#8217;re coming back&#8221; part?</li>
<li>Pandora planet was shown just specifically in one region, what about other tribes and areas?</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://j4vk.com/wordpress/2009/12/21/avatar-we-want-more/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google: recent privacy buzz</title>
		<link>http://j4vk.com/wordpress/2009/12/11/google-recent-privacy-buzz/</link>
		<comments>http://j4vk.com/wordpress/2009/12/11/google-recent-privacy-buzz/#comments</comments>
		<pubDate>Fri, 11 Dec 2009 15:56:42 +0000</pubDate>
		<dc:creator>Andrey Vystavkin</dc:creator>
				<category><![CDATA[Heap]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[patriot act]]></category>
		<category><![CDATA[privacy policy]]></category>

		<guid isPermaLink="false">http://j4vk.com/wordpress/?p=406</guid>
		<description><![CDATA[Recently, Google CEO Erick Schmidt gave interview on privacy of Google users. Here&#8217;s the quote:
If you have something that you don&#8217;t want anyone to know, maybe you shouldn&#8217;t be doing it in the first place. If you really need that kind of privacy, the reality is that search engines — including Google — do retain [...]]]></description>
			<content:encoded><![CDATA[<p>Recently, Google CEO Erick Schmidt gave interview on privacy of Google users. Here&#8217;s the quote:</p>
<blockquote><p><em>If you have something that you don&#8217;t want anyone to know, maybe you shouldn&#8217;t be doing it in the first place. If you really need that kind of privacy, the reality is that search engines — including Google — do retain this information for some time and it&#8217;s important, for example, that we are all subject in the United States to the Patriot Act and it is possible that all that information could be made available to the authorities.</em></p></blockquote>
<p>Global and Russian internet communities got nuts about this news, especially when Google published their User Dashboard service. Users got amazed by how much information Google is keeping and tracking about their users. Some of people straight away started crying about moving all their searching activities to Bing and switching from Google Apps to other alternatives. But, hold on, let&#8217;s take a closer look!</p>
<h2>What&#8217;s Patriot act?</h2>
<blockquote><p>The Act increases the ability of law enforcement agencies to search telephone, e-mail communications, medical, financial, and other records; eases restrictions on foreign intelligence gathering within the United States (c) <a title="USA Patriot Act by Wikipedia" href="http://en.wikipedia.org/wiki/USA_PATRIOT_Act" target="_self">Wikipedia</a></p></blockquote>
<p>As any US based company Google either Yahoo, of Bing(aka Microsoft) will never deny this Act. And by any call from &#8220;upstairs&#8221;, any US company will provide all the information about the user, no matter how strict their privacy policy is. Do you really have something &#8220;interesting&#8221; for US National Security Agencies to show? Or, you&#8217;re worrying about <a href="http://science.slashdot.org/story/09/12/02/1611239/University-Fails-to-Find-Man-Who-Hasnt-Seen-Porn?from=rss" target="_self">this</a>?</p>
<p>If you don&#8217;t like the privacies user agreements that US based companies are offering &#8211; you can always switch to your native search engine (i.e. <a title="Russian Leading Search engine, Yandex" href="http://www.yandex.ru/">Yandex</a> for Russians), but &#8211; I doubt that the company would refuse providing private information of the user by the request of National Agencies from your country &#8211; it&#8217;s 21th century, and we kinda &#8220;fighting the same enemy together&#8221;, in other words &#8211; if you information has anything violating National security &#8211; you&#8217;re going to get caught anyway &#8211; from this side of the boarder, or the other one.</p>
<h2>How do we get data about customers?</h2>
<p>As any company whatever it is, has the customer database, whatever you search, watch, read, download. All those &#8220;marketing&#8221; guys doing research on consumer behavior, and product marketing need the trends to prove that the company &#8220;needs&#8221; given product they&#8217;re about to launch. Banks do the same thing with department stores: they know more then you expect. The whole goal of it: give the customer what he wants! If you&#8217;re afraid of searching for something ridiculous official, you can always cover yourself with bunch of proxies &#8211; and the data will be kept there, not in Google/Bing/etc.</p>
<h2>So, what to use?</h2>
<p>Anything you like! No matter what you&#8217;re going to use, the twist that &#8220;everybody knows that you&#8217;re not a dog in the Internet&#8221; has come, unless you&#8217;re really paranoid about your private searching (hiding the fact that you&#8217;re googling how to make an apple pie in microwave!).</p>
<p>If you&#8217;re really afraid about the fact that you&#8217;ve been searching for something completely out of range/law &#8211; then you should really think that &#8220;<em>you shouldn&#8217;t be doing it in the first place&#8221;&#8230;</em></p>
]]></content:encoded>
			<wfw:commentRss>http://j4vk.com/wordpress/2009/12/11/google-recent-privacy-buzz/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IE7 &#8220;operation aborted&#8221; error</title>
		<link>http://j4vk.com/wordpress/2009/11/23/ie7-operation-aborted-error/</link>
		<comments>http://j4vk.com/wordpress/2009/11/23/ie7-operation-aborted-error/#comments</comments>
		<pubDate>Mon, 23 Nov 2009 00:41:53 +0000</pubDate>
		<dc:creator>Andrey Vystavkin</dc:creator>
				<category><![CDATA[Memo]]></category>

		<guid isPermaLink="false">http://j4vk.com/wordpress/?p=404</guid>
		<description><![CDATA[Once you have &#8220;Operation aborted&#8221; error in IE7 for the website that means:

You&#8217;ve placed JS file in the head of the document.
This script tries to work with DOM with appendChild, createElement methods that drive IE crazy!

Solution is simple &#8211; move the JS file out of the head-tag at the bottom as (YDN advices), or at [...]]]></description>
			<content:encoded><![CDATA[<p>Once you have &#8220;Operation aborted&#8221; error in IE7 for the website that means:</p>
<ol>
<li>You&#8217;ve placed JS file in the head of the document.</li>
<li>This script tries to work with DOM with appendChild, createElement methods that drive IE crazy!</li>
</ol>
<p>Solution is simple &#8211; move the JS file out of the head-tag at the bottom as (<a href="http://developer.yahoo.com/">YDN</a> advices), or at least &#8211; inside its container. For example, body-tag.</p>
]]></content:encoded>
			<wfw:commentRss>http://j4vk.com/wordpress/2009/11/23/ie7-operation-aborted-error/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Dashboard and preferred language issue</title>
		<link>http://j4vk.com/wordpress/2009/11/06/google-dashboard-and-preferred-language-issue/</link>
		<comments>http://j4vk.com/wordpress/2009/11/06/google-dashboard-and-preferred-language-issue/#comments</comments>
		<pubDate>Fri, 06 Nov 2009 11:37:13 +0000</pubDate>
		<dc:creator>Andrey Vystavkin</dc:creator>
				<category><![CDATA[Google]]></category>
		<category><![CDATA[Links]]></category>
		<category><![CDATA[Humor]]></category>
		<category><![CDATA[Quotes]]></category>

		<guid isPermaLink="false">http://j4vk.com/wordpress/?p=400</guid>
		<description><![CDATA[
Well that&#8217;s annoying&#8230;one thing Google doesn&#8217;t do intelligently is languages. I am logged into my account, they KNOW I speak English as a preferred language, but when I go to my iGoogle [google.com] page on my iPhone whilst I&#8217;m in Belgium it insists on displaying everything in Dutch.
That was annoying enough&#8230;but now the dashboard is doing [...]]]></description>
			<content:encoded><![CDATA[<blockquote>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; padding: 0px;">Well that&#8217;s annoying&#8230;one thing Google doesn&#8217;t do intelligently is languages. I am logged into my account, they KNOW I speak English as a preferred language, but when I go to my <a style="color: #663300; background-image: none; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: initial; background-position: initial initial; background-repeat: initial initial; padding: 0px; margin: 0px;" title="google.com" href="http://www.google.com/ig">iGoogle</a> [google.com] page on my iPhone whilst I&#8217;m in Belgium it insists on displaying everything in Dutch.</p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; padding: 0px;">That was annoying enough&#8230;but now the dashboard is doing the same, even when I visit the page from my laptop.</p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; padding: 0px;">Google, you <strong>KNOW</strong> I speak English, stop overriding my account setting for my language with demographic data based on my IP address. When I&#8217;m traveling it doesn&#8217;t make me fluent in the local language&#8230;</p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; padding: 0px;">*slaps the company on the nose with a rolled up newspaper* Bad Google, bad bad portal!</p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; padding: 0px;">&#8211; Pete. (c) <a href="http://yro.slashdot.org/comments.pl?sid=1433512&amp;cid=30003400">Comment</a></p>
</blockquote>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; padding: 0px;">That&#8217;s one of the reasons I love Slashdot &#8211; proper way of commenting the <a title="Slashdot on Google Dashboard release" href="http://yro.slashdot.org/article.pl?sid=09/11/06/0453232">things</a>! <img src='http://j4vk.com/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; padding: 0px;">Oh, yeah, about <a title="Google dashboard account" href="http://google.com/dashboard">Google Dashboard</a> &#8211; yep, it&#8217;s quite handy and useful! <img src='http://j4vk.com/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://j4vk.com/wordpress/2009/11/06/google-dashboard-and-preferred-language-issue/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hugh Laurie &#8211; &#8220;America&#8221;</title>
		<link>http://j4vk.com/wordpress/2009/11/06/hugh-laurie-america/</link>
		<comments>http://j4vk.com/wordpress/2009/11/06/hugh-laurie-america/#comments</comments>
		<pubDate>Fri, 06 Nov 2009 08:45:16 +0000</pubDate>
		<dc:creator>Andrey Vystavkin</dc:creator>
				<category><![CDATA[Links]]></category>
		<category><![CDATA[hugh laurie]]></category>
		<category><![CDATA[Humor]]></category>
		<category><![CDATA[YouTube]]></category>

		<guid isPermaLink="false">http://j4vk.com/wordpress/?p=397</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[<p><!-- Smart Youtube --><span class="youtube"><object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/lyHSjv9gxlE&amp;rel=1&amp;color1=d6d6d6&amp;color2=f0f0f0&amp;border=&amp;fs=1&amp;hl=en&amp;autoplay=&amp;showinfo=0&amp;iv_load_policy=3&amp;showsearch=0" /><param name="allowFullScreen" value="true" /><embed wmode="transparent" src="http://www.youtube.com/v/lyHSjv9gxlE&amp;rel=1&amp;color1=d6d6d6&amp;color2=f0f0f0&amp;border=&amp;fs=1&amp;hl=en&amp;autoplay=&amp;showinfo=0&amp;iv_load_policy=3&amp;showsearch=0" type="application/x-shockwave-flash" allowfullscreen="true" width="425" height="355" ></embed><param name="wmode" value="transparent" /></object></span></p>
]]></content:encoded>
			<wfw:commentRss>http://j4vk.com/wordpress/2009/11/06/hugh-laurie-america/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Memo: SVN creation, trunks and tags</title>
		<link>http://j4vk.com/wordpress/2009/11/03/memo-svn-creation-trunks-and-tags/</link>
		<comments>http://j4vk.com/wordpress/2009/11/03/memo-svn-creation-trunks-and-tags/#comments</comments>
		<pubDate>Tue, 03 Nov 2009 07:26:03 +0000</pubDate>
		<dc:creator>Andrey Vystavkin</dc:creator>
				<category><![CDATA[Memo]]></category>

		<guid isPermaLink="false">http://j4vk.com/wordpress/?p=393</guid>
		<description><![CDATA[1. Trunks

svnadmin create --fs-type fsfs /svn
cd /svn
svn mkdir file:///svn/&#60;project&#62; -m &#34;creating project directory&#34;
svn import /dir/of/project_files file:///svn/&#60;project&#62;/trunk -m &#34;initial import&#34;
svn checkout file:///svn/&#60;project&#62;

2. Creating Tags

cd /svn/&#60;project&#62;
svn mkdir tags
svn copy trunk/ tags/&#60;version_tag&#62; 
svn ci -m &#34;version tagged&#34;
cd /svn/&#60;project&#62;
svn checkout file:///svn/&#60;project&#62;/tags/&#60;version_tag&#62;

]]></description>
			<content:encoded><![CDATA[<p>1. Trunks</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">svnadmin</span> create <span style="color: #660033;">--fs-type</span> fsfs <span style="color: #000000; font-weight: bold;">/</span><span style="color: #c20cb9; font-weight: bold;">svn</span>
<span style="color: #7a0874; font-weight: bold;">cd</span> <span style="color: #000000; font-weight: bold;">/</span><span style="color: #c20cb9; font-weight: bold;">svn</span>
<span style="color: #c20cb9; font-weight: bold;">svn</span> <span style="color: #c20cb9; font-weight: bold;">mkdir</span> <span style="color: #c20cb9; font-weight: bold;">file</span>:<span style="color: #000000; font-weight: bold;">///</span>svn<span style="color: #000000; font-weight: bold;">/&lt;</span>project<span style="color: #000000; font-weight: bold;">&gt;</span> <span style="color: #660033;">-m</span> <span style="color: #ff0000;">&quot;creating project directory&quot;</span>
<span style="color: #c20cb9; font-weight: bold;">svn</span> import <span style="color: #000000; font-weight: bold;">/</span>dir<span style="color: #000000; font-weight: bold;">/</span>of<span style="color: #000000; font-weight: bold;">/</span>project_files <span style="color: #c20cb9; font-weight: bold;">file</span>:<span style="color: #000000; font-weight: bold;">///</span>svn<span style="color: #000000; font-weight: bold;">/&lt;</span>project<span style="color: #000000; font-weight: bold;">&gt;/</span>trunk <span style="color: #660033;">-m</span> <span style="color: #ff0000;">&quot;initial import&quot;</span>
<span style="color: #c20cb9; font-weight: bold;">svn</span> checkout <span style="color: #c20cb9; font-weight: bold;">file</span>:<span style="color: #000000; font-weight: bold;">///</span>svn<span style="color: #000000; font-weight: bold;">/&lt;</span>project<span style="color: #000000; font-weight: bold;">&gt;</span></pre></div></div>

<p>2. Creating Tags</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #7a0874; font-weight: bold;">cd</span> <span style="color: #000000; font-weight: bold;">/</span>svn<span style="color: #000000; font-weight: bold;">/&lt;</span>project<span style="color: #000000; font-weight: bold;">&gt;</span>
<span style="color: #c20cb9; font-weight: bold;">svn</span> <span style="color: #c20cb9; font-weight: bold;">mkdir</span> tags
<span style="color: #c20cb9; font-weight: bold;">svn</span> copy trunk<span style="color: #000000; font-weight: bold;">/</span> tags<span style="color: #000000; font-weight: bold;">/&lt;</span>version_tag<span style="color: #000000; font-weight: bold;">&gt;</span> 
<span style="color: #c20cb9; font-weight: bold;">svn</span> ci <span style="color: #660033;">-m</span> <span style="color: #ff0000;">&quot;version tagged&quot;</span>
<span style="color: #7a0874; font-weight: bold;">cd</span> <span style="color: #000000; font-weight: bold;">/</span>svn<span style="color: #000000; font-weight: bold;">/&lt;</span>project<span style="color: #000000; font-weight: bold;">&gt;</span>
<span style="color: #c20cb9; font-weight: bold;">svn</span> checkout <span style="color: #c20cb9; font-weight: bold;">file</span>:<span style="color: #000000; font-weight: bold;">///</span>svn<span style="color: #000000; font-weight: bold;">/&lt;</span>project<span style="color: #000000; font-weight: bold;">&gt;/</span>tags<span style="color: #000000; font-weight: bold;">/&lt;</span>version_tag<span style="color: #000000; font-weight: bold;">&gt;</span></pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://j4vk.com/wordpress/2009/11/03/memo-svn-creation-trunks-and-tags/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Memo: fast grep of the word in the directory</title>
		<link>http://j4vk.com/wordpress/2009/11/02/memo-fast-grep-of-the-word-in-the-directory/</link>
		<comments>http://j4vk.com/wordpress/2009/11/02/memo-fast-grep-of-the-word-in-the-directory/#comments</comments>
		<pubDate>Mon, 02 Nov 2009 09:59:31 +0000</pubDate>
		<dc:creator>Andrey Vystavkin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Memo]]></category>
		<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://j4vk.com/wordpress/?p=390</guid>
		<description><![CDATA[
 find ./ &#124; xargs grep -i search_string

]]></description>
			<content:encoded><![CDATA[
<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"> <span style="color: #c20cb9; font-weight: bold;">find</span> .<span style="color: #000000; font-weight: bold;">/</span> <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">xargs</span> <span style="color: #c20cb9; font-weight: bold;">grep</span> <span style="color: #660033;">-i</span> search_string</pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://j4vk.com/wordpress/2009/11/02/memo-fast-grep-of-the-word-in-the-directory/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
