<?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>Quick and Nerdy</title>
	<atom:link href="http://quickandnerdy.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://quickandnerdy.com</link>
	<description>Nerdy news in byte-sized chunks</description>
	<lastBuildDate>Tue, 26 Mar 2013 13:30:50 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>Passwordless SSH Login between OS X and Remote Server</title>
		<link>http://quickandnerdy.com/passwordless-sshlogin-between-os-x-and-remote-server/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=passwordless-sshlogin-between-os-x-and-remote-server</link>
		<comments>http://quickandnerdy.com/passwordless-sshlogin-between-os-x-and-remote-server/#comments</comments>
		<pubDate>Mon, 25 Mar 2013 21:36:07 +0000</pubDate>
		<dc:creator>nerdOne</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Command Line]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[OS X]]></category>

		<guid isPermaLink="false">http://quickandnerdy.com/?p=203</guid>
		<description><![CDATA[If you commonly ssh from your OS X computer to a remote server such as a web server it makes sense to set up passwordless ssh login so you can have a secure connection without having to always enter your password. Setting up passwordless login also allows you to run automated scripts to help with [...]]]></description>
				<content:encoded><![CDATA[<p><img class="alignright size-full wp-image-157" alt="terminal-icon" src="http://quickandnerdy.com/wp-content/uploads/2012/01/terminal-icon.jpeg" width="225" height="225" />If you commonly ssh from your OS X computer to a remote server such as a web server it makes sense to set up passwordless ssh login so you can have a secure connection without having to always enter your password. Setting up passwordless login also allows you to run automated scripts to help with managing things like offsite backups. Scripts can&#8217;t be automated if they require someone to be present at your machine typing in passwords every time they run.</p>
<p>It&#8217;s worth noting that you may first want to check if you already have existing ssh keys on your computer. This can be done by entering <em>cd ~/.ssh</em> [enter] at your terminal. If you get a response back stating &#8220;No such file or directory&#8221; then you need to proceed with the following steps.</p>
<p>To set up passwordless login between a remote unix/linux server and your OS X machine fire up terminal and&#8230;</p>
<p>1. generate an RSA private key</p>
<p style="padding-left: 30px;"><em>ssh-keygen -t rsa -C &#8220;your_email@example.com&#8221;</em></p>
<p>2. copy the key to your clipboard</p>
<p style="padding-left: 30px;"><em>pbcopy &lt; ~/.ssh/id_rsa.pub</em></p>
<p>3. ssh into the webserver</p>
<p style="padding-left: 30px;"><em>ssh username@yoursite.com</em> (login with your password for the last time)</p>
<p>4. make a .ssh directory, if it doesn&#8217;t already exist</p>
<p style="padding-left: 30px;"><em>mkdir .ssh</em></p>
<p>5. create an authorized_keys file and paste in the key from mac that you just copied to your clipboard</p>
<p style="padding-left: 30px;"><em>vi .ssh/authorized_keys</em> (paste in key from clipboard, save)</p>
<p>6. set permissions for necessary files and directories on webserver</p>
<p style="padding-left: 30px;"><em>chmod go-w ~</em><br />
<em>chmod 700 ~/.ssh</em><br />
<em>chmod 600 ~/.ssh/authorized_keys</em></p>
<p>That&#8217;s all there is to it. These steps could all be combined into a single line but the above is much easier to follow.</p>
<p style="padding-left: 30px;">
]]></content:encoded>
			<wfw:commentRss>http://quickandnerdy.com/passwordless-sshlogin-between-os-x-and-remote-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Resolving &#8216;Bad Request Error 400&#8242; in Gmail on Chrome</title>
		<link>http://quickandnerdy.com/resolving-bad-request-error-400-in-gmail-on-chrome/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=resolving-bad-request-error-400-in-gmail-on-chrome</link>
		<comments>http://quickandnerdy.com/resolving-bad-request-error-400-in-gmail-on-chrome/#comments</comments>
		<pubDate>Tue, 12 Mar 2013 13:44:27 +0000</pubDate>
		<dc:creator>nerdOne</dc:creator>
				<category><![CDATA[Chrome]]></category>
		<category><![CDATA[Gmail]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[chrome]]></category>
		<category><![CDATA[error]]></category>
		<category><![CDATA[gmail]]></category>

		<guid isPermaLink="false">http://quickandnerdy.com/?p=186</guid>
		<description><![CDATA[I periodically come across the &#8220;Bad Request Error 400&#8243; problem when using Gmail on Google Chrome. I&#8217;m not the only one as you can see from a Google search on the topic. One minute all is well and the next, reload after reload all you see is a blank page and this error message. You [...]]]></description>
				<content:encoded><![CDATA[<div id="attachment_188" class="wp-caption alignright" style="width: 210px"><img class="size-full wp-image-188" alt="Gmail on Chrome: Bad Request Error 400" src="http://quickandnerdy.com/wp-content/uploads/2013/03/Gmail-bad-request-error-400.png" width="200" height="200" /><p class="wp-caption-text">Gmail on Chrome: How to resolve the Bad Request Error 400</p></div>
<p>I periodically come across the &#8220;Bad Request Error 400&#8243; problem when using Gmail on Google Chrome. I&#8217;m not the only one as you can see from a Google search on the topic. One minute all is well and the next, reload after reload all you see is a blank page and this error message. You haven&#8217;t changed anything but things just don&#8217;t work anymore. If you try accessing Gmail on a different browser like Firefox, everything seems good, so it&#8217;s not Gmail itself; it&#8217;s the combination of Gmail and Chrome.</p>
<p>It seems quite ridiculous really that this issue should happen on Chrome. Shouldn&#8217;t Gmail on Chrome be essentially bulletproof? Google on Google. C&#8217;mon.</p>
<p>When looking for answers the most common suggestion you&#8217;ll find is to clear all of your browsing data; history, cache, cookies, etc. I happen to like my browsing data. Among other things, it helps me find things and allows me to stay logged in on various sites. Deleting it all causes me pain.</p>
<p>After searching through various sites and the Gmail and Chrome forums I finally found a great solution. It turns out deleting all of your browsing data is not necessary. This problem comes down to one solitary cookie. Delete this cookie and life is good again.</p>
<h3>How to resolve the Bad Request Error 400 in Gmail</h3>
<p>Here are the exact instructions.</p>
<p>- Right click on the page with the error<br />
- Select &#8220;Inspect Element&#8221; from the right click menu<br />
- Select the &#8220;Resources&#8221; tab at the top of the Developer Tools pane or window that opens up<br />
- Expand the &#8220;Cookies&#8221; section on the left side navigation by clicking on the little triangle next to &#8220;Cookies&#8221;<br />
- Select the &#8220;mail.google.com&#8221; cookie<br />
- Right click on &#8220;GMAIL_IMP&#8221;<br />
- Select &#8220;Delete&#8221;<br />
- Refresh the error page</p>
<p>- Rejoice</p>
<p><a href="https://productforums.google.com/forum/?fromgroups=#!topic/gmail/WVZuLDNhNMs" target="_blank">Original source of solution</a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://quickandnerdy.com/resolving-bad-request-error-400-in-gmail-on-chrome/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Mac OSX Lion Cursor Disappeared? Get It Back</title>
		<link>http://quickandnerdy.com/mac-osx-lion-cursor-disappeared-get-it-back/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=mac-osx-lion-cursor-disappeared-get-it-back</link>
		<comments>http://quickandnerdy.com/mac-osx-lion-cursor-disappeared-get-it-back/#comments</comments>
		<pubDate>Fri, 04 May 2012 20:11:14 +0000</pubDate>
		<dc:creator>nerdOne</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Mac]]></category>

		<guid isPermaLink="false">http://quickandnerdy.com/?p=168</guid>
		<description><![CDATA[From what I&#8217;ve found when searching online, I&#8217;m not the only one who has their cursor periodically disappear in OSX Lion. Once in a while I&#8217;ll return to my Mac Mini (my iMac and Macbook Pro never have this problem) and my cursor is nowhere to be found. The mouse or trackpad still works; if [...]]]></description>
				<content:encoded><![CDATA[<div class="wp-caption alignright" style="width: 230px"><img title="Missing Mac OSX Lion Cursor" src="http://quickandnerdy.com/wp-content/uploads/2012/06/mac-lion-cursor.png" alt="Mac OSX Cursor Gone" width="220" height="257" /><p class="wp-caption-text">Did Lion devour my cursor?</p></div>
<p>From what I&#8217;ve found when searching online, I&#8217;m not the only one who has their cursor periodically disappear in OSX Lion. Once in a while I&#8217;ll return to my Mac Mini (my iMac and Macbook Pro never have this problem) and my cursor is nowhere to be found. The mouse or trackpad still works; if you go way down on the screen over the dock the hover affect will work but the cursor is still not visible.</p>
<h4>Zoom the Screen</h4>
<p>One way I found to bring the cursor back is to zoom the screen. If you don&#8217;t already know this, you can zoom in the screen at any time by holding down the ctrl key and scrolling up (or down depending on your system preferences). You can then zoom back to normal again by doing the opposite and, voila! Your cursor is back.</p>
<p>I can&#8217;t guarantee that this will work for you but it definitely works for me and I&#8217;ve heard from many others who say the same. Hopefully this tip will help you end the frustration of the missing Lion cursor.</p>
<p>If you have another solution to this issue, please do let me know in the comments. I&#8217;m sure others would love to hear about it too. The above solution works but it still annoying.</p>
]]></content:encoded>
			<wfw:commentRss>http://quickandnerdy.com/mac-osx-lion-cursor-disappeared-get-it-back/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Fix For PayPal CSV Transaction History Download</title>
		<link>http://quickandnerdy.com/fix-for-paypal-csv-transaction-history-download/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=fix-for-paypal-csv-transaction-history-download</link>
		<comments>http://quickandnerdy.com/fix-for-paypal-csv-transaction-history-download/#comments</comments>
		<pubDate>Tue, 17 Apr 2012 16:20:57 +0000</pubDate>
		<dc:creator>nerdOne</dc:creator>
				<category><![CDATA[Mac]]></category>
		<category><![CDATA[PayPal]]></category>

		<guid isPermaLink="false">http://quickandnerdy.com/?p=165</guid>
		<description><![CDATA[Have you been frustrated with trying to download your PayPal transaction history only to have the browser spin it&#8217;s wheels forever. Even if your report is small, the download still usually fails. I&#8217;ve fought with this many times and have finally found the fix. Apparently this is due to a PayPal timeout issue. You can [...]]]></description>
				<content:encoded><![CDATA[<div id="attachment_142" class="wp-caption alignright" style="width: 210px"><a href="http://quickandnerdy.com/wp-content/uploads/2012/01/paypal_logo.gif"><img class="size-full wp-image-142" title="paypal_logo" src="http://quickandnerdy.com/wp-content/uploads/2012/01/paypal_logo.gif" alt="PayPal Issues" width="200" height="50" /></a><p class="wp-caption-text">PayPal Issues Solved</p></div>
<p>Have you been frustrated with trying to download your PayPal transaction history only to have the browser spin it&#8217;s wheels forever. Even if your report is small, the download still usually fails. I&#8217;ve fought with this many times and have finally found the fix. Apparently this is due to a PayPal timeout issue. You can fix this problem by using a terminal command to &#8220;aggressively try and keep the connection to PayPal alive&#8221; so the download can finish.</p>
<p>So, to fix this on a Mac,:</p>
<ul>
<li>go to your History page on PayPal</li>
<li>select your date range</li>
<li>open Terminal or iTerm</li>
<li>enter the following</li>
<ul>
<li>sudo sysctl -w net.inet.tcp.keepidle=10000 net.inet.tcp.keepintvl=5000 net.inet.tcp.always_keepalive=­1</li>
</ul>
<li>enter your admin password</li>
<li>successfully download your transactions!</li>
</ul>
<p>If your transaction list is huge you may still have to narrow your history search.</p>
<p>Thanks to Mark for posting this solution. I found it here: <a title="PayPal CSV Download Solution" href="http://www.youtube.com/watch?v=U8jPvIGX6aw" target="_blank">http://www.youtube.com/watch?v=U8jPvIGX6aw</a></p>
]]></content:encoded>
			<wfw:commentRss>http://quickandnerdy.com/fix-for-paypal-csv-transaction-history-download/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fix &#8216;Unkown host&#8217; Error on Mac</title>
		<link>http://quickandnerdy.com/fix-unkown-host-error-on-mac/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=fix-unkown-host-error-on-mac</link>
		<comments>http://quickandnerdy.com/fix-unkown-host-error-on-mac/#comments</comments>
		<pubDate>Thu, 26 Jan 2012 22:29:52 +0000</pubDate>
		<dc:creator>nerdZero</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Command Line]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://quickandnerdy.com/?p=156</guid>
		<description><![CDATA[Have you ever had one of your websites become inaccessible on only one of your computers? The site loads up fine on every other machine you try it on but on this one machine, nada. If you try to ping the domain you&#8217;ll likely be presented with an &#8216;unknown host&#8217; error. If your computer is [...]]]></description>
				<content:encoded><![CDATA[<p><a href="http://quickandnerdy.com/wp-content/uploads/2012/01/terminal-icon.jpeg"><img class="alignright size-full wp-image-157" title="terminal-icon" src="http://quickandnerdy.com/wp-content/uploads/2012/01/terminal-icon.jpeg" alt="" width="225" height="225" /></a>Have you ever had one of your websites become inaccessible on only one of your computers? The site loads up fine on every other machine you try it on but on this one machine, nada. If you try to ping the domain you&#8217;ll likely be presented with an &#8216;unknown host&#8217; error.</p>
<p>If your computer is a Mac you will likely first think to try dscacheutil -flushcache . However, this will not work for you unless you are using an older version of OS X. Now what you&#8217;ll have to do is the following:</p>
<p>sudo killall -HUP mDNSResponder</p>
<p>In most cases this is what will work for you. I won&#8217;t bore you with a lengthy explanation of why. Just try it.</p>
]]></content:encoded>
			<wfw:commentRss>http://quickandnerdy.com/fix-unkown-host-error-on-mac/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What Happened to File Paths in Lion&#8217;s Spotlight Results?</title>
		<link>http://quickandnerdy.com/what-happened-to-file-paths-in-lions-spotlight-results/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=what-happened-to-file-paths-in-lions-spotlight-results</link>
		<comments>http://quickandnerdy.com/what-happened-to-file-paths-in-lions-spotlight-results/#comments</comments>
		<pubDate>Sat, 14 Jan 2012 18:36:49 +0000</pubDate>
		<dc:creator>nerdOne</dc:creator>
				<category><![CDATA[Mac]]></category>

		<guid isPermaLink="false">http://quickandnerdy.com/?p=145</guid>
		<description><![CDATA[Being a nerd I love keyboard shortcuts. Because of this, when using a Mac I use Spotlight extensively. I use Spotlight as a calculator, for word definitions, and most frequently, to launch applications and find files. One of the many changes in OS X Lion is a change in Spotlight is that it no longer displays the [...]]]></description>
				<content:encoded><![CDATA[<p><a href="http://quickandnerdy.com/wp-content/uploads/2012/01/spotlight-shadow.jpeg"><img class=" wp-image-146  alignright" title="spotlight-shadow" src="http://quickandnerdy.com/wp-content/uploads/2012/01/spotlight-shadow.jpeg" alt="Spotlight in Lion" width="208" height="197" /></a></p>
<p>Being a nerd I love keyboard shortcuts. Because of this, when using a Mac I use Spotlight extensively. I use Spotlight as a calculator, for word definitions, and most frequently, to launch applications and find files.</p>
<p>One of the many changes in OS X Lion is a change in Spotlight is that it no longer displays the path to a file on your machine when you mouseover a search result. Previously I used this all the time when trying to locate files. How could Apple get ride of this extremely useful feature?</p>
<p>Well, they didn&#8217;t. It&#8217;s still available but is a bit more hidden. I&#8217;m not sure where this is documented or how we were supposed to figure it out but thanks to Richard Cardona and the <a title="Spotlight Changed In Lion" href="http://www.capmac.org/phpbb2/viewtopic.php?p=10467" target="_blank">CapMac Forums</a> I learned how to get file paths again. Now I&#8217;ll share it with you.</p>
<ol>
<li>As before, enter your search query in Spotlight.</li>
<li>Also as before, either use your arrow keys to move down to the appropriate search result or mouseover the search result</li>
<li>When the new preview window pops up to the left of the Spotlight results, hold down the command key</li>
</ol>
<p>At the bottom of the preview window the name of the file will initially be displayed. Keep holding down the command key and in a second or two the path of the file will be revealed! Now you know where that file is located on your system.</p>
<div id="attachment_150" class="wp-caption aligncenter" style="width: 510px"><a href="http://quickandnerdy.com/wp-content/uploads/2012/01/spotlight-search-lion.jpg"><img class="size-full wp-image-150" title="spotlight-search-lion" src="http://quickandnerdy.com/wp-content/uploads/2012/01/spotlight-search-lion.jpg" alt="Lion Spotlight Search Results with File Path" width="500" height="297" /></a><p class="wp-caption-text">While holding down the Command button</p></div>
]]></content:encoded>
			<wfw:commentRss>http://quickandnerdy.com/what-happened-to-file-paths-in-lions-spotlight-results/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Changing Where PayPal IPN Emails Payment Notifications</title>
		<link>http://quickandnerdy.com/changing-where-paypal-ipn-emails-payment-notifications/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=changing-where-paypal-ipn-emails-payment-notifications</link>
		<comments>http://quickandnerdy.com/changing-where-paypal-ipn-emails-payment-notifications/#comments</comments>
		<pubDate>Tue, 10 Jan 2012 20:03:36 +0000</pubDate>
		<dc:creator>nerdOne</dc:creator>
				<category><![CDATA[PayPal]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://quickandnerdy.com/?p=140</guid>
		<description><![CDATA[If you use PayPal for receiving payments online you are likely using PayPal Instant Payment Notification (IPN) as well. This is very useful as it results in an email being sent to the email address you specify whenever a payment is received via PayPal. However, the email address that you receive these payment notifications at [...]]]></description>
				<content:encoded><![CDATA[<div id="attachment_142" class="wp-caption alignright" style="width: 210px"><a href="http://quickandnerdy.com/wp-content/uploads/2012/01/paypal_logo.gif"><img class="size-full wp-image-142" title="paypal_logo" src="http://quickandnerdy.com/wp-content/uploads/2012/01/paypal_logo.gif" alt="PayPal IPN" width="200" height="50" /></a><p class="wp-caption-text">PayPal IPN Email</p></div>
<p>If you use PayPal for receiving payments online you are likely using PayPal Instant Payment Notification (IPN) as well. This is very useful as it results in an email being sent to the email address you specify whenever a payment is received via PayPal.</p>
<p>However, the email address that you receive these payment notifications at is not necessarily the email address you have configured within your PayPal account for receiving notifications. To set or change the email address to which these IPNs are sent you need to modify the code in the file you point to in the hidden &#8216;notify_url&#8217; that you set in the form you use for posting to PayPal.</p>
<p>e.g. if you&#8217;re using PHP  the field might look like:</p>
<p>&lt;input type=&#8221;hidden&#8221; name=&#8221;notify_url&#8221; value=&#8221;http://www.mynerdysite.com/paypal_ipn.php&#8221;&gt;</p>
<p>In the above case, paypal_ipn.php is the file that gets called after payment has been made. Within this file is the code that send the actual notification email. To set the email address that will receive the payment notification you change the $from variable.</p>
<p>Note that if you want to change where the actual receipt from PayPal gets sent you need to change your primary business email address and then update this in the hidden &#8216;business&#8217; field in the form you use to post to PayPal.</p>
]]></content:encoded>
			<wfw:commentRss>http://quickandnerdy.com/changing-where-paypal-ipn-emails-payment-notifications/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Apples to Apple: Fun and Interesting Infographic</title>
		<link>http://quickandnerdy.com/apples-to-apple-fun-and-interesting-infographic/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=apples-to-apple-fun-and-interesting-infographic</link>
		<comments>http://quickandnerdy.com/apples-to-apple-fun-and-interesting-infographic/#comments</comments>
		<pubDate>Tue, 10 Jan 2012 15:03:07 +0000</pubDate>
		<dc:creator>nerdOne</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Mac]]></category>

		<guid isPermaLink="false">http://quickandnerdy.com/?p=132</guid>
		<description><![CDATA[Here&#8217;s a fun infographic comparing Apple, the company to apples, the fruit. A few of my favorite points: China produces 44% of the world&#8217;s apples and 100% of the world&#8217;s Apples the average apple weighs about the same as an Apple iPhone 4s (5oz. versus 4.9oz.) an iphone 4s is 33.6% glass Thanks to MBA [...]]]></description>
				<content:encoded><![CDATA[<p>Here&#8217;s a fun infographic comparing Apple, the company to apples, the fruit.</p>
<p>A few of my favorite points:</p>
<ul>
<li>China produces 44% of the world&#8217;s apples and 100% of the world&#8217;s Apples</li>
<li>the average apple weighs about the same as an Apple iPhone 4s (5oz. versus 4.9oz.)</li>
<li>an iphone 4s is 33.6% glass</li>
</ul>
<p>Thanks to <a title="Apples to Apple" href="http://www.mbaonline.com/apple-to-apples/">MBA Online</a> for putting this one together.</p>
<div id="attachment_133" class="wp-caption alignleft" style="width: 600px"><a href="http://quickandnerdy.com/wp-content/uploads/2012/01/apples-to-apple-590.jpg"><img class="size-full wp-image-133 " title="apples-to-apple-590" src="http://quickandnerdy.com/wp-content/uploads/2012/01/apples-to-apple-590.jpg" alt="Apples to Apple: more similar than you might think" width="590" height="5134" /></a><p class="wp-caption-text">Apples to Apple: more similar than you might think</p></div>
]]></content:encoded>
			<wfw:commentRss>http://quickandnerdy.com/apples-to-apple-fun-and-interesting-infographic/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing node.js on Mac OSX</title>
		<link>http://quickandnerdy.com/installing-node-js-on-mac-osx/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=installing-node-js-on-mac-osx</link>
		<comments>http://quickandnerdy.com/installing-node-js-on-mac-osx/#comments</comments>
		<pubDate>Mon, 09 Jan 2012 22:20:12 +0000</pubDate>
		<dc:creator>nerdOne</dc:creator>
				<category><![CDATA[Mac]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://quickandnerdy.com/?p=127</guid>
		<description><![CDATA[I recently installed node.js on a Mac running OSX 10.7.2 and these were the steps I followed at the command line.  Git and Xcode were already installed on the machine so this assumes they are already present. git clone git://github.com/ry/node.git cd node ./configure make sudo make install You can test that node is installed by [...]]]></description>
				<content:encoded><![CDATA[<div id="attachment_129" class="wp-caption alignright" style="width: 255px"><a href="http://quickandnerdy.com/wp-content/uploads/2012/01/nodejs-logo.png"><img class="size-full wp-image-129" title="nodejs-logo" src="http://quickandnerdy.com/wp-content/uploads/2012/01/nodejs-logo.png" alt="Node js" width="245" height="66" /></a><p class="wp-caption-text">Node.js</p></div>
<p>I recently installed node.js on a Mac running OSX 10.7.2 and these were the steps I followed at the command line.  Git and Xcode were already installed on the machine so this assumes they are already present.</p>
<ol>
<li>git clone git://github.com/ry/node.git</li>
<li>cd node</li>
<li>./configure</li>
<li>make</li>
<li>sudo make install</li>
</ol>
<p>You can test that node is installed by running a simple program such as:</p>
<pre style="padding-left: 30px;">var http = require('http');
http.createServer(function (request, response) {
  response.writeHead(200, {'Content-Type': 'text/plain'});
  response.end('Node.js has arrived.\n');
}).listen(1337, "127.0.0.1");
console.log('Up and running at http://127.0.0.1:1337/');</pre>
<p>You can run this code by saving it as something like testing-node.js and then entering the command:</p>
<pre style="padding-left: 30px;">node testin-node.js</pre>
<p>That&#8217;s it. Node.js is now up and running on port 1337 !</p>
<p>PS: stop the server with ctrl + c</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://quickandnerdy.com/installing-node-js-on-mac-osx/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to Create a Custom Facebook Landing Page</title>
		<link>http://quickandnerdy.com/how-to-create-a-custom-facebook-landing-page/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-create-a-custom-facebook-landing-page</link>
		<comments>http://quickandnerdy.com/how-to-create-a-custom-facebook-landing-page/#comments</comments>
		<pubDate>Wed, 04 Jan 2012 00:11:05 +0000</pubDate>
		<dc:creator>nerdOne</dc:creator>
				<category><![CDATA[Social Media]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://quickandnerdy.com/?p=118</guid>
		<description><![CDATA[Update: Since Facebook launched it&#8217;s Timeline in 2012 this information is not really relevant. You can no longer create a page that users see by default. &#8211; Custom Facebook landing pages look much more professional than the default wall that everyone else has. Impress your visitors and fans with a custom one. It&#8217;s easy. Just follow [...]]]></description>
				<content:encoded><![CDATA[<div id="attachment_121" class="wp-caption alignright" style="width: 138px"><a href="http://quickandnerdy.com/wp-content/uploads/2012/01/FaceBookSketched.png"><img class="size-full wp-image-121" title="FaceBookSketched" src="http://quickandnerdy.com/wp-content/uploads/2012/01/FaceBookSketched.png" alt="Custom Facebook Landing Page" width="128" height="128" /></a><p class="wp-caption-text">Facebook</p></div>
<p><strong>Update:</strong> Since Facebook launched it&#8217;s Timeline in 2012 this information is not really relevant. You can no longer create a page that users see by default.</p>
<p>&#8211;</p>
<p>Custom Facebook landing pages look much more professional than the default wall that everyone else has. Impress your visitors and fans with a custom one. It&#8217;s easy. Just follow these simple steps:</p>
<ul>
<li>you need to be logged in to Facebook</li>
<li>in the main search box at the top type in &#8216;static html iframe&#8217; (no quotes)</li>
<ul>
<li>it will be the one with the star icon</li>
</ul>
<li>click on the &#8216;Add Static HTML to a Page&#8217; button</li>
<li>next, select the page you want to add the landing page to from the list</li>
<li>click the &#8216;Add Static HTML: iframe tabs&#8217; button</li>
<li>A new item will appear on the far left list (the list with &#8216;Wall&#8217; at the top)</li>
<li>the new item will be called &#8216;Welcome&#8217; (you can change this later if you want)</li>
<ul>
<li>click on this new item</li>
</ul>
<li>enter html, javascript, css etc. into the text area shown</li>
<li>if you want something different displayed to people who have already liked the page, put that in the second text area</li>
<li>Facebook requires any images used here to be grabbed from a secure server</li>
<ul>
<li>if you don&#8217;t have a secure server you can upload your images to Amazon S3</li>
<li>Amazon S3 has free tiers so unless your page is very busy you won&#8217;t have to pay</li>
<li>however,  you do have to give your credit card info when you sign up to use Amazon S3</li>
</ul>
<li>you can preview your new page by clicking the &#8216;preview&#8217; button near the top</li>
<li>once you are happy with the look of the new landing page you can set it to be the default tab displayed</li>
<ul>
<li>go back to your &#8216;Wall&#8217; page</li>
<li>click on &#8216;Edit Page&#8217; in the top right</li>
<li>on the first page of settings (&#8216;Manage Perminssions&#8217;) change the &#8216;Default Landing Tab&#8217; to your new &#8216;Welcome&#8217; tab</li>
<li>note that you won&#8217;t see this tab as the default landing tab while you are logged in as an administrator; you will have to check from a different Facebook account</li>
</ul>
<li>if you want to change the name of your new tab to something other than &#8216;Welcome&#8217; you can do so by clicking on &#8216;Apps&#8217; in the list on the left</li>
<ul>
<li>then click on &#8216;Edit Settings&#8217; under the app in the list (&#8216;Static HTML: iframe tabs&#8217;)</li>
<li>then enter &#8216;Custom Tab Name&#8217; and click &#8216;Okay&#8217;</li>
</ul>
<li>Done!</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://quickandnerdy.com/how-to-create-a-custom-facebook-landing-page/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
