<?xml version="1.0" encoding="UTF-8"?><rss version="2.0">
	<channel>
		<atom:link rel="hub" href="http://tumblr.superfeedr.com/" xmlns:atom="http://www.w3.org/2005/Atom"/>
		<description></description>
		<title>Justin Paul Silva</title>
		<link>http://jpsilva.com/</link>
		
				<item>
			<title>Specifying Tab Stop Width</title>
			<description>&lt;p&gt;I recently scoured the internet, looking for a way to specify the width of a tab stop (\t) in CSS. It turns out that CSS doesn&amp;#8217;t offer any sort of solution. You may be asking, &amp;#8220;Why would you even want to do that? After all, browsers ignore whitespace in HTML.&amp;#8221; That&amp;#8217;s true, unless of course you&amp;#8217;re using a pre tag or any other tag with the whitespace set to pre in CSS, like the code examples on this site.&lt;/p&gt;

&lt;p&gt;What we&amp;#8217;ll do is use Javascript to search the </description>
			<link>http://jpsilva.com/blog/998762949/Specifying+Tab+Stop+Width</link>
			<guid>http://jpsilva.com/blog/998762949/Specifying+Tab+Stop+Width</guid>
			<pubDate>Mon 23 Aug 2010 17:00:00 +0000</pubDate>
		</item>
				<item>
			<title>Clean URLs Part 2</title>
			<description>&lt;p&gt;My previous article, Clean URLs with htaccess shows a very basic way of going about cleaning up your URLs. Now, let&amp;#8217;s assume that not all of your pages are meant to look or act the same.&lt;/p&gt;


How can we use different keywords, title, and description on each page?
	How can we use different Javascript or CSS files on different pages?
	How can we use add different header content for one or more pages?

clean.php
&lt;p&gt;This is what a typical PHP file will look like. We will store the title, k</description>
			<link>http://jpsilva.com/blog/994098920/Clean+URLs+Part+2</link>
			<guid>http://jpsilva.com/blog/994098920/Clean+URLs+Part+2</guid>
			<pubDate>Sun 22 Aug 2010 19:44:00 +0000</pubDate>
		</item>
				<item>
			<title>Clean URLs with htaccess</title>
			<description>&lt;p&gt;Here&amp;#8217;s a bit of code I use on most of my smaller sites, including this one, to clean up the URLs.
This is the simplest way I know how to do it. A few benefits of clean URLs:&lt;/p&gt;


They just look nicer and more professional
	They&amp;#8217;re easy to read and remember
	The average web user doesn&amp;#8217;t care about webpage file extentions, nor should they
	It hides the underlying technology
	The URLs become more SEO friendly
	It allows you to use cleaner code

.htaccess
&amp;lt;IfModule mod_rewri</description>
			<link>http://jpsilva.com/blog/984656233/Clean+URLs+with+htaccess</link>
			<guid>http://jpsilva.com/blog/984656233/Clean+URLs+with+htaccess</guid>
			<pubDate>Fri 20 Aug 2010 23:52:00 +0000</pubDate>
		</item>
				<item>
			<title>3D Javascript Effect</title>
			<description>&lt;p&gt;Here&amp;#8217;s a little Javascript effect that will give your site a subtle 3D look by simulating a parallax between
the content of your site and the background. Try out the effect now by scrolling up and down on my site. CSS
only gives us two choices for background-attachment: scroll (default) and fixed. This script is sort of halfway
between the two by making the background scroll half as fast as the content.&lt;/p&gt;

$(function(){
	$(&quot;body&quot;).css(&quot;backgroundAttachment&quot;, &quot;fixed&quot;);
	$(window).scrol</description>
			<link>http://jpsilva.com/blog/720572235/3D+Javascript+Effect</link>
			<guid>http://jpsilva.com/blog/720572235/3D+Javascript+Effect</guid>
			<pubDate>Mon 21 Jun 2010 03:46:00 +0000</pubDate>
		</item>
				<item>
			<title>Calculating Business Days in PHP</title>
			<description>&lt;p&gt;For one of my client&amp;#8217;s projects, The Superdups Self-Service Quoter,
I had to write an algorithm to estimate due date of each order based on a selected turn around time in business days.
This would probably be a simply task in Ruby on Rails, but unfortunately, that wasn&amp;#8217;t an option.&lt;/p&gt;

The Code
class DateHelper {
	// Holidays must be in order
	var $holidays = array(&quot;2010-07-04&quot;, &quot;2010-09-06&quot;, &quot;2010-09-23&quot;, &quot;2010-10-11&quot;, &quot;2010-11-01&quot;, &quot;2010-11-11&quot;,  &quot;2010-11-25&quot;, &quot;2010-12-25&quot;);
	c</description>
			<link>http://jpsilva.com/blog/663603149/Calculating+Business+Days+in+PHP</link>
			<guid>http://jpsilva.com/blog/663603149/Calculating+Business+Days+in+PHP</guid>
			<pubDate>Fri 04 Jun 2010 15:29:00 +0000</pubDate>
		</item>
			</channel>
</rss>