<?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/"
	>

<channel>
	<title>SEO, Online Marketing, and Web Production</title>
	<atom:link href="http://www.maxkpage.com/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.maxkpage.com/blog</link>
	<description></description>
	<pubDate>Tue, 13 Sep 2011 14:17:53 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>How to clear the iOS and Mobile Webkit HTML5 Canvas</title>
		<link>http://www.maxkpage.com/blog/how-to-clear-the-ios-and-mobile-webkit-html5-canvas/</link>
		<comments>http://www.maxkpage.com/blog/how-to-clear-the-ios-and-mobile-webkit-html5-canvas/#comments</comments>
		<pubDate>Mon, 12 Sep 2011 23:59:29 +0000</pubDate>
		<dc:creator>maxkpage</dc:creator>
		
		<category><![CDATA[Canvas]]></category>

		<category><![CDATA[HTML5]]></category>

		<category><![CDATA[How To]]></category>

		<guid isPermaLink="false">http://www.maxkpage.com/blog/?p=181</guid>
		<description><![CDATA[Took me forever to find this, but hopefully you found this post faster:
You can either use &#8220;context.clearRect(0, 0, canvas.width, canvas.height);&#8221; Which I found only worked sometimes, and best in desktop version of the browser.
What I did was the width trick (setting the canvas width to itself clears EVERYTHING), and since I had also drawn lines [...]]]></description>
			<content:encoded><![CDATA[<p>Took me forever to find this, but hopefully you found this post faster:</p>
<p>You can either use &#8220;context.clearRect(0, 0, canvas.width, canvas.height);&#8221; Which I found only worked sometimes, and best in desktop version of the browser.</p>
<p>What I did was the width trick (setting the canvas width to itself clears EVERYTHING), and since I had also drawn lines I had to run the beginPath() method like this:</p>
<p><code style="font-size:16px; font-weight:bold; padding:20px; background:#e2e2e2; display:block;"><br />
context.fillStyle = "#000";<br />
context.fillRect(0, 0, context.canvas.width, context.canvas.height);<br />
context.canvas.width = context.canvas.width;<br />
context.beginPath();<br />
</code></p>
<p>Creating a rectangle that paints the whole screen was key for mobile. beginPath() will clear all the old paths for you. For some reason it kept leaving the last path I drew even when I was trying to clear the whole thing. Have fun!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.maxkpage.com/blog/how-to-clear-the-ios-and-mobile-webkit-html5-canvas/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to setup an Arduino board with LEDs - Blink Morse Code</title>
		<link>http://www.maxkpage.com/blog/arduino-fun-with-leds-blink-morse-code/</link>
		<comments>http://www.maxkpage.com/blog/arduino-fun-with-leds-blink-morse-code/#comments</comments>
		<pubDate>Sat, 30 Jul 2011 15:05:56 +0000</pubDate>
		<dc:creator>maxkpage</dc:creator>
		
		<category><![CDATA[Arduino]]></category>

		<category><![CDATA[How To]]></category>

		<guid isPermaLink="false">http://www.maxkpage.com/blog/?p=164</guid>
		<description><![CDATA[Got my hands on my first Arduino project this weekend. My friend was nice enough to lend me an Arduino Duemilanove board with a couple starter supplies.
I did a little enhancement on the basic turn an LED on/off by giving it a string of char representing morse code and making it blink to that.
Here is [...]]]></description>
			<content:encoded><![CDATA[<p>Got my hands on my first Arduino project this weekend. My friend was nice enough to lend me an Arduino Duemilanove board with a couple starter supplies.</p>
<p>I did a little enhancement on the basic turn an LED on/off by giving it a string of char representing morse code and making it blink to that.</p>
<p>Here is the board setup:</p>
<p><img class="size-full wp-image-165" title="Ardunio LED Board setup" src="http://www.maxkpage.com/blog/wp-content/uploads/2011/07/photo-on-2011-07-30-at-0950-3.jpg" alt="Ardunio LED breadbroad and wire setup" width="640" height="480" /></p>
<p>How to setup the board:</p>
<ol>
<li>Plug a wire from Pin 5 to the breadboard (red wire in pic above)</li>
<li>Continue the circuit by pluggin in a resistor from where Pin 5 connects on the breadboard to the where you wish to insert the LED</li>
<li>Connect the side of the LED that DOES NOT have the flat edge to the resistor on the breadboard</li>
<li>Plug the flat end on the LED in any row on the breadboard that is not where the other wires are connected</li>
<li>Connect a wire from where the flat end of the LED is connected to the Pin labeled &#8220;Gnd&#8221; (a.k.a. Ground on your Ardunio board) (white wire in pic above)</li>
</ol>
<p>Here is code to compile and upload to your Ardunio. The morse code is represented by dots and underscores. Read the comments in the code to get a clear understanding of what is going on:</p>
<p><script src="https://gist.github.com/1115619.js?file=gistfile1.c"></script></p>
<p>Not the most elegant, but I am a beginner so far. You should now see the LED blink whatever Morse code you write with periods and underscores. Have fun.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.maxkpage.com/blog/arduino-fun-with-leds-blink-morse-code/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Ruby on Rails strftime() options</title>
		<link>http://www.maxkpage.com/blog/ruby-on-rails-strftime-options/</link>
		<comments>http://www.maxkpage.com/blog/ruby-on-rails-strftime-options/#comments</comments>
		<pubDate>Sat, 26 Mar 2011 16:27:33 +0000</pubDate>
		<dc:creator>maxkpage</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.maxkpage.com/blog/?p=162</guid>
		<description><![CDATA[


Format

Meaning



%a
The abbreviated weekday name (“Sun”)


%A
The full weekday name (“Sunday”)


%b
The abbreviated month name (“Jan”)


%B
The full month name (“January”)


%c
The preferred local date and time representation


%d
Day of the month (01..31)


%H
Hour of the day, 24-hour clock (00..23)


%I
Hour of the day, 12-hour clock (01..12)


%j
Day of the year (001..366)


%m
Month of the year (01..12)


%M
Minute of the hour (00..59)


%p
Meridian indicator (“AM” or “PM”)


%S
Second [...]]]></description>
			<content:encoded><![CDATA[<table width="468" class="matrix">
<tbody>
<tr>
<th valign="top"><b>Format</b>
</th>
<th valign="top"><b>Meaning</b>
</th>
</tr>
<tr>
<td valign="top">%a</td>
<td valign="top">The abbreviated weekday name (“Sun”)</td>
</tr>
<tr>
<td valign="top">%A</td>
<td valign="top">The full weekday name (“Sunday”)</td>
</tr>
<tr>
<td valign="top">%b</td>
<td valign="top">The abbreviated month name (“Jan”)</td>
</tr>
<tr>
<td valign="top">%B</td>
<td valign="top">The full month name (“January”)</td>
</tr>
<tr>
<td valign="top">%c</td>
<td valign="top">The preferred local date and time representation</td>
</tr>
<tr>
<td valign="top">%d</td>
<td valign="top">Day of the month (01..31)</td>
</tr>
<tr>
<td valign="top">%H</td>
<td valign="top">Hour of the day, 24-hour clock (00..23)</td>
</tr>
<tr>
<td valign="top">%I</td>
<td valign="top">Hour of the day, 12-hour clock (01..12)</td>
</tr>
<tr>
<td valign="top">%j</td>
<td valign="top">Day of the year (001..366)</td>
</tr>
<tr>
<td valign="top">%m</td>
<td valign="top">Month of the year (01..12)</td>
</tr>
<tr>
<td valign="top">%M</td>
<td valign="top">Minute of the hour (00..59)</td>
</tr>
<tr>
<td valign="top">%p</td>
<td valign="top">Meridian indicator (“AM” or “PM”)</td>
</tr>
<tr>
<td valign="top">%S</td>
<td valign="top">Second of the minute (00..60)</td>
</tr>
<tr>
<td valign="top">%U</td>
<td valign="top">Week number of the current year, starting with the first Sunday as the first day of the first week (00..53)</td>
</tr>
<tr>
<td valign="top">%W</td>
<td valign="top">Week number of the current year, starting with the first Monday as the first day of the first week (00..53)</td>
</tr>
<tr>
<td valign="top">%w</td>
<td valign="top">Day of the week (Sunday is 0, 0..6)</td>
</tr>
<tr>
<td valign="top">%x</td>
<td valign="top">Preferred representation for the date alone, no time</td>
</tr>
<tr>
<td valign="top">%X</td>
<td valign="top">Preferred representation for the time alone, no date</td>
</tr>
<tr>
<td valign="top">%y</td>
<td valign="top">Year without a century (00..99)</td>
</tr>
<tr>
<td valign="top">%Y</td>
<td valign="top">Year with century</td>
</tr>
<tr>
<td valign="top">%Z</td>
<td valign="top">Time zone name</td>
</tr>
<tr>
<td valign="top">%%</td>
<td valign="top">Literal “%” character</td>
</tr>
</tbody>
</table>
]]></content:encoded>
			<wfw:commentRss>http://www.maxkpage.com/blog/ruby-on-rails-strftime-options/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to send SMS Text Messages with Twilio from Rails</title>
		<link>http://www.maxkpage.com/blog/how-to-send-sms-text-messages-with-twilio-from-rails/</link>
		<comments>http://www.maxkpage.com/blog/how-to-send-sms-text-messages-with-twilio-from-rails/#comments</comments>
		<pubDate>Mon, 21 Feb 2011 20:05:47 +0000</pubDate>
		<dc:creator>maxkpage</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.maxkpage.com/blog/?p=147</guid>
		<description><![CDATA[It was kind of confusing to find a straight forward example on how to send a text message through Twilio using Rails. Here is a step by step guide I wish I had.

Sign up for a free account with Twilio. You will get a good amount of free credit to play around with.
Install the Twilio [...]]]></description>
			<content:encoded><![CDATA[<p>It was kind of confusing to find a straight forward example on how to send a text message through Twilio using Rails. Here is a step by step guide I wish I had.</p>
<ol>
<li>Sign up for a free account with Twilio. You will get a good amount of free credit to play around with.</li>
<li>Install the <a href="https://github.com/twilio/twilio-ruby">Twilio Ruby Gem</a> by navigating to your project folder in Terminal and typing:
<pre><br/><code>sudo gem install twiliolib
</code><br/></pre>
</li>
<li>In your controller (create a new controller if you want), put this chunk of code at the very top. Replace SID, ACCOUNT_TOKEN, and CALLER_ID with what Twilio provides you:
<pre><br/><code>require "twiliolib.rb"

# your Twilio authentication credentials
ACCOUNT_SID = "put_your_sid_in_parentheses_here"
ACCOUNT_TOKEN = "put_your_token_in_parentheses_here"

# version of the Twilio REST API to use - do not change
API_VERSION = '2010-04-01'

# Sandbox phone number
# or outgoing Caller ID you have purchased through Twilio
CALLER_ID = "put_your_sandbox_phone_number_here"

#CALLER_PIN only needed to send using sandbox number. Looks like 9999-9999
CALLER_PIN = "put_your_sandbox_pin_number_here"
</code><br/></pre>
</li>
<li>Then in a method in that controller try this:
<pre><br/><code>#Text message info
t = {
  'From' => CALLER_ID,
  'To' => "replace_with_your_cell_num_in_parentheses",
  'Body' => ("#{CALLER_PIN} Twilio scales!")
}

begin
  account = Twilio::RestAccount.new(ACCOUNT_SID, ACCOUNT_TOKEN)
  resp = account.request("/#{API_VERSION}/Accounts/#{ACCOUNT_SID}/SMS/Messages",
             'POST',
             t)
  resp.error! unless resp.kind_of? Net::HTTPSuccess
rescue StandardError => bang
  #This area will be called if an error happens with the Twilio API
  redirect_to({ :action => :index, 'msg' => "Error #{ bang }" })
  return
end

redirect_to({ :action => :index, 'msg' => "SMS sent." })</code><br/></pre>
</li>
<li>Then you should get a text message that says: &#8220;Sent from a Twilio Trial Account -9999-9999 Twilio Scales!&#8221;</li>
<li>Now that you have it working with a sandbox number it&#8217;s easy to to switch to a real phone number. Just go into the &#8220;Numbers&#8221; section of your account and buy an outgoing phone number. Give the phone number an SMS URL. I just gave it the url of my app.change out the sandbox phone number </li>
<li>Then use that new phone number instead of your sandbox phone number and delete the CALLER_PIN from the top and in the body part of the text message you are sending.</li>
</ol>
<p>If you found this post helpful please link to it from your blog or website. Leaving comments below is also cool. Thanks!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.maxkpage.com/blog/how-to-send-sms-text-messages-with-twilio-from-rails/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to write HTML and CSS for a Facebook Page</title>
		<link>http://www.maxkpage.com/blog/how-to-write-html-and-css-for-a-facebook-page/</link>
		<comments>http://www.maxkpage.com/blog/how-to-write-html-and-css-for-a-facebook-page/#comments</comments>
		<pubDate>Fri, 04 Feb 2011 19:34:27 +0000</pubDate>
		<dc:creator>maxkpage</dc:creator>
		
		<category><![CDATA[How To]]></category>

		<guid isPermaLink="false">http://www.maxkpage.com/blog/?p=144</guid>
		<description><![CDATA[Mashable released an awesome post on this:
HOW TO: Design and Program a Facebook Landing Page
I would keep these 2 important things in mind:

Externally load all your images and css with absolute URLs
Write HTML and CSS just like normal except you can add specific facebook tags in to enhance your content
Yes, you can make forms.

]]></description>
			<content:encoded><![CDATA[<p>Mashable released an awesome post on this:</p>
<p><a href="http://mashable.com/2011/02/04/design-facebook-landing-page/">HOW TO: Design and Program a Facebook Landing Page</a></p>
<p>I would keep these 2 important things in mind:</p>
<ul>
<li>Externally load all your images and css with absolute URLs</li>
<li>Write HTML and CSS just like normal except you can add specific facebook tags in to enhance your content</li>
<li>Yes, you can make forms.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.maxkpage.com/blog/how-to-write-html-and-css-for-a-facebook-page/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Smart Way Around IE CSS Hacks &amp; Conditional Stylesheets</title>
		<link>http://www.maxkpage.com/blog/smart-way-around-ie-css-hacks-conditional-stylesheets/</link>
		<comments>http://www.maxkpage.com/blog/smart-way-around-ie-css-hacks-conditional-stylesheets/#comments</comments>
		<pubDate>Thu, 21 Oct 2010 18:08:20 +0000</pubDate>
		<dc:creator>maxkpage</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.maxkpage.com/blog/?p=107</guid>
		<description><![CDATA[If you are ever bothered by adding hacks to your css or including your ie css styles in multiple style sheets than do I have a solution for you.
It&#8217;s so simple and awesome.

Step 1) Surround your html tag with conditional statements like so:
&#60;!--[if lt IE 7 ]&#62; &#60;html class=&#8221;ie6&#8243;&#62; &#60;![endif]--&#62;
&#60;!--[if IE 7 ]&#62; &#60;html class=&#8221;ie7&#8243;&#62; [...]]]></description>
			<content:encoded><![CDATA[<p>If you are ever bothered by adding hacks to your css or including your ie css styles in multiple style sheets than do I have a solution for you.</p>
<p>It&#8217;s so simple and awesome.<br />
<br/></p>
<h4><strong>Step 1) Surround your html tag with conditional statements like so:</strong></h4>
<p><code>&lt;!--[if lt IE 7 ]&gt;</code> &lt;html class=&#8221;ie6&#8243;&gt; &lt;![endif]<code>--&gt;</code><br />
<code>&lt;!--[if IE 7 ]&gt;</code> &lt;html class=&#8221;ie7&#8243;&gt; &lt;![endif]<code>--&gt;</code><br />
<code>&lt;!--[if IE 8 ]&gt;</code> &lt;html class=&#8221;ie8&#8243;&gt; &lt;![endif]<code>--&gt;</code><br />
<code>&lt;!--[if IE 9 ]&gt;</code> &lt;html class=&#8221;ie9&#8243;&gt; &lt;![endif]<code>--&gt;</code><br />
<code>&lt;!--[if (gt IE 9)|!(IE)]&gt;</code><code>&lt;!--&gt;</code> &lt;html class=&#8221;"&gt; <code>&lt;!--&lt;![endif]</code><code>--&gt;</code><br />
<br/></p>
<h4><strong>Step 2) In your css just preface your targeted ie styles with the class name of the html tag you are targeting like so:</strong></h4>
<p>.ie6 h1 { color:red; }<br />
.ie7 h1 { color:green; }<br />
h1 { color:black; }<br />
<br/><br />
Super easy to target any version of IE without having to remember hacks or keep all your ie styles seperated in seperately served stylesheets.</p>
<p>Originally discussed here: <a href="http://paulirish.com/2008/conditional-stylesheets-vs-css-hacks-answer-neither/">Conditional stylesheets vs CSS hacks? Answer: Neither!</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.maxkpage.com/blog/smart-way-around-ie-css-hacks-conditional-stylesheets/feed/</wfw:commentRss>
		</item>
		<item>
		<title>JQuery Toggle Hide and Show Link</title>
		<link>http://www.maxkpage.com/blog/jquery-toggle-hide-and-show-link/</link>
		<comments>http://www.maxkpage.com/blog/jquery-toggle-hide-and-show-link/#comments</comments>
		<pubDate>Fri, 26 Mar 2010 14:46:10 +0000</pubDate>
		<dc:creator>maxkpage</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.maxkpage.com/blog/?p=96</guid>
		<description><![CDATA[Even if you&#8217;re new to JQuery it&#8217;s always mind-boggling how easy it is to do pretty cool UX stuff with it.
Here&#8217;s you you make a link that shows and hides content on you page:
$("#toggle_link").toggle(
                function() {
     [...]]]></description>
			<content:encoded><![CDATA[<p>Even if you&#8217;re new to JQuery it&#8217;s always mind-boggling how easy it is to do pretty cool UX stuff with it.</p>
<p>Here&#8217;s you you make a link that shows and hides content on you page:</p>
<p><code>$("#toggle_link").toggle(<br />
                function() {<br />
                      $(".extra_info_text").show("fast");<br />
                      $("#toggle_link").text("Hide Extra Info");<br />
                },<br />
                function() {<br />
                     $(".extra_info_text").hide("fast");<br />
                     $("#toggle_link").text("Show Extra Info");<br />
                }<br />
);</p>
<p>Give you link the id of "toggle_link" and the text you want to hide the class of "extra_info_text." Pretty darn easy.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.maxkpage.com/blog/jquery-toggle-hide-and-show-link/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to Save Over $500 When Hiring a Web Designer or Developer</title>
		<link>http://www.maxkpage.com/blog/save-over-500-when-hiring-a-web-designer-or-developer/</link>
		<comments>http://www.maxkpage.com/blog/save-over-500-when-hiring-a-web-designer-or-developer/#comments</comments>
		<pubDate>Fri, 26 Feb 2010 03:41:06 +0000</pubDate>
		<dc:creator>maxkpage</dc:creator>
		
		<category><![CDATA[How To]]></category>

		<category><![CDATA[Small Business Online Marketing]]></category>

		<guid isPermaLink="false">http://www.maxkpage.com/blog/?p=75</guid>
		<description><![CDATA[Most people looking to hire a web designer want a kick-ass website that makes them money. They want a return on their investment but are surprised that it definitely costs minimum $2,000 to get a nice website.
So how do you save money and get a website you love that makes you money?
Easy.
1. Go Buy Your [...]]]></description>
			<content:encoded><![CDATA[<p>Most people looking to hire a web designer want a kick-ass website that makes them money. They want a return on their investment but are surprised that it definitely costs minimum $2,000 to get a nice website.</p>
<p>So how do you save money and get a website you love that makes you money?</p>
<p><strong>Easy.</strong></p>
<h3>1. Go Buy Your <a href="http://www.dpbolvw.net/click-2710482-10375662" target="_top">Domain</a> and <a href="http://www.dpbolvw.net/click-2710482-10375662" target="_top">Hosting</a> by Yourself</h3>
<p>You need both a <a href="http://www.dpbolvw.net/click-2710482-10375662" target="_top">domain</a> and <a href="http://www.dpbolvw.net/click-2710482-10375662" target="_top">hosting</a> before your web guy can start. Come up with a <strong>short</strong>, <strong>memorable</strong> domain like:</p>
<p>yinyangpilates.com<br />
atlantacars.com</p>
<p>Then you will need to buy what is called <a href="http://www.dpbolvw.net/click-2710482-10375662" target="_top">hosting</a>. This is just a place for your web guy to put the files that are your website.</p>
<p>You can get a <a href="http://www.dpbolvw.net/click-2710482-10375662" target="_top">Free Domain &#038; Web Hosting for $6.95 Per Month</a> with Bluehost. Great Deal.  </p>
<p><strong>You just saved yourself minimum $90 and your web guy can start right away.</strong></p>
<h3>2. You Update Your Website. Not the Web Guy. Use <a href="http://www.cushycms.com/">CushyCMS</a>!</h3>
<p>I will charge minimum $60 an hour to upkeep your website once it&#8217;s done. And if you need one small piece of text updated, yep, minimum increment is 1 hour and you will be charged $60.</p>
<p>So in order for you to avoid paying so much tell your web person <strong>FROM THE START</strong> that you want to be able to update your own website. Tell them to use <a href="http://www.cushycms.com/">CushyCMS</a>.</p>
<p>Cushy is just a cute word but CMS stands for Content Management System. It is just a way to enable you to edit text on your own website by logging in, typing like you are in Microsoft Word, and hitting Save. Magic.</p>
<p>It requires barely any work for your web guy to set up. They may not even charge you for it!</p>
<p><strong>How much does using <a href="http://www.cushycms.com/">CushyCMS</a> save me?</strong></p>
<p>Let&#8217;s say you have a website that has news or events on the homepage and you have a couple a month. So you need to have your web guy update it 3 times a month. Minimum $180. Just for one month! This will save you a lot over the year.</p>
<h3>3. Hire a Web person that is good at Design &#038; Copywriting.</h3>
<p>If you are going to spend $2000 or more on something for you business you better hope you at least get that money back through new customers or orders.</p>
<p>Two things will get you that money back.</p>
<p>Good Web Design / Development and good Copywriting that sells.</p>
<p>You can find these good web people on <a href="http://sortfolio.com/chicago/3000-under">Sortfolio</a> (just select your city, or any city and go virtual, and select a budget).</p>
<p>You will save with the cheap web designer but you will also never earn your money back. You will make it back with the good Web Designer. </p>
<p>Think about it. You try to give the best return for people buying from you. Same with web people.</p>
<p>Let me know if you have any questions in the comments.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.maxkpage.com/blog/save-over-500-when-hiring-a-web-designer-or-developer/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Google Super Bowl Commercial - Video</title>
		<link>http://www.maxkpage.com/blog/google-super-bowl-commercial-video/</link>
		<comments>http://www.maxkpage.com/blog/google-super-bowl-commercial-video/#comments</comments>
		<pubDate>Mon, 08 Feb 2010 14:52:19 +0000</pubDate>
		<dc:creator>maxkpage</dc:creator>
		
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://www.maxkpage.com/blog/?p=68</guid>
		<description><![CDATA[
Google released this spot during the Super Bowl titled &#8220;Parisian Love&#8221; which has been on Youtube for quite sometime. I think it&#8217;s amazing and every girl in the room stopped what they were during for the whole commercial and just sighed and said &#8220;Awwww&#8221; at the end.
Great job showing a ton of emotion with something [...]]]></description>
			<content:encoded><![CDATA[<p><object width="560" height="340"><param name="movie" value="http://www.youtube.com/v/nnsSUqgkDwU&#038;hl=en_US&#038;fs=1&#038;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/nnsSUqgkDwU&#038;hl=en_US&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="560" height="340"></embed></object></p>
<p>Google released this spot during the Super Bowl titled &#8220;Parisian Love&#8221; which has been on Youtube for quite sometime. I think it&#8217;s amazing and every girl in the room stopped what they were during for the whole commercial and just sighed and said &#8220;Awwww&#8221; at the end.</p>
<p>Great job showing a ton of emotion with something we simply do every day.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.maxkpage.com/blog/google-super-bowl-commercial-video/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to Unmute an iPod Touch or iPad</title>
		<link>http://www.maxkpage.com/blog/how-to-unmute-an-ipod-touch/</link>
		<comments>http://www.maxkpage.com/blog/how-to-unmute-an-ipod-touch/#comments</comments>
		<pubDate>Mon, 18 Jan 2010 01:59:47 +0000</pubDate>
		<dc:creator>maxkpage</dc:creator>
		
		<category><![CDATA[How To]]></category>

		<guid isPermaLink="false">http://www.maxkpage.com/blog/?p=63</guid>
		<description><![CDATA[All of a sudden the other day my ipod touch&#8217;s internal speaker just decided to mute itself. Either that or I somehow muted it. Couldn&#8217;t find how to un-mute it anywhere online but I figured it out. Hopefully this orks for iPad&#8217;s as well.
Solution 1: Some people said it was the headphone jack was stuck [...]]]></description>
			<content:encoded><![CDATA[<p><img style="float:left;" title="ipod-touch" src="http://www.maxkpage.com/blog/wp-content/uploads/2010/01/ipod-touch.jpg" alt="ipod touch" width="227" height="294" />All of a sudden the other day my ipod touch&#8217;s internal speaker just decided to mute itself. Either that or I somehow muted it. Couldn&#8217;t find how to un-mute it anywhere online but I figured it out. Hopefully this orks for iPad&#8217;s as well.</p>
<p><strong>Solution 1:</strong> Some people said it was the headphone jack was stuck or something, but all I had to do was (don&#8217;t have any headphones plugged in) hold the black button on the top of the ipod to turn it off. Then you hold it again to turn it on and if you go to your music you will see the internal speaker volume is all the way down. Turn that music up!!!</p>
<p><strong>Solution 2:</strong> If the above solution does not work someone also left a comment saying that if you hold the Up Volume Button it may magically turn on. (thanks Katie)</p>
<p><strong>Solution 3:</strong> Plug it into an ihome or other ipod speaker/player press play, then quickly remove it from the ihome and the slider pops up. Try to turn it all the way down then back up. (thanks Brandon)</p>
<p><a href="http://www.amazon.com/gp/redirect.html?ie=UTF8&amp;location=http%3A%2F%2Fwww.amazon.com%2Fs%3Fie%3DUTF8%26x%3D0%26ref_%3Dnb%5Fsb%5Fss%5Fi%5F0%5F16%26y%3D0%26field-keywords%3Dipod%2520touch%2520cases%2520and%2520skins%26url%3Dsearch-alias%253Daps%26sprefix%3Dipod%2520touch%2520cases&amp;tag=kusowoofstpa-20&amp;linkCode=ur2&amp;camp=1789&amp;creative=390957"></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.maxkpage.com/blog/how-to-unmute-an-ipod-touch/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>

