<?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>Misfiring Neurons</title>
	<atom:link href="http://pavel.tcholakov.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://pavel.tcholakov.net</link>
	<description>Just another geek with a blog</description>
	<lastBuildDate>Sat, 28 Aug 2010 12:14:34 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Sushi and compact camera musings</title>
		<link>http://pavel.tcholakov.net/2010/08/sushi-and-compact-camera-musings/</link>
		<comments>http://pavel.tcholakov.net/2010/08/sushi-and-compact-camera-musings/#comments</comments>
		<pubDate>Sat, 28 Aug 2010 11:50:25 +0000</pubDate>
		<dc:creator>Pavel</dc:creator>
				<category><![CDATA[Photography]]></category>

		<guid isPermaLink="false">http://pavel.tcholakov.net/2010/08/sushi-and-compact-camera-musings/</guid>
		<description><![CDATA[Raw fish: om nom nom! I have had my Canon S90 for nearly a year! Quite hard to believe - in fact Canon has already announced an update is due out soon (S95). Apparently the rear dial doesn't turn freely anymore on the S95 but I haven't actually found that the loose one on the [...]]]></description>
			<content:encoded><![CDATA[<div style="float: right; margin-left: 10px; margin-bottom: 10px;"><a title="photo sharing" href="http://www.flickr.com/photos/pavel/4933965201/"><img style="border: solid 2px #000000;" src="http://farm5.static.flickr.com/4078/4933965201_dedbbbf495_m.jpg" alt="" /></a></p>
<p><span style="font-size: 0.9em; margin-top: 0px;">Raw fish: om nom nom! </span></p>
</div>
<p>I have had my Canon S90 for nearly a year! Quite hard to believe - in fact Canon has already announced an update is due out soon (S95). Apparently the rear dial doesn't turn freely anymore on the S95 but I haven't actually found that the loose one on the S90 has been the problem many feared it might be. I like that they've added extra holes for a proper neck strap though - that seems like it could be useful.</p>
<p>If there was one thing that would make me want to upgrade, it would be the ability to attach a dedicated optical finder. I know Canon would rather have me buy the <a href="http://focusfirst.blogspot.com/2009/11/canon-g11-with-voitlander-optical.html">G11 for that</a> but those cameras are simply too big once you've tried the S90 (not to mention the lens is a stop slower!)</p>
<p>I would imagine such a device using a proprietary clip instead of the usual flash shoe to keep the size down; perhaps with an extra frame marked for 50mm FoV. It doesn't need to be super-accurate, although large and bright would be very desirable. For bonus points, the finder could incorporate a focus indicator LED and illuminated frame lines that switch as you zoom the lens - I'm sure many people would pay good money for this.</p>
<p>I often find that I am holding my camera up to my eye, zoomed all the way out and pre-focused, just trying to eyeball the correct framing. It works surprisingly well! Some <a href="http://www.flickr.com/photos/28198350@N08/sets/72157623298660080/">enterprising users have already hacked</a> (well, glued) finders onto the S90 but a first party solution would be far more elegant. Mike Johnston recently <a href="http://theonlinephotographer.typepad.com/the_online_photographer/2010/08/canon-announces-the-s95.html">likened these cameras to the original Leica</a>; I think a proper finder would really cement the argument.</p>
<p>Lightroom tells me that my catalogue only has about 750 shots from the S90. It's not much but I have some travels coming up so that number should go up soon. More importantly, I have a very large number of keepers - about 150 are marked 3+ stars - and most of these are in difficult low-light situations where most compacts would struggle to deliver much in the way of usable pictures. These are 150 shots I would not have made with my DSLR because it was sitting at home!</p>
<p>On a related note, I managed to drop mine a short distance onto some gravel. Luckily it escaped with nothing but a mark or two on the lens ring paint - easily sorted with some black permanent marker <img src='http://pavel.tcholakov.net/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' />  The build quality (while not up to Leica M standards) is also more than adequate!</p>
<p><em>Shot info: f/2.2, 6.85mm (one step from full wide), ISO 1600, CR2 converted through Lightroom 3.<br />
</em></p>
]]></content:encoded>
			<wfw:commentRss>http://pavel.tcholakov.net/2010/08/sushi-and-compact-camera-musings/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Quick and dirty web service testing</title>
		<link>http://pavel.tcholakov.net/2010/07/quick-and-dirty-web-service-testing/</link>
		<comments>http://pavel.tcholakov.net/2010/07/quick-and-dirty-web-service-testing/#comments</comments>
		<pubDate>Fri, 23 Jul 2010 16:49:57 +0000</pubDate>
		<dc:creator>Pavel</dc:creator>
				<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://pavel.tcholakov.net/?p=197</guid>
		<description><![CDATA[For command line geeks (on Windows the easiest way to get these utilities is to install Cygwin): curl -s -d @request.xml -H "Content-type: text/xml" \ http://example.com/endpoint &#124; xmllint --format - Create a file request.xml with your XML input, pretty XML output will appear on the standard output. Curl is an HTTP swiss army knife, xmllint [...]]]></description>
			<content:encoded><![CDATA[<p>For command line geeks (on Windows the easiest way to get these utilities is to install Cygwin):</p>
<pre style="padding-left: 30px;">curl -s -d @request.xml -H "Content-type: text/xml" \
    http://example.com/endpoint | xmllint --format -</pre>
<p>Create a file <em>request.xml</em> with your XML input, pretty XML output will appear on the standard output. <a href="http://curl.haxx.se/">Curl</a> is an HTTP swiss army knife, <a href="http://www.xmlsoft.org/xmllint.html">xmllint</a> is a XML verification and manipulation tool.</p>
]]></content:encoded>
			<wfw:commentRss>http://pavel.tcholakov.net/2010/07/quick-and-dirty-web-service-testing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SWI-Prolog has a sense of humor</title>
		<link>http://pavel.tcholakov.net/2010/07/swi-prolog-has-a-sense-of-humor/</link>
		<comments>http://pavel.tcholakov.net/2010/07/swi-prolog-has-a-sense-of-humor/#comments</comments>
		<pubDate>Thu, 15 Jul 2010 19:52:17 +0000</pubDate>
		<dc:creator>Pavel</dc:creator>
				<category><![CDATA[Geeky]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://pavel.tcholakov.net/?p=191</guid>
		<description><![CDATA[Deep Thought jokes just never get old! SWI-Prolog, when asked an open-ended question for which no rules are defined, answers like so: ?- A. % ... 1,000,000 ............ 10,000,000 years later % %       &#62;&#62; 42 &#60;&#60; (last release gives the question) ?- That's just awesome Reminded me that I haven't (re)read HHGG in recent years [...]]]></description>
			<content:encoded><![CDATA[<p>Deep Thought jokes just never get old! <a href="http://www.swi-prolog.org/">SWI-Prolog</a>, when asked an open-ended question for which no rules are defined, answers like so:</p>
<blockquote>
<pre>?- <em>A.</em>
% ... 1,000,000 ............ 10,000,000 years later
%
%       &gt;&gt; 42 &lt;&lt; (last release gives the question)
?-
</pre>
</blockquote>
<p>That's just awesome <img src='http://pavel.tcholakov.net/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  Reminded me that I haven't (re)read HHGG in recent years - maybe I'll put it on me phone. Seems like the perfect book to read a chapter here and there when bored.</p>
]]></content:encoded>
			<wfw:commentRss>http://pavel.tcholakov.net/2010/07/swi-prolog-has-a-sense-of-humor/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Nikon does fashion</title>
		<link>http://pavel.tcholakov.net/2010/07/nikon-does-fashion/</link>
		<comments>http://pavel.tcholakov.net/2010/07/nikon-does-fashion/#comments</comments>
		<pubDate>Sat, 10 Jul 2010 20:55:38 +0000</pubDate>
		<dc:creator>Pavel</dc:creator>
				<category><![CDATA[Photo]]></category>

		<guid isPermaLink="false">http://pavel.tcholakov.net/?p=192</guid>
		<description><![CDATA[Some random backstage and runway shots from Africa Fashion Week, taken last Thursday - Shot with a Nikon D700 and a selection of fines Nikkors: 14-24/2.8, 24-70/2.8, 70-200/2.8 VR2, 105/2.8 VR. If I had to pick a favorite lens it would definitely be the 14-24/2.8, with the 105/2.8 VR Micro-Nikkor coming a close second. They [...]]]></description>
			<content:encoded><![CDATA[<p>Some random backstage and runway shots from Africa Fashion Week, taken last Thursday -</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="400" height="300" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="flashvars" value="offsite=true&amp;lang=en-us&amp;page_show_url=%2Fphotos%2Fpavel%2Fsets%2F72157624327608945%2Fshow%2F&amp;page_show_back_url=%2Fphotos%2Fpavel%2Fsets%2F72157624327608945%2F&amp;set_id=72157624327608945&amp;jump_to=" /><param name="allowFullScreen" value="true" /><param name="src" value="http://www.flickr.com/apps/slideshow/show.swf?v=71649" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="400" height="300" src="http://www.flickr.com/apps/slideshow/show.swf?v=71649" allowfullscreen="true" flashvars="offsite=true&amp;lang=en-us&amp;page_show_url=%2Fphotos%2Fpavel%2Fsets%2F72157624327608945%2Fshow%2F&amp;page_show_back_url=%2Fphotos%2Fpavel%2Fsets%2F72157624327608945%2F&amp;set_id=72157624327608945&amp;jump_to="></embed></object></p>
<p>Shot with a Nikon D700 and a selection of fines Nikkors: 14-24/2.8, 24-70/2.8, 70-200/2.8 VR2, 105/2.8 VR. If I had to pick a favorite lens it would definitely be the 14-24/2.8, with the 105/2.8 VR Micro-Nikkor coming a close second. They are all, without exception, big and heavy lenses I wouldn't want to carry around all the time but they certainly produce the goods when needed!</p>
]]></content:encoded>
			<wfw:commentRss>http://pavel.tcholakov.net/2010/07/nikon-does-fashion/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Canon PowerShot S90</title>
		<link>http://pavel.tcholakov.net/2010/02/canon-powershot-s90/</link>
		<comments>http://pavel.tcholakov.net/2010/02/canon-powershot-s90/#comments</comments>
		<pubDate>Wed, 24 Feb 2010 16:17:28 +0000</pubDate>
		<dc:creator>Pavel</dc:creator>
				<category><![CDATA[Photography]]></category>

		<guid isPermaLink="false">http://pavel.tcholakov.net/?p=184</guid>
		<description><![CDATA[I've had a Canon S90 for a couple of months already and in that short time have already managed some really nice shots. It's barely larger than a candybar cellphone and the picture quality beats anything I've seen from a similar-sized cameras. I always felt the G10 is a touch too big to carry at [...]]]></description>
			<content:encoded><![CDATA[<p>I've had a Canon S90 for a couple of months already and in that short time have already managed some really nice shots. It's barely larger than a candybar cellphone and the picture quality beats anything I've seen from a similar-sized cameras. I always felt the G10 is a touch too big to carry at all times, and the S90 fits this role perfectly. Lightroom 3 handles the noise really well if you shoot raw, though you will definitely need something like PTLens to straighten up the barrel distortion at the wider settings (if you shoot JPEG the camera corrects it internally but only partially; PTLens can fully correct the JPEGs too). As with other PowerShots, the IS is unbelievably good - here is a hand-held sample at half a second:</p>
<p><a title="Zooom! by Pavel Tcholakov, on Flickr" href="http://www.flickr.com/photos/pavel/4324985872/"><img src="http://farm5.static.flickr.com/4066/4324985872_07645d019c.jpg" alt="Zooom!" width="500" height="375" /></a></p>
<p>And to illustrate just how tiny it is  - here's mine next to an AA battery (you might also recognize the <a href="http://www.electricedge.com/gordy_s_straps/">Gordy's camera strap </a>it's wearing):</p>
<p><a title="Canon S90 by Pavel Tcholakov, on Flickr" href="http://www.flickr.com/photos/pavel/4162978138/"><img src="http://farm3.static.flickr.com/2622/4162978138_6f135d31a7.jpg" alt="Canon S90" width="500" height="400" /></a></p>
<p>Nikon expert <a href="http://bythom.com/CanonS90review.htm">Thom Hogan has posted his views on the S90</a> and sums it up much better than I could. I find the S90 a great camera for those times when I don't feel like lugging my SLR around. And since I've had a chance to handle the Olympus E-P1, I really don't lust after a m4/3 camera anymore even though I'm sure it's technically a better proposition.</p>
<div id="_mcePaste" style="overflow: hidden; position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px;">http://bythom.com/CanonS90review.htm</div>
]]></content:encoded>
			<wfw:commentRss>http://pavel.tcholakov.net/2010/02/canon-powershot-s90/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Stop Buzzing me!</title>
		<link>http://pavel.tcholakov.net/2010/02/stop-buzzing-me/</link>
		<comments>http://pavel.tcholakov.net/2010/02/stop-buzzing-me/#comments</comments>
		<pubDate>Thu, 11 Feb 2010 14:46:14 +0000</pubDate>
		<dc:creator>Pavel</dc:creator>
				<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://pavel.tcholakov.net/?p=180</guid>
		<description><![CDATA[Google has rolled out Buzz to much discussion - reactions vary from "can't be bothered, turned it off" to "this is the new Twitbook killer". Here are some very unstructured thoughts on the subject. Let me start with an observation on the two biggest players in this space. Twitter and Facebook are diametrically opposite in [...]]]></description>
			<content:encoded><![CDATA[<p>Google has rolled out Buzz to much discussion - reactions vary from "can't be bothered, turned it off" to "this is the new Twitbook killer". Here are some very unstructured thoughts on the subject.</p>
<p>Let me start with an observation on the two biggest players in this space. Twitter and Facebook are diametrically opposite in the way that their social links work - Twitter is asymmetrical where following someone has no implication for them. Befriending someone on Facebook on the other hand is a symmetrical relationship. (Facebook has tried to augment this, quite successfully, with the Pages feature.) These core properties also dictate the experience: Twitter serves up small slices of chatter and subscribers see updates fairly close in time to them being published. Facebook on the other hand personalizes your news feed and prioritizes items based on your past activity. (You can also choose to view the latest news from all your Facebook friends from a couple of iterations ago - see a pattern here?)</p>
<p>Buzz's major downside for me at the moment is that the popular posts tend to stay at the top, even if I'm not that interested in them. If you contrast to the above paragraph, you'll see how it fits right in the middle - you get a public conversation with the "buzzing" items floating up to the top. Google will probably tweak the post prioritization over time to get the signal-to-noise ratio lower (I would like a button to mute specific items for starters. <strong>Edit: </strong>ah, it's right there in the little triangle menu - silly me).</p>
<p>Jason Calacanis writes that "Facebook just lost half its value". I'm not convinced of that - for one, Facebook has iterated on their UI much more and is very good at catering to the use cases that people want from it, IMHO. Another is privacy concerns - for all the gaffes, Facebook does actually have working privacy controls. Google has a lot of catching up to do in pure features here. That is, if they even want to go there. My guess is that they'll stay out in the open like Twitter and sidestep the issue. Simple example: I would upload photos to Facebook that will never see Flickr or Google's Picasa data centres.</p>
<p>I also think that it's Twitter that may have lost half its value - in the 24h that I've had Buzz in my Gmail, I've seen much more potential to strike up a conversation in public on Buzz than I have on Twitter, which in turn tends to be quite impersonal until you have built something of a following. If Google provides an API with open access, Buzz could really become the centre of one's online universe. One potential killer feature (for technogeeks anyway) would be to aggregate ad-hoc social interactions such as comments on blog posts and forum posts from all over the internet. Blogger is already supported, all that's needed is push support in Disqus and vBulletin/phpBB . The challenge here will probably be minimizing noise - think Facebook app spam.</p>
<p>Related - Buzz from the corporate network. How many companies block access to the likes of Facebook? I'd guess quite a few, especially once you reach a certain size. Gmail on the other hand is often permanently open in a browser right next to the corporate Exchange mailbox. Short term advantage to Buzz here, but how long before the network policy declares it an enemy? Gmail is already on the borderline as it is with the embedded Google Talk feature.</p>
<p>I have turned Buzz off for the time being but I will keep revisiting it. I would have much preferred a standalone page which I can visit. As it stands, I find it very distracting in my Gmail. At the same time, I think that over time it will become a very useful tool. I suspect it will eat more into my Twitter usage than Facebook. And I should imagine that Buzz will really hit its stride once mobile support is rolled out.</p>
]]></content:encoded>
			<wfw:commentRss>http://pavel.tcholakov.net/2010/02/stop-buzzing-me/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows, NVIDIA, and oversaturated colours</title>
		<link>http://pavel.tcholakov.net/2009/12/windows-nvidia-and-oversaturated-colours/</link>
		<comments>http://pavel.tcholakov.net/2009/12/windows-nvidia-and-oversaturated-colours/#comments</comments>
		<pubDate>Sat, 26 Dec 2009 18:08:37 +0000</pubDate>
		<dc:creator>Pavel</dc:creator>
				<category><![CDATA[Rants]]></category>

		<guid isPermaLink="false">http://pavel.tcholakov.net/?p=176</guid>
		<description><![CDATA[After a recent power dip, I had to reboot my machine and the colours went completely crazy. I have an HP 2475w wide-gamut monitor which can produce some seriously "dayglo" colours - e.g. the orange in the Firefox icon became an eye-searing hypersaturated red. Since my PC is on 24/7 for long intervals at a [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://pavel.tcholakov.net/wp-content/uploads/2009/12/nvidia-digital-vibrance.png"><img class="alignright size-medium wp-image-177" title="nvidia digital vibrance" src="http://pavel.tcholakov.net/wp-content/uploads/2009/12/nvidia-digital-vibrance-300x214.png" alt="" width="300" height="214" /></a>After a recent power dip, I had to reboot my machine and the colours went completely crazy. I have an HP 2475w wide-gamut monitor which can produce some seriously "dayglo" colours - e.g. the orange in the Firefox icon became an eye-searing hypersaturated red. Since my PC is on 24/7 for long intervals at a time, it was absolutely impossible to tell what had caused this. I had been evaluating some new raw converters recently so my initial guess was that some software I installed had made the change. After much frustration, uninstalling apps, and several reboots later, it turns out that the culprit is the  latest NVIDIA drivers which default the "digital vibrance" setting to 90% (where it had previously been 50%).</p>
<p>WTF, NVIDIA? Please don't screw with my colours and focus on building better hardware instead. Secondly, how did this update get WHQL approval and made it into Microsoft's Windows Update? It's little things like this that have made all the pros move to Mac.</p>
]]></content:encoded>
			<wfw:commentRss>http://pavel.tcholakov.net/2009/12/windows-nvidia-and-oversaturated-colours/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Lightroom 3 Beta begins with big improvements in image quality</title>
		<link>http://pavel.tcholakov.net/2009/10/lightroom-3-beta-begins-with-big-improvements-in-image-quality/</link>
		<comments>http://pavel.tcholakov.net/2009/10/lightroom-3-beta-begins-with-big-improvements-in-image-quality/#comments</comments>
		<pubDate>Sun, 25 Oct 2009 13:32:53 +0000</pubDate>
		<dc:creator>Pavel</dc:creator>
				<category><![CDATA[Photography]]></category>

		<guid isPermaLink="false">http://pavel.tcholakov.net/?p=170</guid>
		<description><![CDATA[I have been using Lightroom since one of the early pre-1.0 beta releases, and have enjoyed using it ever since. The release of the first public beta of Lightroom 3 last week was naturally an interesting event – what have they cooked up this time? According to the official release notes the major improvements are [...]]]></description>
			<content:encoded><![CDATA[<p>I have been using Lightroom since one of the early pre-1.0 beta releases, and have enjoyed using it ever since. The release of the first public beta of Lightroom 3 last week was naturally an interesting event – what have they cooked up this time? According to the official release notes the major improvements are in the ACR rendering engine which processes raw sensor data into nice looking images. However I just wasn’t seeing any of the supposed improvements when looking at my files! Eventually I realized my mistake – because I imported some DNG files which had already been through Lightroom 2, the new beta was using the same old “process” in order to maintain the same appearance. As Larry Wall would say – “this is not a bug, it’s a feature!”</p>
<p>Lightroom was actually doing the right thing by preserving the original look of the images. All that was needed was to either reset the development settings (killing my adjustments in the process), or update to the latest process version (this is available from the Settings menu when in the Develop module). I have noticed that some of my images require a lot less sharpening under the new process and so would look rather over-sharpened when simply converted to the latest process. In other words there is a good reason why Lightroom does not automatically put your old images through the new process – it’s different enough that the results of your original adjustments may simply not look as good as they should. My advice would be not to do large-scale en masse conversion of entire folders or catalogs, rather convert individual images and reassess the adjustments made.</p>
<p>Now that I am seeing the output of the latest rendering engine, I can tell you that this alone will be worth the price of the upgrade for me. Colour noise handling is vastly improved, the luminance grain is tighter and there may even be a tad more detail visible in some borderline cases. Have a look at the following side by side crops and judge for yourself (click to see in full):</p>
<p><a href="/pics/LR2-LR3-comparison-full.jpg"><img src="/pics/LR2-LR3-comparison-reduced.jpg" alt="Comparison crops" /></a></p>
<p>All files use the default Lightroom noise reduction settings – the colour noise reduction slider was set to 25, and luminance noise was set to 0.</p>
<p>The improvement in the G10 images is very impressive. Also note the much reduced vertical banding in the 50D ISO3200 sample #4 above (this is the only crop that is not 100% because the banding was not as obvious at the 1:1 magnification size). Overall, I am seeing ever so slightly more detail (e.g. the stitching in sample #2, eyebrow hairs in sample #3) and vastly reduced colour noise with a more pleasing grain pattern. The Nikon D700 does not show a huge improvement – I had to go through quite a number of ISO 6400 photos to find one that shows much of a difference, mostly because the files are so good to start with. The story is similar with the Pentax K10D in that it doesn’t show much improvement – the files are fairly noisy in the first place and stay that way even under the new process.</p>
<p>All the above files have easily discernable differences at full-screen view on my HP LP2475w (24” 1920x1200 LCD, or around 30% magnification depending on which camera the file comes from), except for the Canon 50D @ ISO 400 and the two Pentax shots. The differences between Lightroom 2.5 and 3.0 Beta rendering for these three images are basically invisible at smaller magnifications.</p>
<p>Another small but important improvement that I’ve noticed is the smoother movement of the adjustment sliders. Previously, some computationally-expensive adjustments would make the sliders very notchy as the image preview was being rendered every time you changed a value. Now the sliders can move freely all the time. This is a classic case of better use of multithreading leading to more responsive software. I haven’t done any actual testing but it seems as though the new beta is also utilizing my dual core CPU better during import/export. It only makes sense as CPUs with four or eight threads of execution are becoming increasingly popular, and Lightroom 2 has some known deficiencies in such configurations.</p>
<p>The Lightroom 3 beta is available to all at <a href="http://labs.adobe.com/technologies/lightroom3/">Adobe Labs</a> (free registration required).</p>
]]></content:encoded>
			<wfw:commentRss>http://pavel.tcholakov.net/2009/10/lightroom-3-beta-begins-with-big-improvements-in-image-quality/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Orlando Power Station</title>
		<link>http://pavel.tcholakov.net/2009/10/orlando-power-station/</link>
		<comments>http://pavel.tcholakov.net/2009/10/orlando-power-station/#comments</comments>
		<pubDate>Sat, 17 Oct 2009 16:11:40 +0000</pubDate>
		<dc:creator>Pavel</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[industrial]]></category>
		<category><![CDATA[photo]]></category>

		<guid isPermaLink="false">http://pavel.tcholakov.net/2009/10/orlando-power-station/</guid>
		<description><![CDATA[The abandoned power station building, next to the Orlando Towers in Soweto. Some people like urban decay, I just love the industrial variety Orlando Power Station set on Flickr (slideshow).]]></description>
			<content:encoded><![CDATA[<p>The abandoned power station building, next to the Orlando Towers in Soweto. Some people like urban decay, I just love the industrial variety <img src='http://pavel.tcholakov.net/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p><a href="http://www.flickr.com/photos/pavel/sets/72157622604164954/"><img src="http://farm3.static.flickr.com/2437/4019717030_2968636a58.jpg" alt="Orlando Power Station"/></a></p>
<p><a href="http://www.flickr.com/photos/pavel/sets/72157622604164954/">Orlando Power Station set on Flickr</a> (<a href="http://www.flickr.com/photos/pavel/sets/72157622604164954/show/">slideshow</a>).</p>
]]></content:encoded>
			<wfw:commentRss>http://pavel.tcholakov.net/2009/10/orlando-power-station/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Canon G10 Gallery</title>
		<link>http://pavel.tcholakov.net/2009/09/canon-g10-gallery/</link>
		<comments>http://pavel.tcholakov.net/2009/09/canon-g10-gallery/#comments</comments>
		<pubDate>Sat, 19 Sep 2009 20:21:06 +0000</pubDate>
		<dc:creator>Pavel</dc:creator>
				<category><![CDATA[Photo]]></category>

		<guid isPermaLink="false">http://pavel.tcholakov.net/?p=167</guid>
		<description><![CDATA[While we wait for the G11 and S90 to show up, I uploaded some favorites that I've shot over the last couple of months with the G10. Canon G10 set on Flickr (slideshow).]]></description>
			<content:encoded><![CDATA[<p>While we wait for the G11 and S90 to show up, I uploaded some favorites that I've shot over the last couple of months with the G10.</p>
<p><a href="http://www.flickr.com/photos/pavel/sets/72157622411855452/"><img src="http://farm4.static.flickr.com/3524/3934417525_ecdce7fe30.jpg" alt="" /></a><br />
<a href="http://www.flickr.com/photos/pavel/sets/72157622411855452/"></a></p>
<p><a href="http://www.flickr.com/photos/pavel/sets/72157622411855452/">Canon G10 set on Flickr</a> (<a href="http://www.flickr.com/photos/pavel/sets/72157622411855452/show/">slideshow</a>).</p>
]]></content:encoded>
			<wfw:commentRss>http://pavel.tcholakov.net/2009/09/canon-g10-gallery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
