<?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>noizZze</title>
	<atom:link href="http://blog.noizeramp.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.noizeramp.com</link>
	<description>Am I a finished product -- or a work in progress?</description>
	<pubDate>Wed, 23 Jul 2008 08:45:06 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6</generator>
	<language>en</language>
			<item>
		<title>Conditional function definitions in IE5</title>
		<link>http://blog.noizeramp.com/2008/07/23/conditional-function-definitions-in-ie5/</link>
		<comments>http://blog.noizeramp.com/2008/07/23/conditional-function-definitions-in-ie5/#comments</comments>
		<pubDate>Wed, 23 Jul 2008 08:45:06 +0000</pubDate>
		<dc:creator>Aleksey Gureiev</dc:creator>
		
		<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://blog.noizeramp.com/?p=320</guid>
		<description><![CDATA[It looks like all cool kids except for IE5 know what to do with this:
if (some_condition) {
  function f() { alert(&#8221;true&#8221;); }
} else {
  function f() { alert(&#8221;false&#8221;); }
}
When calling f(), Firefox and Safari will show &#8220;true&#8221; when some_condition was TRUE at the load time, and &#8220;false&#8221; when it evaluated to FALSE. IE5 pays attention to the [...]]]></description>
			<content:encoded><![CDATA[<p>It looks like all cool kids except for IE5 know what to do with this:</p>
<blockquote><p>if (some_condition) {<br />
  function f() { alert(&#8221;true&#8221;); }<br />
} else {<br />
  function f() { alert(&#8221;false&#8221;); }<br />
}</p></blockquote>
<p>When calling <em>f()</em>, Firefox and Safari will show &#8220;true&#8221; when <em>some_condition</em> was TRUE at the load time, and &#8220;false&#8221; when it evaluated to FALSE. IE5 pays attention to the if-else construction (and no code will be executed in the else-block if the <em>some_condition</em> is FALSE), but it DOES redefine the function. Yes, even though it&#8217;s in that block that&#8217;s not being executed.</p>
<p>Be careful!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.noizeramp.com/2008/07/23/conditional-function-definitions-in-ie5/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Timeout when publishing new posts in WP</title>
		<link>http://blog.noizeramp.com/2008/07/23/timeout-when-publishing-new-posts-in-wp/</link>
		<comments>http://blog.noizeramp.com/2008/07/23/timeout-when-publishing-new-posts-in-wp/#comments</comments>
		<pubDate>Wed, 23 Jul 2008 08:35:43 +0000</pubDate>
		<dc:creator>Aleksey Gureiev</dc:creator>
		
		<category><![CDATA[Tips]]></category>

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

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

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

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

		<guid isPermaLink="false">http://blog.noizeramp.com/?p=318</guid>
		<description><![CDATA[By no means this is a usual thing, but since there&#8217;s very little information (in fact only one link that gives no real answers) on what to do when you see the error below upon publishing a post, I decided to share the solution:
Fatal error: Maximum execution time of 30 seconds exceeded in /home/&#8230;/public_html/wp-includes/wp-db.php on line 170
The error [...]]]></description>
			<content:encoded><![CDATA[<p>By no means this is a usual thing, but since there&#8217;s very little information (in fact only one link that gives no real answers) on what to do when you see the error below upon publishing a post, I decided to share the solution:</p>
<blockquote><p><strong>Fatal error</strong>: Maximum execution time of 30 seconds exceeded in <strong>/home/&#8230;/public_html/wp-includes/wp-db.php</strong> on line <strong>170</strong></p></blockquote>
<p>The error points to an innocent line that removes single quotes from a database query, and it&#8217;s misleading. One of the real causes for this problem may lay in the slug (post name) field. You can see this field in the Permalink line below the Title field in your post editor; it&#8217;s emphasized.</p>
<p>In my case, there was an endless attempt to find a unique name for a post having an HTML entity (long dash) in its slug. Even though it was correctly encoded with %NN sequences, the database sever had hard time executing the query correctly. So, the first check on your list is:</p>
<p><strong>Make sure your post slug (that symbolic part of the permalink) has no special symbols, but only letters, digits and dashes.</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.noizeramp.com/2008/07/23/timeout-when-publishing-new-posts-in-wp/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Wordpress 2.6 is Out</title>
		<link>http://blog.noizeramp.com/2008/07/15/wordpress-26-is-out/</link>
		<comments>http://blog.noizeramp.com/2008/07/15/wordpress-26-is-out/#comments</comments>
		<pubDate>Tue, 15 Jul 2008 11:37:46 +0000</pubDate>
		<dc:creator>Aleksey Gureiev</dc:creator>
		
		<category><![CDATA[Sites]]></category>

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

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

		<guid isPermaLink="false">http://blog.noizeramp.com/?p=316</guid>
		<description><![CDATA[Just noticed the release of the next Wordpress version &#8212; 2.6. Check out their release summary video to get an idea of what has improved and how. Good stuff.
]]></description>
			<content:encoded><![CDATA[<p>Just noticed the release of the next Wordpress version &#8212; 2.6. Check out their <a href="http://wordpress.org/development/2008/07/wordpress-26-tyner/">release summary video</a> to get an idea of what has improved and how. Good stuff.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.noizeramp.com/2008/07/15/wordpress-26-is-out/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Funny Spam</title>
		<link>http://blog.noizeramp.com/2008/07/08/funny-spam/</link>
		<comments>http://blog.noizeramp.com/2008/07/08/funny-spam/#comments</comments>
		<pubDate>Tue, 08 Jul 2008 14:04:07 +0000</pubDate>
		<dc:creator>Aleksey Gureiev</dc:creator>
		
		<category><![CDATA[Personal]]></category>

		<category><![CDATA[1c]]></category>

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

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

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

		<guid isPermaLink="false">http://blog.noizeramp.com/?p=315</guid>
		<description><![CDATA[A minute ago I got this spam letter with the list of vacancies:
 

ИНФОРМАЦИЯ О ВАКАНСИЯХ!!
 
- ГЛАВНЫЙ БУХГАЛТЕР, з/пл от 60 000 руб. в месяц;
 
- БУХГАЛТЕР, з/пл от 35 000 руб. в месяц;
 
- СЕКРЕТАРЬ, з/пл от 24000 рублей в месяц;
 
- ПРОГРАММИСТ 1С, з/пл. высокая;
 
- КУРЬЕР, з/пл от 17000 рублей в месяц;


It translates:


Information about available positions:
- Chief [...]]]></description>
			<content:encoded><![CDATA[<p>A minute ago I got this spam letter with the list of vacancies:<br />
 </p>
<blockquote>
<div><span style="font-family: Arial; font-size: large;"><strong><span style="font-size: x-large;"><span style="text-decoration: underline;">ИНФОРМАЦИЯ О ВАКАНСИЯХ!!</span></span></strong></span></div>
<div><span style="font-size: large;"><strong></strong></span> </div>
<div><span style="font-family: Arial; font-size: large;"><strong><span style="text-decoration: underline;">- ГЛАВНЫЙ БУХГАЛТЕР, з/пл от 60 000 руб. в месяц;</span></strong></span></div>
<div><span style="font-size: large;"><strong></strong></span> </div>
<div><span style="font-family: Arial; font-size: large;"><strong><span style="text-decoration: underline;">- БУХГАЛТЕР, з/пл от 35 000 руб. в месяц;</span></strong></span></div>
<div><span style="font-size: large;"><strong></strong></span> </div>
<div><span style="font-family: Arial; font-size: large;"><strong><span style="text-decoration: underline;">- СЕКРЕТАРЬ, з/пл от 24000 рублей в месяц;</span></strong></span></div>
<div><span style="font-size: large;"><strong></strong></span> </div>
<div><span style="font-family: Arial; font-size: large;"><strong><span style="text-decoration: underline;">- ПРОГРАММИСТ 1С, з/пл. высокая;</span></strong></span></div>
<div><span style="font-size: large;"><strong></strong></span> </div>
<div><span style="font-family: Arial; font-size: large;"><strong><span style="text-decoration: underline;">- КУРЬЕР, з/пл от 17000 рублей в месяц;</span></strong></span></div>
</blockquote>
<p></p>
<div>It translates:</div>
<p></p>
<blockquote>
<div>Information about available positions:</div>
<div>- Chief accountant, salary from 60000 rubles / mo</div>
<div>- Accountant, salary from 35000 rubles / mo</div>
<div>- Secretary, salary from 24000 rubles / mo</div>
<div>- Programmer 1C*, salary is high</div>
<div>- Courier, salary from 17000 rubles / mo</div>
</blockquote>
<p></p>
<div>* 1C is a very popular software tool for accountants and managers that is flexible enough to have a dedicated course in local universities and a position in organizations.</div>
<p></p>
<div>How many funny moments can you count?</div>
]]></content:encoded>
			<wfw:commentRss>http://blog.noizeramp.com/2008/07/08/funny-spam/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Mangup &#8216;08</title>
		<link>http://blog.noizeramp.com/2008/06/16/mangup-08/</link>
		<comments>http://blog.noizeramp.com/2008/06/16/mangup-08/#comments</comments>
		<pubDate>Mon, 16 Jun 2008 16:30:52 +0000</pubDate>
		<dc:creator>Aleksey Gureiev</dc:creator>
		
		<category><![CDATA[Personal]]></category>

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

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

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

		<guid isPermaLink="false">http://blog.noizeramp.com/?p=306</guid>
		<description><![CDATA[Last year we had a bicycle trip to Mangup that I covered with Google map routes, bells and whistles. This year we had the same trip but in a different company. Nonetheless, it wasn&#8217;t less interesting. I took less pictures as the nature of that region was already covered, but focused on the trip, the [...]]]></description>
			<content:encoded><![CDATA[<p>Last year we had a bicycle trip to Mangup that I covered with <a href="http://blog.noizeramp.com/2006/08/28/on-the-road-mangup/">Google map routes</a>, <a href="http://blog.noizeramp.com/2006/08/29/on-the-road-mangup-the-map/">bells and whistles</a>. This year we had the same trip but in a different company. Nonetheless, it wasn&#8217;t less interesting. I took less pictures as the nature of that region was already covered, but focused on the trip, the air and views.</p>
<p>See some interesting stuff in <a href="http://www.flickr.com/photos/spyromus/">my Flickr photostream</a>.</p>
<p><span style="color: #551a8b; text-decoration: underline;"><a href="http://www.flickr.com/photos/spyromus/"><img class="aligncenter size-full wp-image-308" title="Mangup Fields" src="http://blog.noizeramp.com/wp-content/uploads/2008/06/fields.jpg" alt="" width="500" height="330" /></a><br />
</span></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.noizeramp.com/2008/06/16/mangup-08/feed/</wfw:commentRss>
		</item>
		<item>
		<title>I&#8217;m a Mac Convert Now</title>
		<link>http://blog.noizeramp.com/2008/06/12/im-a-mac-convert-now/</link>
		<comments>http://blog.noizeramp.com/2008/06/12/im-a-mac-convert-now/#comments</comments>
		<pubDate>Thu, 12 Jun 2008 11:01:11 +0000</pubDate>
		<dc:creator>Aleksey Gureiev</dc:creator>
		
		<category><![CDATA[Personal]]></category>

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

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

		<category><![CDATA[macbook pro]]></category>

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

		<guid isPermaLink="false">http://blog.noizeramp.com/?p=304</guid>
		<description><![CDATA[Dreams eventually come true and I finally converted to Macs. I still have my 5-year old HP Compaq nx9005 with Win XP and Ubuntu running to my side for various tasks (like verifying the web sites I work on in IE), but all my ongoing work and music experiments shifted to a great Macbook Pro [...]]]></description>
			<content:encoded><![CDATA[<p>Dreams eventually come true and I finally converted to Macs. I still have my 5-year old HP Compaq nx9005 with Win XP and Ubuntu running to my side for various tasks (like verifying the web sites I work on in IE), but all my ongoing work and music experiments shifted to a great Macbook Pro MB134 from the Apple&#8217;s latest line.</p>
<p><img class="aligncenter size-full wp-image-305" title="Macbook Pro MB134" src="http://blog.noizeramp.com/wp-content/uploads/2008/06/1eeb68b0f15afd3831452504250c8466.jpg" alt="" width="500" height="500" /></p>
<blockquote><p>APPLE MacBook Pro MB134, 15.4&#8243;, Intel Core 2 Duo T9300 (2x 2.5GHz), 2&#215;1024MB, 250GB, DVD±RW DL, nVidia GeForce 8600Md GT 512MB, 15.4&#8243; WXGA+ (1440&#215;900), LED-TFT, DVI, Gigabit-LAN, WLAN, Bluetooth 2.0, FireWire 400, FireWire 800, 2xUSB2.0, ExpressCard, WebCam, OSX 10.5 &#8220;Leopard&#8221;</p></blockquote>
<p>There&#8217;s not much to say other than that I, as all migrants, feel like a huge army of nurses taking care of me all the time; so smooth Leopard&#8217;s interface and laptop hardware are. All these Spaces, Dashboards, Expose, Stacks, iCals, Frontrows and others feel like from a future. Even Rails, Apache, and PHP5 are pre-installed!</p>
<p>Well, hooray!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.noizeramp.com/2008/06/12/im-a-mac-convert-now/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Ubuntu and Passenger has Just Married</title>
		<link>http://blog.noizeramp.com/2008/06/01/ubuntu-and-passenger-has-just-married/</link>
		<comments>http://blog.noizeramp.com/2008/06/01/ubuntu-and-passenger-has-just-married/#comments</comments>
		<pubDate>Sun, 01 Jun 2008 07:27:33 +0000</pubDate>
		<dc:creator>Aleksey Gureiev</dc:creator>
		
		<category><![CDATA[Programming]]></category>

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

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

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

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

		<guid isPermaLink="false">http://blog.noizeramp.com/?p=303</guid>
		<description><![CDATA[My gosh, I can&#8217;t believe I missed this. On May 21 Brightbox has announced a happy marriage of a revolutionary mod_rails (Passenger) project from Phusion to the excellent user-friendly Linux for the mere mortals &#8212; Ubuntu.
It means that the deployment and management of Rails applications becomes a breeze. I personally still prefer my very custom [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.ubuntu.com/"><img class="alignright size-full wp-image-293" title="ubuntulogo" src="http://blog.noizeramp.com/wp-content/uploads/2008/04/ubuntulogo.png" alt="" width="202" height="55" /></a>My gosh, I can&#8217;t believe I missed this. On May 21 <a href="http://blog.brightbox.co.uk/posts/brightbox-builds-hardy-passenger-package">Brightbox has announced</a> a happy marriage of a revolutionary <a href="http://www.modrails.com/">mod_rails (Passenger) project from Phusion</a> to the excellent user-friendly Linux for the mere mortals &#8212; <a href="http://www.ubuntu.com/">Ubuntu</a>.</p>
<p>It means that the deployment and management of Rails applications becomes a breeze. I personally still prefer my very custom deployment setup &#8212; Nginx-Mongrel (for Rails) + Nginx-Apache (for PHP), but for those planning to unroll massive Rails hosting, it may be a famous Red Pill.</p>
<p>Love Rails!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.noizeramp.com/2008/06/01/ubuntu-and-passenger-has-just-married/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Rails 2.1 is Out</title>
		<link>http://blog.noizeramp.com/2008/06/01/rails-21-is-out/</link>
		<comments>http://blog.noizeramp.com/2008/06/01/rails-21-is-out/#comments</comments>
		<pubDate>Sun, 01 Jun 2008 07:02:27 +0000</pubDate>
		<dc:creator>Aleksey Gureiev</dc:creator>
		
		<category><![CDATA[Programming]]></category>

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

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

		<category><![CDATA[rails 2.1]]></category>

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

		<guid isPermaLink="false">http://blog.noizeramp.com/?p=302</guid>
		<description><![CDATA[3 hours ago Rails 2.1 was finally released into the wild, and there&#8217;s the officials report for your reading pleasure. I&#8217;m still a bit concerned about the RSpec compatibility, but since I already found a sufficient replacement &#8212; Shoulda and Mocha &#8212; there may not be as many worries.
So, let&#8217;s give it a round of [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.rubyonrails.com/"><img class="alignright size-full wp-image-301" title="Ruby on Rails" src="http://blog.noizeramp.com/wp-content/uploads/2008/05/rails.png" alt="" width="87" height="112" /></a>3 hours ago <a href="http://github.com/rails/rails/commits/v2.1.0">Rails 2.1</a> was finally released into the wild, and there&#8217;s the <a href="http://weblog.rubyonrails.com/2008/6/1/rails-2-1-time-zones-dirty-caching-gem-dependencies-caching-etc">officials report</a> for your reading pleasure. I&#8217;m still a bit concerned about the RSpec compatibility, but since I already found a sufficient replacement &#8212; <a href="http://www.thoughtbot.com/projects/shoulda">Shoulda</a> and <a href="http://mocha.rubyforge.org/">Mocha</a> &#8212; there may not be as many worries.</p>
<p>So, let&#8217;s give it a round of aplause. Great job!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.noizeramp.com/2008/06/01/rails-21-is-out/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Little Luck With Rails 2.1 Yet</title>
		<link>http://blog.noizeramp.com/2008/05/20/little-luck-with-rails-21-yet/</link>
		<comments>http://blog.noizeramp.com/2008/05/20/little-luck-with-rails-21-yet/#comments</comments>
		<pubDate>Tue, 20 May 2008 17:36:07 +0000</pubDate>
		<dc:creator>Aleksey Gureiev</dc:creator>
		
		<category><![CDATA[Programming]]></category>

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

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

		<category><![CDATA[rails 2.1]]></category>

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

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

		<guid isPermaLink="false">http://blog.noizeramp.com/?p=300</guid>
		<description><![CDATA[Following the concise yet complete instructions on how to start using the Rails 2.1.0 release candidate from the awesome Getting Rails 2.1 RC1 podcast, I gave it a very quick spin today in one of my projects.
Right after the installation one of the gems refused to work. It was HAML &#8212; an excellent HTML builder [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.rubyonrails.com/"><img style="float: left; margin: 0 20px 20px 0;" title="Ruby on Rails" src="http://blog.noizeramp.com/wp-content/uploads/2008/05/rails.png" alt="" width="87" height="112" border="0"/></a>Following the concise yet complete instructions on how to start using the Rails 2.1.0 release candidate from the awesome <a href="http://railscasts.com/episodes/105">Getting Rails 2.1 RC1 podcast</a>, I gave it a very quick spin today in one of my projects.</p>
<p>Right after the installation one of the gems refused to work. It was <a href="http://haml.hamptoncatlin.com/">HAML &#8212; an excellent HTML builder extension</a> &#8212; that blamed Rails for not having some hook registration function call. Taking the latest master copy from github of HAML (which is 1.9.0 there at the moment) solved the problem, but then something else jumped out. RSpec doesn&#8217;t work very well with Rails 2.1 at its present state, and every controller test was yelling at me.</p>
<p>Let&#8217;s say, it was a bad luck and hopefully I&#8217;ll do better next time when they finally release the thing. Got back to Rails 2.0.2 for now.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.noizeramp.com/2008/05/20/little-luck-with-rails-21-yet/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Firebug crashes Firefox3</title>
		<link>http://blog.noizeramp.com/2008/05/12/firebug-crashes-firefox3/</link>
		<comments>http://blog.noizeramp.com/2008/05/12/firebug-crashes-firefox3/#comments</comments>
		<pubDate>Mon, 12 May 2008 15:00:25 +0000</pubDate>
		<dc:creator>Aleksey Gureiev</dc:creator>
		
		<category><![CDATA[Programming]]></category>

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

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

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

		<guid isPermaLink="false">http://blog.noizeramp.com/?p=298</guid>
		<description><![CDATA[I&#8217;m a huge fan of Firebug &#8212; the top notch JavaScript / CSS debugging plug-in for Firefox &#8212; but recently it became completely unusable to me.
With the release of Ubuntu 8.04 the main browser now is Firefox 3 that comes as the default. Official Firebug doesn&#8217;t work with FF3, but there&#8217;s a development branch that [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m a huge fan of <a href="http://www.getfirebug.com/">Firebug</a> &#8212; the top notch JavaScript / CSS debugging plug-in for Firefox &#8212; but recently it became completely unusable to me.</p>
<p>With the release of Ubuntu 8.04 the main browser now is Firefox 3 that comes as the default. Official Firebug doesn&#8217;t work with FF3, but there&#8217;s a development branch that does, well kind of. There are many sharp corners and rough edges in this latest development, but it was fantastic. Several days away from the installation I noticed my FF3 to begin crashing every now and then. </p>
<p>Today I finally had to remove the extension since the browser could crash 2-5 times a minute. I literally spent half a day trying to work on the site for my client. That&#8217;s unaffordable luxury.</p>
<p>For now I&#8217;ll be using the excellent Web Developer extension (ah, I miss that sexy JavaScript console of Firebug), but will be monitoring the Firebug development progress with a hope to get back to it soon.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.noizeramp.com/2008/05/12/firebug-crashes-firefox3/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
