<?xml version="1.0" encoding="UTF-8" standalone="no"?><rss xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" version="2.0">

<channel>
	<title>Dave McComb</title>
	<atom:link href="https://davemccomb.com/feed" rel="self" type="application/rss+xml"/>
	<link>https://davemccomb.com/</link>
	<description>Dave McComb's musings on life, tech and everything in between.</description>
	<lastBuildDate>Mon, 25 Dec 2023 18:56:13 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	

<image>
	<url>https://i0.wp.com/davemccomb.com/wp-content/uploads/2023/12/cropped-michigan.png?fit=32%2C32&amp;ssl=1</url>
	<title>Dave McComb</title>
	<link>https://davemccomb.com/</link>
	<width>32</width>
	<height>32</height>
</image> 
<site xmlns="com-wordpress:feed-additions:1">227096025</site>	<xhtml:meta content="noindex" name="robots" xmlns:xhtml="http://www.w3.org/1999/xhtml"/><item>
		<title>Integrating Gravity Forms and KISSmetrics</title>
		<link>https://davemccomb.com/gravity-forms-kiss-metrics</link>
					<comments>https://davemccomb.com/gravity-forms-kiss-metrics#respond</comments>
		
		<dc:creator><![CDATA[Dave McComb]]></dc:creator>
		<pubDate>Fri, 13 Mar 2015 14:26:11 +0000</pubDate>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[gravity forms]]></category>
		<category><![CDATA[kissmetrics]]></category>
		<guid isPermaLink="false">http://davemccomb.com/?p=694</guid>

					<description><![CDATA[<p>Recently I had to implement KISSmetrics with Gravity Forms for a client. Now as both of these are quite popular services, one would have thought there would be extensive documentation on how to best combine the two. Well, you&#8217;d be wrong&#8230;until now. Let me present my quick guide to integrating KISSmetrics and Gravity Forms! Please note</p>
<p>The post <a href="https://davemccomb.com/gravity-forms-kiss-metrics">Integrating Gravity Forms and KISSmetrics</a> appeared first on <a href="https://davemccomb.com">Dave McComb</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Recently I had to <strong>implement KISSmetrics with Gravity Forms</strong> for a client. Now as both of these are quite popular services, one would have thought there would be extensive documentation on how to best combine the two. Well, you&#8217;d be wrong&#8230;until now. Let me present my quick guide to integrating KISSmetrics and Gravity Forms!</p>
<p><a href="https://i0.wp.com/davemccomb.com/wp-content/uploads/2015/03/kissmetrics-gravity-forms.png"><img data-recalc-dims="1" decoding="async" class="alignright size-medium wp-image-710" src="https://i0.wp.com/davemccomb.com/wp-content/uploads/2015/03/kissmetrics-gravity-forms-300x39.png?resize=300%2C39" alt="KISSmetrics + Gravity Forms" width="300" height="39" srcset="//i0.wp.com/davemccomb.com/wp-content/uploads/2015/03/kissmetrics-gravity-forms.png?resize=300%2C39&amp;ssl=1 300w, //i0.wp.com/davemccomb.com/wp-content/uploads/2015/03/kissmetrics-gravity-forms.png?w=974&amp;ssl=1 974w" sizes="(max-width: 300px) 100vw, 300px" /></a>Please note that while KISSmetrics does have default form tracking, it does not work well with Gravity Forms since you need to be able to specify field names. Unfortunately, one of the limitations of Gravity Forms is that field names are dynamically generated and cannot be specified. Using the KISSmetrics default form tracking only gives you field names like Input 1, Input 2, etc. (not very useful). And, as you cannot tag an email field as &#8220;email&#8221; KISSmetrics is unable to identify and track the user as anything but their standard anonymous ID.</p>
<p>So, that leaves us with having to set up the KISSmetrics API and the documentation on this is a bit lacking. Initially I tried to set it up with only the JavaScript API, but quickly ran into some limitations. It became apparent that using the <strong>PHP API</strong> was the way to go. Here are the steps to do that:</p>
<p><strong>1. Install the KISSmetrics Javascript Tracking Code</strong></p>
<p>Using the default Javascript tracking code for your site will create the anonymized identities that you need to track new users. I recommend using <a title="KISSmetrics with Google Tag Manager" href="http://support.kissmetrics.com/apis/javascript/google-tag-manager.html" target="_blank" rel="nofollow">Google Tag Manager</a> for this. Be sure to test this in the KISSmetrics Live tracking section of the admin to make sure it is properly installed.</p>
<p><strong>2. Install the KISSmetrics PHP API code</strong></p>
<p>At this time, KISSmetrics seems to be between two versions of their <a title="KISSmetrics PHP API" href="http://support.kissmetrics.com/apis/php/index.html" target="_blank" rel="nofollow">PHP API</a> code. Their website documentation refers to the old API interface while their <a title="KISSmetrics PHP code" href="https://github.com/kissmetrics/kissmetrics-php" target="_blank" rel="nofollow">Github page</a> refers to the new API. It&#8217;s a bit confusing. I&#8217;m going to use the old <a title="km.php" href="https://github.com/kissmetrics/KISSmetrics" target="_blank" rel="nofollow"><em>km.php</em></a> file for these examples.</p>
<p>First, create a directory called &#8220;KISSmetrics&#8221; under your active theme and copy the <em>km.php</em> file to that folder. Make sure that the directory and file have read permissions.</p>
<p><strong>3. Modify WordPress to call the KISSmetrics API on Gravity Form submission</strong></p>
<p>The main file you will be changing is <em>functions.php</em> under your active theme. You&#8217;ll need to use the Gravity Forms hook &#8220;<a title="Gravity Forms Hook" href="http://www.gravityhelp.com/documentation/gravity-forms/extending-gravity-forms/hooks/actions/gform_after_submission/" target="_blank" rel="nofollow">gform_after_submission</a>&#8221; to call the KISSmetrics API after the form is submitted.</p>
<p>First, add your KISSmetrics API key to the end of your <em>wp-config.php</em> file. You&#8217;ll find your API key in the KISSmetrics admin for your account.</p>
<pre><code>define('ENV_KS_APIKEY','XXXXYYYYXYXXYXYYXYXYXYXYXY');

</code></pre>
<p>Next, edit the <em>functions.php</em> file under the active theme. First, you&#8217;ll want to include the KISSmetrics API, so add this line near the top of the file:</p>
<pre><code>require_once 'KISSmetrics/km.php';

</code></pre>
<p>Now, you&#8217;ll need to add both a call to the function as well as the function itself to the bottom of the <em>functions.php</em> file:</p>
<pre><code>
// Member Signup Form (Form ID 3)
add_action( 'gform_after_submission_3', 'form3_handler', 10, 1);

function form3_handler($entry){
	KM::init(ENV_KS_APIKEY);	
	$email = $entry['2'];
	
	$data  = array('First Name'=&gt;$entry['6'],'Last Name'=&gt;$entry['7'],'Email'=&gt;$email,'Phone'=&gt;$entry['3'],'Heard About'=&gt;$entry['5']);
		
	if (isset($_COOKIE['km_ai'])) {
		KM::alias($_COOKIE['km_ai'], $email);
		KM::identify($email);
		KM::record('Member Signup Form Completed',$data);
	}
}

</code></pre>
<p>Some notes on this code:</p>
<ol>
<li>You&#8217;ll need to look up the form id under Gravity Forms. Use this ID for the add_action call as well as the handler (gform_after_submission_#, form#_handler). If you have multiple forms, you&#8217;ll need to duplicate this code using the different form IDs.</li>
<li>You can access the form fields with the $entry[&#8216;#&#8217;] where the # is the ID of that form field. Use a code inspector to find the form field ids for each form.</li>
<li>The $data variable builds a list of all the form fields you want to submit to KISSmetrics. Edit as appropriate for your forms.</li>
<li>You want to both alias and identify the user by email in KISSmetrics. You can read more about this in &#8220;<a title="Understanding Identities" href="http://support.kissmetrics.com/getting-started/understanding-identities.html" target="_blank" rel="nofollow">Understanding Identities</a>.&#8221;</li>
<li>KM::record will record an event (name it what you want) and pass all  the data from the form to KISSmetrics.</li>
<li>You can test that this is working in the KISSmetrics admin under the &#8220;<a title="Live Tracking" href="https://app.kissmetrics.com/live" target="_blank" rel="nofollow">Live</a>&#8221; section. Please note that if using the &#8220;My Activity&#8221; tracking section, once you identify yourself, your activity no longer appears there due to a bug on their site. This can lead to hours of wasted debugging (personal experience). Use the main Live tracking feature for all people. It will make results much clearer.</li>
</ol>
<p>That&#8217;s it. Hopefully these examples save you a few days of trial and error, but hey someone had to do it!</p>
<p>The post <a href="https://davemccomb.com/gravity-forms-kiss-metrics">Integrating Gravity Forms and KISSmetrics</a> appeared first on <a href="https://davemccomb.com">Dave McComb</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://davemccomb.com/gravity-forms-kiss-metrics/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">694</post-id>	</item>
		<item>
		<title>Feedly RSS Expander</title>
		<link>https://davemccomb.com/feedly-rss-expander</link>
					<comments>https://davemccomb.com/feedly-rss-expander#comments</comments>
		
		<dc:creator><![CDATA[Dave McComb]]></dc:creator>
		<pubDate>Sun, 30 Jun 2013 19:25:42 +0000</pubDate>
				<category><![CDATA[Tech]]></category>
		<category><![CDATA[feedly]]></category>
		<category><![CDATA[google reader]]></category>
		<category><![CDATA[rss]]></category>
		<guid isPermaLink="false">http://davemccomb.com/?p=572</guid>

					<description><![CDATA[<p>With the coming demise of Google Reader, it seems that there are only three real choices: Feedly, Digg Reader and AOL Reader. After trying out all of them, Feedly won me over  (Digg was a better experience, but too buggy at this time.). That being said, none of them are a perfect replacement. I have</p>
<p>The post <a href="https://davemccomb.com/feedly-rss-expander">Feedly RSS Expander</a> appeared first on <a href="https://davemccomb.com">Dave McComb</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p><a href="https://i0.wp.com/davemccomb.com/wp-content/uploads/2013/06/feedly-full-rss-feed-expander.jpg"><img data-recalc-dims="1" fetchpriority="high" decoding="async" class="alignright size-medium wp-image-574" alt="Feedly Full RSS Expander" src="https://i0.wp.com/davemccomb.com/wp-content/uploads/2013/06/feedly-full-rss-feed-expander-300x199.jpg?resize=300%2C199" width="300" height="199" srcset="//i0.wp.com/davemccomb.com/wp-content/uploads/2013/06/feedly-full-rss-feed-expander.jpg?resize=300%2C199&amp;ssl=1 300w, //i0.wp.com/davemccomb.com/wp-content/uploads/2013/06/feedly-full-rss-feed-expander.jpg?w=640&amp;ssl=1 640w" sizes="(max-width: 300px) 100vw, 300px" /></a>With the coming demise of Google Reader, it seems that there are only three real choices: <strong>Feedly</strong>, <strong>Digg Reader</strong> and <strong>AOL Reader</strong>. After trying out all of them, Feedly won me over  (Digg was a better experience, but too buggy at this time.).</p>
<p>That being said, none of them are a perfect replacement. I have found that Feedly is missing one of the things that I and many others used with Google Reader &#8211; the <strong>Super Full Feeds</strong> extension. This extension allowed you to take short RSS feeds (RSS snippets) and turn them into full content RSS feeds right in the browser. This made reading things much easier and snappier.</p>
<p>So, until there is a <strong>Super Full Feeds Extension for Feedly</strong>, the next best thing may be the <a title="Full Text RSS Feed" href="http://fulltextrssfeed.com/">Full Text RSS Feed</a> website. This site allows you to input any RSS feed and get a new RSS link that contains the full feed. You can then add that URL to Feedly and get full content rather than just excerpts.</p>
<p>It&#8217;s not as simple as the Chrome extension was, but it will work for now&#8230;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>The post <a href="https://davemccomb.com/feedly-rss-expander">Feedly RSS Expander</a> appeared first on <a href="https://davemccomb.com">Dave McComb</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://davemccomb.com/feedly-rss-expander/feed</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">572</post-id>	</item>
		<item>
		<title>Welcome To Spreadsave, A Social Coupon and Deals Site</title>
		<link>https://davemccomb.com/spreadsave-social-coupons-deals</link>
					<comments>https://davemccomb.com/spreadsave-social-coupons-deals#respond</comments>
		
		<dc:creator><![CDATA[Dave McComb]]></dc:creator>
		<pubDate>Wed, 22 Feb 2012 17:30:58 +0000</pubDate>
				<category><![CDATA[Tech]]></category>
		<guid isPermaLink="false">http://davemccomb.com/?p=468</guid>

					<description><![CDATA[<p>I wanted to invite everyone to check out Spreadsave, a social online coupons and deals site, that I&#8217;ve been lucky to be a part of. We have a talented team based in New York, Berlin and Buenos Aires and just pushed out the beta version of the site. Spreadsave is the world&#8217;s first truly social</p>
<p>The post <a href="https://davemccomb.com/spreadsave-social-coupons-deals">Welcome To Spreadsave, A Social Coupon and Deals Site</a> appeared first on <a href="https://davemccomb.com">Dave McComb</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p style="text-align: left;"><a href="http://spreadsave.com"><img data-recalc-dims="1" decoding="async" class="aligncenter  wp-image-471" title="Online Coupon Codes" src="https://i0.wp.com/davemccomb.com/wp-content/uploads/2012/02/spreadsave-coupon-codes.png?resize=357%2C122" alt="" width="357" height="122" srcset="//i0.wp.com/davemccomb.com/wp-content/uploads/2012/02/spreadsave-coupon-codes.png?w=510&amp;ssl=1 510w, //i0.wp.com/davemccomb.com/wp-content/uploads/2012/02/spreadsave-coupon-codes.png?resize=300%2C102&amp;ssl=1 300w" sizes="(max-width: 357px) 100vw, 357px" /></a></p>
<p style="text-align: left;">I wanted to invite everyone to check out <strong>Spreadsave</strong>, a social <strong><a title="Coupon codes" href="http://spreadsave.com">online coupons and deals site</a></strong>, that I&#8217;ve been lucky to be a part of. We have a talented team based in New York, Berlin and Buenos Aires and just pushed out the beta version of the site.</p>
<p><strong>Spreadsave</strong> is the world&#8217;s first truly social shopping site. While we&#8217;re still working on a lot of the best features of the site, we wanted to push the first version of the site out there for everyone to check out. You can sign up using Facebook connect, view daily deals across a variety of sites, and then when you use or share the coupons or deals earn &#8220;gold coins&#8221; that can be redeemed in our award store for cash and prizes.</p>
<p>Be sure to check out the <a title="Coupons and Deals" href="http://spreadsave.com">best coupons and deals</a> now as well as find us on <a title="Facebook Coupons" href="http://www.facebook.com/spreadsave">Facebook</a> and <a title="Twitter Coupons" href="http://www.twitter.com/spreadsave">Twitter</a>.</p>
<p>The post <a href="https://davemccomb.com/spreadsave-social-coupons-deals">Welcome To Spreadsave, A Social Coupon and Deals Site</a> appeared first on <a href="https://davemccomb.com">Dave McComb</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://davemccomb.com/spreadsave-social-coupons-deals/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">468</post-id>	</item>
		<item>
		<title>Oh The Places You’ll Go</title>
		<link>https://davemccomb.com/oh-the-places-youll-go</link>
		
		<dc:creator><![CDATA[Dave McComb]]></dc:creator>
		<pubDate>Wed, 11 Jan 2012 14:22:00 +0000</pubDate>
				<category><![CDATA[Articles]]></category>
		<guid isPermaLink="false">http://davemccomb.com/oh-the-places-youll-go</guid>

					<description><![CDATA[<p>The post <a href="https://davemccomb.com/oh-the-places-youll-go">Oh The Places You&#8217;ll Go</a> appeared first on <a href="https://davemccomb.com">Dave McComb</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p><iframe loading="lazy" title="Oh, the Places You&#039;ll Go at Burning Man!" width="500" height="281" src="https://www.youtube.com/embed/ahv_1IS7SiE?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe></p>
<p>The post <a href="https://davemccomb.com/oh-the-places-youll-go">Oh The Places You&#8217;ll Go</a> appeared first on <a href="https://davemccomb.com">Dave McComb</a>.</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">455</post-id>	</item>
		<item>
		<title>Brilliant…</title>
		<link>https://davemccomb.com/brilliant</link>
					<comments>https://davemccomb.com/brilliant#respond</comments>
		
		<dc:creator><![CDATA[Dave McComb]]></dc:creator>
		<pubDate>Fri, 06 May 2011 19:46:00 +0000</pubDate>
				<category><![CDATA[Articles]]></category>
		<guid isPermaLink="false">http://davemccomb.com/brilliant</guid>

					<description><![CDATA[<p>What a great Google ad.</p>
<p>The post <a href="https://davemccomb.com/brilliant">Brilliant&#8230;</a> appeared first on <a href="https://davemccomb.com">Dave McComb</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>What a great Google ad.</p>
<p><iframe loading="lazy" title="Google Chrome  Dear Sophie" width="500" height="281" src="https://www.youtube.com/embed/zhPklt9nYas?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe></p>
<p>The post <a href="https://davemccomb.com/brilliant">Brilliant&#8230;</a> appeared first on <a href="https://davemccomb.com">Dave McComb</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://davemccomb.com/brilliant/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">449</post-id>	</item>
		<item>
		<title>Google Creates An Opt-Out Extension For Those Likely Blocking Their Ads Already</title>
		<link>https://davemccomb.com/google-creates-an-opt-out-extension-for-those-likely-blocking-their-ads-already</link>
					<comments>https://davemccomb.com/google-creates-an-opt-out-extension-for-those-likely-blocking-their-ads-already#respond</comments>
		
		<dc:creator><![CDATA[Dave McComb]]></dc:creator>
		<pubDate>Mon, 24 Jan 2011 22:39:45 +0000</pubDate>
				<category><![CDATA[Articles]]></category>
		<guid isPermaLink="false">http://davemccomb.com/?p=441</guid>

					<description><![CDATA[<p>A great new plug-in for Google Chrome that disables ad tracking&#8230; via Google Creates An Opt-Out Extension For Those Likely Blocking Their Ads Already.</p>
<p>The post <a href="https://davemccomb.com/google-creates-an-opt-out-extension-for-those-likely-blocking-their-ads-already">Google Creates An Opt-Out Extension For Those Likely Blocking Their Ads Already</a> appeared first on <a href="https://davemccomb.com">Dave McComb</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>A great new plug-in for Google Chrome that disables ad tracking&#8230;</p>
<p>via <a href="http://feedproxy.google.com/~r/Techcrunch/~3/M5GAhmNHXB4/">Google Creates An Opt-Out Extension For Those Likely Blocking Their Ads Already</a>.</p>
<p>The post <a href="https://davemccomb.com/google-creates-an-opt-out-extension-for-those-likely-blocking-their-ads-already">Google Creates An Opt-Out Extension For Those Likely Blocking Their Ads Already</a> appeared first on <a href="https://davemccomb.com">Dave McComb</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://davemccomb.com/google-creates-an-opt-out-extension-for-those-likely-blocking-their-ads-already/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">441</post-id>	</item>
		<item>
		<title>Write a blog post, help a dog</title>
		<link>https://davemccomb.com/write-a-blog-post-help-a-dog</link>
					<comments>https://davemccomb.com/write-a-blog-post-help-a-dog#respond</comments>
		
		<dc:creator><![CDATA[Dave McComb]]></dc:creator>
		<pubDate>Sun, 19 Sep 2010 15:15:00 +0000</pubDate>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[charity]]></category>
		<category><![CDATA[dogs]]></category>
		<category><![CDATA[donate]]></category>
		<guid isPermaLink="false">http://davemccomb.com/write-a-blog-post-help-a-dog</guid>

					<description><![CDATA[<p>Pedigree is having a great promotion where for every blog post about their adoption program, they will donate a 20-lb bag of dog food to a shelter. Of course, we had to do our part for this promotion! And, if you like their Facebook page, they will donate a bowl of dog food for every</p>
<p>The post <a href="https://davemccomb.com/write-a-blog-post-help-a-dog">Write a blog post, help a dog</a> appeared first on <a href="https://davemccomb.com">Dave McComb</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p><b>Pedigree</b> is having a great promotion where for every blog post about their <a href="http://www.pedigree.com/03Adoption/Adopt-A-Dog/Default.aspx" title="Pedigree Adoption Program" target="">adoption program</a>, they will donate a 20-lb bag of dog food to a shelter. Of course, we had to do our part for this promotion!</p>
<div></div>
<div>And, if you <a href="http://www.facebook.com/Pedigree?ref=ts" title="Pedigree on Facebook" target="">like their Facebook page</a>, they will donate a bowl of dog food for every new fan they get. &nbsp;They are already over 1.1 million bowls of food donated.</p>
<div>
<div></div>
<div>&#8211; via <a href="http://iloverescueanimals.org/2010/09/write-a-post-help-a-dog/" title="Donated dog food for a blog post" target="">I Love Rescue Animals</a></div>
</div>
</div>
<p>The post <a href="https://davemccomb.com/write-a-blog-post-help-a-dog">Write a blog post, help a dog</a> appeared first on <a href="https://davemccomb.com">Dave McComb</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://davemccomb.com/write-a-blog-post-help-a-dog/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">432</post-id>	</item>
		<item>
		<title>One too many…</title>
		<link>https://davemccomb.com/one-too-many</link>
					<comments>https://davemccomb.com/one-too-many#respond</comments>
		
		<dc:creator><![CDATA[Dave McComb]]></dc:creator>
		<pubDate>Sun, 29 Aug 2010 13:37:59 +0000</pubDate>
				<category><![CDATA[Links]]></category>
		<category><![CDATA[bizarre]]></category>
		<category><![CDATA[drinking]]></category>
		<guid isPermaLink="false">http://davemccomb.com/one-too-many</guid>

					<description><![CDATA[<p>I&#8217;ve had a few nights that are difficult to remember, but this one takes the cake. &#8211;&#160;Polish man finds bullet in head five years after party</p>
<p>The post <a href="https://davemccomb.com/one-too-many">One too many&#8230;</a> appeared first on <a href="https://davemccomb.com">Dave McComb</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>I&#8217;ve had a few nights that are difficult to remember, but this one takes the cake.</p>
<div></div>
<div>&#8211;&nbsp;<a href="http://www.bbc.co.uk/news/world-europe-11078116" title="Man finds bullet in head after 5 years" target="">Polish man finds bullet in head five years after party</a></div>
<p>The post <a href="https://davemccomb.com/one-too-many">One too many&#8230;</a> appeared first on <a href="https://davemccomb.com">Dave McComb</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://davemccomb.com/one-too-many/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">406</post-id>	</item>
		<item>
		<title>Baby brought back to life by mother’s touch</title>
		<link>https://davemccomb.com/baby-brought-back-to-life-by-mothers-touch</link>
					<comments>https://davemccomb.com/baby-brought-back-to-life-by-mothers-touch#respond</comments>
		
		<dc:creator><![CDATA[Dave McComb]]></dc:creator>
		<pubDate>Sat, 28 Aug 2010 23:28:48 +0000</pubDate>
				<category><![CDATA[Links]]></category>
		<category><![CDATA[health]]></category>
		<category><![CDATA[strange]]></category>
		<guid isPermaLink="false">http://davemccomb.com/baby-brought-back-to-life-by-mothers-touch</guid>

					<description><![CDATA[<p>Truly crazy story that really makes you wonder how much we don&#8217;t know&#8230; &#8211; via&#160;Miracle mum brings premature baby son back to life with two hours of loving cuddles after doctors pronounce him dead&#160;[MailOnline]</p>
<p>The post <a href="https://davemccomb.com/baby-brought-back-to-life-by-mothers-touch">Baby brought back to life by mother&#8217;s touch</a> appeared first on <a href="https://davemccomb.com">Dave McComb</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Truly crazy story that really makes you wonder how much we don&#8217;t know&#8230;</p>
<div></div>
<div>&#8211; via&nbsp;<a href="http://www.dailymail.co.uk/health/article-1306283/Miracle-premature-baby-declared-dead-doctors-revived-mothers-touch.html" title="Mom brings baby back from dead" target="">Miracle mum brings premature baby son back to life with two hours of loving cuddles after doctors pronounce him dead</a>&nbsp;[MailOnline]</div>
<p>The post <a href="https://davemccomb.com/baby-brought-back-to-life-by-mothers-touch">Baby brought back to life by mother&#8217;s touch</a> appeared first on <a href="https://davemccomb.com">Dave McComb</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://davemccomb.com/baby-brought-back-to-life-by-mothers-touch/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">400</post-id>	</item>
		<item>
		<title>Have You Seen This Flyer?</title>
		<link>https://davemccomb.com/have-you-seen-this-flyer</link>
					<comments>https://davemccomb.com/have-you-seen-this-flyer#comments</comments>
		
		<dc:creator><![CDATA[Dave McComb]]></dc:creator>
		<pubDate>Sat, 28 Aug 2010 23:08:17 +0000</pubDate>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[funny]]></category>
		<guid isPermaLink="false">http://davemccomb.com/have-you-seen-this-flyer</guid>

					<description><![CDATA[<p>&#8211; via Seattlest</p>
<p>The post <a href="https://davemccomb.com/have-you-seen-this-flyer">Have You Seen This Flyer?</a> appeared first on <a href="https://davemccomb.com">Dave McComb</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p style="text-align: center;"><a href="https://i0.wp.com/davemccomb.com/wp-content/uploads/2010/08/have-you-seen-this-flyer.jpg"><img data-recalc-dims="1" decoding="async" class="size-medium wp-image-397 aligncenter" alt="have-you-seen-this-flyer.jpg" src="https://i0.wp.com/davemccomb.com/wp-content/uploads/2010/08/have-you-seen-this-flyer.jpg?resize=640%2C512" width="640" height="512" /></a>&#8211; via <a title="Have You Seen This Flyer?" href="http://seattlest.com/2010/08/23/seattlest_pix_01september10.php" target="">Seattlest</a></p>
<p>The post <a href="https://davemccomb.com/have-you-seen-this-flyer">Have You Seen This Flyer?</a> appeared first on <a href="https://davemccomb.com">Dave McComb</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://davemccomb.com/have-you-seen-this-flyer/feed</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">398</post-id>	</item>
		<item>
		<title>MySpace, why are you emailing me again?</title>
		<link>https://davemccomb.com/myspace-starts-emailing</link>
					<comments>https://davemccomb.com/myspace-starts-emailing#respond</comments>
		
		<dc:creator><![CDATA[Dave McComb]]></dc:creator>
		<pubDate>Fri, 27 Aug 2010 15:24:08 +0000</pubDate>
				<category><![CDATA[Tech]]></category>
		<category><![CDATA[myspace]]></category>
		<category><![CDATA[rip]]></category>
		<guid isPermaLink="false">http://davemccomb.com/?p=387</guid>

					<description><![CDATA[<p>Looks like MySpace must have turned on some new notification system in the past 24 hours because all of a sudden I started getting friend requests, updates, etc.  I haven&#8217;t gotten an email from them (or thought about them) in years. This may be part of their plan to get people to come back to</p>
<p>The post <a href="https://davemccomb.com/myspace-starts-emailing">MySpace, why are you emailing me again?</a> appeared first on <a href="https://davemccomb.com">Dave McComb</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p><a href="https://i0.wp.com/davemccomb.com/wp-content/uploads/2010/08/myspace-dead.jpg"><img data-recalc-dims="1" decoding="async" class="alignright size-medium wp-image-388" title="MySpace is Dead" src="https://i0.wp.com/davemccomb.com/wp-content/uploads/2010/08/myspace-dead-300x231.jpg?resize=210%2C162" alt="" width="210" height="162" srcset="//i0.wp.com/davemccomb.com/wp-content/uploads/2010/08/myspace-dead.jpg?resize=300%2C231&amp;ssl=1 300w, //i0.wp.com/davemccomb.com/wp-content/uploads/2010/08/myspace-dead.jpg?w=347&amp;ssl=1 347w" sizes="(max-width: 210px) 100vw, 210px" /></a>Looks like <strong>MySpace</strong> must have turned on some new notification system in the past 24 hours because all of a sudden I started getting friend requests, updates, etc.  I haven&#8217;t gotten an email from them (or thought about them) in years.</p>
<p>This may be part of their plan to get people to come back to the site. And guess what? It worked. I went back to MySpace to modify my email preferences and unsubscribe from every list they had me on.  They have <strong><em>31 different</em></strong> check boxes that you have to uncheck manually (no uncheck all option). The only reason I didn&#8217;t completely delete the account was because this one was set up for a business and it may get some minimal traffic&#8230;</p>
<p>The post <a href="https://davemccomb.com/myspace-starts-emailing">MySpace, why are you emailing me again?</a> appeared first on <a href="https://davemccomb.com">Dave McComb</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://davemccomb.com/myspace-starts-emailing/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">387</post-id>	</item>
		<item>
		<title>6 New Mac Apps for Designers and Developers</title>
		<link>https://davemccomb.com/6-new-mac-apps-for-designers-and-developers</link>
					<comments>https://davemccomb.com/6-new-mac-apps-for-designers-and-developers#comments</comments>
		
		<dc:creator><![CDATA[Dave McComb]]></dc:creator>
		<pubDate>Thu, 26 Aug 2010 10:53:34 +0000</pubDate>
				<category><![CDATA[Links]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[tech]]></category>
		<guid isPermaLink="false">http://davemccomb.com/6-new-mac-apps-for-designers-and-developers</guid>

					<description><![CDATA[<p>Mashable has a good article on some cool new software packages for the Mac that can aid designers and developers.  I&#8217;m looking forward to checking some of these out.</p>
<p>The post <a href="https://davemccomb.com/6-new-mac-apps-for-designers-and-developers">6 New Mac Apps for Designers and Developers</a> appeared first on <a href="https://davemccomb.com">Dave McComb</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Mashable has a <a title="Mac Apps for Designers and Developers" href="http://mashable.com/2010/08/25/mac-dev-design-apps/" target="_self">good article</a> on some cool new software packages for the Mac that can aid designers and developers.  I&#8217;m looking forward to checking some of these out.</p>
<p>The post <a href="https://davemccomb.com/6-new-mac-apps-for-designers-and-developers">6 New Mac Apps for Designers and Developers</a> appeared first on <a href="https://davemccomb.com">Dave McComb</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://davemccomb.com/6-new-mac-apps-for-designers-and-developers/feed</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">381</post-id>	</item>
		<item>
		<title>Things I Want: Nixie Tube Clock</title>
		<link>https://davemccomb.com/nixie-tube-clock</link>
					<comments>https://davemccomb.com/nixie-tube-clock#respond</comments>
		
		<dc:creator><![CDATA[Dave McComb]]></dc:creator>
		<pubDate>Wed, 25 Aug 2010 11:18:28 +0000</pubDate>
				<category><![CDATA[Things I Want]]></category>
		<category><![CDATA[cool]]></category>
		<guid isPermaLink="false">http://davemccomb.com/?p=366</guid>

					<description><![CDATA[<p>The Chronotronix V400 Nixie Tube Clock may be one of the most elegant alarm clocks I have ever seen. This blend of electronics and style lends it well to the high-end geek lifestyle.  Though it begs the question: &#8220;Is $415 too much for an alarm clock?&#8221; &#8211; via Nixie Clock &#124; Chronotronix V400 [Buzz-Beast]</p>
<p>The post <a href="https://davemccomb.com/nixie-tube-clock">Things I Want: Nixie Tube Clock</a> appeared first on <a href="https://davemccomb.com">Dave McComb</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>The <strong><a title="Nixie Tube Clock" href="http://www.nixieclock.net/pd1148559262.htm?categoryId=0" target="_self">Chronotronix V400 Nixie Tube Clock</a></strong> may be one of the most elegant alarm clocks I have ever seen. This blend of electronics and style lends it well to the high-end geek lifestyle.  Though it begs the question: &#8220;Is $415 too much for an alarm clock?&#8221;</p>
<p><a href="https://i0.wp.com/davemccomb.com/wp-content/uploads/2010/08/nixie-clock.jpg"><img data-recalc-dims="1" decoding="async" class="aligncenter size-medium wp-image-367" title="Nixie Tube Clock" src="https://i0.wp.com/davemccomb.com/wp-content/uploads/2010/08/nixie-clock-300x224.jpg?resize=300%2C224" alt="" width="300" height="224" srcset="//i0.wp.com/davemccomb.com/wp-content/uploads/2010/08/nixie-clock.jpg?resize=300%2C224&amp;ssl=1 300w, //i0.wp.com/davemccomb.com/wp-content/uploads/2010/08/nixie-clock.jpg?w=585&amp;ssl=1 585w" sizes="(max-width: 300px) 100vw, 300px" /></a>&#8211; via <a title="Nixie Clock" href="http://www.buzz-beast.com/2010/08/nixie-clock-chronotronix-v400.html" target="_self">Nixie Clock | Chronotronix V400</a> [Buzz-Beast]</p>
<p>The post <a href="https://davemccomb.com/nixie-tube-clock">Things I Want: Nixie Tube Clock</a> appeared first on <a href="https://davemccomb.com">Dave McComb</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://davemccomb.com/nixie-tube-clock/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">366</post-id>	</item>
		<item>
		<title>Using Iframes for Video in WordPress</title>
		<link>https://davemccomb.com/iframe-wordpress</link>
					<comments>https://davemccomb.com/iframe-wordpress#comments</comments>
		
		<dc:creator><![CDATA[Dave McComb]]></dc:creator>
		<pubDate>Wed, 25 Aug 2010 10:11:17 +0000</pubDate>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[html5]]></category>
		<category><![CDATA[iframe]]></category>
		<category><![CDATA[tech]]></category>
		<category><![CDATA[vimeo]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[youtube]]></category>
		<guid isPermaLink="false">http://davemccomb.com/?p=344</guid>

					<description><![CDATA[<p>As the major video sites switch from using Flash for video towards using HTML5, you should think about doing the same on your WordPress blog.  By using the &#60;iframe&#62; tag instead of the &#60;embed&#62; tag it ensures that your video will be displayed for people on a computer, iPhone, iPad or whatever else may be</p>
<p>The post <a href="https://davemccomb.com/iframe-wordpress">Using Iframes for Video in WordPress</a> appeared first on <a href="https://davemccomb.com">Dave McComb</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>As the major video sites switch from using Flash for video towards using <strong>HTML5</strong>, you should think about doing the same on your <strong>WordPress</strong> blog.  By using the &lt;<strong>iframe</strong>&gt; tag instead of the &lt;<strong>embed</strong>&gt; tag it ensures that your video will be displayed for people on a computer, iPhone, iPad or whatever else may be coming down the road. Basically, it helps to future-proof your site and make it as accessible as possible.</p>
<p>The problem with using the iframe tag with WordPress is that (for security reasons), the iframe tag disappears when switching from Visual mode to HTML mode, and back again.  This can be very frustrating when you think you embed a video only to find out that it has disappeared from your post.</p>
<p>Luckily, WordPress plugins come to the rescue.  There are several plugins that allow you to properly use iframes in WordPress. The most popular of these seem to be: <a title="Embed iframe in WordPress" href="http://wordpress.org/extend/plugins/embed-iframe/" target="_self">Embed Iframe</a>, <a title="Youtub Iframe Embed" href="http://wordpress.org/extend/plugins/iframe-embed-for-youtube/" target="_self">IFRAME Embed for Youtube</a> and <a title="Insert IFRAME in WordPress" href="http://wordpress.org/extend/plugins/insere-iframe/" target="_self">Insere Iframe</a>.</p>
<p>While the other two may be worth checking out, I went with the last of these, <strong><a title="Insert iframe in WordPress" href="http://blog.idealmind.com.br/wordpress/insereiframe-a-simple-wordpress-plugin-to-insert-iframe-in-posts/" target="_self">Insere Iframe</a></strong>, because it was the one with the most flexibility and also allowed the easiest rewriting of the iframe code you will get from sites like <strong>Youtube</strong> and <strong>Vimeo</strong>.  Once you install and activate the plugin, you get a new <span style="font-family: Consolas, Monaco, 'Courier New', Courier, monospace; line-height: 18px; font-size: 12px; white-space: pre;">&#91;iframe: ] <span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif; line-height: 19px; white-space: normal; font-size: 13px;">tag to use in your posts.</span></span></p>
<p>Here are two examples of how to copy and change the iframe code:</p>
<p><strong>Using Vimeo Iframe Video Code in WordPress</strong></p>
<p>Vimeo will give you iframe code that looks like this:</p>
<p><code>&lt;iframe src="http://player.vimeo.com/video/14269383" width="400" height="300" frameborder="0"&gt;&lt;/iframe&gt;</code></p>
<p>With this new plugin, you simply change that code to:</p>
<p><code>&#91;iframe:  src="http://player.vimeo.com/video/14269383" width="400" height="300" frameborder="0"]</code></p>
<p><strong>Using Youtube Iframe Video Code in WordPress</strong></p>
<p>Youtube will give you iframe code that looks like this:</p>
<p><code>&lt;iframe type="text/html" width="425" height="344" src="http://www.youtube.com/embed/KDv5hnQ9ADk?hl=en_US" frameborder="0"&gt;&lt;/iframe&gt;</code></p>
<p>Change that code to:</p>
<p><code>&#91;iframe: type="text/html" width="400" height="325" src="http://www.youtube.com/embed/KDv5hnQ9ADk?hl=en_US" frameborder="0"]</code></p>
<p>That&#8217;s it. Simple and future-proof. I&#8217;d recommend making the switch now.</p>
<p>The post <a href="https://davemccomb.com/iframe-wordpress">Using Iframes for Video in WordPress</a> appeared first on <a href="https://davemccomb.com">Dave McComb</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://davemccomb.com/iframe-wordpress/feed</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">344</post-id>	</item>
		<item>
		<title>Great Add-Ons for Gmail: Rappaportive and Cloud Magic</title>
		<link>https://davemccomb.com/great-add-ons-for-gmail-rappaportive-and-cloud-magic</link>
					<comments>https://davemccomb.com/great-add-ons-for-gmail-rappaportive-and-cloud-magic#respond</comments>
		
		<dc:creator><![CDATA[Dave McComb]]></dc:creator>
		<pubDate>Tue, 24 Aug 2010 14:36:53 +0000</pubDate>
				<category><![CDATA[Cool Software]]></category>
		<category><![CDATA[cloud magic]]></category>
		<category><![CDATA[gmail]]></category>
		<category><![CDATA[rappaportive]]></category>
		<category><![CDATA[tech]]></category>
		<guid isPermaLink="false">http://davemccomb.com/?p=255</guid>

					<description><![CDATA[<p>If you use Gmail all the time like I do, then there are two great add-on products that you really need to install. The first is Rappaportive. I&#8217;ve been using this software for awhile now and it is really cool.  What it does is try and pull the contact information from anyone who emails you from</p>
<p>The post <a href="https://davemccomb.com/great-add-ons-for-gmail-rappaportive-and-cloud-magic">Great Add-Ons for Gmail: Rappaportive and Cloud Magic</a> appeared first on <a href="https://davemccomb.com">Dave McComb</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>If you use <strong>Gmail</strong> all the time like I do, then there are two great add-on products that you really need to install.</p>
<p><a href="https://i0.wp.com/davemccomb.com/wp-content/uploads/2010/08/rappaportive.jpg"><img data-recalc-dims="1" decoding="async" class="alignright size-thumbnail wp-image-331" title="Rappaportive for Gmail" src="https://i0.wp.com/davemccomb.com/wp-content/uploads/2010/08/rappaportive-150x150.jpg?resize=150%2C150" alt="" width="150" height="150" srcset="//i0.wp.com/davemccomb.com/wp-content/uploads/2010/08/rappaportive.jpg?resize=150%2C150&amp;ssl=1 150w, //i0.wp.com/davemccomb.com/wp-content/uploads/2010/08/rappaportive.jpg?zoom=2&amp;resize=150%2C150&amp;ssl=1 300w, //i0.wp.com/davemccomb.com/wp-content/uploads/2010/08/rappaportive.jpg?zoom=3&amp;resize=150%2C150&amp;ssl=1 450w" sizes="(max-width: 150px) 100vw, 150px" /></a>The first is <strong><a title="Gmail Rich Contact Info" href="http://rapportive.com/" target="_self">Rappaportive</a></strong>.  I&#8217;ve been using this software for awhile now and it is really cool.  What it does is try and pull the contact information from anyone who emails you from various social media sites (Facebook, MySpace, LinkedIn, etc.).  If it finds information, it will display it along the right-hand side of your Gmail window.  This includes things like their photo, location, and links to the various social networks they have profiles on. It&#8217;s really great to see a photo and information about the person you&#8217;re emailing, especially when you may have never met before.</p>
<p><a href="http://cloudmagic.com"><img data-recalc-dims="1" decoding="async" class="alignleft size-full wp-image-332" title="Cloud Magic for Gmail" src="https://i0.wp.com/davemccomb.com/wp-content/uploads/2010/08/cloud-magic.png?resize=221%2C63" alt="" width="221" height="63" /></a>The second is <strong><a title="Cloud Magic for Gmail" href="http://cloudmagic.com/" target="_self">Cloud Magic</a></strong>. Cloud Magic is a plug-in for Firefox and Chrome that adds super fast searching to Gmail. Yes, Gmail does have Google&#8217;s search built in,but Cloud Magic improves on Google&#8217;s search by through a number of things. First, it uses a floating toolbar that allows you to search without having to open a new tab. This is extremely useful when composing an email and needing to find some relevant bit of information to include. It also allows you to link all your Google App accounts and search through the email in each of those accounts as well as the one you have open. (I have about 6 different Google Apps accounts, so this is extremely useful).</p>
<p>You can find out more about Cloud Magic in the video below:</p>
<p style="text-align: center;">
<p>Both tools are incredibly useful and add a lot to the Gmail experience.</p>
<p>The post <a href="https://davemccomb.com/great-add-ons-for-gmail-rappaportive-and-cloud-magic">Great Add-Ons for Gmail: Rappaportive and Cloud Magic</a> appeared first on <a href="https://davemccomb.com">Dave McComb</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://davemccomb.com/great-add-ons-for-gmail-rappaportive-and-cloud-magic/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">255</post-id>	</item>
		<item>
		<title>Teaching Children About Charity</title>
		<link>https://davemccomb.com/teaching-children-about-charity</link>
					<comments>https://davemccomb.com/teaching-children-about-charity#respond</comments>
		
		<dc:creator><![CDATA[Dave McComb]]></dc:creator>
		<pubDate>Tue, 24 Aug 2010 14:12:15 +0000</pubDate>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[charity]]></category>
		<category><![CDATA[design]]></category>
		<guid isPermaLink="false">http://davemccomb.com/teaching-children-about-charity</guid>

					<description><![CDATA[<p>Very cool idea to teach children about charity &#8211; two piggy banks. One for them to save in and one to donate from. &#8211; via Piggy by Materious&#160;[Design Milk]</p>
<p>The post <a href="https://davemccomb.com/teaching-children-about-charity">Teaching Children About Charity</a> appeared first on <a href="https://davemccomb.com">Dave McComb</a>.</p>
]]></description>
										<content:encoded><![CDATA[<div>Very cool idea to teach children about charity &#8211; two piggy banks. One for them to save in and one to donate from.</div>
<p></p>
<div>&#8211; via <a href="http://design-milk.com/piggy-by-materious/" title="Teaching children about charity" target="">Piggy by Materious</a>&nbsp;[Design Milk]</div>
<p>The post <a href="https://davemccomb.com/teaching-children-about-charity">Teaching Children About Charity</a> appeared first on <a href="https://davemccomb.com">Dave McComb</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://davemccomb.com/teaching-children-about-charity/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">327</post-id>	</item>
		<item>
		<title>New Version of Picasa Includes Photo Editing, Face Movies and more</title>
		<link>https://davemccomb.com/new-picasa-best-photo-program</link>
					<comments>https://davemccomb.com/new-picasa-best-photo-program#respond</comments>
		
		<dc:creator><![CDATA[Dave McComb]]></dc:creator>
		<pubDate>Fri, 20 Aug 2010 14:27:24 +0000</pubDate>
				<category><![CDATA[Cool Software]]></category>
		<category><![CDATA[photos]]></category>
		<category><![CDATA[picasa]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[tech]]></category>
		<guid isPermaLink="false">http://davemccomb.com/?p=308</guid>

					<description><![CDATA[<p>I made the switch from Mac to PC just over a year ago, and I couldn&#8217;t be happier with my decision.  I love my MacBook Pro and most of the Apple software is amazing. That being said, I&#8217;ve never really liked iPhoto.  I tried to use it, organize my photos with it &#8211; really get</p>
<p>The post <a href="https://davemccomb.com/new-picasa-best-photo-program">New Version of Picasa Includes Photo Editing, Face Movies and more</a> appeared first on <a href="https://davemccomb.com">Dave McComb</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>I made the switch from Mac to PC just over a year ago, and I couldn&#8217;t be happier with my decision.  I love my MacBook Pro and most of the Apple software is amazing.</p>
<p><a href="http://picasa.google.com"><img data-recalc-dims="1" decoding="async" class="alignright size-medium wp-image-313" title="Picasa from Google" src="https://i0.wp.com/davemccomb.com/wp-content/uploads/2010/08/picasa_logo-300x118.png?resize=240%2C94" alt="" width="240" height="94" srcset="//i0.wp.com/davemccomb.com/wp-content/uploads/2010/08/picasa_logo.png?resize=300%2C118&amp;ssl=1 300w, //i0.wp.com/davemccomb.com/wp-content/uploads/2010/08/picasa_logo.png?w=320&amp;ssl=1 320w" sizes="(max-width: 240px) 100vw, 240px" /></a>That being said, I&#8217;ve never really liked <strong>iPhoto</strong>.  I tried to use it, organize my photos with it &#8211; really get into it. Unfortunately, it just didn&#8217;t seem intuitive to me.  Luckily, <strong><a title="Picasa from Google" href="http://picasa.google.com/" target="_self">Picasa</a></strong> for the Mac is available and in my opinion, it&#8217;s the best photo manager around.  In Picasa, things just seem more intuitive and straightforward. Folders are organized effectively. Using Collections is a breeze. Uploading to Picasa Web Albums is free and easy (1GB of space is free and 20GB only costs $5 for the year.)</p>
<p>Now, the latest version of Picasa adds online photo editing with <strong>Picnik</strong>, batch uploads to  Picasa Web Albums, some meta data improvements, and a very cool feature called &#8220;Face Movies&#8221; which allows you to create a video from anyone&#8217;s photos which will always display their face in the middle throughout the entire photo slide show.  You can check out the one I made here:</p>
<p style="text-align: center;">[vimeo 14269383]</p>
<p>I&#8217;d recommend dumping iPhoto and getting Picasa now.</p>
<p>&#8211; via <a title="Picasa 3.8 for PC and Mac released" href="http://googlephotos.blogspot.com/2010/08/picasa-38-face-movies-picnik.html" target="_self">Picasa 3.8: Face movies, Picnik integration, batch upload, and more</a> [Google Photos Blog]</p>
<p>The post <a href="https://davemccomb.com/new-picasa-best-photo-program">New Version of Picasa Includes Photo Editing, Face Movies and more</a> appeared first on <a href="https://davemccomb.com">Dave McComb</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://davemccomb.com/new-picasa-best-photo-program/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">308</post-id>	</item>
		<item>
		<title>HDMI cable myths and places to buy all kinds of cheap cables</title>
		<link>https://davemccomb.com/hdmi-cable-myths-cheap-cables</link>
					<comments>https://davemccomb.com/hdmi-cable-myths-cheap-cables#respond</comments>
		
		<dc:creator><![CDATA[Dave McComb]]></dc:creator>
		<pubDate>Mon, 16 Aug 2010 22:03:32 +0000</pubDate>
				<category><![CDATA[Tech]]></category>
		<category><![CDATA[cables]]></category>
		<category><![CDATA[hdmi]]></category>
		<category><![CDATA[myths]]></category>
		<category><![CDATA[shopping]]></category>
		<guid isPermaLink="false">http://davemccomb.com/?p=303</guid>

					<description><![CDATA[<p>I saw this info-graphic awhile ago and thought it would be good to repost it.  Basically, since HDMI is all digital, the signal is either going to get there or it&#8217;s not, so it doesn&#8217;t matter whether the cable costs $5 or $500. You&#8217;re better off going with the $5 one though&#8230; If you&#8217;re looking for cheap</p>
<p>The post <a href="https://davemccomb.com/hdmi-cable-myths-cheap-cables">HDMI cable myths and places to buy all kinds of cheap cables</a> appeared first on <a href="https://davemccomb.com">Dave McComb</a>.</p>
]]></description>
										<content:encoded><![CDATA[<div>
<p>I saw this info-graphic awhile ago and thought it would be good to repost it.  Basically, since HDMI is all digital, the signal is either going to get there or it&#8217;s not, so it doesn&#8217;t matter whether the cable costs $5 or $500. You&#8217;re better off going with the $5 one though&#8230;</p>
<p style="text-align: center;"><a href="https://i0.wp.com/davemccomb.com/wp-content/uploads/2010/08/hdmi-cable-prices.jpg"><img data-recalc-dims="1" decoding="async" class="aligncenter size-large wp-image-304" title="HDMI Cable Myths" src="https://i0.wp.com/davemccomb.com/wp-content/uploads/2010/08/hdmi-cable-prices-182x1024.jpg?resize=182%2C1024" alt="" width="182" height="1024" srcset="//i0.wp.com/davemccomb.com/wp-content/uploads/2010/08/hdmi-cable-prices.jpg?resize=182%2C1024&amp;ssl=1 182w, //i0.wp.com/davemccomb.com/wp-content/uploads/2010/08/hdmi-cable-prices.jpg?w=500&amp;ssl=1 500w" sizes="(max-width: 182px) 100vw, 182px" /></a></p>
<p style="text-align: left;">If you&#8217;re looking for cheap cables, be sure to check out <a title="Cheap cables" href="http://www.monoprice.com/" target="_self">MonoPrice</a> as well as <a title="Cheap Cables" href="http://www.deepsurplus.com/" target="_self">DeepSurplus</a>.  Both have some great deals on cables that cost much more elsewhere.</p>
</div>
<p>The post <a href="https://davemccomb.com/hdmi-cable-myths-cheap-cables">HDMI cable myths and places to buy all kinds of cheap cables</a> appeared first on <a href="https://davemccomb.com">Dave McComb</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://davemccomb.com/hdmi-cable-myths-cheap-cables/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">303</post-id>	</item>
		<item>
		<title>Cool HTML5 Boilerplate Template</title>
		<link>https://davemccomb.com/cool-html5-boilerplate-template</link>
					<comments>https://davemccomb.com/cool-html5-boilerplate-template#respond</comments>
		
		<dc:creator><![CDATA[Dave McComb]]></dc:creator>
		<pubDate>Sun, 15 Aug 2010 21:36:16 +0000</pubDate>
				<category><![CDATA[Links]]></category>
		<category><![CDATA[html5]]></category>
		<category><![CDATA[tech]]></category>
		<category><![CDATA[web design]]></category>
		<guid isPermaLink="false">http://davemccomb.com/cool-html5-boilerplate-template</guid>

					<description><![CDATA[<p>Looks like a cool HTML5 template to start any project with.  Here&#8217;s the description from their site: HTML5 Boilerplate is the professional badass&#8217;s base HTML/CSS/JS template for a fast, robust and future-proof site. After more than two years in iterative development, you get the best of the best practices baked in: cross-browser normalization, performance optimizations,</p>
<p>The post <a href="https://davemccomb.com/cool-html5-boilerplate-template">Cool HTML5 Boilerplate Template</a> appeared first on <a href="https://davemccomb.com">Dave McComb</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Looks like a cool HTML5 template to start any project with.  Here&#8217;s the description from their site:</p>
<div>
<blockquote>
<div>HTML5 Boilerplate is the professional badass&#8217;s base HTML/CSS/JS template for a fast, robust and future-proof site.</div>
<div></div>
<div>After more than two years in iterative development, you get the best of the best practices baked in: cross-browser normalization, performance optimizations, even optional features like cross-domain ajax and flash. A starter apache .htaccess config file hooks you the eff up with caching rules and preps your site to serve HTML5 video, use @font-face, and get your gzip zipple on.</div>
<div></div>
<div>Boilerplate is not a framework, nor does it prescribe any philosophy of development, it&#8217;s just got some tricks to get your project off the ground quickly and right-footed.</div>
</blockquote>
<div>Get it at <a title="HTML5 Boilerplate" href="http://html5boilerplate.com/" target="_self">html5boilerplate.com</a>.</div>
</div>
<p>The post <a href="https://davemccomb.com/cool-html5-boilerplate-template">Cool HTML5 Boilerplate Template</a> appeared first on <a href="https://davemccomb.com">Dave McComb</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://davemccomb.com/cool-html5-boilerplate-template/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">299</post-id>	</item>
		<item>
		<title>iPhone News: iOS 4.02 and Ultrasn0w 1.1.1 Released</title>
		<link>https://davemccomb.com/iphone-ios4-ultrasn0w-released</link>
					<comments>https://davemccomb.com/iphone-ios4-ultrasn0w-released#respond</comments>
		
		<dc:creator><![CDATA[Dave McComb]]></dc:creator>
		<pubDate>Thu, 12 Aug 2010 15:23:55 +0000</pubDate>
				<category><![CDATA[iPhone]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[jailbreak]]></category>
		<category><![CDATA[tech]]></category>
		<category><![CDATA[unlock]]></category>
		<guid isPermaLink="false">http://davemccomb.com/?p=285</guid>

					<description><![CDATA[<p>Apple has just released iOS 4.02 for the iPhone which fixes the PDF security flaw that allowed the jailbreakme.com web site to function. As most good jailbreakers now now, do NOT upgrade to this version of the software as it is currently un-jailbreakable. In other news, Ultrasn0w 1.1.1 has been released (the tool you need</p>
<p>The post <a href="https://davemccomb.com/iphone-ios4-ultrasn0w-released">iPhone News: iOS 4.02 and Ultrasn0w 1.1.1 Released</a> appeared first on <a href="https://davemccomb.com">Dave McComb</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p><a href="https://i0.wp.com/davemccomb.com/wp-content/uploads/2010/08/iphone-4.jpg"><img data-recalc-dims="1" decoding="async" class="alignright size-thumbnail wp-image-287" title="iPhone 4" src="https://i0.wp.com/davemccomb.com/wp-content/uploads/2010/08/iphone-4-150x150.jpg?resize=150%2C150" alt="" width="150" height="150" srcset="//i0.wp.com/davemccomb.com/wp-content/uploads/2010/08/iphone-4.jpg?resize=150%2C150&amp;ssl=1 150w, //i0.wp.com/davemccomb.com/wp-content/uploads/2010/08/iphone-4.jpg?zoom=2&amp;resize=150%2C150&amp;ssl=1 300w, //i0.wp.com/davemccomb.com/wp-content/uploads/2010/08/iphone-4.jpg?zoom=3&amp;resize=150%2C150&amp;ssl=1 450w" sizes="(max-width: 150px) 100vw, 150px" /></a>Apple has just released iOS 4.02 for the <strong>iPhone</strong> which fixes the PDF <a title="iPhone Security Flaw" href="http://www.bbc.co.uk/news/technology-10865288" target="_self">security flaw</a> that allowed the <a title="Jailbreak your iPhone" href="http://www.jailbreakme.com" target="_self">jailbreakme.com</a> web site to function. As most good jailbreakers now now, do NOT upgrade to this version of the software as it is currently un-jailbreakable.</p>
<p>In other news, <a title="Unlock your iPhone" href="http://ultrasn0w.com/" target="_self">Ultrasn0w</a> 1.1.1 has been released (the tool you need to unlock your iPhone).  This new release has been tweaked and should improve standby battery performance.</p>
<p>I&#8217;m currently waiting on my new factory unlocked iPhone 4 which is coming from the UK.  My friend, who waited for about an hour at the new <a title="Covent Garden Apple Store" href="http://www.bbc.co.uk/news/uk-england-london-10898866" target="_self">Covent Garden</a> Apple Store to pick one up, tells me that the line for the unlocked iPhone was about 100 people when he got there and 300 people when he left. There was no line at all for iPhones with a service contract.</p>
<p>He also says that a lot of the people in the line were foreigners wanting to get one.  The Apple employee told him that they were moving around 3,000 iPhones a day from that location alone.  They had gotten a new shipment the previous night and expected to be sold out by that afternoon.</p>
<p>&#8211; via <a title="iPhone Hacks" href="http://www.iphonehacks.com/2010/08/iphone-dev-team-release-ultrasn0w-11-1-to-improve-battery-life.html" target="_self">iPhone Hacks</a></p>
<p>The post <a href="https://davemccomb.com/iphone-ios4-ultrasn0w-released">iPhone News: iOS 4.02 and Ultrasn0w 1.1.1 Released</a> appeared first on <a href="https://davemccomb.com">Dave McComb</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://davemccomb.com/iphone-ios4-ultrasn0w-released/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">285</post-id>	</item>
	</channel>
</rss>