<?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>Sam Hooker &#187; 2010 &#187; May</title>
	<atom:link href="http://www.samhooker.net/2010/05/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.samhooker.net</link>
	<description>Sam Hooker</description>
	<lastBuildDate>Mon, 12 Mar 2012 19:34:42 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Is your ISP blocking Google?</title>
		<link>http://www.samhooker.net/2010/05/25/is-your-isp-blocking-google/</link>
		<comments>http://www.samhooker.net/2010/05/25/is-your-isp-blocking-google/#comments</comments>
		<pubDate>Wed, 26 May 2010 03:27:37 +0000</pubDate>
		<dc:creator>Sam</dc:creator>
				<category><![CDATA[Ethics]]></category>

		<guid isPermaLink="false">http://samhooker.net/?p=149</guid>
		<description><![CDATA[If you&#8217;re up to speed on the corporate greed side of the Net Neutrality argument, you&#8217;re aware that the major internet service providers (ISPs) would love to be able to charge us for access to Google&#8217;s services &#8212; namely YouTube, and namely because we download videos of kittens falling asleep at alarming rates, causing traffic [...]]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;re up to speed on the corporate greed side of the Net Neutrality argument, you&#8217;re aware that the major internet service providers (ISPs) would love to be able to charge us for access to Google&#8217;s services &#8212; namely <a title="Oooo! That kitten's falling asleep!" href="http://www.youtube.com" target="_blank">YouTube</a>, and namely because we download videos of kittens falling asleep at alarming rates, causing traffic on the ISPs&#8217; networks.</p>
<p>For the last few years, tech forums have been sprinkled with people reporting that periodically, they can get to any website they want, unless it&#8217;s a Google-owned site (Gmail, YouTube, etc.).  The problem usually resolves itself after a couple of hours.</p>
<h2>What&#8217;s going on?</h2>
<p>If my thoughts on the subject are to be believed, the ISPs are periodically blocking their DNS servers from redirecting to Google-owned sites.  This reduces the amount of data flowing across their networks, saving them money.</p>
<p>ISPs provide service to their customers in the hopes that they will not utilize high amounts of bandwidth.  Think in terms of an all-you-can-eat buffet: if you pay full price and eat one plate of food, you&#8217;ve given the restaurant a higher profit than the World-Hot-Dog-Eating-Champion who can skeletonize a bucket of fried chicken faster than I can come up with a metaphor.</p>
<h2>What do I do?</h2>
<p>First, set your router to use a <a title="Google Public DNS" href="http://code.google.com/speed/public-dns/" target="_blank">Google Public DNS server</a>.  (Due to the variety of commercially available routers, I cannot give you instructions for this &#8212; apologies.  Consult the manual that came with your router.  You DO have the manual, don&#8217;t you?)</p>
<p>If you&#8217;re having trouble reaching Google because you&#8217;re presently a victim of this atrocity, they have two server addresses: <strong>8.8.4.4</strong> and <strong>8.8.8.8</strong>.  You can also use other public DNS servers, but I can guarantee that these will be able to find Google!</p>
<p>Once you&#8217;re back up and running, email your ISP and demand an explanation.  You contracted with them to provide a service, and if they are unable or unwilling to provide the service that they promised, you should be entitled to a credit on your bill.</p>
<p>(Good luck with actually getting a credit, but you&#8217;ll be standing up for fair practices when you tell your ISP that you won&#8217;t sit idly by while they take your money for nothing!)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.samhooker.net/2010/05/25/is-your-isp-blocking-google/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Inconsistent CSS: DIV widths in IE and FireFox</title>
		<link>http://www.samhooker.net/2010/05/09/inconsistent-css-div-widths-in-ie-and-firefox/</link>
		<comments>http://www.samhooker.net/2010/05/09/inconsistent-css-div-widths-in-ie-and-firefox/#comments</comments>
		<pubDate>Mon, 10 May 2010 03:25:01 +0000</pubDate>
		<dc:creator>Sam</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Standards]]></category>

		<guid isPermaLink="false">http://samhooker.net/?p=144</guid>
		<description><![CDATA[If you&#8217;ve ever tested your pages in more than one browser (and you always should), you&#8217;ve probably run into a situation where Internet Explorer and Firefox rendered the width of one of your &#60;div&#62;s differently. Fix it in one, and the other is wrong. What&#8217;s going on? This is typically referred to as the box [...]]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;ve ever tested your pages in more than one browser (and you always should), you&#8217;ve probably run into a situation where Internet Explorer and Firefox rendered the width of one of your &lt;div&gt;s differently.  Fix it in one, and the other is wrong.</p>
<p>What&#8217;s going on?</p>
<p>This is typically referred to as the <strong>box model problem</strong>.  IE and FF interpret the <em>padding</em> element differently.  Chances are you&#8217;ve pulled up this article in a teeth-grinding search to correct the problem, so I&#8217;ll just make with the solution:</p>
<p><strong>Add another &lt;div&gt; for your padding.</strong></p>
<blockquote><p><em>&lt;div class=&#8221;TheStuffYouAlreadyHave&#8221;&gt;<br />
&nbsp;&nbsp;&lt;div class=&#8221;ThePaddingYouSeparated&#8221;&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;Content<br />
&nbsp;&nbsp;&lt;/div&gt;<br />
&lt;/div&gt;</em>
</p></blockquote>
<p>Support web standards!  Go to <a href="http://webstandards.org target="_blank">WebStandards.org</a>, educate yourself, and prevent articles like this from being necessary!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.samhooker.net/2010/05/09/inconsistent-css-div-widths-in-ie-and-firefox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

