<?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>Alexey Bokov's weblog &#187; internet</title>
	<atom:link href="http://bokov.net/weblog/category/internet/feed/" rel="self" type="application/rss+xml" />
	<link>http://bokov.net/weblog</link>
	<description>Anything that interests me</description>
	<lastBuildDate>Fri, 11 Nov 2011 12:32:53 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Job interview via facebook &#8211; they&#8217;ll ask abt ur skillz and propr kmand of ze English lng</title>
		<link>http://bokov.net/weblog/internet/job-interview-via-facebook-theyll-ask-abt-ur-skillz-and-propr-kmand-of-ze-english-lng/</link>
		<comments>http://bokov.net/weblog/internet/job-interview-via-facebook-theyll-ask-abt-ur-skillz-and-propr-kmand-of-ze-english-lng/#comments</comments>
		<pubDate>Fri, 22 Jul 2011 05:38:32 +0000</pubDate>
		<dc:creator>Alexey Bokov</dc:creator>
				<category><![CDATA[humor]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[hr]]></category>
		<category><![CDATA[interesting]]></category>
		<category><![CDATA[stuff]]></category>
		<category><![CDATA[work]]></category>

		<guid isPermaLink="false">http://bokov.net/weblog/?p=628</guid>
		<description><![CDATA[&#8220;They&#8217;ll ask abt ur skillz and propr kmand of ze English lng&#8221;]]></description>
			<content:encoded><![CDATA[<p><em>&#8220;They&#8217;ll ask abt ur skillz and propr kmand of ze English lng&#8221;</em> <img src='http://bokov.net/weblog/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  <span id="more-628"></span><br />
<img src="http://bokov.net/lj/job_interview.jpg" alt="job interview" /></p>
]]></content:encoded>
			<wfw:commentRss>http://bokov.net/weblog/internet/job-interview-via-facebook-theyll-ask-abt-ur-skillz-and-propr-kmand-of-ze-english-lng/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to create list of screenshots for list of urls ?</title>
		<link>http://bokov.net/weblog/search-engines/how-to-create-list-of-screenshots-for-list-of-urls/</link>
		<comments>http://bokov.net/weblog/search-engines/how-to-create-list-of-screenshots-for-list-of-urls/#comments</comments>
		<pubDate>Tue, 20 Jul 2010 13:34:24 +0000</pubDate>
		<dc:creator>Alexey Bokov</dc:creator>
				<category><![CDATA[internet]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[search engines]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[administration]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[convert]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[images]]></category>
		<category><![CDATA[png]]></category>
		<category><![CDATA[resize]]></category>
		<category><![CDATA[screenshots]]></category>
		<category><![CDATA[thumbnails]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[work]]></category>

		<guid isPermaLink="false">http://bokov.net/weblog/?p=510</guid>
		<description><![CDATA[Okay, we have text file with list of urls and want to have firefox&#8217;s screenshots from this pages and also we need to have this screenshots in some normalized resolution ( like all images should be in 300&#215;400 &#8211; thumbnails ). First of all you need to install Command line print Firefox add-on. Then create [...]]]></description>
			<content:encoded><![CDATA[<p>Okay, we have text file with list of urls and want to have firefox&#8217;s screenshots from this pages and also we need to have this screenshots in some normalized resolution ( like all images should be in 300&#215;400 &#8211; thumbnails ). First of all you need to install <a href="http://sites.google.com/site/torisugari/commandlineprint2">Command line print Firefox add-on</a>. Then create some simple script which will run firefox with needed url, print screenshot and close ( in my case via kill &#8211; may be it&#8217;s too brutal ) firefox in cycle. It may look like this  ( url_list.txt &#8211; file with urls &#8211; each url on its own line <img src='http://bokov.net/weblog/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> ), after running this script you will have many *.png files which is screenshots for ulrs &#8211; 0.png &#8211; for first url in urls_list.txt, 1.png for second and so on.<br />
<code><br />
#!/bin/bash<br />
id=0<br />
while read line<br />
do<br />
firefox -print $line -printmode png -printdelay 10 -printfile ${id}.png<br />
ps ax | grep firefox  | awk '{ print $1 }' | xargs kill -9 ;<br />
id=$[$id+1]<br />
done &lt; urls_list.txt<br />
</code></p>
<p>And now then we have screenshots ( all this guys are in different resolution in common ) then we need to normalize them &#8211; to create thumbnails for all images in 300&#215;400 resolution &#8211; convert helps!<br />
<code><br />
for f in *.png;<br />
do<br />
convert -thumbnail 300x400!  ${f} thumb_${f}<br />
done<br />
</code><br />
And we have many thumb_*.pn with 300&#215;400 resolution all. A little note &#8211; using resolution without ! sign will work in another way &#8211; resize will be processed proportionally with using resize only for one dimension ( bigger one ).</p>
]]></content:encoded>
			<wfw:commentRss>http://bokov.net/weblog/search-engines/how-to-create-list-of-screenshots-for-list-of-urls/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Interesting links ( June/July 2010 )</title>
		<link>http://bokov.net/weblog/ec2/interesting-links-june-2010/</link>
		<comments>http://bokov.net/weblog/ec2/interesting-links-june-2010/#comments</comments>
		<pubDate>Fri, 11 Jun 2010 09:09:27 +0000</pubDate>
		<dc:creator>Alexey Bokov</dc:creator>
				<category><![CDATA[compute grid]]></category>
		<category><![CDATA[ec2]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[project managment]]></category>
		<category><![CDATA[Amazon EC2]]></category>
		<category><![CDATA[cloud computing]]></category>
		<category><![CDATA[interesting]]></category>
		<category><![CDATA[work]]></category>

		<guid isPermaLink="false">http://bokov.net/weblog/?p=502</guid>
		<description><![CDATA[Ten Tips for a (Slightly) Less Awful Resume How To Sell Agile To Fixed Bid Contract Clients AWS Launches Cluster Compute EC2 Instances For High Performance Applications and AWS &#8211; High Performance Computing (HPC)]]></description>
			<content:encoded><![CDATA[<ul>
<li><a href="http://steve-yegge.blogspot.com/2007/09/ten-tips-for-slightly-less-awful-resume.html">Ten Tips for a (Slightly) Less Awful Resume</a></li>
<li><a href="http://www.codesqueeze.com/how-to-sell-agile-to-fixed-bid-contract-clients/">How To Sell Agile To Fixed Bid Contract Clients</a></li>
<li> <a href="http://www.techcrunchit.com/2010/07/12/aws-launches-cluster-compute-ec2-instances-for-high-performance-applications/">AWS Launches Cluster Compute EC2 Instances For High Performance Applications</a> and <a href="http://aws.amazon.com/ec2/hpc-applications/">AWS &#8211; High Performance Computing (HPC) </a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://bokov.net/weblog/ec2/interesting-links-june-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My interesting links ( May 2010 )</title>
		<link>http://bokov.net/weblog/useful-links/bunch-of-cool-links-may-2010/</link>
		<comments>http://bokov.net/weblog/useful-links/bunch-of-cool-links-may-2010/#comments</comments>
		<pubDate>Tue, 11 May 2010 13:08:02 +0000</pubDate>
		<dc:creator>Alexey Bokov</dc:creator>
				<category><![CDATA[internet]]></category>
		<category><![CDATA[useful links]]></category>
		<category><![CDATA[c++]]></category>
		<category><![CDATA[cloud computing]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[hudson]]></category>
		<category><![CDATA[interesting]]></category>
		<category><![CDATA[stuff]]></category>
		<category><![CDATA[work]]></category>

		<guid isPermaLink="false">http://bokov.net/weblog/?p=372</guid>
		<description><![CDATA[Mapreduce &#38; Hadoop Algorithms in Academic Papers (3rd update), especially Scaling Up Classifiers to Cloud Computers TeamBox &#8211; project collaboration tool Continuous Integration for C++ by Rick Wagner Beyond Position Bias: Examining Result Attractiveness as a Source of Presentation Bias&#8230; Yue, Patel, Roehrig, WWW-2010 .. to be continued]]></description>
			<content:encoded><![CDATA[<ul>
<li> <a href="http://atbrox.com/2010/05/08/mapreduce-hadoop-algorithms-in-academic-papers-may-2010-update/">Mapreduce &amp; Hadoop Algorithms in Academic Papers (3rd update)</a>, especially <a href="http://www.cse.nd.edu/~dthain/papers/classify-icdm08.pdf">Scaling Up Classifiers to Cloud Computers</a></li>
<li> <a href="http://teambox.com/">TeamBox &#8211; project collaboration tool</a></li>
<li> <a href="http://rickwagner.blogspot.com/2009/04/continuous-integration-for-c.html">Continuous Integration for C++</a> by Rick Wagner</li>
<li>Beyond Position Bias: <a href="http://www.yisongyue.com/publications/www2010_bias.pdf">Examining  Result Attractiveness as a Source of Presentation Bias&#8230; Yue, Patel,  Roehrig, WWW-2010</a></li>
</ul>
<p>.. to be continued</p>
]]></content:encoded>
			<wfw:commentRss>http://bokov.net/weblog/useful-links/bunch-of-cool-links-may-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>US military builds HPC clusted based on Sony PS3</title>
		<link>http://bokov.net/weblog/internet/us-military-builds-hpc-clusted-based-on-sony-ps3/</link>
		<comments>http://bokov.net/weblog/internet/us-military-builds-hpc-clusted-based-on-sony-ps3/#comments</comments>
		<pubDate>Mon, 30 Nov 2009 11:50:49 +0000</pubDate>
		<dc:creator>Alexey Bokov</dc:creator>
				<category><![CDATA[internet]]></category>
		<category><![CDATA[compute cloud]]></category>
		<category><![CDATA[HPC]]></category>
		<category><![CDATA[interesting]]></category>
		<category><![CDATA[PS3]]></category>
		<category><![CDATA[sony]]></category>

		<guid isPermaLink="false">http://bokov.net/weblog/?p=326</guid>
		<description><![CDATA[The US military has announced plans to buy 2,200 more of the game consoles, so that they can massively beef up the processing power of an existing, PS3-based supercomputer. A &#8220;Justification Review Document,&#8221; which has oddly been deleted from Google since I found it but is still available at this cache link, explains that, &#8220;the [...]]]></description>
			<content:encoded><![CDATA[<p>The US military has announced plans to buy 2,200 more of the game consoles, so that they can massively beef up the processing power of an existing, PS3-based supercomputer. A <a href="http://74.125.155.132/search?q=cache:W7AtwjJ1NpEJ:https://www.fbo.gov/download/6ec/6ec0ce98eda8db871e7ef75fae40c1cc/Justification_Review_Document_(J%26A).doc+“architectural+studies”+sony+">&#8220;Justification Review Document,&#8221;</a> which has oddly been deleted from Google since I found it but is still available at this cache link, explains that, &#8220;the new PS3s will be placed in a cluster environment with an existing cluster of 336 PS3s by connecting each of the units&#8217; one gigabit Ethernet port to a common 24 port gigabit hub.&#8221;<br />
via <a href="http://arstechnica.com/security/news/2009/11/sony-still-subsidizing-us-supercomputer-efforts.ars">arstechnica.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://bokov.net/weblog/internet/us-military-builds-hpc-clusted-based-on-sony-ps3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New big trend in cloud computing &#8211; DNRDBMS</title>
		<link>http://bokov.net/weblog/internet/new-big-trend-dnrdbms/</link>
		<comments>http://bokov.net/weblog/internet/new-big-trend-dnrdbms/#comments</comments>
		<pubDate>Mon, 26 Oct 2009 12:31:19 +0000</pubDate>
		<dc:creator>Alexey Bokov</dc:creator>
				<category><![CDATA[internet]]></category>
		<category><![CDATA[compute cloud]]></category>
		<category><![CDATA[compute grid]]></category>
		<category><![CDATA[DNRDBMS]]></category>
		<category><![CDATA[NoSQL]]></category>
		<category><![CDATA[work]]></category>

		<guid isPermaLink="false">http://bokov.net/weblog/?p=306</guid>
		<description><![CDATA[Distributed, non-relational database systems &#8211; DNRDBMS &#8211; see The Future Is Big Data in the Cloud NoSQL – the new wave against RDBMS]]></description>
			<content:encoded><![CDATA[<p>Distributed, non-relational database systems &#8211; DNRDBMS &#8211; see</p>
<ul>
<li> <a href="http://gigaom.com/2009/10/25/the-future-is-big-data-in-the-cloud/">The Future Is Big Data in the Cloud</a></li>
<li> <a href="http://bigdatamatters.com/bigdatamatters/2009/07/nosql-vs-rdbms.html">NoSQL – the new wave against RDBMS </a> </li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://bokov.net/weblog/internet/new-big-trend-dnrdbms/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>GridDynamics is one of the Top 150 Cloud Companies</title>
		<link>http://bokov.net/weblog/internet/griddynamics-is-one-of-the-top-150-cloud-companies/</link>
		<comments>http://bokov.net/weblog/internet/griddynamics-is-one-of-the-top-150-cloud-companies/#comments</comments>
		<pubDate>Thu, 03 Sep 2009 15:17:53 +0000</pubDate>
		<dc:creator>Alexey Bokov</dc:creator>
				<category><![CDATA[internet]]></category>
		<category><![CDATA[GridDynamics]]></category>
		<category><![CDATA[stuff]]></category>
		<category><![CDATA[work]]></category>

		<guid isPermaLink="false">http://bokov.net/weblog/?p=293</guid>
		<description><![CDATA[Grid Dynamics nominated &#8220;2009 Top 150 Cloud Computing Players&#8221; by Cloud Computing Journal. Look at letter G &#8211; here we are, around Google. .]]></description>
			<content:encoded><![CDATA[<p>Grid Dynamics nominated <a href="http://cloudcomputing.sys-con.com/node/770174">&#8220;2009 Top 150 Cloud Computing Players&#8221;</a> by Cloud Computing Journal. Look at letter G &#8211; here we are, around Google. <img src='http://bokov.net/weblog/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> .</p>
]]></content:encoded>
			<wfw:commentRss>http://bokov.net/weblog/internet/griddynamics-is-one-of-the-top-150-cloud-companies/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cloud providers perfomance tests and monitoring</title>
		<link>http://bokov.net/weblog/useful-links/cloud-providers-perfomance-tests-and-monitoring/</link>
		<comments>http://bokov.net/weblog/useful-links/cloud-providers-perfomance-tests-and-monitoring/#comments</comments>
		<pubDate>Tue, 18 Aug 2009 13:47:10 +0000</pubDate>
		<dc:creator>Alexey Bokov</dc:creator>
				<category><![CDATA[administration]]></category>
		<category><![CDATA[compute grid]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[useful links]]></category>
		<category><![CDATA[Amazon EC2]]></category>
		<category><![CDATA[gogrid]]></category>
		<category><![CDATA[work]]></category>

		<guid isPermaLink="false">http://bokov.net/weblog/?p=282</guid>
		<description><![CDATA[Cloud Hosting Performance Measuring EC2 system performance Comparing Amazon EC2 performance with other cloud/VPS hosting options… and real hardware Monitoring Cloud Computing Performance with PRTG: CPU, Disk, Memory Speed Comparison of Amazon EC2 Instance Types]]></description>
			<content:encoded><![CDATA[<ul>
<li><a href="http://www.cloudclimate.com/">Cloud Hosting Performance</a></li>
<li><a href="http://tech.mangot.com/roller/dave/entry/ec2_variability_the_numbers_revealed">Measuring EC2 system performance</a></li>
<li><a href="http://www.paessler.com/blog/2009/04/14/prtg-7/comparing-amazon-ec2-performance-with-other-cloudvps-hosting-options-and-real-hardware/">Comparing Amazon EC2 performance with other cloud/VPS hosting options… and real hardware</a></li>
<li><a href="http://www.paessler.com/blog/2009/04/06/prtg-7/monitoring-cloud-computing-performance-with-prtg-cpu-disk-memory-speed-comparison-of-amazon-ec2-instance-types/">Monitoring Cloud Computing Performance with PRTG: CPU, Disk, Memory Speed Comparison of Amazon EC2 Instance Types</a></li>
<li><a href="http://af-design.com/blog/2009/02/27/amazon-ec2-disk-performance/>Amazon EC2 disk perfomance</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://bokov.net/weblog/useful-links/cloud-providers-perfomance-tests-and-monitoring/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cloud links for August</title>
		<link>http://bokov.net/weblog/internet/cloud/</link>
		<comments>http://bokov.net/weblog/internet/cloud/#comments</comments>
		<pubDate>Tue, 18 Aug 2009 13:06:06 +0000</pubDate>
		<dc:creator>Alexey Bokov</dc:creator>
				<category><![CDATA[compute grid]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[Amazon EC2]]></category>
		<category><![CDATA[API]]></category>
		<category><![CDATA[github]]></category>
		<category><![CDATA[gogrid]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[terracotta]]></category>

		<guid isPermaLink="false">http://bokov.net/weblog/?p=273</guid>
		<description><![CDATA[Performance Check &#8211; EC2 Instance Types vs Virtual Server 10 reasons why cloud computing is bad idea Dulance returns back and Google&#8217;s Special Snippets for Price Comparison Sites Running Terracotta on Amazon EC2 ( terracotta.org ) Using amazon EC2 security groups as tags for instances Cloud Hosting Performance &#8211; comparing popular cloud providers in real [...]]]></description>
			<content:encoded><![CDATA[<ul>
<li><a href="http://codingclues.eu/2009/amazon-ec2-performance/">Performance Check &#8211; EC2 Instance Types vs Virtual Server </a></li>
<li><a href="http://www.techtangerine.com/2009/06/02/ten-reasons-why-cloud-computing-is-a-bad-idea/">10 reasons why cloud computing is bad idea</a></li>
<li><a href="http://mediabryan.com/b/?p=12">Dulance returns back</a> and  <a href="http://googlesystem.blogspot.com/2009/08/googles-special-snippets-for-price.html">Google&#8217;s Special Snippets for Price Comparison Sites </a></li>
<li><a href="http://tech.mangot.com/roller/dave/entry/on_running_terracotta_on_ec2">Running Terracotta  on Amazon EC2</a> ( <a href="http://www.terracotta.org/">terracotta.org )</a></li>
<li><a href="http://clouddevelopertips.blogspot.com/2009/06/tagging-ec2-instances-using-security_30.html">Using amazon EC2 security groups as tags for instances</a></li>
<li><a href="http://www.cloudclimate.com/">Cloud Hosting Performance &#8211; comparing popular cloud providers in real time for last 48 hours</a></li>
<li><a href="http://blog.griddynamics.com/2009/08/gogrid-management-tools-and-library.html">GoGrid Management Tools and Library </a> &#8211; by the way today <a href="http://blog.gogrid.com/2009/08/19/gogrid-officially-out-of-beta/">goGrid officially out of beta</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://bokov.net/weblog/internet/cloud/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>10 reasons why cloud computing is bad idea</title>
		<link>http://bokov.net/weblog/ec2/10-reasons-why-cloud-computing-is-bad-idea/</link>
		<comments>http://bokov.net/weblog/ec2/10-reasons-why-cloud-computing-is-bad-idea/#comments</comments>
		<pubDate>Wed, 12 Aug 2009 10:07:03 +0000</pubDate>
		<dc:creator>Alexey Bokov</dc:creator>
				<category><![CDATA[ec2]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[cloud computing]]></category>
		<category><![CDATA[interesting]]></category>
		<category><![CDATA[links]]></category>

		<guid isPermaLink="false">http://bokov.net/weblog/?p=270</guid>
		<description><![CDATA[* Cloud Computing makes your IT excessively dependent on the Internet * Cloud Computing will attract clients mainly from Western markets * Cloud Computing makes you dependent on the goodwill of your ISP * Cloud Computing can expose you to the unethical practices of your ISP * Cloud Computing is against the spirit of Personal [...]]]></description>
			<content:encoded><![CDATA[<p>* Cloud Computing makes your IT excessively dependent on the Internet<br />
* Cloud Computing will attract clients mainly from Western markets<br />
* Cloud Computing makes you dependent on the goodwill of your ISP<br />
<span id="more-270"></span><br />
* Cloud Computing can expose you to the unethical practices of your ISP<br />
* Cloud Computing is against the spirit of Personal Computing<br />
* Cloud Computing makes your Cloud Data subject to American law<br />
* Cloud Computing can expose your Confidential Data to “Corrupt Elements”<br />
* Cloud Computing is sounding more like a Lobby than a Trend<br />
* Cloud Computing may be of little consequence for the Average Small Business<br />
* Cloud Computing may not contribute to your national economy<br />
<br />
<img src="http://bokov.net/lj/CloudComputingTechTangerinecom.jpg" alt="cloud computing"><br />
Found it here : <a href="http://www.techtangerine.com/2009/06/02/ten-reasons-why-cloud-computing-is-a-bad-idea/">Ten Reasons Why Cloud Computing is a Bad Idea</a> by Hamad Subani.</p>
]]></content:encoded>
			<wfw:commentRss>http://bokov.net/weblog/ec2/10-reasons-why-cloud-computing-is-bad-idea/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

