<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"><channel><title>RSS feed for InstantSpot site Mark Brown&apos;s Blog</title><link>http://markbrown.instantspot.com</link><description>Adventures of a ColdFusion Newbie</description><language>en-us</language><copyright>This work is Copyright &#xA9; 2009 by Mark Brown&apos;s Blog</copyright><generator>RSSVille ColdFusion FeedMaker, version 1.0</generator><pubDate>Sat, 07 Nov 2009 11:10:44 GMT</pubDate><item><title>Forza Motorsport 2...Almost Here</title><link>http://markbrown.instantspot.com/blog/2007/05/09/Forza-Motorsport-2Almost-Here</link><description>&lt;p&gt;  I haven&amp;#39;t talked about it to much here yet, but I love my Microsoft Xbox 360.  I had the original Xbox, and loved it, so last year for Christmas my wife and kids got me a Xbox 360 Premium.    &lt;/p&gt;  &lt;p&gt;  Microsoft catches alot of crap for some of the goofy things they do on with their software, but I&amp;#39;ve gotta say, they hit a home run with the Xbox and a Grand Slam with the Xbox360.  I love that thing.  I could rant on and on about why I like it, but I&amp;#39;ll save that for another slow blogging day.  &lt;/p&gt;  &lt;p&gt;  Anyway, one of the best games for Xbox is Forza Motorsport.  I love racing, any kind of racing, but espcially auto racing.&amp;nbsp; I was a big Gran Turismo fan on the Playstation 2, but once I played Forza, I was hooked.&amp;nbsp; It&amp;#39;s a blast, the graphic&amp;#39;s are amazing, and the physics of the car&amp;#39;s are dead on.&amp;nbsp;&amp;nbsp;  &lt;/p&gt;  &lt;p&gt;  The origianal Forza for Xbox works fine on my 360, but it&amp;#39;s only displayed at 480P resolution.&amp;nbsp; On May 29th, Forza Motorsport 2 is due to be released.&amp;nbsp; I looks like it will do 720P resoution.&amp;nbsp; Based on the trailers, it&amp;#39;s going to be awesome.&amp;nbsp; I pre-ordered my copy a couple of months ago so I should be the first to get my copy from GameCrazy.&amp;nbsp;&amp;nbsp;  &lt;/p&gt;  &lt;p&gt;  &amp;nbsp;  &lt;/p&gt;  &lt;p&gt;  If you like racing simulations, you have to check out Forza.&amp;nbsp; You won&amp;#39;t be sorry...&amp;nbsp;  &lt;/p&gt;  </description><pubDate>Thu, 10 May 2007 00:26:17 GMT</pubDate><guid>http://markbrown.instantspot.com/blog/2007/05/09/Forza-Motorsport-2Almost-Here</guid><category>Xbox</category></item><item><title>NYC bike race</title><link>http://markbrown.instantspot.com/blog/2007/05/04/NYC-bike-race</link><description>&lt;p&gt;  One of the my long time loves is Mountain Biking.  I don&amp;#39;t get to do it as often as I like, but I do love cycling.  Here&amp;#39;s a cool video I found on Google Video of a bike race through New York City.  &lt;/p&gt;  &lt;p&gt;  &amp;nbsp;  &lt;/p&gt;  &lt;p&gt;  &lt;a href=&quot;http://video.google.com/videoplay?docid=-3123908086916868348&amp;amp;hl=en&quot;&gt;http://video.google.com/videoplay?docid=-3123908086916868348&amp;amp;hl=en&lt;/a&gt;  &lt;/p&gt;  </description><pubDate>Fri, 04 May 2007 06:47:10 GMT</pubDate><guid>http://markbrown.instantspot.com/blog/2007/05/04/NYC-bike-race</guid><category>Cycling</category></item><item><title>How to convert date format&apos;s in MySQL.</title><link>http://markbrown.instantspot.com/blog/2007/04/30/How-to-convert-date-formats-in-MySQL</link><description>&lt;p&gt;  As you can see in my Blog entry on &lt;a href=&quot;http://markbrown.instantspot.com/blog/index.cfm/2007/4/27/How-to-import-Microsoft-Access-database-into-MySql&quot;&gt;how to import a Microsoft Access Database to MySQL&lt;/a&gt; , I ran into a small problem on converting all the dates from the format of mm/dd/yyyy to MySQL Date Format of yyyy-mm-dd.  &lt;/p&gt;  &lt;p&gt;  Thanks to all the help I recieved from Guelphad on the MySQL Newbie forum in&lt;a href=&quot;http://forums.mysql.com/read.php?10,147632,147632#msg-147632&quot;&gt; this post,&lt;/a&gt;  I got all the dates converted and am good shape.   &lt;/p&gt;  &lt;p&gt;  &amp;nbsp;Here&amp;#39;s how I converted the date formats on Guedlphad&amp;#39;s Advice.  &lt;/p&gt;  &lt;p&gt;  &amp;nbsp;In my table(misequip) , I created a new column with a data type of DATE with a name (dt_deployed) similar to the column that contained my dates imported from Access (date_deployed) in string format.&amp;nbsp; If you&amp;#39;ll remember, I imported all the dates as a datatype of VARCHAR just to get them into the database.  &lt;/p&gt;  &lt;p&gt;  I then ran this command:  &lt;/p&gt;  &lt;p style=&quot;background-color: #ccff00&quot;&gt;  &lt;font color=&quot;#000000&quot;&gt;mysql&amp;gt; UPDATE misequip SET dt_deployed =&amp;nbsp; str_to_date(date_deployed, &amp;#39;%m/%d/%Y&amp;#39;);&lt;/font&gt;  &lt;/p&gt;  &lt;p&gt;  What that command does is UPDATE&amp;#39;s the misequip table, SET&amp;#39;s the new column dt_deployed to equal the out put of the &lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/date-and-time-functions.html#function_str-to-date&quot;&gt;MySQL function STR_TO_DATE &lt;/a&gt; that converts Strings to Dates.   &lt;/p&gt;  &lt;p&gt;  Once I ran this command, I looked at the my database and all the dates were converted.&amp;nbsp; Worked like a champ.&amp;nbsp; I then dropped my original column, then renamed my new column to match the old name, date_deployed.  &lt;/p&gt;  &lt;p&gt;  &amp;nbsp;We will now be albe to do calculations on these dates now since they are in DATE format to figure out when warranties expire and stuff like that.   &lt;/p&gt;  &lt;p&gt;  &amp;nbsp;Hope this help some of you newbieMySQL guys out there,  &lt;/p&gt;  &lt;p&gt;  Mark &lt;br /&gt;  &lt;/p&gt;  &lt;p&gt;  &amp;nbsp;  &lt;/p&gt;  &lt;p&gt;  &amp;nbsp;&amp;nbsp;  &lt;/p&gt;  </description><pubDate>Mon, 30 Apr 2007 15:42:28 GMT</pubDate><guid>http://markbrown.instantspot.com/blog/2007/04/30/How-to-convert-date-formats-in-MySQL</guid><category>Databases</category></item><item><title>How to import Microsoft Access database into MySql</title><link>http://markbrown.instantspot.com/blog/2007/04/27/How-to-import-Microsoft-Access-database-into-MySql</link><description>&lt;!--  @page { size: 8.5in 11in; margin: 0.79in }  P { margin-bottom: 0.08in }  --&gt;  &lt;p style=&quot;margin-bottom: 0in&quot;&gt;  I&amp;#39;m working on web enabling my  inventory of IT Equipment with ColdFusion and MySql.  The database is  an Access database that is pretty simple, just name, model number,  date of purchase, blah, blah, blah.    &lt;/p&gt;  &lt;p style=&quot;margin-bottom: 0in&quot;&gt;  &lt;br /&gt;  &lt;/p&gt;  &lt;p style=&quot;margin-bottom: 0in&quot;&gt;  The first thing I&amp;#39;ve had to do to get  this accomplished is to export my Access database as a tab delimited  text file.  In Access, under the File menu, I went to Export. That  opened the Export Wizard. I gave the file a name &amp;quot;inv.tab&amp;quot;,  then on the first screen of that Wizard I choose delimited,  on the  second screen of the wizard choose &amp;quot;Tab&amp;quot;, then set the  &amp;quot;Text Qualifier&amp;quot; option to &amp;quot;None&amp;quot;.  Set a  location for the exported file to reside, then clicked the Finish  button.  Upon confirmation of the successful export, I opened the  text file I created with Access with a text editor (gEdit in Linux,  Notepad in Windows) and looked at the file to make sure that all the  columns and data looked ok.  I&amp;#39;ve got 3 date columns in the database,  and noticed that behind each date was a time and that the date format  was wrong and wouldn&amp;#39;t work in MySql.  (We&amp;#39;ll tackle the date problem  in another post as I haven&amp;#39;t figure out how to convert them all to  the proper date format for MySql without touching each date by hand)   Anyway, I did a find and replace and replaced all the times in the  file with a space. This application I only need the dates.  I  verified that all the times were gone, then saved the file.  &lt;/p&gt;  &lt;p style=&quot;margin-bottom: 0in&quot;&gt;  &lt;br /&gt;  &lt;/p&gt;  &lt;p style=&quot;margin-bottom: 0in&quot;&gt;  &lt;br /&gt;  &lt;/p&gt;  &lt;p style=&quot;margin-bottom: 0in&quot;&gt;  Then I connected to MySql via the  command line client and &lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/database-use.html&quot;&gt;create  my database&lt;/a&gt; and  &lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/creating-tables.html&quot;&gt;created  my tables&lt;/a&gt; to include all the columns to match the columns in my  Access database.  On the three date fields, I set them up with data  types of VARCHAR(20). For now as I&amp;#39;m just wanting to get the data in  the database. I also made all the columns to allow NULL&amp;#39;s except the  Primary Key. I&amp;#39;m working with some people on the MySql newbie forum  to get &lt;a href=&quot;http://forums.mysql.com/read.php?10,147632,150838#msg-150838&quot;&gt;help  on converting&lt;/a&gt; the dates to the correct format.  There is a MySql  function STR_TO_DATE that will convert strings to dates in the  correct format.  I&amp;#39;m hoping that will help me convert all the dates  at once.   &lt;/p&gt;  &lt;p style=&quot;margin-bottom: 0in&quot;&gt;  &lt;br /&gt;  &lt;/p&gt;  &lt;p style=&quot;margin-bottom: 0in&quot;&gt;  Once the table was created, and the  export files was checked, I started my first import by using the &lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/loading-tables.html&quot;&gt;LOAD  &lt;/a&gt;command in MySql.  &lt;/p&gt;  &lt;p style=&quot;margin-bottom: 0in&quot;&gt;  &lt;br /&gt;  &lt;/p&gt;  &lt;p style=&quot;margin-bottom: 0in&quot;&gt;  I copied one record from the export  file (inv.tab) into a new file (test.tab) and ran a test on it to  make sure it would import the file in the correct columns.  &lt;/p&gt;  &lt;p style=&quot;margin-bottom: 0in&quot;&gt;  &lt;br /&gt;  &lt;/p&gt;  &lt;p style=&quot;margin-bottom: 0in&quot;&gt;  Then, in the MySQL Command line client,  I imported my test file (test.tab) with this command  &lt;/p&gt;  &lt;p style=&quot;margin-bottom: 0in&quot;&gt;  &lt;br /&gt;  &lt;/p&gt;  &lt;p style=&quot;margin-bottom: 0in&quot;&gt;  mysql&amp;gt;LOAD DATA LOCAL INFILE  &amp;#39;/home/mbrown/test.tab&amp;#39; INTO TABLE misequip;  &lt;/p&gt;  &lt;p style=&quot;margin-bottom: 0in&quot;&gt;  &lt;br /&gt;  &lt;/p&gt;  &lt;p style=&quot;margin-bottom: 0in&quot;&gt;  Much to my amazement it ran without  error.  &lt;/p&gt;  &lt;p style=&quot;margin-bottom: 0in&quot;&gt;  &lt;br /&gt;  &lt;/p&gt;  &lt;p style=&quot;margin-bottom: 0in&quot;&gt;  so I did a mysql&amp;gt;SELECT * FROM  misequip;  &lt;/p&gt;  &lt;p style=&quot;margin-bottom: 0in&quot;&gt;  &lt;br /&gt;  &lt;/p&gt;  &lt;p style=&quot;margin-bottom: 0in&quot;&gt;  Sure enough, there was my data.  Cool.   So, now I tried the big file.  &lt;/p&gt;  &lt;p style=&quot;margin-bottom: 0in&quot;&gt;  &lt;br /&gt;  &lt;/p&gt;  &lt;p style=&quot;margin-bottom: 0in&quot;&gt;  I opened the inv.tab export file, made  sure the line I already imported was gone, then type this:  &lt;/p&gt;  &lt;p style=&quot;margin-bottom: 0in&quot;&gt;  &lt;br /&gt;  &lt;/p&gt;  &lt;p style=&quot;margin-bottom: 0in&quot;&gt;  mysql&amp;gt;LOAD DATA LOCAL INFILE  &amp;#39;/home/mbrown/inv.tab&amp;#39; INTO TABLE misequip;  &lt;/p&gt;  &lt;p style=&quot;margin-bottom: 0in&quot;&gt;  &lt;br /&gt;  &lt;/p&gt;  &lt;p style=&quot;margin-bottom: 0in&quot;&gt;  No errors again.  Cool!  &lt;/p&gt;  &lt;p style=&quot;margin-bottom: 0in&quot;&gt;  &lt;br /&gt;  &lt;/p&gt;  &lt;p style=&quot;margin-bottom: 0in&quot;&gt;  Then I did a mysql&amp;gt;SELECT * from  misequip; and BOOM, there&amp;#39;s all my data!  SWEEETTTT!  I love MySql!   LOL  &lt;/p&gt;  &lt;p style=&quot;margin-bottom: 0in&quot;&gt;  &lt;br /&gt;  &lt;/p&gt;  &lt;p style=&quot;margin-bottom: 0in&quot;&gt;  Now I&amp;#39;m going to tackle the date  convert thing.  I&amp;#39;ll keep you posted.  &lt;/p&gt;  </description><pubDate>Fri, 27 Apr 2007 15:49:12 GMT</pubDate><guid>http://markbrown.instantspot.com/blog/2007/04/27/How-to-import-Microsoft-Access-database-into-MySql</guid><category>Databases</category></item><item><title>Web Site color calculators</title><link>http://markbrown.instantspot.com/blog/2007/04/26/Web-Site-color-calculators</link><description>&lt;!--  @page { size: 8.5in 11in; margin: 0.79in }  P { margin-bottom: 0.08in }  --&gt;  &lt;p style=&quot;margin-bottom: 0in&quot;&gt;  I&amp;#39;ll be the first to admit that I&amp;#39;m not  creative at all.  My wife practically has to dress me in the  mornings...  I really have no eye for colors at all.  In an effort to  make my web site colors &amp;ldquo;pretty&amp;rdquo;, I had to find something to help  me with the colors.    &lt;/p&gt;  &lt;p style=&quot;margin-bottom: 0in&quot;&gt;  &lt;br /&gt;  &lt;/p&gt;  &lt;p style=&quot;margin-bottom: 0in&quot;&gt;  Of course, when designing web pages,  colors aren&amp;#39;t as simple as just Red, White or blue.  You&amp;#39;ve got to  know the either the HEX, RGB, or HSV values to really get the colors  you want.  CSS does allow for general colors to be named, but how  many of you use just the general colors?  &lt;/p&gt;  &lt;p style=&quot;margin-bottom: 0in&quot;&gt;  &lt;br /&gt;  &lt;/p&gt;  &lt;p style=&quot;margin-bottom: 0in&quot;&gt;  I found a couple of web sites that are  helpful when picking colors or color schemes for web pages.  &lt;/p&gt;  &lt;p style=&quot;margin-bottom: 0in&quot;&gt;  &lt;br /&gt;  &lt;/p&gt;  &lt;p style=&quot;margin-bottom: 0in&quot;&gt;  &lt;a href=&quot;http://wellstyled.com/tools/colorscheme2/index-en.html&quot;&gt;http://wellstyled.com/tools/colorscheme2/index-en.html&lt;/a&gt;  &lt;/p&gt;  &lt;p style=&quot;margin-bottom: 0in&quot;&gt;  &lt;a href=&quot;http://www.drpeterjones.com/colorcalc/&quot;&gt;http://www.drpeterjones.com/colorcalc/&lt;/a&gt;  &lt;/p&gt;  &lt;p style=&quot;margin-bottom: 0in&quot;&gt;  &lt;a href=&quot;http://www.pitt.edu/%7Enisg/cis/web/cgi/rgb.html&quot;&gt;http://www.pitt.edu/~nisg/cis/web/cgi/rgb.html&lt;/a&gt;  &lt;/p&gt;  &lt;p style=&quot;margin-bottom: 0in&quot;&gt;  &lt;br /&gt;  &lt;/p&gt;  &lt;p style=&quot;margin-bottom: 0in&quot;&gt;  Fell free to add to the list if you  have other you like.  &lt;/p&gt;  &lt;p style=&quot;margin-bottom: 0in&quot;&gt;  &lt;br /&gt;  &lt;/p&gt;  &lt;p style=&quot;margin-bottom: 0in&quot;&gt;  Later,  &lt;/p&gt;  &lt;p style=&quot;margin-bottom: 0in&quot;&gt;  Mark  &lt;/p&gt;  &lt;p style=&quot;margin-bottom: 0in&quot;&gt;  &lt;br /&gt;  &lt;/p&gt;  </description><pubDate>Thu, 26 Apr 2007 13:55:11 GMT</pubDate><guid>http://markbrown.instantspot.com/blog/2007/04/26/Web-Site-color-calculators</guid><category>Web Design</category></item><item><title>I&apos;m running naked today...</title><link>http://markbrown.instantspot.com/blog/2007/04/25/Im-running-naked-today</link><description>&lt;p&gt;  I removed all the CSS from my Spot today, just playing around, but it&amp;#39;s kinda cool.&amp;nbsp; Kinda reminds me of the vintage Internet days.&amp;nbsp; Lots of text with one or two pictures....  &lt;/p&gt;  &lt;p&gt;  &amp;nbsp;  &lt;/p&gt;  &lt;p&gt;  I think I&amp;#39;ll run naked (css-less) for a day, unless it&amp;#39;ll cause a problem with Instantspot.&amp;nbsp; Dave or Aaron? &lt;br /&gt;  &lt;/p&gt;  </description><pubDate>Wed, 25 Apr 2007 12:01:33 GMT</pubDate><guid>http://markbrown.instantspot.com/blog/2007/04/25/Im-running-naked-today</guid><category>Web Design</category></item><item><title>Review of a very good beginner ColdFusion Book..</title><link>http://markbrown.instantspot.com/blog/2007/04/25/Review-of-a-very-good-beginner-ColdFusion-Book</link><description>&lt;!--  @page { size: 8.5in 11in; margin: 0.79in }  P { margin-bottom: 0.08in }  --&gt;  &lt;p&gt;  With the wealth of information available on the Internet on  ColdFusion programming, I never thought I would buy a book on it. &amp;nbsp;  &lt;/p&gt;  &lt;p&gt;  I was doing a trial membership of Safari Books Online and found  the book.&lt;a href=&quot;http://www.adobe.com/cfusion/store/index.cfm?store=OLS-US#loc=en_us&amp;amp;view=ols_prod&amp;amp;store=OLS-US&amp;amp;categoryOID=1145903&amp;amp;distributionOID=48192&quot;&gt;Macromedia  ColdFusion MX 7Web Application Construction Kit&lt;/a&gt;.&amp;nbsp; I added it  to my book shelf expecting to find just another programming book  written for seasoned developers.&amp;nbsp; I was wrong.  &lt;/p&gt;  &lt;p&gt;  For the beginner this is a great book.&amp;nbsp; You can find pretty  much all the topics in this book on the Internet, but not all in one  place, and not layed out in such an easy to understand format.&amp;nbsp;  The authors did a fantasic job of making it a very readable book.&amp;nbsp;  They take there time explaining topics, then show you the code, then  explain it, line by line and how it all interacts together.   &lt;/p&gt;  &lt;p&gt;  If your a beginner/newbie with ColdFusion, make sure and check  this book out.&amp;nbsp; It now has a permanent location next to my  keyboard.&amp;nbsp; We&amp;#39;ll worth the $50.&amp;nbsp;  &lt;/p&gt;  </description><pubDate>Wed, 25 Apr 2007 11:29:42 GMT</pubDate><guid>http://markbrown.instantspot.com/blog/2007/04/25/Review-of-a-very-good-beginner-ColdFusion-Book</guid><category>ColdFusion</category></item><item><title>Reset MySql root password</title><link>http://markbrown.instantspot.com/blog/2007/04/20/Reset-MySql-root-password</link><description>&lt;p&gt;  One of the problems I ran into when I started playing with MySql was trying to figure out how to reset the root password.    &lt;/p&gt;  &lt;p&gt;  one night I was dinking around in MySql, and wound up locking myself out.  I searched high and low for someway to reset that password, found a couple of hints at how, but couldn&amp;#39;t ever get it reset.  It was on a new install of Ubuntu and Mysql, so I removed MySql, reinstalled it, and I still couldn&amp;#39;t get in.  So, I wound up reinstalling Ubuntu, then MySql to get it to work.  &lt;/p&gt;  &lt;p&gt;  Today I was perusing the mysql newbie from and saw this post.  &lt;a href=&quot;http://forums.mysql.com/read.php?10,149291,149311#msg-149311&quot;&gt;http://forums.mysql.com/read.php?10,149291,149311#msg-149311&lt;/a&gt;   &lt;/p&gt;  &lt;p&gt;  Boy that would have been helpful about 3 weeks ago, so hopefully someone here might find it useful now!  &lt;/p&gt;  &lt;p&gt;  &amp;nbsp;  &lt;/p&gt;  &lt;p&gt;  Have a good weekend!   &lt;/p&gt;  </description><pubDate>Fri, 20 Apr 2007 17:29:03 GMT</pubDate><guid>http://markbrown.instantspot.com/blog/2007/04/20/Reset-MySql-root-password</guid><category>SQL</category></item><item><title>Dressing my spot up...</title><link>http://markbrown.instantspot.com/blog/2007/04/18/Dressing-my-spot-up</link><description>&lt;p&gt;  I have a little bit of time today, so I thought I would dress my spot up a bit.  I finally got a headshot added.  It was amazingly hard to find a current pic of myself.  As I look thru the gigs of pictures I have, most of the pics are of my kids.   Anyway.  As I&amp;#39;m looking for ways to make my spot a bit more friendly, I found myself looking for some good header pics.  I really didn&amp;#39;t find to many, but it got me to thinking about stock photographs used on web pages.  I found one good &amp;quot;free&amp;quot; stock photo site:  http://www.sxc.hu/browse.phtml.  I&amp;#39;m curious though, do any of you fellow spotted people or bloggers out there have any good &amp;quot;free&amp;quot; stock photo site you like and would share with the group?  &lt;/p&gt;  &lt;p&gt;  I&amp;#39;m going to hopefully use some of the Style Manager features this afternoon, so keep an eye out.&amp;nbsp; I&amp;#39;m not creative at all, so my spot may become very ugly very soon.&amp;nbsp; LOL&amp;nbsp;  &lt;/p&gt;  &lt;p&gt;  Thanks,&lt;br /&gt;  Mark   &lt;/p&gt;  </description><pubDate>Wed, 18 Apr 2007 16:19:15 GMT</pubDate><guid>http://markbrown.instantspot.com/blog/2007/04/18/Dressing-my-spot-up</guid><category>Web Design</category></item><item><title>Google Calendar and Evolution Coolness</title><link>http://markbrown.instantspot.com/blog/2007/04/11/Google-Calendar-and-Evolution-Coolness</link><description>&lt;p&gt;  One of my favorite things about Linux and/or Ubuntu is that I get to use the email client &lt;a href=&quot;http://www.gnome.org/projects/evolution/&quot;&gt;Evolution&lt;/a&gt; .  I&amp;#39;m not a fan of Microsoft Outlook at all, and Evolution is a perfect replacement for it.  All the features but none of the Microsoft bull.  &lt;/p&gt;  &lt;p&gt;  I&amp;#39;ve also found myself using &lt;a href=&quot;http://www.google.com/calendar&quot;&gt;Google&amp;#39;s Calendar&lt;/a&gt;  lately.  My wife and I use it to keep track of when bills are due, when the kids&amp;#39; baseball or what ever sport practices are and to keep track of all the family and friends birthdays and such.  My wife and I each have our own calendar, and share it with each other to keep up to date.  Pretty neat how it works.  &lt;/p&gt;  &lt;p&gt;  Now that I&amp;#39;m using Ubuntu at home almost exclusively I found myself not wanting to import or retype all those dates from Google Calendar.  So, I got to looking around and found that you can publish your calendar in 3 formats.  iCal, XML, and HTTP.  I then started looking around in Evolution and found that you can add web calendars to the calendar views.  So, here&amp;#39;s what I did.  &lt;/p&gt;  &lt;p&gt;  In Google Calendar, I went to &amp;quot;Manage Calendars&amp;quot;, then clicked on my calendar and at the bottom of that page there are a couple sections.  Calendar Address and Private Address.    &lt;/p&gt;  &lt;p&gt;  The Calendar Address Section is only for appointments that are made public, but the Private Address is for everything on your calendar.    &lt;/p&gt;  &lt;p&gt;  So, I clicked on the iCal button and it pops up a window with a URL in it.  I copied that URL.  &lt;/p&gt;  &lt;p&gt;  Then, in Evolution, I went to my Calendar, and in the upper lefthand pane of the window I right clicked and choose New Calendar.  &lt;/p&gt;  &lt;p&gt;  That popped up a New Calendar window.  For Type:  I choose &amp;quot;On the Web&amp;quot;, For name, just put something in there to distinguish which calendar it is, then under URL I pasted the URL that Google gave me.  When I pasted it in the New Calendar window, I had to take the http:// section of the URL and make it webcal://,   It should look something like this webcal//www.google.com/calendar../basic.ics.    &lt;/p&gt;  &lt;p&gt;  Clicked Ok on that New Calendar Window,  Restarted Evolution and there it was, my entire Google Calendar displayed in the Calendar in Evolution.  &lt;/p&gt;  &lt;p&gt;  Pretty neat stuff.  &lt;/p&gt;  &lt;p&gt;  Of course I couldn&amp;#39;t leave well enough along, so I decided to try the same thing with Microsoft Outlook.  I only worked on it for about 10 minutes, which is about how long it took me to set it up with Evolution, but I couldn&amp;#39;t find a way to add web calendars to Outlook 2003.  I&amp;#39;m not surprised...nor did I expect to be able to.&amp;nbsp; It the abilitiy is there, it&amp;#39;s not nearly as intuitive to setup as Evolution was, and I didn&amp;#39;t really want to spend the time digging thru help files and forums to figure it out.  &lt;/p&gt;  &lt;p&gt;  Anyway, they may be old news to some of you, but hopefully it&amp;#39;ll help someone else get just a bit more organized  &lt;/p&gt;  &lt;p&gt;  &amp;nbsp;BTW, I read an article that a &lt;a href=&quot;http://shellter.sourceforge.net/evolution/&quot;&gt;Windows version of Evolution&lt;/a&gt; has been released.&amp;nbsp; I haven&amp;#39;t tried it yet, but hopefully it works as well as the Linux version.   &lt;/p&gt;  &lt;p&gt;  Later,  &lt;/p&gt;  &lt;p&gt;  Mark   &lt;/p&gt;  &lt;p&gt;  &amp;nbsp;  &lt;/p&gt;  &lt;p&gt;  &amp;nbsp;  &lt;/p&gt;  </description><pubDate>Thu, 12 Apr 2007 00:37:53 GMT</pubDate><guid>http://markbrown.instantspot.com/blog/2007/04/11/Google-Calendar-and-Evolution-Coolness</guid><category>Ubuntu</category></item><item><title>Baseball Season has started!</title><link>http://markbrown.instantspot.com/blog/2007/04/09/Baseball-Season-has-started</link><description>&lt;p&gt;  I&amp;#39;ll be the first to admit that I&amp;#39;ve never been a baseball fan at all.&amp;nbsp; My whole life I&amp;#39;ve never really cared about the sport at all.&amp;nbsp; I played Little League, Babe Ruth, but once I got into high school everything was about Football, so I ran track because it helped me with Football.&amp;nbsp; I just never understood how or why people liked Baseball so much.  &lt;/p&gt;  &lt;p&gt;  &amp;nbsp;Then I had kids, 2 sons.&amp;nbsp; They both wanted to play Baseball last year, my youngest was to young to play yet, but my oldest son was 10 and played in the 10 and under league.&amp;nbsp; What an absolute blast to watch him play last year.&amp;nbsp; My wife and I really enjoyed and looked forward to watching him play.&amp;nbsp; So needless to say we were looking forward to this year.  &lt;/p&gt;  &lt;p&gt;  &amp;nbsp;Saturday was opening day for the league.&amp;nbsp; My youngest is playing Tee Ball and my oldest is playing in the 12 and under league.&amp;nbsp; My youngest son&amp;#39;s game was at 10 on Saturday morning.&amp;nbsp; We pulled into the parking lot a the baseball complex and the temp in my car reads 38f degrees.&amp;nbsp; We get to the right field, begin to warm up, and it starts SNOWING! &amp;nbsp; Most of the kids were loving it.&amp;nbsp; Game starts and we all had a blast, well, most of us did.&amp;nbsp; We lost, but it was still fun and my son had fun, which is really what counts.  &lt;/p&gt;  &lt;p&gt;  Now, I&amp;#39;m going to rant a little bit.&amp;nbsp; All you parents out there, if you signed your kid up for a sport, you are making a commitment to the TEAM that your kid will play, even if conditions aren&amp;#39;t perfect.&amp;nbsp; What are you teaching your kids if you let them whine and cry about the conditions then let them sit out of the game?&amp;nbsp; Your teaching them it&amp;#39;s OK to let their team down just because they don&amp;#39;t want to be a a bit uncomfortable.&amp;nbsp; This is not how you develop productive hardworking citizens.  &lt;/p&gt;  &lt;p&gt;  I&amp;#39;ll get off my pedistle now...back to Saturday&amp;#39;s game.  &lt;/p&gt;  &lt;p&gt;  My oldest son&amp;#39;s game was at 12:15 on Saturday, so we run to grab a quick lunch, then head back to the now 42 degree ball fields.&amp;nbsp; The 12 and under games are scheduled to go 90 minutes or 7 innings, which ever comes first.&amp;nbsp; I&amp;#39;ve never seen one go 7 inning though.&amp;nbsp; The game starts, and it&amp;#39;s a heck of a game, very close, good pitching, good hitting and good fielding.&amp;nbsp; My son hit a triple and then struck out.&amp;nbsp; They ultimately lost by 1 point, but what a game.&amp;nbsp; What fun it is to watch them play.  &lt;/p&gt;  &lt;p&gt;  &amp;nbsp;I&amp;#39;m starting to see why Baseball is such a popular sport! &lt;br /&gt;  &lt;/p&gt;  &lt;p&gt;  &amp;nbsp;&amp;nbsp;  &lt;/p&gt;  </description><pubDate>Mon, 09 Apr 2007 12:46:11 GMT</pubDate><guid>http://markbrown.instantspot.com/blog/2007/04/09/Baseball-Season-has-started</guid><category>Family</category></item><item><title>A few more tries with Ubuntu and BlueDragon </title><link>http://markbrown.instantspot.com/blog/2007/04/05/A-few-more-tries-with-Ubuntu-and-BlueDragon-</link><description>&lt;p&gt;  After taking a few days off from working on getting a server running Ubunutu and New Atlanta&amp;#39;s BlueDragon Free Server up and going, I decided to take a fresh look at it.&amp;nbsp;   &lt;/p&gt;  &lt;p&gt;  My frustration level is way down after the time off, I&amp;#39;m thinking more clearly now, so&lt;br /&gt;  I decided to try some different versions to see if I could get it to work, and so far I&amp;#39;m glad I did.&amp;nbsp; I installed Ubuntu 6.06 Server, installed Apache 2.0.55 and BlueDragon 6.21.&amp;nbsp; I now almost have the process committed to memory, but also followed the blogs referenced in &lt;a href=&quot;http://markbrown.instantspot.com/blog/index.cfm/2007/3/14/Ubuntu610-and-BlueDragon-7-install-and-working-well-kinda&quot;&gt;this post&lt;/a&gt;  to make sure I was right. &amp;nbsp;  &lt;/p&gt;  &lt;p&gt;  Much to my surprise, it works.&amp;nbsp; Processes the CFML like it should and like is good.  &lt;/p&gt;  &lt;p&gt;  So, my next step is going to be to try to install BlueDragon 7 on Ubuntu 6.06 Desktop.&amp;nbsp; My Develepment machine is running 6.10 of Ubuntu, so I bought and extra drive to replace the 6.10 drive.&amp;nbsp; If it works, I&amp;#39;ll stay on those versions and I&amp;#39;ll be good to go.  &lt;/p&gt;  &lt;p&gt;  I&amp;#39;ll keep you all posted. &lt;br /&gt;  &lt;/p&gt;  &lt;p&gt;  &amp;nbsp;  &lt;/p&gt;  </description><pubDate>Thu, 05 Apr 2007 12:33:47 GMT</pubDate><guid>http://markbrown.instantspot.com/blog/2007/04/05/A-few-more-tries-with-Ubuntu-and-BlueDragon-</guid><category>Ubuntu</category></item><item><title>Remote Access to mySql Database</title><link>http://markbrown.instantspot.com/blog/2007/03/30/Remote-Access-to-mySql-Database</link><description>&lt;p&gt;  As I&amp;#39;m playing with MySql I found that setting up remote access to the mysql server is a bit tricky at first, so I thought I&amp;#39;d share quickly with you how to set up account with remote access.  &lt;/p&gt;  &lt;p&gt;  &amp;nbsp;Here&amp;#39;s the whole process:  &lt;/p&gt;  &lt;p&gt;  I&amp;#39;ve got a Ubuntu box running MySql 5 on it.  Once I got MySql installed (sudo apt-get install mysql-server) I set up the root account with a password. (mysqladmin -u root password &amp;quot;passwordyouwant&amp;quot;) &amp;lt;--Thanks for that &lt;a href=&quot;http://ajlcom.instantspot.com&quot;&gt;Aaron Lynch&lt;/a&gt;.  &lt;/p&gt;  &lt;p&gt;  Then, log into the MySql server by opening a terminal window locally and typing:  &lt;/p&gt;  &lt;p&gt;  mysql -u root -p  (then enter the password you set above)  &lt;/p&gt;  &lt;p&gt;  Following the tutorial located &lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/tutorial.html&quot;&gt;here&lt;/a&gt; , I then created a db, and table, and populated it with some data.   &lt;/p&gt;  &lt;p&gt;  At this point I think, what if I want to administer this thing from my laptop?  So, I installed the MySql Administrator (sudo apt-get install mysql-admin).    &lt;/p&gt;  &lt;p&gt;  I tried to log in using the sql admin tool after the install.  Typed in the ip address of the MySql Server, username and password, but it threw this error:  &lt;/p&gt;  &lt;p&gt;  Could not connect to host &lt;br /&gt;  MySQl Error Nr. 1130&lt;br /&gt;  Host &amp;#39;192.168.1.103&amp;#39; is not allowed to connect to this MySQL server  &lt;/p&gt;  &lt;p&gt;  I started browsing some forums and blogs and found that I need to edit the /etc/mysql/my.conf file to allow other machines besides the localhost to access the server.  &lt;/p&gt;  &lt;pre&gt;  sudo nano /etc/mysql/my.cnf&lt;br /&gt;  &lt;/pre&gt;  &lt;pre&gt;  and change the line:   &lt;/pre&gt;  &lt;pre&gt;  bind-address           = localhost&lt;br /&gt;  &lt;/pre&gt;  &lt;pre&gt;  to your own internal ip address e.g. 192.168.2.10   &lt;/pre&gt;  &lt;pre&gt;  bind-address           = 192.168.2.10  &lt;/pre&gt;  &lt;pre&gt;  CTRL-X to close nano, y to save, enter to confirm the location&amp;nbsp;  &lt;/pre&gt;  &lt;p&gt;  I try the MySql Administrator again, but get the same error or a  1045 error. So I get to doing some more research and find that for a account to access a MySql db remotely you have to tell the server the host name that you&amp;#39;ll be connecting from or you can use a % as a wildcard meaning from everywhere.  The MySql documentation does a great job of showing you how &lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/adding-users.html&quot;&gt;here.&lt;/a&gt; &amp;nbsp;  &lt;/p&gt;  &lt;p&gt;  I went to the server, logged into mysql locally (or via ssh) and typed:  &lt;/p&gt;  &lt;p&gt;  &amp;nbsp;  &lt;/p&gt;  &lt;p&gt;  mysql&amp;gt; GRANT ALL PRIVILEGES ON *.* TO &amp;#39;typeusername&amp;#39;@&amp;#39;localhost&amp;#39; IDENTIFIED BY &amp;#39;typepasswordhere&amp;#39; WITH GRANT OPTION;&amp;nbsp;  &lt;/p&gt;  &lt;p&gt;  mysql&amp;gt; GRANT ALL PRIVILEGES ON *.* TO &amp;#39;typeusername&amp;#39;@&amp;#39;%&amp;#39; IDENTIFIED BY &amp;#39;typepasswordhere&amp;#39; WITH GRANT OPTION;  &lt;/p&gt;  &lt;p&gt;  &amp;nbsp;The first statement gives the username permission to log on locally to the db from the console of the server, and the second statement gives the username access remotely from anywhere.&amp;nbsp; I could have done &amp;#39;typeusername&amp;#39;@&amp;#39;192.168.2.50&amp;#39; in that second statement restricting that username to only being able to connect from local and 192.168.2.50.&lt;br /&gt;     &lt;/p&gt;  &lt;p&gt;  &amp;nbsp;One note on those usernames.&amp;nbsp; I created another username for remote access, instead of trying to edit root,&amp;nbsp; as I was scared to mess with the root account.&amp;nbsp;&amp;nbsp; Plus I&amp;#39;m getting kinda tired of breaking these linux boxs and not knowing how to fix them:)&amp;nbsp; Also the part that says &amp;quot;PRIVILEGES ON *.*&amp;quot; is giving this new account superuser privileges, so be careful with this. &amp;nbsp;   &lt;/p&gt;  &lt;p&gt;  Once I typed those two commands into MySql to create those accounts and privileges it started working like a champ from my workstation.  &lt;/p&gt;  &lt;p&gt;  &amp;nbsp;Of course none of this is anything new, but I found it a&amp;nbsp; bit time consuming trying to get it to work. I&amp;#39;m still pretty new to&amp;nbsp; mySql. Hopefully this will save some other newbies some of their time.  &lt;/p&gt;  &lt;p&gt;  &amp;nbsp;Later,  &lt;/p&gt;  &lt;p&gt;  Mark&amp;nbsp;  &lt;/p&gt;  &lt;p&gt;  &amp;nbsp;  &lt;/p&gt;  </description><pubDate>Sat, 31 Mar 2007 04:38:16 GMT</pubDate><guid>http://markbrown.instantspot.com/blog/2007/03/30/Remote-Access-to-mySql-Database</guid><category>SQL</category></item><item><title>First Experiences with MySql</title><link>http://markbrown.instantspot.com/blog/2007/03/28/First-Experiences-with-MySql</link><description>&lt;p&gt;  I&amp;#39;ve been playing with &lt;a href=&quot;http://www.mysql.com&quot;&gt;MySql &lt;/a&gt; a bit lately and have to say I&amp;#39;m impressed.  To me this is a product of the Open Source world that really shows the benefits of Open Source software, especially in the documentation.  &lt;br /&gt;  &lt;/p&gt;  &lt;p&gt;  I&amp;#39;ve really just been playing with it, so I don&amp;#39;t have any highly technical revelations to report yet, but what really has impressed me so far is the documentation that comes with it in the help file.  You can find it on there web site &lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/index.html&quot;&gt;here&lt;/a&gt; .  For a noob like me the tutorial in that documentation is invaluable.  Very simple, easy step by step examples on creating your first database, table, and getting data into and out of it.    &lt;/p&gt;  &lt;p&gt;  &lt;a href=&quot;http://ajlcom.instantspot.com/&quot;&gt;  Aaron Lynch&lt;/a&gt; , &lt;a href=&quot;http://daveshuck.instantspot.com&quot;&gt;Dave Shuck&lt;/a&gt;  and  &lt;a href=&quot;http://musetracks.instantspot.com/&quot;&gt;Rob Wilkerson&lt;/a&gt;  all encouraged me to check it out and initially I&amp;#39;m glad I took their advise.  Thanks fella&amp;#39;s.   &lt;/p&gt;  </description><pubDate>Wed, 28 Mar 2007 14:25:45 GMT</pubDate><guid>http://markbrown.instantspot.com/blog/2007/03/28/First-Experiences-with-MySql</guid><category>Databases</category></item><item><title>Stick a fork in me, I&apos;m done!</title><link>http://markbrown.instantspot.com/blog/2007/03/27/Stick-a-fork-in-me-Im-done</link><description>&lt;p&gt;  Well, after 2 weeks and one day of working diligently, well, about 3 hours a night give or take, I&amp;#39;m throwing in the towel on the Ununtu/BD and/or Ubuntu/Coldfusion thing.&amp;nbsp; I can not get either to work. &amp;nbsp;  &lt;/p&gt;  &lt;p&gt;  I&amp;#39;ve followed 4 diffent how to&amp;#39;s, reinstalled Ubuntu Desktop 6 time and server 3 times on 3 different computers. 1 mine and 2 I borrowed from work.&amp;nbsp; I&amp;#39;ve made sure to follow the tutorials verbatim.&amp;nbsp; Even to the point of making sure my directory structure matched the tutorials and I started cutting and pasting the commands in. I&amp;#39;ve even had the writer of one tutorials ssh into my machine to help me figure it out.&amp;nbsp; Still have not successfully served up one single coldfusion page from any of my computers. &amp;nbsp;  &lt;/p&gt;  &lt;p&gt;  The only thing I haven&amp;#39;t tried yet is trying to install it on something other than a Dell computer.&amp;nbsp; I can&amp;#39;t imagine why that would make any difference, but I&amp;#39;ve tried it on a Optiplex GX 620, 260 and 280.&amp;nbsp; I&amp;#39;m not having any problems at all with any drivers in Ubuntu.&amp;nbsp; Problem there is I don&amp;#39;t have access to anything other than Dell&amp;#39;s, and don&amp;#39;t want to buy a new pc just for this.   &lt;/p&gt;  &lt;p&gt;  &amp;nbsp;They&amp;#39;ve all had wireless cards in them as my computer room doesn&amp;#39;t have any cat5 anywhere close.&amp;nbsp; Does that matter?&amp;nbsp; I have no idea.  &lt;/p&gt;  &lt;p&gt;  What I do know is I haven&amp;#39;t actually written any ColdFusion for 2 weeks. &amp;nbsp; Now that&amp;#39;s sad!  &lt;/p&gt;  &lt;p&gt;  &amp;nbsp;I&amp;#39;m thinking what I may do at this point is get vmware installed and running, install windows on a virtual machine and host it all from there.  &lt;/p&gt;  &lt;p&gt;  Why am I telling you all this?&amp;nbsp; I don&amp;#39;t know, I guess I&amp;#39;m just venting.&amp;nbsp; Maybe after I actually&amp;nbsp; get some code written I&amp;#39;ll quit feeling so defeated!&amp;nbsp; LOL&amp;nbsp;  &lt;/p&gt;  &lt;p&gt;  &amp;nbsp;I&amp;#39;m going to decompress over an IPA from a brewery in Oregon now... &lt;br /&gt;  &lt;/p&gt;  &lt;p&gt;  &amp;nbsp;  &lt;/p&gt;  &lt;p&gt;  &amp;nbsp;  &lt;/p&gt;  </description><pubDate>Wed, 28 Mar 2007 03:11:51 GMT</pubDate><guid>http://markbrown.instantspot.com/blog/2007/03/27/Stick-a-fork-in-me-Im-done</guid><category>Ubuntu</category></item><item><title>The ColdFusion Community</title><link>http://markbrown.instantspot.com/blog/2007/03/25/The-ColdFusion-Community</link><description>&lt;p&gt;  As i&amp;#39;ve been working thru the issues trying to get BlueDragon working on my Ubuntu box, I&amp;#39;m again reminded of the awesome community build by all you ColdFusion Developers.  You guys are truely great.    &lt;/p&gt;  &lt;p&gt;  Adam Howitt took 2 hours out of his Sunday afternoon to help me on the issues with BD and Ubuntu.  This guy is a complete stranger, saw my plea&amp;#39;s for help on the BlueDragon list, and very diligently has been working with me to get it running.  Here&amp;#39;s a guy that purely out of the kindness of his heart took hours of his time out to help a almost clueless newbie like me.  Now that&amp;#39;s community.  That&amp;#39;s the ColdFusion community that is making me love this language.   &lt;/p&gt;  &lt;p&gt;  Please take the time to check out Adam&amp;#39;s pages.   http://www.webdevref.com/blog and http://www.walkjogrun.net.  &lt;/p&gt;  &lt;p&gt;  Also, people like &lt;a href=&quot;http://www.instantspot.com&quot;&gt;Dave Shuck&lt;/a&gt;  and &lt;a href=&quot;http://www.instantspot.com&quot;&gt;Aaron Lynch&lt;/a&gt;  are always offing to help me out.  The generosity of people like Dave and Aaron speaks volumes about the ColdFusion community they represent.  Thank you guys!  &lt;/p&gt;  &lt;p&gt;  Last but definitely not least I also want to thank &lt;a href=&quot;http://www.salesmetric.com&quot;&gt;Mike Hanson.&lt;/a&gt;   I met Mike thru my church a couple of years ago.  He has spent so much of his time teaching me and mentoring me on ColdFusion and other related technologies.  I really am so grateful for his time and patience and wouldn&amp;#39;t be nearly as far along as I am if it weren&amp;#39;t for him.   Thank you Mike,   &lt;/p&gt;  &lt;p&gt;  If anyone actually reads this, I ask that you please check out the web pages of these 4 guys and support them in any way you can.  They deserve it!   &lt;/p&gt;  &lt;p&gt;  So, before I start suggesting group hugs here or at the next CFUG Meeting, I&amp;#39;ll close this thing.   &lt;/p&gt;  &lt;p&gt;  Later,   &lt;/p&gt;  &lt;p&gt;  Mark  &lt;/p&gt;  &lt;p&gt;  &amp;nbsp;  &lt;/p&gt;  </description><pubDate>Mon, 26 Mar 2007 00:58:10 GMT</pubDate><guid>http://markbrown.instantspot.com/blog/2007/03/25/The-ColdFusion-Community</guid><category>ColdFusion</category></item><item><title>Easy Page navigation using CFSwitch and URL Variables</title><link>http://markbrown.instantspot.com/blog/2007/03/25/Easy-Page-navigation-using-CFSwitch-and-URL-Variables</link><description>&lt;p&gt;  In some of my apps I&amp;#39;ve been writing, using CFSwitch is a really nifty way to do conditional processing on my pages, allowing me to get away from an endless number of CFIF&amp;#39;s.  Especially when using CFSwitch tags for controlling navigation on my application.    &lt;/p&gt;  &lt;p&gt;  I know this isn&amp;#39;t earth moving news for you seasoned cf developers out there, but I find cfswitch to be a very interesting and powerful tab.    &lt;/p&gt;  &lt;p&gt;  A little back ground first.  I&amp;#39;m slowly writing a app that will allow users to do reviews on  service providers of a certain industry.  I had a need for a page that has the service providers contact information, at the top, but has a link or tabs with links to be able to edit the service providers information, add notes, add a review, or view reviews.  I didn&amp;#39;t want to display all the forms down the page as I wanted it all on one screen so the user didn&amp;#39;t have to scroll all the way to the bottom to add a note.  They could click on a link, that would leave the service provider contact information at the top of the page, but change the form at the bottom to the appropriate form to add a note or what ever link or tab they clicked on.    &lt;/p&gt;  &lt;p&gt;  As your reading this code, of course there are some assumption you will need to make.  Like, this page is the resulting page from a query or a drill down page from a query.  The initial url would be &amp;quot;index.cfm?=serviceproviderID=#url.IDFromDatabase#&amp;quot;   &lt;/p&gt;  &lt;p&gt;  So, here&amp;#39;s the code:  &lt;/p&gt;  &lt;blockquote&gt;   &lt;p&gt;   [codeShare mar12c6b]   &lt;/p&gt;  &lt;/blockquote&gt;  &lt;p&gt;  It seems to work pretty well.  Being new to this whole programming thing it was pretty neat to figure this out and not have to depend on someone elses snippet to get it working.  So I figured I&amp;#39;d post it in case some other newbie need something like this on there page.  This is the first time I&amp;#39;ve posted any code like this.  I took my working code and &amp;quot;sanitized it&amp;quot; for this entry, so if you see an issue with it please let me know.   &lt;/p&gt;  &lt;p&gt;  &amp;nbsp;  &lt;/p&gt;  &lt;p&gt;  Later,  &lt;/p&gt;  &lt;p&gt;  Mark   &lt;/p&gt;  </description><pubDate>Sun, 25 Mar 2007 19:29:09 GMT</pubDate><guid>http://markbrown.instantspot.com/blog/2007/03/25/Easy-Page-navigation-using-CFSwitch-and-URL-Variables</guid><category>ColdFusion</category></item><item><title>Database preferences and opinions.</title><link>http://markbrown.instantspot.com/blog/2007/03/22/Database-preferences-and-opinions</link><description>&lt;p&gt;  So, this is probably one of those loaded questions like asking if a group of Nascar Fans likes Ford or Chevy better, but here it comes anyway.  Well, after a bit of explanation as to why I&amp;#39;m asking such a question anyway.   &lt;/p&gt;  &lt;p&gt;  Being a newbie to CF development and databases I tend to lean towards simplicity.  My background as a IT Manager hasn&amp;#39;t gotten me very much experience with the big server based DB&amp;#39;s like MSSQL and MySql.  In the past, if we&amp;#39;ve needed &amp;quot;hardcore&amp;quot; db work done by boss tells me to hire a &amp;quot;SQL Guy&amp;quot;.  So I haven&amp;#39;t learned to much about the inner workings of the different server based DB&amp;#39;s.   &lt;/p&gt;  &lt;p&gt;  When I started learning ColdFusion I found working with MS Access db&amp;#39;s very simple.  Easy to setup, easy to edit and easy to muddle thru setting up my first one to many relationships.  As far as I can tell Access will do what ever I want or need it to.  Hopefully some day I&amp;#39;ll have to worry about the limitations of Access, but up until now I was just looking for simplicity.  Learning ColdFusion is enough to keep me busy, but I would really like to move over to Ubuntu Full time.  (I&amp;#39;ll explain why in another yet to come blog entry) But moving to Ubuntu, or any distro of linux makes me look at another db as an option, and of course that leads me to MySql.   &lt;/p&gt;  &lt;p&gt;  I&amp;#39;ve found a couple of good tutorials and the the documentation on MySql&amp;#39;s site is pretty good.  It seams easy enough to learn.  But I&amp;#39;m curious as to a couple of things:  &lt;/p&gt;  &lt;p&gt;  In your all&amp;#39;s opinion....   &lt;/p&gt;  &lt;p&gt;  1.  What are the advantages or disadvantages to using MySql for your ColdFusion datasourse?  &lt;/p&gt;  &lt;p&gt;  2.  What are the advantages or disadvantages of using MySql over MS Access, MSSql, or any other popular db?  Windows or not.   &lt;/p&gt;  &lt;p&gt;  3. It seems like most hosting companies support MySql.  Do you find that that support is generally pretty good?   &lt;/p&gt;  &lt;p&gt;  4.  For a newbie like me, is this just going to &amp;quot;muddy&amp;quot; the overall learning waters for my new found love of web app. development?    &lt;/p&gt;  &lt;p&gt;  5. Should I just stick with Windows and the initial easy of use and quick configuration to get my budding ColdFusion career going?&lt;br /&gt;  &lt;/p&gt;  &lt;p&gt;  Ohh, such deep thoughts and questions...LOL.  &lt;/p&gt;  &lt;p&gt;  Can&amp;#39;t wait to read you all&amp;#39;s advice.  &lt;/p&gt;  &lt;p&gt;  Later,  &lt;/p&gt;  &lt;p&gt;  Mark   &lt;/p&gt;  </description><pubDate>Thu, 22 Mar 2007 19:56:20 GMT</pubDate><guid>http://markbrown.instantspot.com/blog/2007/03/22/Database-preferences-and-opinions</guid><category>Databases</category></item><item><title>BlueDragon update</title><link>http://markbrown.instantspot.com/blog/2007/03/21/BlueDragon-update</link><description>&lt;p&gt;  So, I&amp;#39;m into night 3 of trying to get BlueDragon working with Apache on Ubuntu 6.10.&amp;nbsp; Tonights task was trying to get the web server adapter on BlueDragon Server 7.0 to  work with Apache 2.055.&amp;nbsp; The built in web server works  fine, but I can&amp;#39;t figure out how to get apache to work.&amp;nbsp; I&amp;#39;ve got a  simple index.cfm document that will not display at all. Actually no coldfusion  pages will display. All I get in my browser is a blank screen.  &lt;/p&gt;  &lt;p&gt;  &amp;nbsp;I&amp;#39;m no Linux expert by any means so bear with me here. I followed the directions layed out by   &lt;a href=&quot;http://www.webdevref.com/blog/index.cfm?t=BlueDragon_7.0_working_with_Apache_2.2_on_Dapper_Drake&amp;amp;mode=entry&amp;amp;entry=EE465B7A-1334-D368-1DA312B31F3061B1&quot; target=&quot;_blank&quot; onclick=&quot;return top.js.OpenExtLink(window,event,this)&quot;&gt;Adam Howitt&lt;/a&gt; his blog as well as the article on &lt;a href=&quot;http://www.we3geeks.org/?p=4&quot; target=&quot;_blank&quot; onclick=&quot;return top.js.OpenExtLink(window,event,this)&quot;&gt;  we3Geeks&lt;/a&gt; for setting up the symbolic links to Apache2.&amp;nbsp; Basically it says to do this:&lt;br /&gt;  &lt;br /&gt;  &lt;br /&gt;  &lt;/p&gt;  &lt;pre&gt;  sudo mkdir -p /usr/local/apache/bin&lt;br /&gt;  sudo mkdir -p /usr/local/apache/conf&lt;br /&gt;  sudo ln -s /etc/apache2/apache2.conf /usr/local/apache/conf/httpd.conf&lt;br /&gt;  &lt;br /&gt;  sudo ln -s /var/www /usr/local/apache/htdocs&lt;br /&gt;  sudo ln -s /usr/lib/apache2/modules /usr/local/apache/modules&lt;br /&gt;  sudo ln -s /usr/sbin/apache2 /usr/local/apache/bin/httpd  &lt;/pre&gt;  &lt;p&gt;  So  that&amp;#39;s what I did.&amp;nbsp; I&amp;#39;m guessing the location of apache2 is correct as  I browsed to the locations and verified there were files and folders in  them.&amp;nbsp; I&amp;#39;m not sure which files should be there as the article doesn&amp;#39;t  say.&amp;nbsp;&amp;nbsp;  &lt;br /&gt;  &lt;br /&gt;  Adam howitt&amp;#39;s blog lists the same commands and his versions are a bit closer to mine.&lt;br /&gt;  &lt;br /&gt;  &amp;nbsp;I&amp;#39;ve  verified within BlueDragon Administror that the port 9999 is setup and  in the servletexec.conf file the port is set to 9999 as well.  So, I&amp;#39;m stuck at this point.&amp;nbsp; So, any help you could lend would be greatly appreciated. I&amp;#39;m probably not giving you nearly enough information, so if you need more please ask.  &lt;/p&gt;  &lt;p&gt;  Thanks and I&amp;#39;ll talk to you later,  &lt;/p&gt;  &lt;p&gt;  &lt;span class=&quot;sg&quot;&gt;Mark&lt;/span&gt;  &lt;/p&gt;  </description><pubDate>Thu, 22 Mar 2007 03:07:33 GMT</pubDate><guid>http://markbrown.instantspot.com/blog/2007/03/21/BlueDragon-update</guid><category>Ubuntu</category></item><item><title>Guitar Hero</title><link>http://markbrown.instantspot.com/blog/2007/03/20/Guitar-Hero</link><description>&lt;p&gt;  So, I had to go to Colorado this past weekend to help my mom move.  While I was there my twin brother was telling me about how much fun this PS2 game called Guitar Hero was.  I&amp;#39;ve seen it in stores, but it never really played it or had any interest in it.  My brother talked me into playing a couple of songs and WOW.  That game is a blast.  As soon as I got back to town, actually on my way home from the airport, I stopped and bought it.  &lt;/p&gt;  &lt;p&gt;  I get it home, hook it up, and start playing. By the time I get finished with about my second song, my wife and 11yr old son are both begging me to play.  So, we start taking turns playing songs, completely consuming the rest of the day.  What a blast!  &lt;/p&gt;  &lt;p&gt;  Just in case you don&amp;#39;t know what Guitar Hero is, it&amp;#39;s a video game for the Sony Playstation2 where you have a controller that looks like a guitar,  and you play a variety of popular rock songs by hitting the buttons on the frets of the guitar and strumming using a bi-directional button along with the music.&amp;nbsp; If you miss a note, the song sounds bad, the crowd is unhappy and you loose.  It&amp;#39;s well worth the $80 in my mind.  I find it fasinatingly fun.  &lt;/p&gt;  &lt;p&gt;  I&amp;#39;m not a very big PS2 fan.  I love my Xbox and Xbox360.  So as far as PS2 games go, this is one of the best in my limited ps2 playing time.    &lt;/p&gt;  &lt;p&gt;  As we were buying the game the manager at the GameCrazy in Frisco said it&amp;#39;s coming out for Xbox360 in about a month or two.  So, I&amp;#39;m going to go PreOrder it next time I&amp;#39;m in the store.   &lt;/p&gt;  &lt;p&gt;  Check it out, it&amp;#39;s amazing fun and addictive.  &lt;/p&gt;  &lt;p&gt;  &amp;nbsp;  &lt;/p&gt;  &lt;p&gt;  Later,  &lt;/p&gt;  &lt;p&gt;  Mark   &lt;/p&gt;  &lt;p&gt;  &amp;nbsp;  &lt;/p&gt;  </description><pubDate>Tue, 20 Mar 2007 13:48:46 GMT</pubDate><guid>http://markbrown.instantspot.com/blog/2007/03/20/Guitar-Hero</guid><category>Gaming</category></item></channel></rss>