<?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>israeljernigan.com &#187; learning</title>
	<atom:link href="http://www.israeljernigan.com/tag/learning/feed" rel="self" type="application/rss+xml" />
	<link>http://www.israeljernigan.com</link>
	<description>personal web blogger</description>
	<lastBuildDate>Sat, 17 Oct 2009 16:28:47 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>CSS Float: The Basics To Get You Started</title>
		<link>http://www.israeljernigan.com/css-float-the-basics-to-get-you-started</link>
		<comments>http://www.israeljernigan.com/css-float-the-basics-to-get-you-started#comments</comments>
		<pubDate>Fri, 18 Jan 2008 11:00:13 +0000</pubDate>
		<dc:creator>Israel Jernigan</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[float]]></category>
		<category><![CDATA[learning]]></category>

		<guid isPermaLink="false">http://www.israeljernigan.com/css-float-the-basics-to-get-you-started</guid>
		<description><![CDATA[This is the first a series of blog posts that I&#8217;m going to be writing that has to do with the CSS float property. I hope you can learn from this and be able to have a broader understanding of how you can use CSS to your benefit.
&#8220;So what is it good for&#8221;, you say? [...]]]></description>
			<content:encoded><![CDATA[<p>This is the first a series of blog posts that I&#8217;m going to be writing that has to do with the CSS <strong>float</strong> property. I hope you can learn from this and be able to have a broader understanding of how you can use CSS to your benefit.</p>
<p><strong>&#8220;So what is it good for&#8221;,</strong> you say? One of the easiest uses of the <strong>float</strong> property is to wrap text around a html block-level element.</p>
<p>You can make an image or even a section on your webpage have text wrap around it. I will show you examples of both.<br />
<span id="more-26"></span><br />
First, you will need a long paragraph</p>
<pre>&lt;div id="post-float-content"&gt;&lt;p&gt;This is a paragraph of text to experiment with the float property. This is a paragraph of text to experiment with the float property. This is a paragraph of text to experiment with the float property. This is a paragraph of text to experiment with the float property. This is a paragraph of text to experiment with the float property. &lt;/p&gt;&lt;/div&gt;</pre>
<p>Next, you will need the element you want floated.</p>
<pre>&lt;span class="post-float-element"&gt;This is the html element being floated.&lt;/span&gt;</pre>
<p>If you want you can also use an image or any other element you want floated. Here is an example.</p>
<pre>&lt;img src="#" class="post-float-element" alt="Image Test for Float"  /&gt;</pre>
<p>Any element you assign the <strong>float</strong> property to will become a block-level element.</p>
<p>Now put the code together, and you will soon be on your way to text wrapping bliss. For this example, I want my floated element to be near the top. So I will put it outside the paragraph tag. You can put it anywhere you like, even inside the paragraph. But you won&#8217;t see any wrapping if you put it at the end of the paragraph. Feel free to experiment until you get what you are looking to achieve.</p>
<h3>Now for the CSS.</h3>
<p>I&#8217;ve added some basic styling to the floated element. So that you can see how the block-level element is behaving inside the paragraph. It should be very apparent what is going on.</p>
<pre>
.post-float-element{
float:left;
width:100px;
height:50px;
border:1px solid #444;
padding:2px;
background-color:#dedede;
clear:left;
}</pre>
<p>Here is the example in full. I hope you&#8217;ve enjoyed this basic post about the <strong>float</strong> property. There will be more to come integrating the <strong>float</strong> property into other parts of your website.</p>
<p id="post-float-content"><span class="post-float-element">This is the html element being floated.</span>This is a paragraph of text to experiment with the float property. This is a paragraph of text to experiment with the float property. This is a paragraph of text to experiment with the float property. This is a paragraph of text to experiment with the float property.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.israeljernigan.com/css-float-the-basics-to-get-you-started/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSS Learning Resources</title>
		<link>http://www.israeljernigan.com/css-learning-resources</link>
		<comments>http://www.israeljernigan.com/css-learning-resources#comments</comments>
		<pubDate>Mon, 14 Jan 2008 15:30:15 +0000</pubDate>
		<dc:creator>Israel Jernigan</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[learning]]></category>

		<guid isPermaLink="false">http://www.israeljernigan.com/css-learning-resources</guid>
		<description><![CDATA[One of the first coding languages I taught myself was CSS. I&#8217;ve learned the wrong way and right way to do many of the tasks CSS can handle. Hopefully some of the resources below will help someone else alpong their way to CSS mastery.
Books
The first book I ever purchased about CSS was very helpful at [...]]]></description>
			<content:encoded><![CDATA[<p>One of the first coding languages I taught myself was <a href="http://en.wikipedia.org/wiki/Cascading_Style_Sheets" target="_blank" title="Wikipedia.org link for CSS">CSS</a>. I&#8217;ve learned the wrong way and right way to do many of the tasks CSS can handle. Hopefully some of the resources below will help someone else alpong their way to CSS mastery.</p>
<h3>Books</h3>
<p>The first book I ever purchased about CSS was very helpful at explaining <em>why</em> you do certain things with CSS.</p>
<p>[asa personal_post]1590596145[/asa]</p>
<p>Another book I have used many times on ways to work around old browsers or weird quirks was helpful in my CSS learning experience.</p>
<p>[asa personal_post]0764579851[/asa]</p>
<p>The book below is a great reference for terminology and rules. A must for those who don&#8217;t remember what a :pseudo-element refers to.</p>
<p>[asa personal_post]0596515057[/asa]</p>
<h3>Website Links</h3>
<p>One of the best <a href="http://www.cssplay.co.uk/index.html" title="A must for your Bookmark list." target="_blank">CSS <strong>example</strong> websites</a> out there.</p>
<p>Basic <a href="http://www.alvit.de/css-showcase/css-navigation-techniques-showcase.php" title="A great site of sample CSS menus." target="_blank"><strong>menu</strong> designs</a> done in CSS.</p>
<p><a href="http://www.smashingmagazine.com/2007/05/10/70-expert-ideas-for-better-css-coding/" title="Examples and links to CSS best practices." target="_blank">Great list</a> of CSS <strong>best practices</strong>.</p>
<p>CSS <strong>layouts</strong> done well for almost <a href="http://blog.html.it/layoutgala/" title="A great grouping of CSS layout/design." target="_blank">any situation</a>.</p>
<h3>Random Resources</h3>
<p><a href="http://www.29digital.net/grid/" title="Save the link, and use it!" target="_blank">Grid calculator</a> for your layouts.</p>
<p>What you <a href="http://www.smashingmagazine.com/2007/07/27/css-specificity-things-you-should-know/" title="A great link that explains common confusing CSS concepts." target="_blank">should know</a> about CSS specificity.</p>
<p>An Em to Px <a href="http://riddle.pl/emcalc/" title="A great resource for fluid layouts." target="_blank">calculator</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.israeljernigan.com/css-learning-resources/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP Learning resources</title>
		<link>http://www.israeljernigan.com/php-learning-resources</link>
		<comments>http://www.israeljernigan.com/php-learning-resources#comments</comments>
		<pubDate>Fri, 11 Jan 2008 15:35:57 +0000</pubDate>
		<dc:creator>Israel Jernigan</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[learning]]></category>

		<guid isPermaLink="false">http://www.israeljernigan.com/php-learning-resources</guid>
		<description><![CDATA[There are a few resources for PHP that I feel have been vital in my learning the language. From books to websites, I will try and give a short grouping that will hopefully help you understand PHP better.
Books
Some of the best help books I&#8217;ve found are written by, Larry Ullman. Here is one of his [...]]]></description>
			<content:encoded><![CDATA[<p>There are a few resources for PHP that I feel have been vital in my learning the language. From books to websites, I will try and give a short grouping that will hopefully help you understand PHP better.</p>
<h3>Books</h3>
<p>Some of the best help books I&#8217;ve found are written by, Larry Ullman. Here is one of his best.</p>
<p>[asa personal_post]0321336577[/asa]</p>
<p>This was my first PHP book. It&#8217;s not the greatest book out there, but if you want full application examples this is the book for you.</p>
<p>[asa personal_post]0764579665[/asa]</p>
<p>This next book isn&#8217;t a PHP book, but it is a great resource for learning <a href="http://en.wikipedia.org/wiki/Mysql" target="_blank" title="Wikipedia.org link for MySQL">MySQL</a>. MySQL is free database component that works great with PHP.</p>
<p>[asa personal_post]0672327120[/asa]</p>
<h3>Website Links</h3>
<p>PHP <strong>cookies</strong> were something I didn&#8217;t learn from a book. Here are a few links that really helped me develop those skills. <a href="http://www.go4expert.com/forums/showthread.php?t=219" title="PHP and cookies tutorial" target="_blank">PHP and cookies</a>. <a href="http://us2.php.net/manual/en/function.setcookie.php" title="An amazing resource for everything PHP" target="_blank">PHP.net documentation</a>.</p>
<p><a href="http://www.webdesignforums.net/archive/index.php/t-21029.html" title="Great forum resource for PHP" target="_blank">Here is a great <strong>forum</strong></a>, not just for PHP, with lots of questions answered about PHP.</p>
<p>I wanted to learn about <strong>REGEXP</strong> in PHP, mostly for security verification. Here are two links that helped pave the way. <a href="http://www.jellyandcustard.com/2006/06/13/regular-expressions-in-php/" title="There are basic concepts and examples for REGEXP in PHP" target="_blank">The basics</a>. <a href="http://www.roscripts.com/PHP_regular_expressions_examples-136.html" title="Using custom functions to integrate REGEXP in PHP" target="_blank">More advanced methods</a>.</p>
<p>Just a great website with lots of PHP <a href="http://www.goodphptutorials.com/" title="A really good tutorial website" target="_blank">centered <strong>tutorials</strong></a>.</p>
<p><a href="http://www.php.net" title="You need to use this as a resource and for learning." target="_blank">PHP.net</a>. Just use it!</p>
<h3>Random Resources</h3>
<p>Just some <a href="http://www.reinholdweber.com/?p=3" title="Optimize and prioritize your PHP" target="_blank">good ideas to implement</a>.</p>
<p>Sometimes there are <a href="http://www.digital-web.com/" title="Try searching here for PHP" target="_blank">good articles at Digital-Web.com</a> about PHP.</p>
<p>You should at least <a href="http://passwordrobot.com/blog/5-htaccess-tricks-every-webmaster-should-know/" title="You never know when you might need to use this" target="_blank">check out</a> .htaccess.</p>
<p>Great <a href="http://www.alistapart.com/" title="Well written articles about alot of different things concerning the digital world." target="_blank">articles at alistapart.com</a> about alot of things, including php.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.israeljernigan.com/php-learning-resources/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Learning ASP.NET</title>
		<link>http://www.israeljernigan.com/learning-aspnet</link>
		<comments>http://www.israeljernigan.com/learning-aspnet#comments</comments>
		<pubDate>Tue, 08 Jan 2008 15:41:14 +0000</pubDate>
		<dc:creator>Israel Jernigan</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[asp.net]]></category>
		<category><![CDATA[learning]]></category>

		<guid isPermaLink="false">http://www.israeljernigan.com/learning-aspnet</guid>
		<description><![CDATA[So one of my goals this year is to learn ASP.NET. So I looked at book reviews, read blog articles, and talked to some friends as to what I should learn about ASP. I got out of it that I should learn C#, learn what MVC is, and to just start coding ASP.NET on my [...]]]></description>
			<content:encoded><![CDATA[<p>So one of my goals this year is to learn ASP.NET. So I looked at book reviews, read blog articles, and talked to some friends as to what I should learn about ASP. I got out of it that I should learn <a href="http://en.wikipedia.org/wiki/C_sharp" target="_blank" title="Wikipedia.org link for C#">C#</a>, learn what <a href="http://en.wikipedia.org/wiki/Model-view-controller" target="_blank" title="Wikipedia.org link for MVC">MVC</a> is, and to just start coding ASP.NET on my own.</p>
<h3>Books Recommended</h3>
<p>Here is the list of books that I researched were really good at the teaching the basics, and had amazing reviews on Amazon.</p>
<p>[asa personal_post]0975240285[/asa]</p>
<p>[asa personal_post]059600916X[/asa]</p>
<h3>Online Tutorials</h3>
<p>Also, one of the best resources for tutorials is actually <a href="http://asp.net/learn/" title="Watch video tutorials on asp.net" target="_blank">asp.net</a>. There are video tutorials from &#8216;best coding practices&#8217; to &#8216;integrating AJAX&#8217;. You should really check them out if you like video tutorials.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.israeljernigan.com/learning-aspnet/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
