<?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>Non multa, sed multum</title>
	<atom:link href="http://blog.kossoy.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.kossoy.com</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Wed, 04 May 2011 05:17:22 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.5</generator>
		<item>
		<title>Chrome standalone download</title>
		<link>http://blog.kossoy.com/2011/05/03/chrome-standalone-download/</link>
		<comments>http://blog.kossoy.com/2011/05/03/chrome-standalone-download/#comments</comments>
		<pubDate>Wed, 04 May 2011 05:17:22 +0000</pubDate>
		<dc:creator>Oleg Kossoy</dc:creator>
				<category><![CDATA[Computers]]></category>

		<guid isPermaLink="false">http://blog.kossoy.com/?p=487</guid>
		<description><![CDATA[Here: http://www.google.com/chrome/eula.html?extra=devchannel&#038;hl=en&#038;standalone=1]]></description>
			<content:encoded><![CDATA[<p>Here:<br />
<a href="http://www.google.com/chrome/eula.html?extra=devchannel&#038;hl=en&#038;standalone=1">http://www.google.com/chrome/eula.html?extra=devchannel&#038;hl=en&#038;standalone=1</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.kossoy.com/2011/05/03/chrome-standalone-download/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Command line clipboard copy from file in Mac OS X</title>
		<link>http://blog.kossoy.com/2011/03/16/command-line-clipboard-copy-from-file-in-mac-os-x/</link>
		<comments>http://blog.kossoy.com/2011/03/16/command-line-clipboard-copy-from-file-in-mac-os-x/#comments</comments>
		<pubDate>Wed, 16 Mar 2011 12:29:04 +0000</pubDate>
		<dc:creator>Oleg Kossoy</dc:creator>
				<category><![CDATA[Computers]]></category>

		<guid isPermaLink="false">http://blog.kossoy.com/?p=484</guid>
		<description><![CDATA[cat ~/.ssh/id_rsa.pub &#124; pbcopy]]></description>
			<content:encoded><![CDATA[<pre class="brush:bash">
cat ~/.ssh/id_rsa.pub | pbcopy
</pre>
]]></content:encoded>
			<wfw:commentRss>http://blog.kossoy.com/2011/03/16/command-line-clipboard-copy-from-file-in-mac-os-x/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Nginx on Mac OS X</title>
		<link>http://blog.kossoy.com/2011/03/04/ngnix-on-mac-os-x/</link>
		<comments>http://blog.kossoy.com/2011/03/04/ngnix-on-mac-os-x/#comments</comments>
		<pubDate>Sat, 05 Mar 2011 06:42:32 +0000</pubDate>
		<dc:creator>Oleg Kossoy</dc:creator>
				<category><![CDATA[Computers]]></category>

		<guid isPermaLink="false">http://blog.kossoy.com/?p=474</guid>
		<description><![CDATA[Modified from Nginx on Mac OS X Snow Leopard in 2 Minutes post. #!/usr/bin/env bash PCRE_DIR="pcre-8.12" PCRE_LINK="ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/$PCRE_DIR.tar.gz" NGNIX_DIR="nginx-0.8.54" NGNIX_LINK="http://nginx.org/download/$NGNIX_DIR.tar.gz" ## DOWNLOADS curl -OL h $PCRE_LINK > $PCRE_DIR.tar.gz curl -OL h http://nginx.org/download/$NGNIX_DIR.tar.gz > $NGNIX_DIR.tar.gz ## Install PCRE tar xvzf $PCRE_DIR.tar.gz cd $PCRE_DIR ./configure --prefix=/usr/local make sudo make install cd .. ## Install Nginx tar xvzf $NGNIX_DIR.tar.gz [...]]]></description>
			<content:encoded><![CDATA[<p>Modified from <a href="http://www.kevinworthington.com/nginx-mac-os-snow-leopard-2-minutes/">Nginx on Mac OS X Snow Leopard in 2 Minutes</a> post.</p>
<pre class="brush:bash">
#!/usr/bin/env bash

PCRE_DIR="pcre-8.12"
PCRE_LINK="ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/$PCRE_DIR.tar.gz"

NGNIX_DIR="nginx-0.8.54"
NGNIX_LINK="http://nginx.org/download/$NGNIX_DIR.tar.gz"

## DOWNLOADS
curl -OL h $PCRE_LINK > $PCRE_DIR.tar.gz
curl -OL h http://nginx.org/download/$NGNIX_DIR.tar.gz > $NGNIX_DIR.tar.gz

## Install PCRE
tar xvzf $PCRE_DIR.tar.gz
cd $PCRE_DIR
./configure --prefix=/usr/local
make
sudo make install
cd ..

## Install Nginx
tar xvzf $NGNIX_DIR.tar.gz
cd $NGNIX_DIR
./configure --prefix=/usr/local --with-http_ssl_module
make
sudo make install
</pre>
<p>To run:</p>
<pre class="brush:bash">sudo /usr/local/sbin/nginx -p /usr/local/</pre>
<p>To stop</p>
<pre class="brush:bash">sudo /usr/local/sbin/nginx -s stop</pre>
]]></content:encoded>
			<wfw:commentRss>http://blog.kossoy.com/2011/03/04/ngnix-on-mac-os-x/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cat&#8217;s gopniks</title>
		<link>http://blog.kossoy.com/2011/01/08/cats-gopniks/</link>
		<comments>http://blog.kossoy.com/2011/01/08/cats-gopniks/#comments</comments>
		<pubDate>Sat, 08 Jan 2011 17:48:40 +0000</pubDate>
		<dc:creator>Oleg Kossoy</dc:creator>
				<category><![CDATA[Humour]]></category>

		<guid isPermaLink="false">http://blog.kossoy.com/2011/01/08/cats-gopniks/</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><a href="http://blog.kossoy.com/wp-content/uploads/2011/01/IMG_0095.jpg"><img src="http://blog.kossoy.com/wp-content/uploads/2011/01/IMG_0095-300x225.jpg" alt="what do you want?" title="WHAT?!" width="300" height="225" class="alignnone size-medium wp-image-471" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.kossoy.com/2011/01/08/cats-gopniks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ABiBas is alive!</title>
		<link>http://blog.kossoy.com/2011/01/08/abibas-is-alive/</link>
		<comments>http://blog.kossoy.com/2011/01/08/abibas-is-alive/#comments</comments>
		<pubDate>Sat, 08 Jan 2011 17:31:21 +0000</pubDate>
		<dc:creator>Oleg Kossoy</dc:creator>
				<category><![CDATA[Humour]]></category>
		<category><![CDATA[Idiots]]></category>

		<guid isPermaLink="false">http://blog.kossoy.com/?p=467</guid>
		<description><![CDATA[Road Nr. 4 real photo (SuRaBu vehicle):]]></description>
			<content:encoded><![CDATA[<p>Road Nr. 4 real photo (SuRaBu vehicle):<br />
<a href="http://blog.kossoy.com/wp-content/uploads/2011/01/IMG_0179.jpg"><img src="http://blog.kossoy.com/wp-content/uploads/2011/01/IMG_0179-300x225.jpg" alt="Surabu is a new abibas" title="SuRaBu" width="300" height="225" class="alignnone size-medium wp-image-468" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.kossoy.com/2011/01/08/abibas-is-alive/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SSL connect from RubyMine (win32)</title>
		<link>http://blog.kossoy.com/2011/01/04/ssl-connect-from-rubymine-win32/</link>
		<comments>http://blog.kossoy.com/2011/01/04/ssl-connect-from-rubymine-win32/#comments</comments>
		<pubDate>Tue, 04 Jan 2011 09:16:15 +0000</pubDate>
		<dc:creator>Oleg Kossoy</dc:creator>
				<category><![CDATA[Computers]]></category>

		<guid isPermaLink="false">http://blog.kossoy.com/?p=462</guid>
		<description><![CDATA[SSL connection is used when using, for example, RubyMine integration with bugtrackers or Task servers, like Redmine or Jira. If certificate is not installed to RubyMine&#8217;s keystore within jre, it fails with an error: sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target To avoid this: 1. Export certificate [...]]]></description>
			<content:encoded><![CDATA[<p>SSL connection is used when using, for example, RubyMine integration with bugtrackers or Task servers, like <a href="http://www.redmine.org/">Redmine</a><br />
or <a href="http://www.atlassian.com/software/jira/">Jira</a>.</p>
<p>If certificate is not installed to RubyMine&#8217;s keystore within jre,<br />
it fails with an error:</p>
<pre class="brush:java">
sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target
</pre>
<p>To avoid this:<br />
1. Export certificate *.cer</p>
<p>2.</p>
<pre class="brush:ps">
cd c:\Program Files (x86)\JetBrains\RubyMine 3.0.1\jre\jre\lib\security\
</pre>
<p>3.</p>
<pre class="brush:ps">
keytool -import -alias myAlias -keystore cacerts -file c:\myCertificate.cer
</pre>
]]></content:encoded>
			<wfw:commentRss>http://blog.kossoy.com/2011/01/04/ssl-connect-from-rubymine-win32/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>700 percent downloaded</title>
		<link>http://blog.kossoy.com/2010/12/11/700-percent-downloaded/</link>
		<comments>http://blog.kossoy.com/2010/12/11/700-percent-downloaded/#comments</comments>
		<pubDate>Sat, 11 Dec 2010 20:08:57 +0000</pubDate>
		<dc:creator>Oleg Kossoy</dc:creator>
				<category><![CDATA[Humour]]></category>

		<guid isPermaLink="false">http://blog.kossoy.com/?p=450</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><a href="http://blog.kossoy.com/wp-content/uploads/2010/12/Screen-shot-2010-12-11-at-10.07.07-PM.png"><img src="http://blog.kossoy.com/wp-content/uploads/2010/12/Screen-shot-2010-12-11-at-10.07.07-PM-300x164.png" alt="" title="Screen shot 2010-12-11 at 10.07.07 PM" width="300" height="164" class="alignnone size-medium wp-image-455" /></a></p>
<p><a href="http://blog.kossoy.com/wp-content/uploads/2010/12/Screen-shot-2010-12-11-at-7.07.04-PM1.png"><img src="http://blog.kossoy.com/wp-content/uploads/2010/12/Screen-shot-2010-12-11-at-7.07.04-PM1-300x226.png" alt="" title="700%" width="300" height="226" class="alignnone size-medium wp-image-453" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.kossoy.com/2010/12/11/700-percent-downloaded/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Internet from HOT/013 &#8212; tryout</title>
		<link>http://blog.kossoy.com/2010/12/06/internet-from-hot013-tryout/</link>
		<comments>http://blog.kossoy.com/2010/12/06/internet-from-hot013-tryout/#comments</comments>
		<pubDate>Mon, 06 Dec 2010 08:22:38 +0000</pubDate>
		<dc:creator>Oleg Kossoy</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Tests]]></category>

		<guid isPermaLink="false">http://blog.kossoy.com/?p=446</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<div id="attachment_447" class="wp-caption alignnone" style="width: 310px"><a href="http://blog.kossoy.com/wp-content/uploads/2010/12/1059231224.png"><img src="http://blog.kossoy.com/wp-content/uploads/2010/12/1059231224.png" alt="" title="Speed test" width="300" height="135" class="size-full wp-image-447" /></a><p class="wp-caption-text">Test passed</p></div>
]]></content:encoded>
			<wfw:commentRss>http://blog.kossoy.com/2010/12/06/internet-from-hot013-tryout/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing mysql gem on Leopard</title>
		<link>http://blog.kossoy.com/2010/11/21/installing-mysql-gem-on-leopard/</link>
		<comments>http://blog.kossoy.com/2010/11/21/installing-mysql-gem-on-leopard/#comments</comments>
		<pubDate>Sun, 21 Nov 2010 21:01:43 +0000</pubDate>
		<dc:creator>Oleg Kossoy</dc:creator>
				<category><![CDATA[Computers]]></category>

		<guid isPermaLink="false">http://blog.kossoy.com/?p=432</guid>
		<description><![CDATA[Get MySQL from http://dev.mysql.com/downloads/mysql/. (Get 64-bit dmg) Install it Command for gem install: sudo env ARCHFLAGS="-arch x86_64" \ gem install mysql -- \ --with-mysql-config=/usr/local/mysql/bin/mysql_config]]></description>
			<content:encoded><![CDATA[<ul>
<li>Get MySQL from <a href="http://dev.mysql.com/downloads/mysql/">http://dev.mysql.com/downloads/mysql/</a>. (Get 64-bit dmg)</li>
<li>Install it</li>
<li>Command for gem install:
<pre class="brush: bash">
sudo env ARCHFLAGS="-arch x86_64" \
gem install mysql -- \
--with-mysql-config=/usr/local/mysql/bin/mysql_config
</pre>
</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://blog.kossoy.com/2010/11/21/installing-mysql-gem-on-leopard/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Are you russian?</title>
		<link>http://blog.kossoy.com/2010/10/10/are-you-russian/</link>
		<comments>http://blog.kossoy.com/2010/10/10/are-you-russian/#comments</comments>
		<pubDate>Sun, 10 Oct 2010 16:04:25 +0000</pubDate>
		<dc:creator>Oleg Kossoy</dc:creator>
				<category><![CDATA[Humour]]></category>

		<guid isPermaLink="false">http://blog.kossoy.com/?p=430</guid>
		<description><![CDATA[You are 23% Russian! &#160; Who are you kidding? Just because you took a summer language course in Petersburg doesn&#8217;t make you a Russian. How Russian Are You?Take More Quizzes]]></description>
			<content:encoded><![CDATA[<div style="width: 320px; border: 1px solid gray; padding: 6px; font: normal 12px arial, verdana, sans-serif; color: black; background-color: white;"><b style="color: black; font: bold 20px 'Times New Roman', serif; display: block; margin-bottom: 8px;">You are 23% Russian!</b>
<div style="width: 200px; background: white; border: 1px solid black; text-align: left;">
<div style="width: 23%; background: red; font-size: 8px; line-height: 8px;">&nbsp;</div>
</div>
<p style="margin: 10px; border: none; background: white; color: black;">Who are you kidding? Just because you took a summer language course in Petersburg doesn&#8217;t make you a Russian.</p>
<p><b><a href="http://www.gotoquiz.com/how_russian_are_you" style="color: blue;">How Russian Are You?</a><br /><a href="http://www.gotoquiz.com/" style="color: blue;">Take More Quizzes</a></b></p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://blog.kossoy.com/2010/10/10/are-you-russian/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic Page Served (once) in 2.152 seconds -->
<!-- Cached page served by WP-Cache -->

