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

<channel>
	<title>jtGraphic: James Thompson &#187; Calendar</title>
	<atom:link href="http://www.jtgraphic.net/tag/calendar/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.jtgraphic.net</link>
	<description>I can help you get where you want to go on the Internet.  We&#039;ll have fun along the way too.</description>
	<lastBuildDate>Mon, 26 Jul 2010 12:00:40 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Tidbit Tuesday on PHP: Holiday Notices for Business Sites</title>
		<link>http://www.jtgraphic.net/2009/10/tidbit-tuesday-php-holiday-notices-business-sites/</link>
		<comments>http://www.jtgraphic.net/2009/10/tidbit-tuesday-php-holiday-notices-business-sites/#comments</comments>
		<pubDate>Tue, 27 Oct 2009 20:47:48 +0000</pubDate>
		<dc:creator>James Thompson</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[2009]]></category>
		<category><![CDATA[array]]></category>
		<category><![CDATA[Calendar]]></category>
		<category><![CDATA[Custom Functions]]></category>
		<category><![CDATA[if]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[strtotime]]></category>
		<category><![CDATA[Tidbit Tuesday]]></category>

		<guid isPermaLink="false">http://www.jtgraphic.net/?p=343</guid>
		<description><![CDATA[
			
				
			
		
<p>This is a handy script for managing an out of office message on your website.  I find this very useful on business websites when you&#8217;re tired of making that one little change to let people know when the office will be shut down.  With about 15 minutes of extra work, you only need to do it <span style="color:#777"> . . . &#8594; Read More: <a href="http://www.jtgraphic.net/2009/10/tidbit-tuesday-php-holiday-notices-business-sites/">Tidbit Tuesday on PHP: Holiday Notices for Business Sites</a></span><p><a href="http://www.jtgraphic.net/2009/10/tidbit-tuesday-php-holiday-notices-business-sites/">Tidbit Tuesday on PHP: Holiday Notices for Business Sites</a> is a post from: <a href="http://www.jtgraphic.net">jtGraphic: James Thompson</a></p>
]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.jtgraphic.net%2F2009%2F10%2Ftidbit-tuesday-php-holiday-notices-business-sites%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.jtgraphic.net%2F2009%2F10%2Ftidbit-tuesday-php-holiday-notices-business-sites%2F&amp;source=jtgraphic&amp;style=normal&amp;service=bit.ly&amp;hashtags=2009,array,Calendar,Custom+Functions,if,PHP,Programming,strtotime,Tidbit+Tuesday" height="61" width="50" /><br />
			</a>
		</div>
<p>This is a handy script for managing an out of office message on your website.  I find this very useful on business websites when you&#8217;re tired of making that one little change to let people know when the office will be shut down.  With about 15 minutes of extra work, you only need to do it once a year.</p>
<p>Let&#8217;s say for instance we&#8217;re doing all of the major U.S. Holidays in 2010, observing weekend Holidays with a day off on either side of the weekend.  This means first we need to determine what those dates are.  I just happen to have looked up the six most common, listed below:</p>
<ul>
<li>New Year&#8217;s Eve &#8211; January 1st</li>
<li>Memorial Day &#8211; May 31st</li>
<li>Independence Day &#8211; July 5th (July 4th is Sunday)</li>
<li>Labor Day &#8211; September 6th</li>
<li>Thanksgiving &#8211; November 25th and 26th</li>
<li>Christmas &#8211; December 24th (December 25th is a Saturday)</li>
</ul>
<p>Now that we know our dates, we can build them into an array:</p>
<pre>$date_array = array(
   "New Yearís Eve" =&gt;
      array("leaving" =&gt; "2010-12-31", "returning" =&gt; "2011-01-03"),
   "Memorial Day" =&gt;
      array("leaving" =&gt; "2010-05-31", "returning" =&gt; "2010-06-01"),
   "Independence Day" =&gt; // July 4th is a Sunday
      array("leaving" =&gt; "2010-07-05", "returning" =&gt; "2010-07-06"),
   "Labor Day" =&gt;
      array("leaving" =&gt; "2010-09-06", "returning" =&gt; "2010-09-07"),
   "Thanksgiving" =&gt;
      array("leaving" =&gt; "2010-11-025", "returning" =&gt; "2010-11-029"),
   "Christmas" =&gt; // December 25th is a Saturday
      array("leaving" =&gt; "2010-12-24", "returning" =&gt; "2010-12-27"),
 );</pre>
<p>The date array can easily be stored in a database or be made up of more complicated functions that would calculate the holidays across multiple years with some basic logic.  Maybe we&#8217;ll cover the latter part in another post some day.</p>
<p>Now we need to build the function itself.  This function will be run every time the page loads.  You can even include the function in a separate file to be included on multiple pages:</p>
<pre>function holiday_message($date, $date_array) {
   $date = strtotime($date); // Reformat the date so we can do math on it.
   foreach($date_array as $key =&gt; $value) {
      $leaving = strtotime($value['leaving']);
      $returning = strtotime($value['returning']);
      $early_warning = $leaving - 86400 * 7;
      // If the date is between (7 days before) leaving and returning
         if($date &gt; $early_warning &amp;&amp; $date &lt; $returning) {
            echo
               "We will be observing ".$key." from ".date("Y-m-d", $leaving).
               " until ". date("Y-m-d", $returning).".
               When we return we will be more than happy to assist you.";
         }
   }
}</pre>
<p>Now we just need to execute this function anywhere on the page:</p>
<pre>holiday_message(date("Y-m-d H:i:s"),$date_array);</pre>
<p>This code can be customized in numerous different ways, so the the message is more formal, or works for your specific situation.  You can also change the way days are stored or calculated, like the example above.  This is a core to get you started.  Where can you go from here?</p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li style="clear: both;"><a href="http://www.jtgraphic.net/2009/10/php-function-friday-date/" rel="bookmark"><img src="http://www.jtgraphic.net/wp-content/plugins/contextual-related-posts/default.png" alt="PHP Function Friday: date" title="PHP Function Friday: date" width="50" height="50" border="0" class="crp_thumb" /></a> <a href="http://www.jtgraphic.net/2009/10/php-function-friday-date/" rel="bookmark" class="crp_title">PHP Function Friday: date</a><span class="crp_excerpt"> I think the date function is extremely useful.  It gives your programs an awareness of WHEN they are.  You can ...</span></li><li style="clear: both;"><a href="http://www.jtgraphic.net/2009/09/php-function-friday-function/" rel="bookmark"><img src="http://www.jtgraphic.net/wp-content/plugins/contextual-related-posts/default.png" alt="PHP Function Friday: function" title="PHP Function Friday: function" width="50" height="50" border="0" class="crp_thumb" /></a> <a href="http://www.jtgraphic.net/2009/09/php-function-friday-function/" rel="bookmark" class="crp_title">PHP Function Friday: function</a><span class="crp_excerpt"> So, I've decided to start including a new post every Friday - kind of as a discipline thing.  I'm ...</span></li><li style="clear: both;"><a href="http://www.jtgraphic.net/2009/11/tidbit-tuesday-php-simple-mysql-database-insert-function/" rel="bookmark"><img src="http://www.jtgraphic.net/wp-content/plugins/contextual-related-posts/default.png" alt="Tidbit Tuesday on PHP: Simple MySQL Database Insert Function" title="Tidbit Tuesday on PHP: Simple MySQL Database Insert Function" width="50" height="50" border="0" class="crp_thumb" /></a> <a href="http://www.jtgraphic.net/2009/11/tidbit-tuesday-php-simple-mysql-database-insert-function/" rel="bookmark" class="crp_title">Tidbit Tuesday on PHP: Simple MySQL Database Insert Function</a><span class="crp_excerpt"> This builds on a function I did last week: db_query().  You can send any array straight to a MySQL ...</span></li></ul></div><p><a href="http://www.jtgraphic.net/2009/10/tidbit-tuesday-php-holiday-notices-business-sites/">Tidbit Tuesday on PHP: Holiday Notices for Business Sites</a> is a post from: <a href="http://www.jtgraphic.net">jtGraphic: James Thompson</a></p>



Share and Enjoy:


	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.jtgraphic.net%2F2009%2F10%2Ftidbit-tuesday-php-holiday-notices-business-sites%2F&amp;title=Tidbit%20Tuesday%20on%20PHP%3A%20Holiday%20Notices%20for%20Business%20Sites&amp;bodytext=This%20is%20a%20handy%20script%20for%20managing%20an%20out%20of%20office%20message%20on%20your%20website.%C2%A0%20I%20find%20this%20very%20useful%20on%20business%20websites%20when%20you%27re%20tired%20of%20making%20that%20one%20little%20change%20to%20let%20people%20know%20when%20the%20office%20will%20be%20shut%20down.%C2%A0%20With%20about%2015%20minu" title="Digg"><img src="http://www.jtgraphic.net/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" /></a>
	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.jtgraphic.net%2F2009%2F10%2Ftidbit-tuesday-php-holiday-notices-business-sites%2F&amp;title=Tidbit%20Tuesday%20on%20PHP%3A%20Holiday%20Notices%20for%20Business%20Sites&amp;notes=This%20is%20a%20handy%20script%20for%20managing%20an%20out%20of%20office%20message%20on%20your%20website.%C2%A0%20I%20find%20this%20very%20useful%20on%20business%20websites%20when%20you%27re%20tired%20of%20making%20that%20one%20little%20change%20to%20let%20people%20know%20when%20the%20office%20will%20be%20shut%20down.%C2%A0%20With%20about%2015%20minu" title="del.icio.us"><img src="http://www.jtgraphic.net/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.jtgraphic.net/wp-content/plugins/sociable/awesmate.php?c=facebook-post&t=http%3A%2F%2Fwww.jtgraphic.net%2F2009%2F10%2Ftidbit-tuesday-php-holiday-notices-business-sites%2F&d=http://www.facebook.com/share.php?u=TARGET%26t=Tidbit%20Tuesday%20on%20PHP%3A%20Holiday%20Notices%20for%20Business%20Sites" title="Facebook"><img src="http://www.jtgraphic.net/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fwww.jtgraphic.net%2F2009%2F10%2Ftidbit-tuesday-php-holiday-notices-business-sites%2F&amp;title=Tidbit%20Tuesday%20on%20PHP%3A%20Holiday%20Notices%20for%20Business%20Sites" title="Mixx"><img src="http://www.jtgraphic.net/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.jtgraphic.net%2F2009%2F10%2Ftidbit-tuesday-php-holiday-notices-business-sites%2F&amp;title=Tidbit%20Tuesday%20on%20PHP%3A%20Holiday%20Notices%20for%20Business%20Sites&amp;annotation=This%20is%20a%20handy%20script%20for%20managing%20an%20out%20of%20office%20message%20on%20your%20website.%C2%A0%20I%20find%20this%20very%20useful%20on%20business%20websites%20when%20you%27re%20tired%20of%20making%20that%20one%20little%20change%20to%20let%20people%20know%20when%20the%20office%20will%20be%20shut%20down.%C2%A0%20With%20about%2015%20minu" title="Google Bookmarks"><img src="http://www.jtgraphic.net/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.jtgraphic.net%2F2009%2F10%2Ftidbit-tuesday-php-holiday-notices-business-sites%2F&amp;title=Tidbit%20Tuesday%20on%20PHP%3A%20Holiday%20Notices%20for%20Business%20Sites" title="StumbleUpon"><img src="http://www.jtgraphic.net/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" /></a>
	<a rel="nofollow"  target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fwww.jtgraphic.net%2F2009%2F10%2Ftidbit-tuesday-php-holiday-notices-business-sites%2F" title="Technorati"><img src="http://www.jtgraphic.net/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.jtgraphic.net/wp-content/plugins/sociable/awesmate.php?c=myspace&t=http%3A%2F%2Fwww.jtgraphic.net%2F2009%2F10%2Ftidbit-tuesday-php-holiday-notices-business-sites%2F&d=http://www.myspace.com/Modules/PostTo/Pages/?u=TARGET%26t=Tidbit%20Tuesday%20on%20PHP%3A%20Holiday%20Notices%20for%20Business%20Sites" title="MySpace"><img src="http://www.jtgraphic.net/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.jtgraphic.net/wp-content/plugins/sociable/awesmate.php?c=twitter&t=http%3A%2F%2Fwww.jtgraphic.net%2F2009%2F10%2Ftidbit-tuesday-php-holiday-notices-business-sites%2F&d=http://twitter.com/home?status=Tidbit%20Tuesday%20on%20PHP%3A%20Holiday%20Notices%20for%20Business%20Sites%20-%20TARGET" title="Twitter"><img src="http://www.jtgraphic.net/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" /></a>
	<a rel="nofollow"  target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fwww.jtgraphic.net%2F2009%2F10%2Ftidbit-tuesday-php-holiday-notices-business-sites%2F" title="Sphinn"><img src="http://www.jtgraphic.net/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" /></a>
	<a rel="nofollow"  target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fwww.jtgraphic.net%2F2009%2F10%2Ftidbit-tuesday-php-holiday-notices-business-sites%2F&amp;title=Tidbit%20Tuesday%20on%20PHP%3A%20Holiday%20Notices%20for%20Business%20Sites" title="Reddit"><img src="http://www.jtgraphic.net/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://www.jtgraphic.net/2009/10/tidbit-tuesday-php-holiday-notices-business-sites/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>A review of 2008.</title>
		<link>http://www.jtgraphic.net/2009/01/review-2008/</link>
		<comments>http://www.jtgraphic.net/2009/01/review-2008/#comments</comments>
		<pubDate>Fri, 02 Jan 2009 09:07:55 +0000</pubDate>
		<dc:creator>James Thompson</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Reviews]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[2008]]></category>
		<category><![CDATA[Calendar]]></category>
		<category><![CDATA[derby]]></category>
		<category><![CDATA[Fire]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[Outlook]]></category>
		<category><![CDATA[PC]]></category>
		<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[Review]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.jtgraphic.net/?p=147</guid>
		<description><![CDATA[
			
				
			
		
Here are some of the more popular blog posts that I made in 2008:
<p>Hands down, the most popular post I made was How to Make Fire in Photoshop.</p>
<p>In March, I made a controversial post about Macs, PCs, and Linux.  I should probably do a follow up on this.</p>
<p>I found a solution to my Outlook / Google <span style="color:#777"> . . . &#8594; Read More: <a href="http://www.jtgraphic.net/2009/01/review-2008/">A review of 2008.</a></span><p><a href="http://www.jtgraphic.net/2009/01/review-2008/">A review of 2008.</a> is a post from: <a href="http://www.jtgraphic.net">jtGraphic: James Thompson</a></p>
]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.jtgraphic.net%2F2009%2F01%2Freview-2008%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.jtgraphic.net%2F2009%2F01%2Freview-2008%2F&amp;source=jtgraphic&amp;style=normal&amp;service=bit.ly&amp;hashtags=2008,Calendar,derby,Fire,Linux,Mac+OS+X,Outlook,PC,Photoshop,Review,Windows,WordPress" height="61" width="50" /><br />
			</a>
		</div>
<h3>Here are some of the more popular blog posts that I made in 2008:</h3>
<p>Hands down, the most popular post I made was How to<a href="http://www.jtgraphic.net/2008/03/how-to-fire-in-photoshop/"> Make Fire in Photoshop</a>.</p>
<p>In March, I made a controversial post about <a href="http://www.jtgraphic.net/2008/03/how-to-fire-in-photoshop/">Macs, PCs, and Linux</a>.  I should probably do a follow up on this.</p>
<p>I found a <a href="http://www.jtgraphic.net/2008/03/google-calendar-outlook-sync/">solution to my Outlook / Google Calendar synchronization issues</a>.  Actually Google found a solution.  Thanks Google.</p>
<p>I listed my <a href="http://www.jtgraphic.net/2008/03/top-ten-free-applications/">top ten free applications</a>.  I plan to do another version of this post in 2009.</p>
<p>I made a<a href="http://www.jtgraphic.net/category/woot-shirts/"> few submissions to shirt.woot derbie</a><a href="http://www.jtgraphic.net/category/woot-shirts/">s,</a> but never won.  I have no problem admitting that the competition over there is pretty stiff, and the technical ability of some of the artists surpasses my own by quite a bit.</p>
<p>In December, I started doing <a href="http://www.jtgraphic.net/2008/12/contest-buy-woot-shirt/">contests for shirt.woot shirts</a>.  I&#8217;ll probably change this up in the future to offer other things.  This just seemed like a great place to start.</p>
<h3>I know I also did some things wrong.</h3>
<p>By far the biggest thing I regret doing in 2008 was taking a break from blogging from May to September.  I think that really hurt my readership, and I&#8217;m going to try and refrain from doing that at all this year.  My blog also lacked focus.  I&#8217;m still having trouble breaking my topics apart.  Right now I think my lack of focus leaves readers wondering what I&#8217;m talking about half the time.  I&#8217;m really passionate about Woot, but a lot of internet marketers probably don&#8217;t care, and when I&#8217;m talking about internet marketing and programming, Wooters probably get bored.  Interesting perplexity.  I will try to address this in 2009 as well.</p>
<p>I have some pretty exciting plans for 2009 that I will follow up on later.</p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li style="clear: both;"><a href="http://www.jtgraphic.net/2008/03/google-calendar-outlook-sync/" rel="bookmark"><img src="http://www.jtgraphic.net/wp-content/plugins/contextual-related-posts/default.png" alt="Google Calendar / Outlook Sync" title="Google Calendar / Outlook Sync" width="50" height="50" border="0" class="crp_thumb" /></a> <a href="http://www.jtgraphic.net/2008/03/google-calendar-outlook-sync/" rel="bookmark" class="crp_title">Google Calendar / Outlook Sync</a><span class="crp_excerpt"> I've been looking for a way to sync my Google / Outlook 2007 calendar for a bit (2 ways), and ...</span></li><li style="clear: both;"><a href="http://www.jtgraphic.net/2008/12/january-2009-contest-twitterlicious/" rel="bookmark"><img width="50" height="30" src="http://www.jtgraphic.net/wp-content/twitter-bird-pic-300x180.jpg" class="crp_thumb wp-post-image" alt="January 2009 Contest: Twitterlicious" title="January 2009 Contest: Twitterlicious" border="0" /></a> <a href="http://www.jtgraphic.net/2008/12/january-2009-contest-twitterlicious/" rel="bookmark" class="crp_title">January 2009 Contest: Twitterlicious</a><span class="crp_excerpt"> Description
Every month, I do a contest of sorts for free shirts from shirt.woot.  This month I want to focus on ...</span></li><li style="clear: both;"><a href="http://www.jtgraphic.net/2008/04/woot-derby-updates/" rel="bookmark"><img width="50" height="50" src="http://www.jtgraphic.net/wp-content/detail21.jpg" class="crp_thumb wp-post-image" alt="Woot Derby Updates" title="Woot Derby Updates" border="0" /></a> <a href="http://www.jtgraphic.net/2008/04/woot-derby-updates/" rel="bookmark" class="crp_title">Woot Derby Updates</a><span class="crp_excerpt"> We're coming up on shirt.woot.com Derby #37: Greed.  They're offering up $1000.00 for first place in this derby and ...</span></li></ul></div><p><a href="http://www.jtgraphic.net/2009/01/review-2008/">A review of 2008.</a> is a post from: <a href="http://www.jtgraphic.net">jtGraphic: James Thompson</a></p>



Share and Enjoy:


	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.jtgraphic.net%2F2009%2F01%2Freview-2008%2F&amp;title=A%20review%20of%202008.&amp;bodytext=Here%20are%20some%20of%20the%20more%20popular%20blog%20posts%20that%20I%20made%20in%202008%3A%0D%0AHands%20down%2C%20the%20most%20popular%20post%20I%20made%20was%20How%20to%20Make%20Fire%20in%20Photoshop.%0D%0A%0D%0AIn%20March%2C%20I%20made%20a%20controversial%20post%20about%20Macs%2C%20PCs%2C%20and%20Linux.%C2%A0%20I%20should%20probably%20do%20a%20follow%20up%20on%20" title="Digg"><img src="http://www.jtgraphic.net/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" /></a>
	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.jtgraphic.net%2F2009%2F01%2Freview-2008%2F&amp;title=A%20review%20of%202008.&amp;notes=Here%20are%20some%20of%20the%20more%20popular%20blog%20posts%20that%20I%20made%20in%202008%3A%0D%0AHands%20down%2C%20the%20most%20popular%20post%20I%20made%20was%20How%20to%20Make%20Fire%20in%20Photoshop.%0D%0A%0D%0AIn%20March%2C%20I%20made%20a%20controversial%20post%20about%20Macs%2C%20PCs%2C%20and%20Linux.%C2%A0%20I%20should%20probably%20do%20a%20follow%20up%20on%20" title="del.icio.us"><img src="http://www.jtgraphic.net/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.jtgraphic.net/wp-content/plugins/sociable/awesmate.php?c=facebook-post&t=http%3A%2F%2Fwww.jtgraphic.net%2F2009%2F01%2Freview-2008%2F&d=http://www.facebook.com/share.php?u=TARGET%26t=A%20review%20of%202008." title="Facebook"><img src="http://www.jtgraphic.net/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fwww.jtgraphic.net%2F2009%2F01%2Freview-2008%2F&amp;title=A%20review%20of%202008." title="Mixx"><img src="http://www.jtgraphic.net/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.jtgraphic.net%2F2009%2F01%2Freview-2008%2F&amp;title=A%20review%20of%202008.&amp;annotation=Here%20are%20some%20of%20the%20more%20popular%20blog%20posts%20that%20I%20made%20in%202008%3A%0D%0AHands%20down%2C%20the%20most%20popular%20post%20I%20made%20was%20How%20to%20Make%20Fire%20in%20Photoshop.%0D%0A%0D%0AIn%20March%2C%20I%20made%20a%20controversial%20post%20about%20Macs%2C%20PCs%2C%20and%20Linux.%C2%A0%20I%20should%20probably%20do%20a%20follow%20up%20on%20" title="Google Bookmarks"><img src="http://www.jtgraphic.net/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.jtgraphic.net%2F2009%2F01%2Freview-2008%2F&amp;title=A%20review%20of%202008." title="StumbleUpon"><img src="http://www.jtgraphic.net/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" /></a>
	<a rel="nofollow"  target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fwww.jtgraphic.net%2F2009%2F01%2Freview-2008%2F" title="Technorati"><img src="http://www.jtgraphic.net/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.jtgraphic.net/wp-content/plugins/sociable/awesmate.php?c=myspace&t=http%3A%2F%2Fwww.jtgraphic.net%2F2009%2F01%2Freview-2008%2F&d=http://www.myspace.com/Modules/PostTo/Pages/?u=TARGET%26t=A%20review%20of%202008." title="MySpace"><img src="http://www.jtgraphic.net/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.jtgraphic.net/wp-content/plugins/sociable/awesmate.php?c=twitter&t=http%3A%2F%2Fwww.jtgraphic.net%2F2009%2F01%2Freview-2008%2F&d=http://twitter.com/home?status=A%20review%20of%202008.%20-%20TARGET" title="Twitter"><img src="http://www.jtgraphic.net/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" /></a>
	<a rel="nofollow"  target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fwww.jtgraphic.net%2F2009%2F01%2Freview-2008%2F" title="Sphinn"><img src="http://www.jtgraphic.net/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" /></a>
	<a rel="nofollow"  target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fwww.jtgraphic.net%2F2009%2F01%2Freview-2008%2F&amp;title=A%20review%20of%202008." title="Reddit"><img src="http://www.jtgraphic.net/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://www.jtgraphic.net/2009/01/review-2008/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Calendar / Outlook Sync</title>
		<link>http://www.jtgraphic.net/2008/03/google-calendar-outlook-sync/</link>
		<comments>http://www.jtgraphic.net/2008/03/google-calendar-outlook-sync/#comments</comments>
		<pubDate>Thu, 06 Mar 2008 21:50:02 +0000</pubDate>
		<dc:creator>James Thompson</dc:creator>
				<category><![CDATA[Reviews]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Calendar]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Outlook]]></category>

		<guid isPermaLink="false">http://www.jtgraphic.net/?p=36</guid>
		<description><![CDATA[
			
				
			
		
<p>I&#8217;ve been looking for a way to sync my Google / Outlook 2007 calendar for a bit (2 ways), and the built in Outlook  features allow you to add an internet calendar, but it needs to be public and doesn&#8217;t show in your calendar view on your email page.  it&#8217;s also one way.  <span style="color:#777"> . . . &#8594; Read More: <a href="http://www.jtgraphic.net/2008/03/google-calendar-outlook-sync/">Google Calendar / Outlook Sync</a></span><p><a href="http://www.jtgraphic.net/2008/03/google-calendar-outlook-sync/">Google Calendar / Outlook Sync</a> is a post from: <a href="http://www.jtgraphic.net">jtGraphic: James Thompson</a></p>
]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.jtgraphic.net%2F2008%2F03%2Fgoogle-calendar-outlook-sync%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.jtgraphic.net%2F2008%2F03%2Fgoogle-calendar-outlook-sync%2F&amp;source=jtgraphic&amp;style=normal&amp;service=bit.ly&amp;hashtags=Calendar,Google,Outlook" height="61" width="50" /><br />
			</a>
		</div>
<p>I&#8217;ve been looking for a way to sync my Google / Outlook 2007 calendar for a bit (2 ways), and the built in Outlook  features allow you to add an internet calendar, but it needs to be public and doesn&#8217;t show in your calendar view on your email page.  it&#8217;s also one way.  I found a solution that worked, but it was sort of a hack job, so I didn&#8217;t really stand behind it.</p>
<p>THEN!  I noticed &#8220;Sync with Microsoft Outlook™ calendarNew!&#8221; in the top right area of my calendar.  It took me about 2 seconds to decide to click the link and download the application.  This thing is great!  If you can&#8217;t see the URL on your Google Calendar, go here:</p>
<p><a href="http://www.google.com/support/calendar/bin/answer.py?answer=89955">http://www.google.com&#8230;answer.py?answer=89955</a></p>
<p>Let me know if you have any issues in the comments.  I&#8217;m interested in what they might be.</p>
<p>-JKT</p>
<p><strong>Update: </strong> If you&#8217;re using Windows Vista and Outlook 2007, for some reason, sometimes the application cannot connect and sync for the first time if you have Outlook open.  Just close Outlook and sync for the first time.  Voila!</p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li style="clear: both;"><a href="http://www.jtgraphic.net/2010/02/outlook-mac-import-pst-files/" rel="bookmark"><img src="http://www.jtgraphic.net/wp-content/plugins/contextual-related-posts/default.png" alt="Outlook for Mac Will Be Able to Import PST Files" title="Outlook for Mac Will Be Able to Import PST Files" width="50" height="50" border="0" class="crp_thumb" /></a> <a href="http://www.jtgraphic.net/2010/02/outlook-mac-import-pst-files/" rel="bookmark" class="crp_title">Outlook for Mac Will Be Able to Import PST Files</a><span class="crp_excerpt"> From BI: SAI:

Microsoft announced today that it will allow buyers of the all-new Outlook for Mac to import old messages ...</span></li><li style="clear: both;"><a href="http://www.jtgraphic.net/2009/01/review-2008/" rel="bookmark"><img src="http://www.jtgraphic.net/wp-content/plugins/contextual-related-posts/default.png" alt="A review of 2008." title="A review of 2008." width="50" height="50" border="0" class="crp_thumb" /></a> <a href="http://www.jtgraphic.net/2009/01/review-2008/" rel="bookmark" class="crp_title">A review of 2008.</a><span class="crp_excerpt"> Here are some of the more popular blog posts that I made in 2008:
Hands down, the most popular post I ...</span></li><li style="clear: both;"><a href="http://www.jtgraphic.net/2008/03/top-ten-free-applications/" rel="bookmark"><img src="http://www.jtgraphic.net/wp-content/plugins/contextual-related-posts/default.png" alt="Top Ten Free Applications" title="Top Ten Free Applications" width="50" height="50" border="0" class="crp_thumb" /></a> <a href="http://www.jtgraphic.net/2008/03/top-ten-free-applications/" rel="bookmark" class="crp_title">Top Ten Free Applications</a><span class="crp_excerpt">  Overview

I thought I'd voice my opinion on what I thought the best free applications are.  I have also tried to ...</span></li></ul></div><p><a href="http://www.jtgraphic.net/2008/03/google-calendar-outlook-sync/">Google Calendar / Outlook Sync</a> is a post from: <a href="http://www.jtgraphic.net">jtGraphic: James Thompson</a></p>



Share and Enjoy:


	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.jtgraphic.net%2F2008%2F03%2Fgoogle-calendar-outlook-sync%2F&amp;title=Google%20Calendar%20%2F%20Outlook%20Sync&amp;bodytext=I%27ve%20been%20looking%20for%20a%20way%20to%20sync%20my%20Google%20%2F%20Outlook%202007%20calendar%20for%20a%20bit%20%282%20ways%29%2C%20and%20the%20built%20in%20Outlook%20%20features%20allow%20you%20to%20add%20an%20internet%20calendar%2C%20but%20it%20needs%20to%20be%20public%20and%20doesn%27t%20show%20in%20your%20calendar%20view%20on%20your%20email%20page.%20%20" title="Digg"><img src="http://www.jtgraphic.net/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" /></a>
	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.jtgraphic.net%2F2008%2F03%2Fgoogle-calendar-outlook-sync%2F&amp;title=Google%20Calendar%20%2F%20Outlook%20Sync&amp;notes=I%27ve%20been%20looking%20for%20a%20way%20to%20sync%20my%20Google%20%2F%20Outlook%202007%20calendar%20for%20a%20bit%20%282%20ways%29%2C%20and%20the%20built%20in%20Outlook%20%20features%20allow%20you%20to%20add%20an%20internet%20calendar%2C%20but%20it%20needs%20to%20be%20public%20and%20doesn%27t%20show%20in%20your%20calendar%20view%20on%20your%20email%20page.%20%20" title="del.icio.us"><img src="http://www.jtgraphic.net/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.jtgraphic.net/wp-content/plugins/sociable/awesmate.php?c=facebook-post&t=http%3A%2F%2Fwww.jtgraphic.net%2F2008%2F03%2Fgoogle-calendar-outlook-sync%2F&d=http://www.facebook.com/share.php?u=TARGET%26t=Google%20Calendar%20%2F%20Outlook%20Sync" title="Facebook"><img src="http://www.jtgraphic.net/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fwww.jtgraphic.net%2F2008%2F03%2Fgoogle-calendar-outlook-sync%2F&amp;title=Google%20Calendar%20%2F%20Outlook%20Sync" title="Mixx"><img src="http://www.jtgraphic.net/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.jtgraphic.net%2F2008%2F03%2Fgoogle-calendar-outlook-sync%2F&amp;title=Google%20Calendar%20%2F%20Outlook%20Sync&amp;annotation=I%27ve%20been%20looking%20for%20a%20way%20to%20sync%20my%20Google%20%2F%20Outlook%202007%20calendar%20for%20a%20bit%20%282%20ways%29%2C%20and%20the%20built%20in%20Outlook%20%20features%20allow%20you%20to%20add%20an%20internet%20calendar%2C%20but%20it%20needs%20to%20be%20public%20and%20doesn%27t%20show%20in%20your%20calendar%20view%20on%20your%20email%20page.%20%20" title="Google Bookmarks"><img src="http://www.jtgraphic.net/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.jtgraphic.net%2F2008%2F03%2Fgoogle-calendar-outlook-sync%2F&amp;title=Google%20Calendar%20%2F%20Outlook%20Sync" title="StumbleUpon"><img src="http://www.jtgraphic.net/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" /></a>
	<a rel="nofollow"  target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fwww.jtgraphic.net%2F2008%2F03%2Fgoogle-calendar-outlook-sync%2F" title="Technorati"><img src="http://www.jtgraphic.net/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.jtgraphic.net/wp-content/plugins/sociable/awesmate.php?c=myspace&t=http%3A%2F%2Fwww.jtgraphic.net%2F2008%2F03%2Fgoogle-calendar-outlook-sync%2F&d=http://www.myspace.com/Modules/PostTo/Pages/?u=TARGET%26t=Google%20Calendar%20%2F%20Outlook%20Sync" title="MySpace"><img src="http://www.jtgraphic.net/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.jtgraphic.net/wp-content/plugins/sociable/awesmate.php?c=twitter&t=http%3A%2F%2Fwww.jtgraphic.net%2F2008%2F03%2Fgoogle-calendar-outlook-sync%2F&d=http://twitter.com/home?status=Google%20Calendar%20%2F%20Outlook%20Sync%20-%20TARGET" title="Twitter"><img src="http://www.jtgraphic.net/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" /></a>
	<a rel="nofollow"  target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fwww.jtgraphic.net%2F2008%2F03%2Fgoogle-calendar-outlook-sync%2F" title="Sphinn"><img src="http://www.jtgraphic.net/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" /></a>
	<a rel="nofollow"  target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fwww.jtgraphic.net%2F2008%2F03%2Fgoogle-calendar-outlook-sync%2F&amp;title=Google%20Calendar%20%2F%20Outlook%20Sync" title="Reddit"><img src="http://www.jtgraphic.net/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://www.jtgraphic.net/2008/03/google-calendar-outlook-sync/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
