<?xml version="1.0" encoding="UTF-8"?><rss version="0.92">
<channel>
	<title>UH.LEE.KA</title>
	<link>http://www.uhleeka.com/blog</link>
	<description>If you think nobody cares about you, try missing a few car payments.</description>
	<lastBuildDate>Wed, 25 Aug 2010 01:35:57 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	
	<item>
		<title>JohnnyA WordPress malware on MediaTemple</title>
		<description><![CDATA[My MediaTemple (gs) account got hit by JohnnyA a couple weeks ago. I assume that it occurred because I was slow to update my WordPress to version 3.0. Lucky for me, I actually looked at my blog only 4 days (yikes!) after the exploit occurred. Avast caught the site attempting some sort of JavaScript exploit, [...]]]></description>
		<link>http://www.uhleeka.com/blog/2010/07/johnnya-wordpress-malware-on-mediatemple/</link>
			</item>
	<item>
		<title>Less than percent colon &#8211; code render blocks in ASP.NET</title>
		<description><![CDATA[ASP.NET 4.0 introduces the following code render block syntax: &#60;%: YourOutput() %&#62; The search terms &#8220;less than percent colon&#8221; and &#8220;less than percentage colon&#8221; did not turn up anything for me in google, but thanks to stackoverflow: http://stackoverflow.com/questions/2676236/are-and-the-same-thing-as-embbed-code-expression-blocks &#60;%: is almost the same as &#60;%= except that the output from &#60;%: is automagically html encoded.]]></description>
		<link>http://www.uhleeka.com/blog/2010/05/less-than-percent-colon-code-render-blocks-in-asp-net/</link>
			</item>
	<item>
		<title>Essential Freeware</title>
		<description><![CDATA[Firefox &#8211; web browser http://www.mozilla.com/en-US/firefox/personal.html Firefox plugins Adblock Plus &#8211; https://addons.mozilla.org/en-US/firefox/addon/1865 BetterPrivacy &#8211; https://addons.mozilla.org/en-US/firefox/addon/6623 DownThemAll &#8211; https://addons.mozilla.org/en-US/firefox/addon/201 Firebug &#8211; https://addons.mozilla.org/en-US/firefox/addon/1843 7-zip &#8211; file compression/decompression library http://7-zip.org CutePDF &#8211; virtual printer: print to a PDF http://www.cutepdf.com Avast &#8211; antivirus http://www.avast.com Picasa &#8211; picture and video organizer http://picasa.google.com/]]></description>
		<link>http://www.uhleeka.com/blog/2010/01/essential-freeware/</link>
			</item>
	<item>
		<title>Generic List&lt;T&gt; to DataTable using Reflection</title>
		<description><![CDATA[The following function takes in a System.Collections.Generic.List&#60;T&#62; and returns a System.Data.DataTable with the properties (via reflection) of T as columns. public static System.Data.DataTable ListToDataTable&#60;T&#62;( &#160; &#160; System.Collections.Generic.IList&#60;T&#62; elements) { &#160; &#160; System.Reflection.PropertyInfo[] arrPropInfo = typeof(T).GetProperties(); &#160; &#160; System.Data.DataTable dt = new DataTable(); &#160; &#160; System.Data.DataRow dr; &#160; &#160; foreach (System.Reflection.PropertyInfo pInfo in arrPropInfo) &#160; &#160; [...]]]></description>
		<link>http://www.uhleeka.com/blog/2010/01/generic-list-to-datatable-using-reflection/</link>
			</item>
	<item>
		<title>C# Serialization</title>
		<description><![CDATA[Xml Serialization and Binary Serialization to a Base64 string Xml Serialization Snippit: Take a serializable object and serialize it into an xml string, stored in a System.Text.StringBuilder System.Xml.Serialization.XmlSerializer serializer = &#160; &#160; new System.Xml.Serialization.XmlSerializer(typeof(ObjectToSerialize)); System.Text.StringBuilder sb = new System.Text.StringBuilder(); using (System.IO.StringWriter stringWriter = new System.IO.StringWriter(sb)) { &#160; &#160; serializer.Serialize(stringWriter, myObject); &#160; &#160; stringWriter.Close(); } Binary [...]]]></description>
		<link>http://www.uhleeka.com/blog/2010/01/c-serialization/</link>
			</item>
	<item>
		<title>VirtualBox 3.1 &#8211; Install Windows XP Guest on Ubuntu 9.04 Host</title>
		<description><![CDATA[VirtualBox 3.1 significantly changed the way that harddisks, dvd/cd drives and floppies are mounted. The following steps are to install Windows XP as a guest on an Ubuntu 9.04 host with a IntelAhci SATA controller. Make sure you download the Windows XP Intel SATA Drivers and unzip to extract &#8220;F32.IMA&#8221;. sudo -i To begin the [...]]]></description>
		<link>http://www.uhleeka.com/blog/2009/12/virtualbox-3-1-install-windows-xp-guest-on-ubuntu-9-04-host/</link>
			</item>
	<item>
		<title>bubbletip! A jQuery Coda-style bubble tooltip plugin</title>
		<description><![CDATA[Download http://code.google.com/p/bubbletip/downloads/list Demo page http://uhleeka.com/demo/bubbletip/ Discuss http://groups.google.com/group/bubbletip Features multiple tips on a page multiple tips per jQuery element tips open outward in four directions: up down left right tips can be: anchored to the triggering jQuery element absolutely positioned opened at the current mouse coordinates anchored to a specified jQuery element IE png transparency is [...]]]></description>
		<link>http://www.uhleeka.com/blog/2009/11/bubbletip/</link>
			</item>
	<item>
		<title>VirtualBox BSOD p3.sys</title>
		<description><![CDATA[After converting a physical machine to .vmdk via VMWare Converter, I got a BSOD indicating that there was a problem with p3.sys when trying to boot. The Windows XP system was running on a PII 600mHz Dell Optiplex from the year 2000. To fix, boot in Safe Mode and run the following at a command [...]]]></description>
		<link>http://www.uhleeka.com/blog/2009/10/virtualbox-bsod-p3-sys/</link>
			</item>
	<item>
		<title>Install Windows XP Guest on Ubuntu 9.04 Host</title>
		<description><![CDATA[Create a Windows XP VirtualBox guest from scratch using a SATA harddrive. Download the Windows XP Intel SATA Drivers and unzip to extract F32.IMA Hit F6 during setup to select the Intel(R) 82801HEM/HBM SATA AHCI Controller (Mobile ICH8M-E/M) sudo -i VBoxManage createhd --filename /srv/virtualbox/harddisks/CHANGEME.vdi --size 20480 \ --variant Standard VBoxManage createvm --name CHANGEME --ostype "WindowsXP" [...]]]></description>
		<link>http://www.uhleeka.com/blog/2009/10/install-windows-xp-guest-on-ubuntu-9-04-host/</link>
			</item>
	<item>
		<title>Limiting network file transfer throughput with rsync</title>
		<description><![CDATA[To transfer a large amount of data (200GB) across a 100mbps network without saturating the connection, I used rsync with the &#8211;bwlimit=KBps flag. Transferring from Windows to Ubuntu 9.04, I first mounted the windows share: sudo mkdir /mnt/winshare sudo mount -t smbfs -o username=user,password=pass //winserver/share /mnt/winshare Next, run rsync with a specified bwlimit. Optionally, unmount [...]]]></description>
		<link>http://www.uhleeka.com/blog/2009/10/limiting-network-file-transfer-throughput-with-rsync/</link>
			</item>
</channel>
</rss>
