<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:creativeCommons="http://backend.userland.com/creativeCommonsRssModule" version="2.0">

<channel>
	<title>Peter Velichkov's Blog</title>
	
	<link>http://blog.creonfx.com</link>
	<description>...looking for more than eyes can see</description>
	<lastBuildDate>Fri, 09 Dec 2011 13:17:56 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/Peter_Velichkov" /><feedburner:info xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" uri="peter_velichkov" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><creativeCommons:license>http://creativecommons.org/licenses/by-sa/3.0/</creativeCommons:license><item>
		<title>DIY Laptop Optical Drive Bay HDD Caddy</title>
		<link>http://blog.creonfx.com/daily/diy-laptop-optical-drive-bay-hdd-caddy</link>
		<comments>http://blog.creonfx.com/daily/diy-laptop-optical-drive-bay-hdd-caddy#comments</comments>
		<pubDate>Fri, 09 Dec 2011 13:13:46 +0000</pubDate>
		<dc:creator>Peter</dc:creator>
				<category><![CDATA[Daily]]></category>
		<category><![CDATA[diy]]></category>
		<category><![CDATA[hdd caddy]]></category>
		<category><![CDATA[laptop mod]]></category>
		<category><![CDATA[obhd]]></category>

		<guid isPermaLink="false">http://blog.creonfx.com/?p=305</guid>
		<description>One easy way for boosting your laptop performance is to get a SSD drive. Unfortunately they are still quite small (in terms of capacity) compared to the traditional HDDs. So to get the best of both worlds I needed a way to fit both drives in my laptop. The operation consisted of finding an old [...]&lt;img src="http://feeds.feedburner.com/~r/Peter_Velichkov/~4/pYRKN550uiM" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://blog.creonfx.com/daily/diy-laptop-optical-drive-bay-hdd-caddy/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How to Encrypt Partition under Ubuntu 11.10</title>
		<link>http://blog.creonfx.com/linux/how-to-encrypt-partition-under-ubuntu-11-10</link>
		<comments>http://blog.creonfx.com/linux/how-to-encrypt-partition-under-ubuntu-11-10#comments</comments>
		<pubDate>Fri, 09 Dec 2011 12:04:47 +0000</pubDate>
		<dc:creator>Peter</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[cryptsetup]]></category>
		<category><![CDATA[luks]]></category>
		<category><![CDATA[password]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://blog.creonfx.com/?p=302</guid>
		<description>Here is a quick how-to for password protecting and encrypting your partition using cryptsetup under Ubuntu/Kubuntu Oneiric Ocelot. It should work for older versions too but haven&amp;#8217;t tested it. cryptsetup luksFormat /dev/sdaX &amp;#160; cryptsetup luksOpen /dev/sdaX cryptname &amp;#160; mkfs.ext4 /dev/mapper/cryptname &amp;#160; echo 'cryptname /dev/sdaX none luks' &amp;#62;&amp;#62; /etc/crypttab &amp;#160; mkdir /media/cryptname &amp;#160; echo '/dev/mapper/cryptname /media/cryptname [...]&lt;img src="http://feeds.feedburner.com/~r/Peter_Velichkov/~4/lpPWXkEUo1I" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://blog.creonfx.com/linux/how-to-encrypt-partition-under-ubuntu-11-10/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Access Flex 3 VideoDisplay CuePoint Parameters</title>
		<link>http://blog.creonfx.com/adobe-flex/how-to-access-flex-3-videodisplay-cuepoint-parameters</link>
		<comments>http://blog.creonfx.com/adobe-flex/how-to-access-flex-3-videodisplay-cuepoint-parameters#comments</comments>
		<pubDate>Mon, 06 Dec 2010 23:18:59 +0000</pubDate>
		<dc:creator>Peter</dc:creator>
				<category><![CDATA[Adobe Flex]]></category>

		<guid isPermaLink="false">http://blog.creonfx.com/?p=299</guid>
		<description>Unfortunately when adding cuePoint event listener to mx:VideoDisplay component in Adobe Flex 3 you only receive name, time and type of the Cue Point. Here is a dirty workaround to access the parameters from the metadata. &amp;#60;?xml version=&amp;#34;1.0&amp;#34; encoding=&amp;#34;utf-8&amp;#34;?&amp;#62; &amp;#60;s:Application minHeight=&amp;#34;600&amp;#34; minWidth=&amp;#34;955&amp;#34; xmlns:fx=&amp;#34;http://ns.adobe.com/mxml/2009&amp;#34; xmlns:s=&amp;#34;library://ns.adobe.com/flex/spark&amp;#34; xmlns:mx=&amp;#34;library://ns.adobe.com/flex/mx&amp;#34;&amp;#62; &amp;#60;fx:Script&amp;#62; &amp;#60;!&amp;#91;CDATA&amp;#91; import mx.core.mx_internal; import mx.events.MetadataEvent; import mx.utils.ObjectUtil; &amp;#160; protected [...]&lt;img src="http://feeds.feedburner.com/~r/Peter_Velichkov/~4/8u3E_1a_iSs" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://blog.creonfx.com/adobe-flex/how-to-access-flex-3-videodisplay-cuepoint-parameters/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>LineBreak / NewLine in Flex Text Control from XML String</title>
		<link>http://blog.creonfx.com/adobe-flex/linebreak-newline-flex-textarea-xml-strin</link>
		<comments>http://blog.creonfx.com/adobe-flex/linebreak-newline-flex-textarea-xml-strin#comments</comments>
		<pubDate>Wed, 27 Oct 2010 13:56:14 +0000</pubDate>
		<dc:creator>Peter</dc:creator>
				<category><![CDATA[Adobe Flex]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[String]]></category>
		<category><![CDATA[XML]]></category>

		<guid isPermaLink="false">http://blog.creonfx.com/?p=296</guid>
		<description>Unfortunately the standard way (&amp;#8216;\n&amp;#8217;)  of inserting new lines in Flex Text Controls (Label, Text etc) doesn&amp;#8217;t work when the string comes from XML. The magical way to do it is by using &amp;#8216;&amp;#38;#13;&amp;#8216; so Lorem&amp;#38;#13;Ipsum becomes Lorem Ipsum&lt;img src="http://feeds.feedburner.com/~r/Peter_Velichkov/~4/TjF2ih54Nbs" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://blog.creonfx.com/adobe-flex/linebreak-newline-flex-textarea-xml-strin/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Embed Font in Flex4 Actionscript Project</title>
		<link>http://blog.creonfx.com/adobe-flex/embed-font-in-flex4-actionscript-project</link>
		<comments>http://blog.creonfx.com/adobe-flex/embed-font-in-flex4-actionscript-project#comments</comments>
		<pubDate>Sun, 25 Apr 2010 12:19:58 +0000</pubDate>
		<dc:creator>Peter</dc:creator>
				<category><![CDATA[Adobe Flex]]></category>
		<category><![CDATA[embed fonts]]></category>
		<category><![CDATA[flex4]]></category>
		<category><![CDATA[TLF]]></category>

		<guid isPermaLink="false">http://blog.creonfx.com/?p=292</guid>
		<description>A quick tip for all not seeing their embeded fonts when compiling pure AS project with Flex SDK 4: [Embed(source="assets/fonts/my-cool-font.otf", fontFamily="CoolFont", fontWeight="normal", mimeType='application/x-font', embedAsCFF='false')] private var MyCoolFont:Class; Notice the embedAsCFF=&amp;#8217;false&amp;#8217;, this is the most important part. Basically when not using Spark Text Components (which are based on Text Layout Framework) you need this option. In [...]&lt;img src="http://feeds.feedburner.com/~r/Peter_Velichkov/~4/rNcIGBWI98s" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://blog.creonfx.com/adobe-flex/embed-font-in-flex4-actionscript-project/feed</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>VMware Player / Workstation Mouse Grab Input Focus Bug</title>
		<link>http://blog.creonfx.com/linux/vmware-player-workstation-mouse-grab-input-focus-bug</link>
		<comments>http://blog.creonfx.com/linux/vmware-player-workstation-mouse-grab-input-focus-bug#comments</comments>
		<pubDate>Tue, 22 Sep 2009 20:47:09 +0000</pubDate>
		<dc:creator>Peter</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Karmic Koala]]></category>
		<category><![CDATA[mouse input]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[virtualization]]></category>
		<category><![CDATA[vmware]]></category>

		<guid isPermaLink="false">http://blog.creonfx.com/?p=278</guid>
		<description>To fix the recent bug with VMware Player 2.5.3 and Workstation 6.5.3 Build 185404 under Karmic Koala Ubuntu just paste this line in your console before launching vmplayer/vmware: export VMWARE_USE_SHIPPED_GTK=yes you may also modify the VMware starting script so you don&amp;#8217;t have to export it every time.&lt;img src="http://feeds.feedburner.com/~r/Peter_Velichkov/~4/4JWu28UvYIo" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://blog.creonfx.com/linux/vmware-player-workstation-mouse-grab-input-focus-bug/feed</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>Papervision3d – ERROR: lookAt error</title>
		<link>http://blog.creonfx.com/papervision3d/papervision3d-error-lookat-error</link>
		<comments>http://blog.creonfx.com/papervision3d/papervision3d-error-lookat-error#comments</comments>
		<pubDate>Mon, 07 Sep 2009 09:33:25 +0000</pubDate>
		<dc:creator>Peter</dc:creator>
				<category><![CDATA[Papervision3D]]></category>
		<category><![CDATA[camera]]></category>
		<category><![CDATA[error]]></category>

		<guid isPermaLink="false">http://blog.creonfx.com/?p=275</guid>
		<description>If you get this error on each frame then you have probably moved the camera to the same position as the object (camera.z = 0). Change it a bit and the error should be fixed.&lt;img src="http://feeds.feedburner.com/~r/Peter_Velichkov/~4/smOF2HkEtkE" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://blog.creonfx.com/papervision3d/papervision3d-error-lookat-error/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Custom Skinnable Slider Component for Adobe Flex 3</title>
		<link>http://blog.creonfx.com/adobe-flex/custom-skinnable-slider-component-for-adobe-flex-3</link>
		<comments>http://blog.creonfx.com/adobe-flex/custom-skinnable-slider-component-for-adobe-flex-3#comments</comments>
		<pubDate>Fri, 14 Aug 2009 14:37:48 +0000</pubDate>
		<dc:creator>Peter</dc:creator>
				<category><![CDATA[Adobe Flex]]></category>
		<category><![CDATA[custom component]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[skin]]></category>
		<category><![CDATA[slider]]></category>

		<guid isPermaLink="false">http://blog.creonfx.com/?p=261</guid>
		<description>First of all let me apologize for not blogging in a while but I&amp;#8217;ve been working on couple of interesting projects after which it was time for deserved vacation on the BlackSea&amp;#8217;s beaches. Anyway I needed a better looking horizontal slider for one of the projects and all of my googling got me nothing reasonable [...]&lt;img src="http://feeds.feedburner.com/~r/Peter_Velichkov/~4/Ccex4jioFf8" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://blog.creonfx.com/adobe-flex/custom-skinnable-slider-component-for-adobe-flex-3/feed</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
		<item>
		<title>MDADM RAID Failed After Upgrade from Ubuntu 8.10 to 9.04</title>
		<link>http://blog.creonfx.com/linux/mdadm-raid-failed-after-upgrade-from-ubuntu-810-to-904</link>
		<comments>http://blog.creonfx.com/linux/mdadm-raid-failed-after-upgrade-from-ubuntu-810-to-904#comments</comments>
		<pubDate>Fri, 24 Apr 2009 07:37:03 +0000</pubDate>
		<dc:creator>Peter</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[kernel]]></category>
		<category><![CDATA[mdadm]]></category>
		<category><![CDATA[nvidia]]></category>
		<category><![CDATA[raid]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://blog.creonfx.com/?p=255</guid>
		<description>With no surprise the update from Interpid Ibex to Jaunty Jackalope was not as easy as I hoped. After booting the fresh 2.6.28 kernel I was welcomed with &amp;#8220;Press enter for maintenance (or type Control-D to continue)&amp;#8221; and errors when trying to mount my RAID0. After some investigations found that the devices are now named [...]&lt;img src="http://feeds.feedburner.com/~r/Peter_Velichkov/~4/YeTZKpnAmMI" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://blog.creonfx.com/linux/mdadm-raid-failed-after-upgrade-from-ubuntu-810-to-904/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Seagate 7200.11 BSY State Data Recovery</title>
		<link>http://blog.creonfx.com/daily/seagate-7200-11-bsy-state-data-recovery</link>
		<comments>http://blog.creonfx.com/daily/seagate-7200-11-bsy-state-data-recovery#comments</comments>
		<pubDate>Fri, 10 Apr 2009 11:58:51 +0000</pubDate>
		<dc:creator>Peter</dc:creator>
				<category><![CDATA[Daily]]></category>
		<category><![CDATA[bsy]]></category>
		<category><![CDATA[data recovery]]></category>
		<category><![CDATA[hardware]]></category>
		<category><![CDATA[seagate]]></category>

		<guid isPermaLink="false">http://blog.creonfx.com/?p=243</guid>
		<description>One not-so-beautiful morning I woke up just to find out that my Seagate 7200.11 500GB hard drive is not detected from my BIOS. Unfortunately it was a well know problem which have three solutions: Replace the hard drive with new one from where you got it and lose your data Send it to Seagate for [...]&lt;img src="http://feeds.feedburner.com/~r/Peter_Velichkov/~4/QGggCrkRHI0" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://blog.creonfx.com/daily/seagate-7200-11-bsy-state-data-recovery/feed</wfw:commentRss>
		<slash:comments>19</slash:comments>
		</item>
	</channel>
</rss><!-- Dynamic page generated in 0.392 seconds. --><!-- Cached page generated by WP-Super-Cache on 2012-05-20 21:41:44 -->

