<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>High on Technology</title>
	
	<link>http://hightechdave.com</link>
	<description>the blog of Dave Wheeler</description>
	<lastBuildDate>Sun, 08 Jan 2012 15:29:18 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/hightechdave" /><feedburner:info uri="hightechdave" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Parsing the Sharepoint Site Actions menu with jQuery</title>
		<link>http://feedproxy.google.com/~r/hightechdave/~3/vHJ-1OmLmiI/</link>
		<comments>http://hightechdave.com/2011/12/27/parsing-the-sharepoint-site-actions-menu-with-jquery/#comments</comments>
		<pubDate>Tue, 27 Dec 2011 16:14:00 +0000</pubDate>
		<dc:creator>hightechdave</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Tech Tips]]></category>

		<guid isPermaLink="false">http://hightechdave.com/?p=342</guid>
		<description><![CDATA[<p>On recent Sharepoint (WSS3) sites I use jQuery extensively.  One of the things I often do is to remove the default Site Actions menu and draw those same links at the bottom of each page in the site.  I had found a way to successfully parse the Site Actions menu using some trickery:</p>
<blockquote><p>$(&#8216;#siteactions ie\\:menuitem&#8217;).each(function(){</p></blockquote>
<p>(Note: my Site Actions Menu &#8230;</p>]]></description>
			<content:encoded><![CDATA[<p>On recent Sharepoint (WSS3) sites I use jQuery extensively.  One of the things I often do is to remove the default Site Actions menu and draw those same links at the bottom of each page in the site.  I had found a way to successfully parse the Site Actions menu using some trickery:</p>
<blockquote><p>$(&#8216;#siteactions ie\\:menuitem&#8217;).each(function(){</p></blockquote>
<p>(Note: my Site Actions Menu lives in a div called #siteactions in my master page)</p>
<p>This seemed to work well until I wanted to take advantage of the latest <a title="SPServices jQuery library for Sharepoint" href="http://spservices.codeplex.com/" target="_blank">SPServices</a> release which is now compatible with the latest jQuery.  I suspect (though I haven&#8217;t done extensive testing to be sure) is that some of the same issues with the new jQuery that were incompatible with the earlier release of SPServices were causing my issues.  After a bit of head-scratching I decided to sidestep the issue alltogether.  I couldn&#8217;t quite find a way to select the ie:menuitem nodes and step through them with an &#8216;each&#8217; so instead I opted to simply use:</p>
<blockquote><p>$(&#8216;#siteactions menu&#8217;).children().each(function(){</p></blockquote>
<p>I suppose this may have been obvious to some but for some reason I was determined to get the selector right.  If you know how to select elements with namespaces across-browsers in jQuery 1.7 I would be very interested to hear.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<div class="none"><g:plusone href="http://hightechdave.com/2011/12/27/parsing-the-sharepoint-site-actions-menu-with-jquery/" size="standard" count="true"></g:plusone></div><img src="http://feeds.feedburner.com/~r/hightechdave/~4/vHJ-1OmLmiI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://hightechdave.com/2011/12/27/parsing-the-sharepoint-site-actions-menu-with-jquery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://hightechdave.com/2011/12/27/parsing-the-sharepoint-site-actions-menu-with-jquery/</feedburner:origLink></item>
		<item>
		<title>Stop the annoying Adobe Dreamweaver prompt for Alt field text</title>
		<link>http://feedproxy.google.com/~r/hightechdave/~3/2FrrfZ9pYxw/</link>
		<comments>http://hightechdave.com/2011/12/05/stop-the-annoying-adobe-dreamweaver-prompt-for-alt-field-text/#comments</comments>
		<pubDate>Mon, 05 Dec 2011 22:23:28 +0000</pubDate>
		<dc:creator>hightechdave</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Tech Tips]]></category>

		<guid isPermaLink="false">http://hightechdave.com/?p=340</guid>
		<description><![CDATA[<p>Yes, I still use image maps.  They are nifty, and don&#8217;t require Flash to pull off things like interactive maps.  But suppose you are trying to add 70ish links to an image map and Dreamweaver insists on prompting you EVERY SINGLE TIME to add an ALT tag.  Before you slit your wrists or kill your computer, there is hope.  This &#8230;</p>]]></description>
			<content:encoded><![CDATA[<p>Yes, I still use image maps.  They are nifty, and don&#8217;t require Flash to pull off things like interactive maps.  But suppose you are trying to add 70ish links to an image map and Dreamweaver insists on prompting you EVERY SINGLE TIME to add an ALT tag.  Before you slit your wrists or kill your computer, there is hope.  This can quite easily be disabled by:</p>
<p>Go to  Edit menu &gt; Preferences &gt; Accessibility &gt; and remove checkmark from the Images box.</p>
<p>This is not to suggest you should ignore accessibility, just that you don&#8217;t have to have Dreamweaver drill it into your skull 70 times to get the point across.</p>
<div class="none"><g:plusone href="http://hightechdave.com/2011/12/05/stop-the-annoying-adobe-dreamweaver-prompt-for-alt-field-text/" size="standard" count="true"></g:plusone></div><img src="http://feeds.feedburner.com/~r/hightechdave/~4/2FrrfZ9pYxw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://hightechdave.com/2011/12/05/stop-the-annoying-adobe-dreamweaver-prompt-for-alt-field-text/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://hightechdave.com/2011/12/05/stop-the-annoying-adobe-dreamweaver-prompt-for-alt-field-text/</feedburner:origLink></item>
		<item>
		<title>Downloading past purchases from iTunes (or your other devices)</title>
		<link>http://feedproxy.google.com/~r/hightechdave/~3/5ProkOBUts4/</link>
		<comments>http://hightechdave.com/2011/10/03/downloading-past-purchases-from-itunes-or-your-other-devices/#comments</comments>
		<pubDate>Mon, 03 Oct 2011 20:43:27 +0000</pubDate>
		<dc:creator>hightechdave</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Tech Tips]]></category>

		<guid isPermaLink="false">http://hightechdave.com/?p=333</guid>
		<description><![CDATA[<p>It has been awhile since I felt the desire to blog, things have been really busy.  But this tip was just too good not to share!</p>
<p>Have you ever wanted to re-download something from iTunes?  I sure have.  One example was a TV Season I bought for the kids a while back, Backyardigans Season 3.  I opted for the HD &#8230;</p>]]></description>
			<content:encoded><![CDATA[<p>It has been awhile since I felt the desire to blog, things have been really busy.  But this tip was just too good not to share!</p>
<p>Have you ever wanted to re-download something from iTunes?  I sure have.  One example was a TV Season I bought for the kids a while back, Backyardigans Season 3.  I opted for the HD variety but once we tried to view it, it was awful.  It averaged something like 3 frames per second.    Apple doesn&#8217;t exactly make it obvious how to report a problem or get help with such things.  At least it wasn&#8217;t obvious to me, and I looked for awhile.</p>
<p>So with the upcoming release of iCloud Apple has introduced a neat new feature, you can download all of your past purchases!  This seems like one of those features that have been there since day one.  But unless you were some high-profile celebrity or got lucky, you couldn&#8217;t technically do this in the past.</p>
<p>So here you go, go get those accidentally deleted episodes you have been missing.</p>
<p>http://support.apple.com/kb/ht2519</p>
<div class="none"><g:plusone href="http://hightechdave.com/2011/10/03/downloading-past-purchases-from-itunes-or-your-other-devices/" size="standard" count="true"></g:plusone></div><img src="http://feeds.feedburner.com/~r/hightechdave/~4/5ProkOBUts4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://hightechdave.com/2011/10/03/downloading-past-purchases-from-itunes-or-your-other-devices/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://hightechdave.com/2011/10/03/downloading-past-purchases-from-itunes-or-your-other-devices/</feedburner:origLink></item>
		<item>
		<title>Reset the Windows Home Server (WHS) backup database</title>
		<link>http://feedproxy.google.com/~r/hightechdave/~3/kmjFJlPPIiA/</link>
		<comments>http://hightechdave.com/2011/04/05/reset-the-windows-home-server-whs-backup-database/#comments</comments>
		<pubDate>Tue, 05 Apr 2011 17:28:03 +0000</pubDate>
		<dc:creator>hightechdave</dc:creator>
				<category><![CDATA[Tech Tips]]></category>

		<guid isPermaLink="false">http://hightechdave.com/?p=328</guid>
		<description><![CDATA[<p>I was in the final stages of migrating to a newer, quieter server and was finally ready to move my drives to the new machine.  However, I could not seem to get the old server to remove the old backups.  After trying to get the console to do it for me I still was staring out 30% usage towards backups &#8230;</p>]]></description>
			<content:encoded><![CDATA[<p>I was in the final stages of migrating to a newer, quieter server and was finally ready to move my drives to the new machine.  However, I could not seem to get the old server to remove the old backups.  After trying to get the console to do it for me I still was staring out 30% usage towards backups that should not exist anymore.</p>
<p>This meant I couldn&#8217;t pull my two 1.5 gig drives that were slated for expansion in the new rig.</p>
<p>So I figured it was time to purge them manually.  Here is how you do it:</p>
<blockquote><p>1. Run <strong>mstsc.exe</strong> to start a Remote Desktop Connection session to your home server.  <em>Or if you are on a Mac (as I am) use the </em><a title="Remote Desktop Connection for Mac" href="http://www.microsoft.com/mac/remote-desktop-client" target="_blank"><em>Remote Desktop Connection client for Mac</em></a><em>.</em></p>
<p>2. Open a Command Prompt, Click <strong>Start</strong>, <strong>Run </strong>and type <strong>CMD</strong></p>
<p>3. Type <strong>net stop PDL</strong>.<strong></strong></p>
<p>4. Type<strong> net stop WHSBackup </strong>to stop the Windows Home Server Backup service.<strong></strong></p>
<p>5. Delete the contents of <strong>D:\folders\{00008086-058D-4C89-AB57-A7F909A47AB4}</strong>.  Do not delete the folder.<strong></strong></p>
<p>6. Type<strong> net start WHSBackup</strong> to restart the Windows Home Server Backup service.<strong></strong></p>
<p>7. Type <strong>net start PDL</strong>.</p>
<p>After deleting the backup database, you need to reinstall the Windows Home Server Connector software or run the <strong>Discovery.Exe</strong> program on each of your home computers to re-establish a relationship between your home computers and your home server so new backups will occur.</p></blockquote>
<p>Thanks to <a title="James Clarke" href="http://www.clarkezone.net/default.aspx?id=532d3d54-b935-40e7-b020-beb0ca1d653a" target="_blank">James Clarke</a> for the instructions.</p>
<div class="none"><g:plusone href="http://hightechdave.com/2011/04/05/reset-the-windows-home-server-whs-backup-database/" size="standard" count="true"></g:plusone></div><img src="http://feeds.feedburner.com/~r/hightechdave/~4/kmjFJlPPIiA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://hightechdave.com/2011/04/05/reset-the-windows-home-server-whs-backup-database/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://hightechdave.com/2011/04/05/reset-the-windows-home-server-whs-backup-database/</feedburner:origLink></item>
		<item>
		<title>Recover NewForm.aspx from the dead in Sharepoint 2007</title>
		<link>http://feedproxy.google.com/~r/hightechdave/~3/WtofJrudFvQ/</link>
		<comments>http://hightechdave.com/2010/09/22/recover-newform-aspx-from-the-dead-in-sharepoint-2007/#comments</comments>
		<pubDate>Wed, 22 Sep 2010 15:03:59 +0000</pubDate>
		<dc:creator>hightechdave</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Sharepoint]]></category>

		<guid isPermaLink="false">http://hightechdave.com/?p=308</guid>
		<description><![CDATA[<p>Have you nuked your NewForm.aspx  page in Sharepoint WSS/MOSS 2007?   This can happen if you remove the default list web part from the page and save the file.  The problem is apparently that any time you create a custom list form web part, it grabs the latest fields from NewForm.aspx not from the list settings.  Go figure.</p>
<p>So without warning &#8230;</p>]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-319" title="Bring your page back from the dead (without the zombies)" src="http://hightechdave.com/files/2010/09/zombie_chick.jpg" alt="" width="284" height="423" />Have you nuked your NewForm.aspx  page in Sharepoint WSS/MOSS 2007?   This can happen if you remove the default list web part from the page and save the file.  The problem is apparently that any time you create a custom list form web part, it grabs the latest fields from NewForm.aspx not from the list settings.  Go figure.</p>
<p>So without warning you can totally destroy your NewForm page and also cause problems for every custom form you might spawn off of it.  To save yourself from this disaster (which should not be possible in the first place IMO) follow the instructions below (these instructions were originally posted by David Szabo <a title="David Szabo's Blog on MSDN" href="http://blogs.msdn.com/b/dszabo/archive/2007/02/20/custom-list-newform-aspx-ruined-in-wss-3-0.aspx" target="_blank">here</a>):</p>
<ol>
<li>Open NewForm.aspx and EditForm.aspx in Sharepoint Designer</li>
<li>Copy the code for the ListFormWebPart control from the EditForm.aspx. The  code in question reaches from<br />
&lt;WebPartPages:ListFormWebPart runat=&#8221;server&#8221; __MarkupType=&#8221;xmlmarkup&#8221;  WebPart=&#8221;true&#8221; __WebPartId=&#8221;{YOUR_GUID}&#8221; &gt;down to&nbsp;</p>
<p>&lt;/WebPartPages:ListFormWebPart&gt;</li>
<li> Paste it into the broken NewForm.aspx, I pasted it right below the  Line:&lt;WebPartPages:WebPartZone runat=&#8221;server&#8221; FrameType=&#8221;None&#8221; ID=&#8221;Main&#8221;  Title=&#8221;loc:Main&#8221;&gt;&lt;ZoneTemplate&gt;</li>
<li> Within the pasted lines of code look up the lines starting with&lt;ControlModeand
<p>&lt;FormType</p>
<p>In the &#8220;Control mode&#8221; tag replace the &#8220;Edit&#8221; with &#8220;New&#8221;, in the  &#8220;FormType&#8221;-Section replace the digit &#8220;6&#8243; with &#8220;8&#8243;.</li>
<li>Before saving, you have to generate a new GUID for the pasted control in  your NewForm.aspx otherwise your EditForm.aspx will be broken after saving!!!There are online GUID generators on the internet so you don&#8217;t need Visual  Studio, e. g.:<a href="http://www.somacon.com/p113.php">http://www.somacon.com/p113.php</a>
<p>Generate a new GUID and asign it to the &#8220;__WebPartId&#8221; attribute in the very  first line of code of your control:</p>
<p>&lt;WebPartPages:ListFormWebPart runat=&#8221;server&#8221; __MarkupType=&#8221;xmlmarkup&#8221;  WebPart=&#8221;true&#8221; __WebPartId=&#8221;{YOUR_NEW_GUID_HERE}&#8221; &gt;</li>
<li> Look up the &lt;ID&gt;&lt;/ID&gt;-Tag further below (it was about 27 lines  below in my case) and change a random number in the ID, e. g.Before: &lt;ID&gt;g_092cc5f1_f97c_408b_bf66_c7b235af38f9&lt;/ID&gt;After:
<p>&lt;ID&gt;g_092cc5f1_f97c_408b_bf66_c7b235af38f5&lt;/ID&gt;</li>
<li> Save your work&#8230;and your done!</li>
</ol>
<p>Thank you to David for posting the solution.  This definitely helped with some issues we had this week.  I really should have known better but I was operating under the assumption that I did not at any point need to use the standard NewForm.aspx page any longer.  What I didn&#8217;t realize was that once you overwrite the file it becomes the new site definition.  This means you cannot simply right-click and &#8220;reset to site definition&#8221; as you might expect.  You might be familiar with this if you have customized your default.aspx page and would like to restore it.</p>
<p>I also didn&#8217;t realize that when you make changes to your list they will not show when you re-add the Custom List Form control (see below).</p>
<p>To ensure this doesn&#8217;t happen when you create custom forms in Sharepoint 2007  do the following:</p>
<ol>
<li>Create a copy of NewForm.aspx (or right-click and select New From Existing Page)</li>
<li>Remove or hide the default list web part</li>
<li>From the menu select Insert-&gt;Sharepoint Controls-&gt;Custom List Form</li>
<li>Select the appropriate list (the defaults should be for a new form)</li>
<li>Hit Okay</li>
</ol>
<p>Now you just need to make sure that any links pointing to NewForm go to your new page.  But in this way you don&#8217;t have to worry about screwing up your NewForm page and any subsequent custom forms you may derive from it.</p>
<p>Alternatively you can indeed customize NewForm and make it work, just make sure you hide the default part rather than deleting it.</p>
<div class="none"><g:plusone href="http://hightechdave.com/2010/09/22/recover-newform-aspx-from-the-dead-in-sharepoint-2007/" size="standard" count="true"></g:plusone></div><img src="http://feeds.feedburner.com/~r/hightechdave/~4/WtofJrudFvQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://hightechdave.com/2010/09/22/recover-newform-aspx-from-the-dead-in-sharepoint-2007/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://hightechdave.com/2010/09/22/recover-newform-aspx-from-the-dead-in-sharepoint-2007/</feedburner:origLink></item>
		<item>
		<title>Akismet, why it is awesome, and why you don’t need it</title>
		<link>http://feedproxy.google.com/~r/hightechdave/~3/oBhWD2LMT3g/</link>
		<comments>http://hightechdave.com/2010/08/29/akismet-why-it-is-awesome-and-why-you-dont-need-it/#comments</comments>
		<pubDate>Sun, 29 Aug 2010 22:13:26 +0000</pubDate>
		<dc:creator>hightechdave</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://hightechdave.com/?p=303</guid>
		<description><![CDATA[<p><a href="http://hightechdave.com/files/2010/08/muscles.jpg"></a>WordPress is a fantastic platform.  I use it almost exclusively as my CMS and blog of choice for myself and for my clients.    As it has matured the potential is really limitless as to what you can do with it.  But one of the things you might find once you delve into running your own WordPress site is that you &#8230;</p>]]></description>
			<content:encoded><![CDATA[<p><a href="http://hightechdave.com/files/2010/08/muscles.jpg"><img class="alignleft size-full wp-image-322" title="muscles" src="http://hightechdave.com/files/2010/08/muscles.jpg" alt="" width="283" height="424" /></a>WordPress is a fantastic platform.  I use it almost exclusively as my CMS and blog of choice for myself and for my clients.    As it has matured the potential is really limitless as to what you can do with it.  But one of the things you might find once you delve into running your own WordPress site is that you quickly become a target for SPAM.</p>
<p>But have no fear, <a title="Akismet, antispam tool" href="http://akismet.com/" target="_blank">Akismet</a> is here!   What is Akismet?  Well from the Akismet page you would find it described as such:</p>
<blockquote><p>Automattic Kismet (Akismet for short) is a collaborative effort to make comment and trackback spam a non-issue and restore innocence to blogging, so you <strong>never have to worry about spam again</strong>.</p></blockquote>
<p>Why is this important?  Well you don&#8217;t want your hard work to be tainted by spammers and bots.  It makes your site look trashy and if you keep it clean religiously then it just means extra work.  You should be writing not policing comments right?  And you don&#8217;t want to give spammers free publicity do you?</p>
<p>Well, the folks at Automattic (the authors of WordPress itself) have made this great little plugin available for free for non-commercial use.  So it goes without saying, you should use it because not only is it effective, it is 100% free in many cases.</p>
<p>But what if you are building a site that is a commercial venture?   Well thankfully they have drawn the line such that you only need a commercial license if you pull in more than $500/month from your blog.  To be honest, this doesn&#8217;t really make things clear for those that are building <em>websites</em>, not blogs (I will have to follow up with Automattic on this in the future).</p>
<p>Now don&#8217;t get me wrong, the $5/month they ask for a commercial license is totally worth it if you are pulling in that much scratch from your blog.  You will easily save yourself $5/month in headaches by using the service as it is very effective.</p>
<p>So why don&#8217;t you need it?  Well, as I said earlier, you most certainly should take advantage of it&#8230; <em>but,</em> only if you need it.</p>
<p>If you are using WordPress strictly as a CMS then you may not even want comments or trackbacks.  By default WordPress leaves these features on, so you might quickly find your site deluged with trackback and comment spam even on posts you never linked from your site&#8230; yeah those bots are that crafty.  The simple solution (if you don&#8217;t need these features) is to disable them.</p>
<p>To make your site spam-proof w/o Akismet head on over to your WordPress admin.</p>
<ol>
<li>Go to Settings</li>
<li>Ensure next to the Membership heading the checkbox for &#8220;Anyone can register&#8221; is unchecked.  This means only people you create accounts for can login to the site.</li>
<li>Go to the Settings-&gt;Discussion page</li>
<li>Under &#8220;Default article settings&#8221; you can probably just uncheck all of these, though the most important ones here are the &#8220;<label for="default_ping_status">Allow link notifications from other blogs (pingbacks and trackbacks.)&#8221; and</label> <label for="default_comment_status"> &#8220;Allow people to post comments on new articles&#8221; options.  Uncheck these (and probably the first one while you are at it).</label></li>
<li><label for="default_comment_status">And finally under &#8220;Other comment settings&#8221; make sure the option for &#8220;<label for="comment_registration">Users must be registered and logged in to comment&#8221; is checked.</label></label></li>
</ol>
<p>Now, you might be wondering&#8230; why is this necessary when WordPress by default requires you to approve comments and trackbacks?  Good question, well the reason for me is that I don&#8217;t ever want to have to pour over a list of spam and read each entry to determine if it is valid or not.  Depending on the traffic your site has this may or may not be an issue.</p>
<p>For my own blog I do allow both comments and trackbacks&#8230; but for my clients who are using WordPress strictly as a CMS I follow the directions above to ensure they don&#8217;t have to deal with the extra maintenance.</p>
<p>But if you do in fact use comments/trackbacks on your site, Akismet is invaluable.   Give it a try, you won&#8217;t be disappointed.</p>
<div class="none"><g:plusone href="http://hightechdave.com/2010/08/29/akismet-why-it-is-awesome-and-why-you-dont-need-it/" size="standard" count="true"></g:plusone></div><img src="http://feeds.feedburner.com/~r/hightechdave/~4/oBhWD2LMT3g" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://hightechdave.com/2010/08/29/akismet-why-it-is-awesome-and-why-you-dont-need-it/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://hightechdave.com/2010/08/29/akismet-why-it-is-awesome-and-why-you-dont-need-it/</feedburner:origLink></item>
		<item>
		<title>How to install a beta version of iOS on an iPhone</title>
		<link>http://feedproxy.google.com/~r/hightechdave/~3/t9ZiUZblpRQ/</link>
		<comments>http://hightechdave.com/2010/08/12/how-to-install-a-beta-version-of-ios-on-an-iphone/#comments</comments>
		<pubDate>Fri, 13 Aug 2010 00:21:02 +0000</pubDate>
		<dc:creator>hightechdave</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[iOS]]></category>

		<guid isPermaLink="false">http://hightechdave.com/?p=300</guid>
		<description><![CDATA[<p>If you are an iOS (iPhone/iPad) developer you might want to try the latest beta release on your device.  To do so you will need to do a complete restore.  But rather than install the latest available to the public you will want to use the latest beta.  Once you have downloaded and mounted the beta release DMG file head &#8230;</p>]]></description>
			<content:encoded><![CDATA[<p>If you are an iOS (iPhone/iPad) developer you might want to try the latest beta release on your device.  To do so you will need to do a complete restore.  But rather than install the latest available to the public you will want to use the latest beta.  Once you have downloaded and mounted the beta release DMG file head over to iTunes to do the restore.</p>
<p>First make sure you have a backup of your device.  Do it twice if you aren&#8217;t sure <img src='http://hightechdave.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  Also may be prudent to &#8220;Transfer Purchases&#8221; as well just to be safe. When you are ready just do an ALT+Click on the Restore button in iTunes on the device screen to bring up an option to browse for the IPSW file with the iOS software.  After your device reboots you will want to restore from the backup you made earlier (you made a backup&#8230;. right?).</p>
<div class="none"><g:plusone href="http://hightechdave.com/2010/08/12/how-to-install-a-beta-version-of-ios-on-an-iphone/" size="standard" count="true"></g:plusone></div><img src="http://feeds.feedburner.com/~r/hightechdave/~4/t9ZiUZblpRQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://hightechdave.com/2010/08/12/how-to-install-a-beta-version-of-ios-on-an-iphone/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://hightechdave.com/2010/08/12/how-to-install-a-beta-version-of-ios-on-an-iphone/</feedburner:origLink></item>
		<item>
		<title>Consumer Reports on the iPhone</title>
		<link>http://feedproxy.google.com/~r/hightechdave/~3/OEqro4cVlr4/</link>
		<comments>http://hightechdave.com/2010/07/14/consumer-reports-on-the-iphone/#comments</comments>
		<pubDate>Wed, 14 Jul 2010 19:56:35 +0000</pubDate>
		<dc:creator>hightechdave</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Gear]]></category>

		<guid isPermaLink="false">http://hightechdave.com/?p=289</guid>
		<description><![CDATA[<div>
<p>The Consumer Reports <a title="Consumer Reports" href="http://blogs.consumerreports.org/electronics/2010/07/apple-iphone-4-antenna-issue-iphone4-problems-dropped-calls-lab-test-confirmed-problem-issues-signal-strength-att-network-gsm.html" target="_blank">article</a> slamming the new iPhone 4 is making major waves throughout the media.  The issue has been circulating quite a bit now in the blogosphere but seems to have really made it mainstream now.</p>
<p>I can easily reproduce the issue on my phone.  And it is clear that many people can as well.  I honestly cannot say </p>&#8230;</div>]]></description>
			<content:encoded><![CDATA[<div>
<p><img class="alignleft size-medium wp-image-315" title="apple-iphone-4-91" src="http://hightechdave.com/files/2010/07/apple-iphone-4-91-300x207.jpg" alt="" width="300" height="207" />The Consumer Reports <a title="Consumer Reports" href="http://blogs.consumerreports.org/electronics/2010/07/apple-iphone-4-antenna-issue-iphone4-problems-dropped-calls-lab-test-confirmed-problem-issues-signal-strength-att-network-gsm.html" target="_blank">article</a> slamming the new iPhone 4 is making major waves throughout the media.  The issue has been circulating quite a bit now in the blogosphere but seems to have really made it mainstream now.</p>
<p>I can easily reproduce the issue on my phone.  And it is clear that many people can as well.  I honestly cannot say whether or not I have more dropped calls versus my 3GS or original iPhone.  The bars are obviously changing when the phone is held in the &#8216;death grip&#8217;, but aside from that I cannot really complain.   My service with AT&amp;T has always been poor and I have had many dropped calls in clear skies right smack in the middle of Atlanta long before I got the new iPhone 4.</p>
<p>In any case I think there surely is sufficient anecdotal and more official reports that there is definitely an issue.</p>
<p>So what is new about these latest test from Consumer Reports?   Do they really affect real-world usage? Consumer Reports is largely regarded as an unwavering advocate for the consumer right?</p>
<p>Initially CR wrote a blog post heaping praise upon the device then more recently did a full 180 and jumped on the Pretty Apple Hate Machine.   To me it just screams &#8220;look we are relevant!&#8221; rather than offering anything new about the issue.  However, it is clear that this really elevated this problem to a much broader audience than even established tech blogs.</p>
<p>Take a look at this <a title="Engineer disputes Consumer Reports' testing process" href="http://mobileanalyst.wordpress.com/2010/07/12/iphone-4-report-consumer-reports-study-is-full-of-crap/" target="_blank">post</a> from an engineer with a perspective on the CR testing process.  This is not to suggest that there isn&#8217;t an issue or there is no validity to the results of the CR study.</p>
<p>Only time will tell if Apple can really solve this with a software update.  Personally I think Apple will do right in the end&#8230; why wouldn&#8217;t they?  They have gobs of money in the bank and have worked hard to establish themselves as the pinnacle of modern consumer technology.   Too bad Steve couldn&#8217;t just come out and say &#8220;we are working on it, please stand by&#8221; rather than his one-liner responses that only inflame the masses.</p>
<p>One thing is for sure though regardless of how all this turns out, CR&#8217;s report has really catapulted this into the eyes of many more people.  So one has to wonder what on earth is going on over in Cupertino and why they haven&#8217;t taken control over the situation.</p>
<p><strong>Update: </strong>Check out this article from <a href="http://www.anandtech.com/show/3821/iphone-4-redux-analyzing-apples-ios-41-signal-fix/3" target="_blank">AnandTech</a>.  Pretty solid analysis from a reputable source.  I love the &#8216;gold&#8217; tape!  I wonder how long till tape/decal kits for the band will start cropping up?</p>
<p><strong>Update 2:</strong> I have installed 4.0.1 and it has definitely resulted in less bars around the house.  Haven&#8217;t used it much to see if it changes dropped calls.</p>
</div>
<div class="none"><g:plusone href="http://hightechdave.com/2010/07/14/consumer-reports-on-the-iphone/" size="standard" count="true"></g:plusone></div><img src="http://feeds.feedburner.com/~r/hightechdave/~4/OEqro4cVlr4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://hightechdave.com/2010/07/14/consumer-reports-on-the-iphone/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://hightechdave.com/2010/07/14/consumer-reports-on-the-iphone/</feedburner:origLink></item>
		<item>
		<title>Understanding the Sharepoint CAML query</title>
		<link>http://feedproxy.google.com/~r/hightechdave/~3/u1KIAKFgP6Q/</link>
		<comments>http://hightechdave.com/2010/06/28/understanding-the-sharepoint-caml-query/#comments</comments>
		<pubDate>Tue, 29 Jun 2010 04:14:42 +0000</pubDate>
		<dc:creator>hightechdave</dc:creator>
				<category><![CDATA[Sharepoint]]></category>
		<category><![CDATA[Tech Tips]]></category>

		<guid isPermaLink="false">http://hightechdave.com/?p=280</guid>
		<description><![CDATA[<p>Sharepoint allows you to utilize web service calls to retrieve and manipulate data.  To do this though you will need to be able to write CAML to create your queries.  I found <a title="CAML in Sharepoint" href="http://www.codeproject.com/KB/sharepoint/Sharepoint_CAML_query.aspx" target="_blank">this site</a> pretty useful when it came time to really dig into creating my own custom CAML-based Sharepoint queries.</p>
<div class="none">&#8230;</div>]]></description>
			<content:encoded><![CDATA[<p>Sharepoint allows you to utilize web service calls to retrieve and manipulate data.  To do this though you will need to be able to write CAML to create your queries.  I found <a title="CAML in Sharepoint" href="http://www.codeproject.com/KB/sharepoint/Sharepoint_CAML_query.aspx" target="_blank">this site</a> pretty useful when it came time to really dig into creating my own custom CAML-based Sharepoint queries.</p>
<div class="none"><g:plusone href="http://hightechdave.com/2010/06/28/understanding-the-sharepoint-caml-query/" size="standard" count="true"></g:plusone></div><img src="http://feeds.feedburner.com/~r/hightechdave/~4/u1KIAKFgP6Q" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://hightechdave.com/2010/06/28/understanding-the-sharepoint-caml-query/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://hightechdave.com/2010/06/28/understanding-the-sharepoint-caml-query/</feedburner:origLink></item>
		<item>
		<title>Google Apps business email hosting with MediaTemple DV server</title>
		<link>http://feedproxy.google.com/~r/hightechdave/~3/kPzJyiHIkNc/</link>
		<comments>http://hightechdave.com/2010/06/28/google-apps-business-email-hosting-with-mediatemple-dv-server/#comments</comments>
		<pubDate>Mon, 28 Jun 2010 15:34:01 +0000</pubDate>
		<dc:creator>hightechdave</dc:creator>
				<category><![CDATA[Business Tech]]></category>
		<category><![CDATA[Tech Tips]]></category>

		<guid isPermaLink="false">http://hightechdave.com/?p=272</guid>
		<description><![CDATA[<p><a href="http://hightechdave.com/files/2010/06/Screen-shot-2010-06-28-at-11.55.11-AM.png"></a>E-mail is a fundamental part of any business today.  Unfortunately, not all web hosting provides adequate email service.  From SPAM to webmail, there leaves a lot to be desired depending on your provider.</p>
<p>MediaTemple&#8217;s DV server is a powerful option for any developer or business.  But the webmail and SPAM prevention just aren&#8217;t up to my (or my clients&#8217;) expectations.  &#8230;</p>]]></description>
			<content:encoded><![CDATA[<p><a href="http://hightechdave.com/files/2010/06/Screen-shot-2010-06-28-at-11.55.11-AM.png"><img class="alignleft size-full wp-image-276" title="Google Apps" src="http://hightechdave.com/files/2010/06/Screen-shot-2010-06-28-at-11.55.11-AM.png" alt="" width="183" height="75" /></a>E-mail is a fundamental part of any business today.  Unfortunately, not all web hosting provides adequate email service.  From SPAM to webmail, there leaves a lot to be desired depending on your provider.</p>
<p>MediaTemple&#8217;s DV server is a powerful option for any developer or business.  But the webmail and SPAM prevention just aren&#8217;t up to my (or my clients&#8217;) expectations.  The default Horde webmail is clunky, renders HTML poorly, and lacks many features that you might expect out of business email.</p>
<p>There are many different options these days for webmail and email hosting.   But what about free?</p>
<p>So this weekend I set out to do a little experiment.  I wanted to try out <a title="Google Apps for business" href="http://www.google.com/apps/intl/en/business/index.html" target="_blank">Google&#8217;s business email hosting</a> service.  This has the benefit of not only being free (for the standard version) and comes with the niceties you might already be used to with using Gmail for your personal account.</p>
<p>The premise is to move all aspects of your server&#8217;s mail services to Google which will include some changes to your domain&#8217;s MX record (and CNAME records).  Keep in mind this could result in a short interuption of service.   The limited amount of effort thus far has proven to be well worth it.</p>
<p>Since I use a MediaTemple DV server for most of my hosting, I sought out some guidance and found some great instructions <a title="How to use Google hosted email with MediaTemple" href="http://knol.google.com/k/creating-your-mx-records-cname-records-for-google-apps-mt-media-temple#" target="_blank">here</a>.  Be sure to follow it completely as if you do not disable the mail service in Plesk it will not work.</p>
<p>Now as of today I have shiny new mail service, all backed by Google&#8217;s infrastructure.  This is hosting-independent, has Google&#8217;s famously awesome webmail, and is still accessible on all my devices using the native mail clients via IMAP.</p>
<p>This really is a great option for anyone wanting business class email (and all of the other Google apps).</p>
<p><strong>Update:</strong> I have been using this service now for a couple months.  It has worked without a single hitch.  I run all my email through IMAP which keeps all my devices in sync, and don&#8217;t get a drop of spam.  I have to say that I highly recommend this to anyone, especially if you aren&#8217;t satisfied with your host&#8217;s webmail solution.</p>
<div class="none"><g:plusone href="http://hightechdave.com/2010/06/28/google-apps-business-email-hosting-with-mediatemple-dv-server/" size="standard" count="true"></g:plusone></div><img src="http://feeds.feedburner.com/~r/hightechdave/~4/kPzJyiHIkNc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://hightechdave.com/2010/06/28/google-apps-business-email-hosting-with-mediatemple-dv-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://hightechdave.com/2010/06/28/google-apps-business-email-hosting-with-mediatemple-dv-server/</feedburner:origLink></item>
	</channel>
</rss>

