<?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>alexander bresk</title>
	<atom:link href="http://alexander.bre.sk/feed/" rel="self" type="application/rss+xml" />
	<link>http://alexander.bre.sk</link>
	<description>about a passionate computer scientist</description>
	<lastBuildDate>Sat, 12 Nov 2011 18:58:39 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.4</generator>
		<item>
		<title>The new flickr stream</title>
		<link>http://alexander.bre.sk/2011/11/12/the-new-flickr-stream/</link>
		<comments>http://alexander.bre.sk/2011/11/12/the-new-flickr-stream/#comments</comments>
		<pubDate>Sat, 12 Nov 2011 18:58:39 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[news]]></category>

		<guid isPermaLink="false">http://alexander.bre.sk/?p=146</guid>
		<description><![CDATA[Hey folks, I&#8217;m back with a new flickr stream. On this stream, I will post some interesting shoots from my journeys and trips. Click here to visit the photo stream travel1337. Stay tuned.]]></description>
			<content:encoded><![CDATA[<p>Hey folks, I&#8217;m back with a new flickr stream. On this stream, I will post some interesting shoots from my journeys and trips.</p>
<p><a href="http://www.flickr.com/photos/25938136@N08/sets/72157627984197901/">Click here to visit the photo stream travel1337.</a></p>
<p>Stay tuned.</p>
]]></content:encoded>
			<wfw:commentRss>http://alexander.bre.sk/2011/11/12/the-new-flickr-stream/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>roadmap for 2k11</title>
		<link>http://alexander.bre.sk/2011/08/10/roadmap-for-2k11/</link>
		<comments>http://alexander.bre.sk/2011/08/10/roadmap-for-2k11/#comments</comments>
		<pubDate>Wed, 10 Aug 2011 12:05:16 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[news]]></category>

		<guid isPermaLink="false">http://www.zval.org/?p=59</guid>
		<description><![CDATA[A few articles (written by me) about LAMP-Performance. Static Content Optimization MySQL Query Performance MySQL Server Optimization PHP Code Performance PHP INI Optimization Apache2 Performance Lighttpd Performance Articles about Linux and hardware performance will follow in fall 2011. My roadmap for 2011 contains the following thinks: get inside of the MySQL core passing the Zend [...]]]></description>
			<content:encoded><![CDATA[<p>A few articles (written by me) about LAMP-Performance.</p>
<ul>
<li><a href="http://www.cip-labs.net/projects/web-application-performance/static-content-optimization/">Static Content Optimization</a></li>
<li><a href="http://www.cip-labs.net/projects/web-application-performance/static-content-optimization/"></a><a href="http://www.cip-labs.net/projects/web-application-performance/mysql-query-performance/">MySQL Query Performance</a></li>
<li><a href="http://www.cip-labs.net/projects/web-application-performance/mysql-server-optimization/">MySQL Server Optimization</a></li>
<li><a href="http://www.cip-labs.net/projects/web-application-performance/php-code-optimization/">PHP Code Performance</a></li>
<li><a href="http://www.cip-labs.net/projects/web-application-performance/php-ini-optimization/">PHP INI Optimization</a></li>
<li><a href="http://www.cip-labs.net/projects/web-application-performance/apache2-performance/">Apache2 Performance</a></li>
<li><a href="http://www.cip-labs.net/projects/web-application-performance/lighttpd-performance/">Lighttpd Performance</a></li>
</ul>
<p>Articles about Linux and hardware performance will follow in fall 2011.</p>
<p>My roadmap for 2011 contains the following thinks:</p>
<ul>
<li>get inside of the MySQL core</li>
<li>passing the Zend Certificate Engineer Program</li>
<li>writing a couple of extensions for PHP</li>
<li>release a WordPress+Performance alternative called Speedpress</li>
<li>continue the development of the PHP-search engine, Theta8 and a few more</li>
</ul>
<p>If you have any questions or suggestions, don&#8217;t hesitate to contact me. I&#8217;d like to stay in touch with ambitious people, to talk about innovative ideas and visions.</p>
<p>Stay tuned.</p>
]]></content:encoded>
			<wfw:commentRss>http://alexander.bre.sk/2011/08/10/roadmap-for-2k11/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Note on Benford&#8217;s Law</title>
		<link>http://alexander.bre.sk/2011/02/22/note-on-benfords-law/</link>
		<comments>http://alexander.bre.sk/2011/02/22/note-on-benfords-law/#comments</comments>
		<pubDate>Tue, 22 Feb 2011 09:03:43 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[projects]]></category>

		<guid isPermaLink="false">http://www.zval.org/?p=92</guid>
		<description><![CDATA[While dealing with Benford&#8217;s Law i noticed, that the algorithm, which used the product formula, works more than 2 times faster, then the algorithm with the summation formula. Below you can see my two implementations of Benford&#8217;s Law in C. Thanks to Prof. Dr. Klaus Neumann for any suggestions. Params int n := position of [...]]]></description>
			<content:encoded><![CDATA[<p>While dealing with Benford&#8217;s Law i noticed, that the algorithm, which used the product formula, works more than 2 times faster, then the algorithm with the summation formula. Below you can see my two implementations of Benford&#8217;s Law in C. Thanks to <a href="http://www.htw-dresden.de/~neumannk/">Prof. Dr. Klaus Neumann</a> for any suggestions.</p>
<p><strong>Params</strong></p>
<p>int n := position of the numeral in the number</p>
<p>int d := numeral</p>
<p>return := p(d) at position n</p>
<p><strong>Example</strong></p>
<p>1337 -&gt; 1. benford(1,1) -&gt; 2. benford(2,3) -&gt; benford(3,3) -&gt; benford(4,7)</p>
<p><strong>Benford&#8217;s Law with summation formula</strong></p>
<blockquote>
<div id="_mcePaste">float benford10(int n, int d){</div>
<div>float j = pow(10, n &#8211; 1), s = 0, i;</div>
<div id="_mcePaste">for(i = floor(pow(10, (n &#8211; 2))); i &lt;= j &#8211; 1; i++)</div>
<div id="_mcePaste">s += log10(1 + (1 / ((i * 10) + d)));</div>
<div id="_mcePaste">return s;</div>
<div id="_mcePaste">}</div>
</blockquote>
<p><strong>Benford&#8217;s Law with product formula</strong></p>
<blockquote><p>float benford10(int n, int d){</p>
<p>float j = pow(10, n &#8211; 1) &#8211; 1, p = 1, i;</p>
<p>for(i = floor(pow(10, (n &#8211; 2))); i &lt;= j; i++)</p>
<p>p *= (1 + (1/((10 * i) + d)));</p>
<p>return log10(p);</p>
<p>}</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://alexander.bre.sk/2011/02/22/note-on-benfords-law/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hello World</title>
		<link>http://alexander.bre.sk/2011/01/31/hello-world-2/</link>
		<comments>http://alexander.bre.sk/2011/01/31/hello-world-2/#comments</comments>
		<pubDate>Mon, 31 Jan 2011 15:48:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[news]]></category>

		<guid isPermaLink="false">http://www.zval.org/?p=37</guid>
		<description><![CDATA[Hello world &#8211; or to say it with PHP &#60;?php echo &#8220;Hello World&#8221;; ?&#62; Stay tuned, Alex.]]></description>
			<content:encoded><![CDATA[<p>Hello world &#8211; or to say it with PHP</p>
<blockquote><p>&lt;?php</p>
<p>echo &#8220;Hello World&#8221;;</p>
<p>?&gt;</p></blockquote>
<p>Stay tuned, Alex.</p>
]]></content:encoded>
			<wfw:commentRss>http://alexander.bre.sk/2011/01/31/hello-world-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

