<?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>.NET Hell &#38; Heaven &#187; Programming</title>
	<atom:link href="http://www.florinraicu.com/category/programming/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.florinraicu.com</link>
	<description>First, solve the problem. Then, write the code.</description>
	<lastBuildDate>Sun, 18 Jul 2010 07:56:58 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Visual Studio color schemes</title>
		<link>http://www.florinraicu.com/visual-studio-color-schemes/</link>
		<comments>http://www.florinraicu.com/visual-studio-color-schemes/#comments</comments>
		<pubDate>Thu, 27 May 2010 20:24:19 +0000</pubDate>
		<dc:creator>Florin RAICU</dc:creator>
				<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://www.florinraicu.com/?p=107</guid>
		<description><![CDATA[Are you looking for nice Visual Studio color schemes?
You should start from here.
]]></description>
			<content:encoded><![CDATA[<p>Are you looking for nice Visual Studio color schemes?</p>
<p>You should start from <a href="http://studiostyles.info/">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://js-kit.com/rss/www.florinraicu.com/p=107</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing oci8 Php extension in 3 steps</title>
		<link>http://www.florinraicu.com/installing-oci8-php-extensions-in-3-steps/</link>
		<comments>http://www.florinraicu.com/installing-oci8-php-extensions-in-3-steps/#comments</comments>
		<pubDate>Thu, 17 Dec 2009 13:09:17 +0000</pubDate>
		<dc:creator>Florin RAICU</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[oci8]]></category>
		<category><![CDATA[Php]]></category>

		<guid isPermaLink="false">http://www.florinraicu.com/?p=103</guid>
		<description><![CDATA[Step 1
Download and install the Instant Client rpms from oracle which you can get here http://www.oracle.com/technology/tech/oci/instantclient/instantclient.html.


# rpm -ivh oracle-instantclient11.1-basic-11.1.0.7.0-1.x86_64.rpm
# rpm -ivh oracle-instantclient11.1-devel-11.1.0.7.0-1.x86_64.rpm


Step 2
Compile and install the oci8 extension


#
pear install pecl/oci8


Step 3
Edit your php.ini file (/etc/php.ini) and add the extension=oci8.so in the Dynamic extensions section.
]]></description>
			<content:encoded><![CDATA[<ol><strong>Step 1</strong></ol>
<ol>Download and install the Instant Client rpms from oracle which you can get here <a href="http://www.oracle.com/technology/tech/oci/instantclient/instantclient.html">http://www.oracle.com/technology/tech/oci/instantclient/instantclient.html</a>.</ol>
<pre>
<div class="codesnip-container" >
<div class="html4strict codesnip" style="font-family:monospace;"># rpm -ivh oracle-instantclient11.1-basic-11.1.0.7.0-1.x86_64.rpm
# rpm -ivh oracle-instantclient11.1-devel-11.1.0.7.0-1.x86_64.rpm</div>
</div>
</pre>
<ol><strong>Step 2</strong></ol>
<ol>Compile and install the oci8 extension</ol>
<pre>
<div class="codesnip-container" >
<div class="html4strict codesnip" style="font-family:monospace;">#
pear install pecl/oci8</div>
</div>
</pre>
<ol><strong>Step 3</strong></ol>
<ol>Edit your php.ini file (/etc/php.ini) and add the extension=oci8.so in the Dynamic extensions section.</ol>
]]></content:encoded>
			<wfw:commentRss>http://js-kit.com/rss/www.florinraicu.com/p=103</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Input formatting &#8211; apply width to a label</title>
		<link>http://www.florinraicu.com/input-formatting-apply-width-to-a-label/</link>
		<comments>http://www.florinraicu.com/input-formatting-apply-width-to-a-label/#comments</comments>
		<pubDate>Tue, 27 Oct 2009 22:40:01 +0000</pubDate>
		<dc:creator>Florin RAICU</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[apply width label]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[label]]></category>
		<category><![CDATA[width]]></category>

		<guid isPermaLink="false">http://www.florinraicu.com/?p=69</guid>
		<description><![CDATA[Just a few minutes ago a friend of mine asked me how can he apply width attribute to a label (he&#8217;s trying to format a form without using tables). Well the idea is very simple. You need to use the label element, but because the label is an inline element, it cannot have width value; [...]]]></description>
			<content:encoded><![CDATA[<p>Just a few minutes ago a friend of mine asked me how can he apply width attribute to a label (he&#8217;s trying to format a form without using tables). Well the idea is very simple. You need to use the label element, but because the label is an inline element, <strong>it cannot have width value</strong>; in order to do this you need to put <strong>display:block</strong> or<strong> float:left</strong>.</p>
<pre>
<div class="codesnip-container" >
<div class="html4strict codesnip" style="font-family:monospace;"><span class="sc-1">&lt;!--</span>
<span class="sc-1">label, input </span>
<span class="sc-1">{</span>
<span class="sc-1"> &nbsp; &nbsp;margin-top: 5px;</span>
<span class="sc-1"> &nbsp; &nbsp;float: left;</span>
<span class="sc-1">}</span>

<span class="sc-1">label </span>
<span class="sc-1">{</span>
<span class="sc-1"> &nbsp; display: block;</span>
<span class="sc-1"> &nbsp; width: 100px;</span>
<span class="sc-1">}</span>
<span class="sc-1">--&gt;</span></div>
</div>
</pre>
]]></content:encoded>
			<wfw:commentRss>http://js-kit.com/rss/www.florinraicu.com/p=69</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ASP.NET 4 Videos</title>
		<link>http://www.florinraicu.com/asp-net-4-videos/</link>
		<comments>http://www.florinraicu.com/asp-net-4-videos/#comments</comments>
		<pubDate>Sun, 25 Oct 2009 09:38:00 +0000</pubDate>
		<dc:creator>Florin RAICU</dc:creator>
				<category><![CDATA[ASP.NET Programming]]></category>
		<category><![CDATA[Microsoft Stuff]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://www.florinraicu.com/?p=62</guid>
		<description><![CDATA[
ASP.NET 4 and Marcin Dobosz on New Markup from Old Controls - Marcin Dobosz
ASP.NET 4 and ASP.NET MVC 2 with Eilon Lipton &#8211; Eilon Lipton
ASP.NET 4 and Phil Haack (and son!) - Phil Haack
ASP.NET 4 and David Fowler on LinqExtender &#8211; David Fowler

Florin RAICU
]]></description>
			<content:encoded><![CDATA[<ul>
<li><a href="http://channel9.msdn.com/posts/Glucose/Hanselminutes-on-9-ASPNET-4-and-Marcin-Dobosz-on-New-Markup-from-Old-Controls/" target="_blank">ASP.NET 4 and Marcin Dobosz on New Markup from Old Controls</a> - Marcin Dobosz</li>
<li><a href="http://channel9.msdn.com/posts/Glucose/Hanselminutes-on-9-ASPNET-4-and-ASPNET-MVC-2-with-Eilon-Lipton/" target="_blank">ASP.NET 4 and ASP.NET MVC 2 with Eilon Lipton</a> &#8211; Eilon Lipton</li>
<li><a href="http://channel9.msdn.com/posts/Glucose/Hanselminutes-on-9-ASPNET-4-and-Phil-Haack-and-son/" target="_blank">ASP.NET 4 and Phil Haack (and son!)</a> - Phil Haack</li>
<li><a href="http://channel9.msdn.com/posts/Glucose/Hanselminutes-on-9-ASPNET-4-and-David-Fowler-on-LinqExtender/" target="_blank">ASP.NET 4 and David Fowler on LinqExtender</a> &#8211; David Fowler</li>
</ul>
<p>Florin RAICU</p>
]]></content:encoded>
			<wfw:commentRss>http://js-kit.com/rss/www.florinraicu.com/p=62</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Visual Studio 2010 and .NET Framework 4.0</title>
		<link>http://www.florinraicu.com/visual-studio-2010-and-net-framework-4-0/</link>
		<comments>http://www.florinraicu.com/visual-studio-2010-and-net-framework-4-0/#comments</comments>
		<pubDate>Wed, 07 Oct 2009 18:28:02 +0000</pubDate>
		<dc:creator>Florin RAICU</dc:creator>
				<category><![CDATA[ASP.NET Programming]]></category>
		<category><![CDATA[Microsoft Stuff]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[.NET Framework 4.0]]></category>
		<category><![CDATA[Scott Guthrie]]></category>
		<category><![CDATA[Visual studio 2010]]></category>

		<guid isPermaLink="false">http://www.florinraicu.com/?p=46</guid>
		<description><![CDATA[If you like to see what Visual Studio 2010 and .NET Framework 4.0 can do for you, for sure you want to watch this video. Scott Guthrie is making a very good presentation.
Florin RAICU
]]></description>
			<content:encoded><![CDATA[<p>If you like to see what Visual Studio 2010 and .NET Framework 4.0 can do for you, for sure you want to watch <a title="Visual Studio 2010 " href="http://channel9.msdn.com/posts/matthijs/Scott-Guthrie-Visual-Studio-2010-and-NET-Framework-40/http://" target="_blank">this video</a>. Scott Guthrie is making a very good presentation.</p>
<p>Florin RAICU</p>
]]></content:encoded>
			<wfw:commentRss>http://js-kit.com/rss/www.florinraicu.com/p=46</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>NHibernate 2.1.0 has been released</title>
		<link>http://www.florinraicu.com/nhibernate-2-1-0-has-been-released/</link>
		<comments>http://www.florinraicu.com/nhibernate-2-1-0-has-been-released/#comments</comments>
		<pubDate>Tue, 21 Jul 2009 08:38:55 +0000</pubDate>
		<dc:creator>Florin RAICU</dc:creator>
				<category><![CDATA[ASP.NET Programming]]></category>
		<category><![CDATA[NHibernate]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://www.florinraicu.com/?p=29</guid>
		<description><![CDATA[NHibernate 2.1.0GA was released.
For download click here.
Florin RAICU
]]></description>
			<content:encoded><![CDATA[<p>NHibernate 2.1.0GA was released.</p>
<p>For download click <a href="http://sourceforge.net/projects/nhibernate/files/" target="_blank">here</a>.</p>
<p>Florin RAICU</p>
]]></content:encoded>
			<wfw:commentRss>http://js-kit.com/rss/www.florinraicu.com/p=29</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
