<?xml version="1.0" encoding="iso-8859-1"?>
<rss version="2.0"
 xmlns:dc="http://purl.org/dc/elements/1.1/"
 xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
 xmlns:admin="http://webns.net/mvcb/"
 xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
 xmlns:content="http://purl.org/rss/1.0/modules/content/"
 xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/">
<channel>
<title>PhilRandolph.com</title>
<description>Blogging about Notes/Domino Development, Detroit Red Wings Hockey and Family</description>
<link>http://philrandolph.com/philrandolph/philrandolph.nsf/</link>
<language>en-us</language>
<lastBuildDate>Thu, 24 Jul 2008 08:52:00 -0500</lastBuildDate>
<item>
<title>Momelettes.com - new site by Jess Stratton</title>
<pubDate>Thu, 24 Jul 2008 08:52:00 -0500</pubDate>
<description>
<![CDATA[ 
<P>Yesterday <A href="http://www.mattandjess.net/blog/">Jess</A> released her new blog <A href="http://momelettes.com/">momelettes.com</A> into the wi ...
 ]]>
</description>
<link>http://hostit1.connectria.com/philrandolph/philrandolph.nsf/dx/07242008075415AMHOSH5Y.htm</link>
<category>Blogging</category>
<dc:creator>Phil Randolph</dc:creator>
<comments>http://hostit1.connectria.com/philrandolph/philrandolph.nsf/dx/07242008075415AMHOSH5Y.htm?opendocument&amp;comments</comments>
<guid isPermaLink="true">http://hostit1.connectria.com/philrandolph/philrandolph.nsf/dx/07242008075415AMHOSH5Y.htm</guid>
<content:encoded><![CDATA[ <P>Yesterday <A href="http://www.mattandjess.net/blog/">Jess</A> released her new blog <A href="http://momelettes.com/">momelettes.com</A> into the wild.</P> <P>From her <A href="http://www.mattandjess.net/blog/archives/000345.html">announcement</A>:</P> <P> <BLOCKQUOTE>Momelettes.com will contain tips for moms, ranging from lifehacks to cool websites, to useful tech tips and gadgets that will help them out.</BLOCKQUOTE> <P></P> <P>My wife is already plugged in, as she and I were some of Jess' early beta testers.</P> <P>My hope is that Jess has lots of luck with this site, and will be able to spend the quality time she wants to have with little Zoë.</P> ]]></content:encoded>
<wfw:commentRss> http://hostit1.connectria.com/philrandolph/philrandolph.nsf/dxcomments/07242008075415AMHOSH5Y.htm</wfw:commentRss>
<wfw:comment> http://hostit1.connectria.com/philrandolph/philrandolph.nsf/dx/07242008075415AMHOSH5Y.htm?opendocument&amp;comments</wfw:comment>
</item>
<item>
<title>S&amp;TT - Tagging Mail Documents...slightly extended</title>
<pubDate>Wed, 23 Jul 2008 10:24:00 -0500</pubDate>
<description>
<![CDATA[ 
<P>One day early for S&amp;TT, but I couldn't wait...</P> <P>Ever since I read the post that Chris Blatnick put up last month about <a href="http://in ...
 ]]>
</description>
<link>http://hostit1.connectria.com/philrandolph/philrandolph.nsf/dx/07232008092534AMHOSJX3.htm</link>
<category>Show-N-Tell Thursday</category>
<dc:creator>Phil Randolph</dc:creator>
<comments>http://hostit1.connectria.com/philrandolph/philrandolph.nsf/dx/07232008092534AMHOSJX3.htm?opendocument&amp;comments</comments>
<guid isPermaLink="true">http://hostit1.connectria.com/philrandolph/philrandolph.nsf/dx/07232008092534AMHOSJX3.htm</guid>
<content:encoded><![CDATA[ <P>One day early for S&amp;TT, but I couldn't wait...</P> <P>Ever since I read the post that Chris Blatnick put up last month about <a href="http://interfacematters.com/2008/06/add-tagging-to-your-mail-or-any-other.html">adding tagging to your mail file</a>, I have been intrigued.&nbsp; I quickly did as he suggested and created a new toolbar button with the code he provided and starting tagging away.&nbsp; </P> <P>I quickly realized that this was going to be a tedious process in a couple of ways if I was going&nbsp;one document at a time and had virtually no way of knowing whether the documents had been tagged.&nbsp; I of course don't want to, and can't, make design changes to the design elements of my mail file, but I could create a <EM>new</EM> view based off of an existing view then add a column for the tagging information and also some actions related to tagging, instead of just using the toolbar icon.</P> <P>I created a new view based off the All Documents view (called it 'All by Tags') and threw 2 columns into it, in front of the Who column, one being a category totals column with detail rows hidden, and then a categorized column, showing multiple values as separate entries, and with the formula - <STRONG>@If(txt_customtags = ""; "*No tags applied";txt_customtags)</STRONG>.&nbsp; This now brings the tags applied to the forefront, and also shows which emails do not have any tags applied yet, all together.</P> <P>I modified the code for setting the tags on the document slightly resulting in this view action called "Tag Document":</P> <P><blockquote>REM {Get tags stored in database};<BR>Tags := @GetProfileField("TagsProfile";"txt_CurrentTags";@UserName);</P> <P>REM {Get any tags from the selected document};<BR>DocTags := txt_CustomTags;</P> <P>Selection := @Prompt(&#91;OkCancelListMult&#93;; "Select Tag(s)"; "Please select the tag(s) to apply to this document"; DocTags; @Trim("*-add new-*" : @Unique(Tags : DocTags)));</P> <P>@If(Selection = 1;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; @Return("");<BR>@IsMember("*-add new-*"; Selection);<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; @Set("NewTag"; @Prompt(&#91;OkCancelEdit&#93;; "Enter New Tag"; "Please enter the new tag(s) you would like to apply to this document.&nbsp; Separate tags with a comma"; ""));<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; "");</P> <P>UpdatedList := @Trim(@Unique(@Replace(Selection; "*-add new-*"; "") : @Explode(NewTag;"," )));</P> <P>FIELD txt_CustomTags := UpdatedList;</P> <P>@SetProfileField("TagsProfile"; "txt_CurrentTags"; @Unique(UpdatedList : Tags); @UserName)</blockquote><BR><BR>Then I wanted to be able to see the list of tags applied to a document (especially when it is more than one tag), so I created this action called "Display Tags":<BR><blockquote><BR>@Prompt(&#91;Ok&#93;; "This Document's Tag(s)"; "Tags applied to this document: " + @NewLine + @NewLine + @Implode(txt_CustomTags;@NewLine));<BR>@True</blockquote></P> <P>Lastly, I wanted a way to clear all the tags as Chris suggested, so I create another action called "Clear Tags":<BR><blockquote><BR>FIELD&nbsp; txt_CustomTags := @Unavailable;<BR>@True</blockquote></P> <P><BR>Now, back to what I mentioned earlier, this is all well and good, but what if I want to set a tag or various tags on a whole bunch of documents at once?&nbsp; <a href="http://www.vitor-pereira.com/">Vitor Pereira</a> suggested in a comment on the original post that perhaps this code coupled with a little bit of Chad Schelfhout's <a href="http://www.chadsmiley.com/EditDocumentFields">Edit Document Fields</a> code could allow us to modify more than one document.</P> <P>So I had a go at it...</P> <P>Here's what I came up with, in an action called "Tag Multiple Documents":<BR><blockquote>REM {Get tags stored in database};<BR>Tags := @GetProfileField("TagsProfile";"txt_CurrentTags";@UserName);</P> <P>Selection := @Prompt(&#91;OkCancelListMult&#93;; "Select Tag(s)"; "Please select the tag(s) to apply to these documents"; ""; @Trim("*-add new-*" : @Unique(Tags)));</P> <P>@If(Selection = 1;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; @Return("");<BR>@IsMember("*-add new-*"; Selection);<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; @Set("NewTag"; @Prompt(&#91;OkCancelEdit&#93;; "Enter New Tag"; "Please enter the new tag(s) you would like to apply to this document.&nbsp; Separate tags with a comma"; ""));<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; "");</P> <P>UpdatedList := @Trim(@Unique(@Replace(Selection; "*-add new-*"; "") : @Explode(NewTag;"," )));</P> <P>REM {Unchangable constants};<BR>cPromptTitle := @DbTitle + " - " + @ViewTitle;<BR>cNoteEntryLength := 11;<BR>cArraySeparator := ";";<BR>cMaxSearchForSelectedDocs := 5520;<BR>cCategoryNoteID := "NT00000000";<BR>cPromptNewLineOne := @Char(13);<BR>cPromptNewLineTwo := cPromptNewLineOne + cPromptNewLineOne;<BR>cPromptTab := @Char(9);<BR>cErrorInformation := "\"Error documents: \" + @Implode( @Unique( @Explode( ErrorNoteIDList ; cArraySeparator ; @False ) ) ; \", \" ) + cPromptNewLineOne + \"Not updated documents: \" + @Implode( @Unique( @Explode( ErrorNoteIDList ; cArraySeparator ; @False ) ) ; \", \" )";</P> <P>REM {Store all Note IDs before manipulation in case field modifications cause categorized views or sorted columns to reorganize};<BR>NoteIDList := @Text( @NoteID );<BR>ErrorNoteIDList := "";<BR>@Command(&#91;NavNextSelected&#93;);<BR>@UpdateFormulaContext;</P> <P>REM {Start Looping Selected documents to gather all the documents that need to be updated.};<BR>@While( ( @Left( NoteIDList ; cNoteEntryLength ) != ( @Text( @NoteID + cArraySeparator ) ) ) &amp; ( @Length( NoteIDList ) < cMaxSearchForSelectedDocs ) ;<BR>&nbsp;NoteIDList := NoteIDList + cArraySeparator + @Text( @NoteID );<BR>&nbsp;NoteIDList := @ReplaceSubstring( NoteIDList ; cCategoryNoteID + cArraySeparator ; "" );<BR>&nbsp;@Command(&#91;NavNextSelected&#93;);<BR>&nbsp;@UpdateFormulaContext<BR>);</P> <P>REM {Remove all category Note IDs};<BR>NoteIDList := @ReplaceSubstring( NoteIDList ; cCategoryNoteID ; "" );</P> <P>REM {Remove all duplicate Note IDs};<BR>NoteIDList := @Unique( @Explode( NoteIDList ; cArraySeparator ; @False ) );<BR>@StatusBar( "Found " + @Text( @Elements( NoteIDList ) ) + " documents." );<BR>NotNoteIDList := "";</P> <P>EditField :=&nbsp; form;</P> <P>REM {Loop through selected docs taking each NoteIDList out of the list as it is processed};<BR>DocUpdateCount := 0;<BR>DocNavigationCount := 0;<BR>@While( DocUpdateCount < @Elements( NoteIDList ) ;<BR>&nbsp;@If( @TextToNumber( @Text( @DocumentUniqueID ) ) != 0 ;<BR>&nbsp;&nbsp;@Do(<BR>&nbsp;&nbsp;&nbsp;NoteIDList := @Replace( NoteIDList ; @NoteID ; "" ) ;<BR>&nbsp;&nbsp;&nbsp;NotNoteIDList := NotNoteIDList : @NoteID;<BR>&nbsp;&nbsp;&nbsp;formulaResult := @Eval( @SetField("txt_CustomTags"; @Trim(@Unique(UpdatedList:txt_CustomTags))));<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; DocUpdateCount := DocUpdateCount + 1;<BR>&nbsp;&nbsp;&nbsp;@UpdateFormulaContext<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; );<BR>&nbsp;"")<BR>);</P> <P>@StatusBar( "Navigated through " + @Text( DocUpdateCount + DocNavigationCount ) + " documents." );</P> <P>@SetProfileField("TagsProfile"; "txt_CurrentTags"; @Unique(UpdatedList : Tags); @UserName)</blockquote></P> <P>This last action does have some more work to be done on it, but it works (as far as I can tell) if you&nbsp;stick to&nbsp;the following rules:<BR>&nbsp; - The set of selected documents must be contiguous (all together in the view)<BR>&nbsp; - You must leave your cursor (highlight, whatever...) on the first document of the list of selected (checked) documents.<BR>&nbsp;&nbsp; - The action doesn't de-select the documents once they have been modified, so you need to be careful to clear any selections before doing your next set of tagging (easy to do via Edit...Deselect All)</P> <P>I'd love to hear if any of your try this set of functionality out and it works for you, and also if you can get around any of the shortcomings of my current code for tagging multiple documents at once, as this was a true trial and error (many, many errors) thing.</P> <P>Special thanks to <a href="http://interfacematters.com/">Chris Blatnick</a> for putting this in front of us in the first place!</P> ]]></content:encoded>
<wfw:commentRss> http://hostit1.connectria.com/philrandolph/philrandolph.nsf/dxcomments/07232008092534AMHOSJX3.htm</wfw:commentRss>
<wfw:comment> http://hostit1.connectria.com/philrandolph/philrandolph.nsf/dx/07232008092534AMHOSJX3.htm?opendocument&amp;comments</wfw:comment>
</item>
<item>
<title>Got burned by this...hopefully you won&#8217;t as a result</title>
<pubDate>Tue, 22 Jul 2008 09:08:00 -0500</pubDate>
<description>
<![CDATA[ 
<P>For several months, I have had a nagging problem with an @Mailsend in an "Approve" action in one of my workflow apps not working. But it's been mo ...
 ]]>
</description>
<link>http://hostit1.connectria.com/philrandolph/philrandolph.nsf/dx/07222008080858AMHOSHF6.htm</link>
<category>Notes/Domino</category>
<dc:creator>Phil Randolph</dc:creator>
<comments>http://hostit1.connectria.com/philrandolph/philrandolph.nsf/dx/07222008080858AMHOSHF6.htm?opendocument&amp;comments</comments>
<guid isPermaLink="true">http://hostit1.connectria.com/philrandolph/philrandolph.nsf/dx/07222008080858AMHOSHF6.htm</guid>
<content:encoded><![CDATA[ <P>For several months, I have had a nagging problem with an @Mailsend in an "Approve" action in one of my workflow apps not working.&nbsp; But it's been more of a "would be nice to fix", an&nbsp;not a "must be taken care of now", as it's just a confirmation of the approval, and nothing else happens to the document until a new approval cycle starts many months later.</P> <P>I've been in working on a few things for a modified design of the app, and so I started to look deeper at this issue too...&nbsp; Turns out that what was happening wasn't a problem with my code, but a regression problem when we upgraded to Notes 7, in that my approvers role users group,&nbsp;with "Author" access, but without the "Create Documents" priveledge could not send emails with @Mailsend.&nbsp; Here's a <a href="http://www-10.lotus.com/ldd/nd6forum.nsf/55c38d716d632d9b8525689b005ba1c0/d212f2e39fd595ec852571da005c43ef?OpenDocument">post on LDD</a> which came up similiar to my problem, that then led me to a <a href="http://www-1.ibm.com/support/docview.wss?uid=swg21100336">technote</a>, which helped me determine that granting the priveledge but making sure my database forms were locked down by roles for create (which they already were), would allow approvers to send the email via the action again.</P> <P>The killer here was that this database design hadn't been touched since before we migrated to Notes/Domino 7, and the problem didn't exist in the Notes 6.x stream, so until I stumbled upon the regression we didn't know it was there.&nbsp;</P> <P>Appears that this regression is fixed in 7.0.3 and all the 8.x stream, so that Authors and even Readers (who would obviously be affected too), can do the @Mailsends without the "Create Documents" priv.</P> <P>Hope this is able to help someone out there...it's nice to share when I can...seems I'm consuming help much more often than I dole it out...</P> ]]></content:encoded>
<wfw:commentRss> http://hostit1.connectria.com/philrandolph/philrandolph.nsf/dxcomments/07222008080858AMHOSHF6.htm</wfw:commentRss>
<wfw:comment> http://hostit1.connectria.com/philrandolph/philrandolph.nsf/dx/07222008080858AMHOSHF6.htm?opendocument&amp;comments</wfw:comment>
</item>
<item>
<title>Trek Reboot - 5/8/09</title>
<pubDate>Mon, 21 Jul 2008 12:38:00 -0500</pubDate>
<description>
<![CDATA[ 
<P>Just in time for my birthday next year...</P> <P align=center><img height=714 src="http://img.trekmovie.com/images/hiresposter2a.jpg" width=480 bo ...
 ]]>
</description>
<link>http://hostit1.connectria.com/philrandolph/philrandolph.nsf/dx/07212008114658AMHOSMPE.htm</link>
<category>General</category>
<dc:creator>Phil Randolph</dc:creator>
<comments>http://hostit1.connectria.com/philrandolph/philrandolph.nsf/dx/07212008114658AMHOSMPE.htm?opendocument&amp;comments</comments>
<guid isPermaLink="true">http://hostit1.connectria.com/philrandolph/philrandolph.nsf/dx/07212008114658AMHOSMPE.htm</guid>
<content:encoded><![CDATA[ <P>Just in time for my birthday next year...</P> <P align=center><img  height=714 src="http://img.trekmovie.com/images/hiresposter2a.jpg" width=480 border=0></P> <P>Hope it ends up being a good present...</P> ]]></content:encoded>
<wfw:commentRss> http://hostit1.connectria.com/philrandolph/philrandolph.nsf/dxcomments/07212008114658AMHOSMPE.htm</wfw:commentRss>
<wfw:comment> http://hostit1.connectria.com/philrandolph/philrandolph.nsf/dx/07212008114658AMHOSMPE.htm?opendocument&amp;comments</wfw:comment>
</item>
<item>
<title>Schedule&#8217;s out</title>
<pubDate>Thu, 17 Jul 2008 15:36:00 -0500</pubDate>
<description>
<![CDATA[ 
<P>The <a href="http://www.freep.com/apps/pbcs.dll/article?AID=/20080717/SPORTS05/80717041/1053/rss17">Red Wings schedule for the '08-'09 season</a> h ...
 ]]>
</description>
<link>http://hostit1.connectria.com/philrandolph/philrandolph.nsf/dx/07172008023727PMHOSQZY.htm</link>
<category>Wings</category>
<dc:creator>Phil Randolph</dc:creator>
<comments>http://hostit1.connectria.com/philrandolph/philrandolph.nsf/dx/07172008023727PMHOSQZY.htm?opendocument&amp;comments</comments>
<guid isPermaLink="true">http://hostit1.connectria.com/philrandolph/philrandolph.nsf/dx/07172008023727PMHOSQZY.htm</guid>
<content:encoded><![CDATA[ <P>The <a href="http://www.freep.com/apps/pbcs.dll/article?AID=/20080717/SPORTS05/80717041/1053/rss17">Red Wings schedule for the '08-'09 season</a> has been released, along with the rest of the NHL.</P> <P>This year everyone plays everyone else at least once. Cool!</P> <P>&nbsp;</P> ]]></content:encoded>
<wfw:commentRss> http://hostit1.connectria.com/philrandolph/philrandolph.nsf/dxcomments/07172008023727PMHOSQZY.htm</wfw:commentRss>
<wfw:comment> http://hostit1.connectria.com/philrandolph/philrandolph.nsf/dx/07172008023727PMHOSQZY.htm?opendocument&amp;comments</wfw:comment>
</item>
<item>
<title>WCII 1/1/09 &#64; Wrigley</title>
<pubDate>Thu, 17 Jul 2008 08:00:00 -0500</pubDate>
<description>
<![CDATA[ 
<P>Finally <a href="http://news.yahoo.com/s/ap/20080716/ap_on_sp_ho_ne/hkn_winter_classic">official</a> - </P> <P><blockquote>CHICAGO - <SPAN class=ys ...
 ]]>
</description>
<link>http://hostit1.connectria.com/philrandolph/philrandolph.nsf/dx/07172008070344AMHOSG6Q.htm</link>
<category>Wings</category>
<dc:creator>Phil Randolph</dc:creator>
<comments>http://hostit1.connectria.com/philrandolph/philrandolph.nsf/dx/07172008070344AMHOSG6Q.htm?opendocument&amp;comments</comments>
<guid isPermaLink="true">http://hostit1.connectria.com/philrandolph/philrandolph.nsf/dx/07172008070344AMHOSG6Q.htm</guid>
<content:encoded><![CDATA[ <P>Finally <a href="http://news.yahoo.com/s/ap/20080716/ap_on_sp_ho_ne/hkn_winter_classic">official</a> - </P> <P><blockquote>CHICAGO - <SPAN class=yshortcuts id=lw_1216234851_0 style="BACKGROUND: none transparent scroll repeat 0% 0%; CURSOR: pointer; BORDER-BOTTOM: medium none; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial">Wrigley Field</SPAN> is going to be the frozen confines on <SPAN class=yshortcuts id=lw_1216234851_1 style="BACKGROUND: none transparent scroll repeat 0% 0%; CURSOR: pointer; BORDER-BOTTOM: medium none; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial">New Year's Day</SPAN> 2009 when the defending <SPAN class=yshortcuts id=lw_1216234851_2 style="BACKGROUND: none transparent scroll repeat 0% 0%; CURSOR: pointer; BORDER-BOTTOM: medium none; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial">Stanley Cup champion Detroit Red Wings</SPAN> meet the&nbsp;Chicago Blackhawks&nbsp;outdoors in the home park of the <SPAN class=yshortcuts id=lw_1216234851_4 style="BACKGROUND: none transparent scroll repeat 0% 0%; CURSOR: pointer; BORDER-BOTTOM: medium none; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial">Chicago Cubs</SPAN>. </blockquote></P> <P>GO WINGS, on New Years Day (of course, any other time too...but especially then)!</P> ]]></content:encoded>
<wfw:commentRss> http://hostit1.connectria.com/philrandolph/philrandolph.nsf/dxcomments/07172008070344AMHOSG6Q.htm</wfw:commentRss>
<wfw:comment> http://hostit1.connectria.com/philrandolph/philrandolph.nsf/dx/07172008070344AMHOSG6Q.htm?opendocument&amp;comments</wfw:comment>
</item>
<item>
<title>Going out a winner</title>
<pubDate>Wed, 16 Jul 2008 08:34:00 -0500</pubDate>
<description>
<![CDATA[ 
<DIV id=leadphoto> <DIV class=bd><A href="http://sports.yahoo.com/nhl/photo;_ylt=AuxY4LCkVflGkVfsreHVtd8mvLYF?slug=687916e97922413bb394f77980ca2e5d.re ...
 ]]>
</description>
<link>http://hostit1.connectria.com/philrandolph/philrandolph.nsf/dx/07162008073932AMHOSGUR.htm</link>
<category>Wings</category>
<dc:creator>Phil Randolph</dc:creator>
<comments>http://hostit1.connectria.com/philrandolph/philrandolph.nsf/dx/07162008073932AMHOSGUR.htm?opendocument&amp;comments</comments>
<guid isPermaLink="true">http://hostit1.connectria.com/philrandolph/philrandolph.nsf/dx/07162008073932AMHOSGUR.htm</guid>
<content:encoded><![CDATA[ <DIV id=leadphoto> <DIV class=bd><A href="http://sports.yahoo.com/nhl/photo;_ylt=AuxY4LCkVflGkVfsreHVtd8mvLYF?slug=687916e97922413bb394f77980ca2e5d.red_wings_drake__hockey_ny154&amp;prov=ap"><img  class=photo title="In this June 4, 2008 file photo, Detroit Red Wings' Dallas Drake hoists the Stanley Cup after Detroit beat the Pittsburgh Penguins 3-2 in Game 6 of the NHL Stanley Cup hockey finals in Pittsburgh. Drake announced his retirement Tuesday July 15, 2008.  " height=200 alt="In this June 4, 2008 file photo, Detroit Red Wings' Dallas Drake hoists the Stanley Cup after Detroit beat the Pittsburgh Penguins 3-2 in Game 6 of the NHL Stanley Cup hockey finals in Pittsburgh. Drake announced his retirement Tuesday July 15, 2008.  " src="http://d.yimg.com/us.yimg.com/p/ap/20080715/capt.687916e97922413bb394f77980ca2e5d.red_wings_drake__hockey_ny154.jpg?x=180&amp;y=200&amp;xc=1&amp;yc=1&amp;wc=302&amp;hc=336&amp;q=70&amp;sig=FY4Btgb9TiFpNeNTqkIMHg--" width=180></A></DIV></DIV> <P>Dallas Drake, the 39 year old stalwart NHL Journeyman has announced his <a href="http://sports.yahoo.com/nhl/news?slug=ap-redwings-drake&amp;prov=ap&amp;type=lgns">retirement</a>.&nbsp; As a fan of the Wings who was even following them when Drake played with them the first time, I was so happy that he was able to go out on top with a hoist of the cup as his final act on the ice as a Red Wing.</P> <P>Here's to you Mr. Drake!</P> ]]></content:encoded>
<wfw:commentRss> http://hostit1.connectria.com/philrandolph/philrandolph.nsf/dxcomments/07162008073932AMHOSGUR.htm</wfw:commentRss>
<wfw:comment> http://hostit1.connectria.com/philrandolph/philrandolph.nsf/dx/07162008073932AMHOSGUR.htm?opendocument&amp;comments</wfw:comment>
</item>
<item>
<title>Chris the MindMapper</title>
<pubDate>Tue, 15 Jul 2008 09:03:00 -0500</pubDate>
<description>
<![CDATA[ 
<P>Chris Blatnick came out with a new blog last Wednesday called <a href="http://maplicio.us/">Maplicio.us</a> (nice job on the domain/url get there C ...
 ]]>
</description>
<link>http://hostit1.connectria.com/philrandolph/philrandolph.nsf/dx/07152008080421AMHOSHCA.htm</link>
<category>General</category>
<dc:creator>Phil Randolph</dc:creator>
<comments>http://hostit1.connectria.com/philrandolph/philrandolph.nsf/dx/07152008080421AMHOSHCA.htm?opendocument&amp;comments</comments>
<guid isPermaLink="true">http://hostit1.connectria.com/philrandolph/philrandolph.nsf/dx/07152008080421AMHOSHCA.htm</guid>
<content:encoded><![CDATA[ <P>Chris Blatnick came out with a new blog last Wednesday called <a href="http://maplicio.us/">Maplicio.us</a> (nice job on the domain/url get there Chris)</P> <P>I finally got a real chance to sit down and actually go through the first couple entries last night, and I have to say that, even though I haven't been at all into Mind Mapping thus far, this way of showing it, talking about it, breaking it down, may really pique my interest.</P> <P>Chris gives a great list of Mind Mapping resources/related blogs&nbsp;in the <a href="http://maplicio.us/2008/07/mind-mapping-blogs.html">2nd post</a>, and then does a fun "geek culture" related application of Mind Mapping for us with a <a href="http://maplicio.us/2008/07/maplicious-map-1-characters-of.html">Characters of Battlestar Galactica</a> mindmap.'</P> <P>Looking forward to seeing what Chris brings to us next.</P> ]]></content:encoded>
<wfw:commentRss> http://hostit1.connectria.com/philrandolph/philrandolph.nsf/dxcomments/07152008080421AMHOSHCA.htm</wfw:commentRss>
<wfw:comment> http://hostit1.connectria.com/philrandolph/philrandolph.nsf/dx/07152008080421AMHOSHCA.htm?opendocument&amp;comments</wfw:comment>
</item>
<item>
<title>Happy 3G iPhone Day...</title>
<pubDate>Fri, 11 Jul 2008 07:53:00 -0500</pubDate>
<description>
<![CDATA[ 
<P>As I <a href="http://philrandolph.com/philrandolph/philrandolph.nsf/dx/07092008082541AMHOSHRS.htm">mentioned</a>, I'm going to let the day roll rig ...
 ]]>
</description>
<link>http://hostit1.connectria.com/philrandolph/philrandolph.nsf/dx/07112008065838AMHOSG38.htm</link>
<category>General</category>
<dc:creator>Phil Randolph</dc:creator>
<comments>http://hostit1.connectria.com/philrandolph/philrandolph.nsf/dx/07112008065838AMHOSG38.htm?opendocument&amp;comments</comments>
<guid isPermaLink="true">http://hostit1.connectria.com/philrandolph/philrandolph.nsf/dx/07112008065838AMHOSG38.htm</guid>
<content:encoded><![CDATA[ <P>As I <a href="http://philrandolph.com/philrandolph/philrandolph.nsf/dx/07092008082541AMHOSHRS.htm">mentioned</a>, I'm going to let the day roll right on past and give the hoopla and all&nbsp;a couple months to sort itself out.&nbsp; But I will not be resting on my laurels, I'm going to try to soak in all I can regarding the new device, so that I can hit the ground running when our plans finish out and become "eligible" for the lower price.</P> <P>Please&nbsp;blog about any and all things you can about your&nbsp;experiences, likes, dislikes, killer apps (free ones are best of course...), anything... The more I read, the more excited I'll get, and the better the payoff at the end.</P> <P>Happy 3GiPhoning!</P> ]]></content:encoded>
<wfw:commentRss> http://hostit1.connectria.com/philrandolph/philrandolph.nsf/dxcomments/07112008065838AMHOSG38.htm</wfw:commentRss>
<wfw:comment> http://hostit1.connectria.com/philrandolph/philrandolph.nsf/dx/07112008065838AMHOSG38.htm?opendocument&amp;comments</wfw:comment>
</item>
<item>
<title>Resigned to waiting</title>
<pubDate>Wed, 9 Jul 2008 09:24:00 -0500</pubDate>
<description>
<![CDATA[ 
<P>If any of you have talked to me lately, or read some of my tweets, I have been <EM>salivating</EM> over the upcoming iPhone 3G release on Friday, a ...
 ]]>
</description>
<link>http://hostit1.connectria.com/philrandolph/philrandolph.nsf/dx/07092008082541AMHOSHRS.htm</link>
<category>General</category>
<dc:creator>Phil Randolph</dc:creator>
<comments>http://hostit1.connectria.com/philrandolph/philrandolph.nsf/dx/07092008082541AMHOSHRS.htm?opendocument&amp;comments</comments>
<guid isPermaLink="true">http://hostit1.connectria.com/philrandolph/philrandolph.nsf/dx/07092008082541AMHOSHRS.htm</guid>
<content:encoded><![CDATA[ <P>If any of you have talked to me lately, or read some of my tweets, I have been <EM>salivating</EM> over the upcoming iPhone 3G release on Friday, as I am finally in a financial position to take the plunge on it.&nbsp; </P> <P>Fortunately I had my ear to the pavement near the end of last week and before I got to the end of this week and in the likely long line to get my new "precious" phone, I did some checking on my current AT&amp;T equipment upgrade eligibility and the repercussions that would have on the cost of obtaining an iPhone 3G.&nbsp; </P> <P>Suffice to say I would have been a very unhappy camper when my non-eligible-for-discount cost would have been $499 for the 16GB model I was wanting, instead of the $299 I was expecting to spend.</P> <P>It seems that our family's phones service/equipment contracts don't finish up until early September.</P> <P>It's going to be hard, but I think I can endure the further 2 month wait while I sit back and try to consume all the information I can about the best app store offerings, the best tricks and tips with the new item, any possible software bug fixes or enhancements, possible storage SIZE upgrades (that would be nice...erm...yeah) before I lay my hands on my new toy.</P> <P>So needless to say, I'll take any advise, etc. that any of you want to send my way, if you, yourself, are going to be procuring your iPhone 3G on Friday or in the near future (at least before I will).</P> ]]></content:encoded>
<wfw:commentRss> http://hostit1.connectria.com/philrandolph/philrandolph.nsf/dxcomments/07092008082541AMHOSHRS.htm</wfw:commentRss>
<wfw:comment> http://hostit1.connectria.com/philrandolph/philrandolph.nsf/dx/07092008082541AMHOSHRS.htm?opendocument&amp;comments</wfw:comment>
</item>
</channel></rss>
