<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"><channel><title>RSS feed for InstantSpot site Blog of Dave</title><link>http://daveshuck.instantspot.com</link><description>Dave Shuck&apos;s ramblings on - ColdFusion, Flex, and Java, and life.</description><language>en-us</language><copyright>This work is Copyright &#xA9; 2009 by Blog of Dave</copyright><generator>RSSVille ColdFusion FeedMaker, version 1.0</generator><pubDate>Sat, 07 Nov 2009 12:05:51 GMT</pubDate><item><title>Photos from the Dallas Adobe User Group Tour event</title><link>http://daveshuck.instantspot.com/blog/2009/06/29/Photos-from-the-Dallas-Adobe-User-Group-Tour-event</link><description>&lt;p&gt;We had a great time Friday night with around 170 in attendance!  Terry did a great job and everyone left hungry for the new releases that he teased.  Here are some pics from the night.&lt;/p&gt; &lt;p&gt; &lt;/p&gt; &lt;p&gt;&lt;object width=&quot;400&quot; height=&quot;300&quot;&gt; &lt;param value=&quot;offsite=true&amp;lang=en-us&amp;page_show_url=%2Fphotos%2Fdaveshuck%2Fsets%2F72157620588183099%2Fshow%2F&amp;page_show_back_url=%2Fphotos%2Fdaveshuck%2Fsets%2F72157620588183099%2F&amp;set_id=72157620588183099&amp;jump_to=&quot; name=&quot;flashvars&quot; /&gt; &lt;param value=&quot;http://www.flickr.com/apps/slideshow/show.swf?v=71649&quot; name=&quot;movie&quot; /&gt; &lt;param value=&quot;true&quot; name=&quot;allowFullScreen&quot; /&gt;&lt;embed width=&quot;400&quot; height=&quot;300&quot; flashvars=&quot;offsite=true&amp;lang=en-us&amp;page_show_url=%2Fphotos%2Fdaveshuck%2Fsets%2F72157620588183099%2Fshow%2F&amp;page_show_back_url=%2Fphotos%2Fdaveshuck%2Fsets%2F72157620588183099%2F&amp;set_id=72157620588183099&amp;jump_to=&quot; allowfullscreen=&quot;true&quot; src=&quot;http://www.flickr.com/apps/slideshow/show.swf?v=71649&quot; type=&quot;application/x-shockwave-flash&quot;&gt;&lt;/embed&gt;&lt;/object&gt;&lt;/p&gt;</description><pubDate>Mon, 29 Jun 2009 21:13:00 GMT</pubDate><guid>http://daveshuck.instantspot.com/blog/2009/06/29/Photos-from-the-Dallas-Adobe-User-Group-Tour-event</guid><category>InstantSpot,Tips and Tricks</category></item><item><title>ColdFusion in odd places - using the directory watcher on my desktop</title><link>http://daveshuck.instantspot.com/blog/2008/04/21/ColdFusion-in-odd-places--using-the-directory-watcher-on-my-desktop</link><description>&lt;p&gt;Since recently installling yet another distro on my laptop, I was unable to get the FTP functionality of my webcam software (Camorama) to work properly.  The program will save snapshots locally, but bombs on transfer.   Rather than troubleshoot it to death, I decided to whip out a quick and dirty ColdFusion directory watcher event gateway and have it watch for updated images, and then push them to my webserver via FTP.&lt;/p&gt; &lt;p&gt;For anyone interested in this non-earth shattering bit of code, here it is.  First I created a config file:&lt;/p&gt; &lt;p&gt;WebcamWatcher.cfg&lt;div class=&quot;code&quot; &gt;&lt;pre&gt;# The directory we want to watch.  directory=/home/dshuck/Webcam_Pictures  # Do we want to recurse the directories? recurse=no  # miliseconds between checks interval=6000  # The comma separated list of extensions to match. extensions=*  # component method for change events changeFunction=onChange  # component method for add events addFunction=onAdd  # no delete events for now deleteFunction= &lt;/pre&gt;&lt;/div&gt;&lt;/p&gt; &lt;p&gt;Now to create the methods in our WebcamWatcher.cfc.  In short, either a changed file or an added file will trigger the putImage function which first creates the FTP connection, changes directories to my webcam directory, then pushes the file to the server.  Here is the code:&lt;/p&gt; &lt;p&gt;WebcamWatcher.cfc&lt;div class=&quot;code&quot; &gt;&lt;pre&gt;&amp;lt;cfcomponent output=&amp;quot;false&amp;quot;&amp;gt;  &amp;lt;cffunction name=&amp;quot;onAdd&amp;quot; output=&amp;quot;false&amp;quot;&amp;gt;   &amp;lt;cfargument name=&amp;quot;CFEvent&amp;quot; type=&amp;quot;struct&amp;quot; required=&amp;quot;yes&amp;quot;&amp;gt;   &amp;lt;cfset var Data=CFEvent.data /&amp;gt;     &amp;lt;cflog file=&amp;quot;DirectoryWatcher&amp;quot; application=&amp;quot;No&amp;quot;         text=&amp;quot; ACTION: #data.type#;  FILE: #data.filename#;  calling putImage()&amp;quot; /&amp;gt;   &amp;lt;cfset putImage() /&amp;gt;  &amp;lt;/cffunction&amp;gt;     &amp;lt;cffunction name=&amp;quot;onChange&amp;quot; output=&amp;quot;false&amp;quot;&amp;gt;     &amp;lt;cfargument name=&amp;quot;CFEvent&amp;quot; type=&amp;quot;struct&amp;quot; required=&amp;quot;yes&amp;quot;&amp;gt;     &amp;lt;cfset var data=CFEvent.data&amp;gt;     &amp;lt;cflog file=&amp;quot;DirectoryWatcher&amp;quot; application=&amp;quot;No&amp;quot;         text=&amp;quot; ACTION: #data.type#;  FILE: #data.filename#; TIME: #timeFormat(data.lastmodified)# calling putImage();&amp;quot; /&amp;gt;   &amp;lt;cfset putImage() /&amp;gt;  &amp;lt;/cffunction&amp;gt;   &amp;lt;cffunction name=&amp;quot;putImage&amp;quot; access=&amp;quot;private&amp;quot; output=&amp;quot;false&amp;quot; returntype=&amp;quot;void&amp;quot;&amp;gt;   &amp;lt;cfftp action = &amp;quot;open&amp;quot;       username = &amp;quot;joeuser&amp;quot;      connection = &amp;quot;MyConnection&amp;quot;       password = &amp;quot;mycoolpassword&amp;quot;       server = &amp;quot;www.mywebserver.com&amp;quot;       stopOnError = &amp;quot;true&amp;quot; /&amp;gt;      &amp;lt;cfif cfftp.Succeeded&amp;gt;    &amp;lt;cfftp      connection=&amp;quot;MyConnection&amp;quot;      action=&amp;quot;changedir&amp;quot;      directory=&amp;quot;htdocs/mywebcamdirectory&amp;quot; /&amp;gt;        &amp;lt;cfif cfftp.Succeeded&amp;gt;     &amp;lt;cfftp       connection = &amp;quot;MyConnection&amp;quot;      action = &amp;quot;putFile&amp;quot;       name = &amp;quot;uploadFile&amp;quot;       transferMode = &amp;quot;binary&amp;quot;       localFile = &amp;quot;/home/dshuck/Webcam_Pictures/webcam.jpeg&amp;quot;       remoteFile = &amp;quot;DaveWebcam.jpg&amp;quot; /&amp;gt;    &amp;lt;/cfif&amp;gt;     &amp;lt;/cfif&amp;gt;   &amp;lt;cflog file=&amp;quot;DirectoryWatcher&amp;quot; application=&amp;quot;false&amp;quot; text=&amp;quot;file push to webserver...#cfftp.Succeeded#&amp;quot; /&amp;gt;  &amp;lt;/cffunction&amp;gt; &amp;lt;/cfcomponent&amp;gt;&lt;/pre&gt;&lt;/div&gt;&lt;/p&gt; &lt;p&gt;So, now the internet can yet again be graced with my &amp;quot;almost live&amp;quot; presence.   I can almost hear the selective sigh of relief.&lt;/p&gt; &lt;p&gt;I have to consider this to be a somewhat odd place for ColdFusion and it got me thinking... What kinds of odd places do you or have you used ColdFusion?&lt;/p&gt;</description><pubDate>Mon, 21 Apr 2008 05:02:00 GMT</pubDate><guid>http://daveshuck.instantspot.com/blog/2008/04/21/ColdFusion-in-odd-places--using-the-directory-watcher-on-my-desktop</guid><category>ColdFusion,InstantSpot,Tips and Tricks</category></item><item><title>We&apos;re on the ColdFusion Weekly!</title><link>http://daveshuck.instantspot.com/blog/2008/02/28/Were-on-the-ColdFusion-Weekly</link><description>&lt;p&gt;The latest version of the &lt;a href=&quot;http://www.coldfusionweekly.com/&quot;&gt;ColdFusion Weekly&lt;/a&gt; podcast was released yesterday.&amp;nbsp; &lt;a href=&quot;http://www.mattwoodward.com/blog/&quot;&gt;Matt&lt;/a&gt; and &lt;a href=&quot;http://blog.maestropublishing.com/&quot;&gt;Peter&lt;/a&gt; were kind enough to have &lt;a href=&quot;http://ajlcom.instantspot.com/blog/&quot;&gt;Aaron&lt;/a&gt; and I on to talk about &lt;a href=&quot;http://www.instantspot.com&quot;&gt;InstantSpot.&lt;/a&gt;&amp;nbsp; This was actually our second time to have this opportunity, although we had *much* more to talk about given our experiences over the last 14 months since the previous visit!&amp;nbsp;&lt;/p&gt; &lt;p&gt;We covered a lot of areas from how it all came about in the first place, to some of our trials and tribulations rolling out the latest release and all points in between.&amp;nbsp;&amp;nbsp; If you would like to hear some of our experiences and the technology behind our network, I urge you to check it out.&lt;/p&gt; &lt;h3&gt;&lt;img width=&quot;12&quot; height=&quot;12&quot; alt=&quot;Download Icon&quot; src=&quot;http://www.coldfusionweekly.com/images/icon_dl.png&quot; /&gt;    &lt;a onclick=&quot;javascript:urchinTracker (&apos;/versions/3-02&apos;);&quot; href=&quot;http://media.libsyn.com/media/coldfusionweekly/cfweekly_3.02_final.mp3&quot;&gt;Download Version 3.02&lt;/a&gt;&lt;/h3&gt; &lt;p&gt;&amp;nbsp;&lt;/p&gt;</description><pubDate>Thu, 28 Feb 2008 13:26:00 GMT</pubDate><guid>http://daveshuck.instantspot.com/blog/2008/02/28/Were-on-the-ColdFusion-Weekly</guid><category>ColdFusion,InstantSpot</category></item><item><title>Yes ColdFusion fans... we *are* a ColdFusion site!</title><link>http://daveshuck.instantspot.com/blog/2008/02/07/Yes-ColdFusion-fans-we-are-a-ColdFusion-site</link><description>&lt;p&gt;I don&apos;t know how pervasive this point of confusion is, but today a regular face in the ColdFusion community was making some remarks &lt;a href=&quot;http://daveshuck.instantspot.com/blog/2008/02/07/5-InstantSpot-invitations&quot;&gt;in this comment thread&lt;/a&gt; and further on his InstantSpot site that InstantSpot is not a ColdFusion-based application, with the insinuation that he won&apos;t support our efforts because of this.&lt;/p&gt; &lt;p&gt;Just to be clear, no matter whether or not you actually see &amp;quot;.cfm&amp;quot; in the URL, we are running InstantSpot on Adobe ColdFusion 8, using Mach-II 1.6, ColdSpring and other community tools.   We are strong advocates for ColdFusion, work with our local ColdFusion User Group, try to be evangelists for it wherever we can, and we will continue to do so.&lt;/p&gt;</description><pubDate>Thu, 07 Feb 2008 19:32:00 GMT</pubDate><guid>http://daveshuck.instantspot.com/blog/2008/02/07/Yes-ColdFusion-fans-we-are-a-ColdFusion-site</guid><category>ColdFusion,InstantSpot</category></item><item><title>5 InstantSpot invitations</title><link>http://daveshuck.instantspot.com/blog/2008/02/07/5-InstantSpot-invitations</link><description>&lt;p&gt;If anyone is interested in creating an InstantSpot blog, we are opening up 5 new Spots today and would love to see some more ColdFusion peeps!  Enter your invitation code on the &lt;a href=&quot;http://www.instantspot.com&quot;&gt;main page&lt;/a&gt;. As soon as someone uses a code it&apos;s gone:&lt;/p&gt; &lt;ul&gt;     &lt;li&gt;&lt;strike&gt;k7Nh92Sw&lt;/strike&gt;&lt;/li&gt;     &lt;li&gt;&lt;strike&gt;GEAGGH7B&lt;/strike&gt;&lt;/li&gt;     &lt;li&gt;&lt;strike&gt;rs4DPq9a&lt;/strike&gt;&lt;/li&gt;     &lt;li&gt;&lt;strike&gt;OUWKCEgG&lt;/strike&gt;&lt;/li&gt;     &lt;li&gt;&lt;strike&gt;lepvefKv&lt;/strike&gt;&lt;/li&gt; &lt;/ul&gt; &lt;p&gt;&lt;strike&gt;Get &apos;em while their hot! :)&lt;/strike&gt;&lt;/p&gt;  &lt;b&gt;EDIT:  All gone!&lt;/b&gt;</description><pubDate>Thu, 07 Feb 2008 14:26:00 GMT</pubDate><guid>http://daveshuck.instantspot.com/blog/2008/02/07/5-InstantSpot-invitations</guid><category>InstantSpot</category></item><item><title>New pseudo-steampunk theme on my blog</title><link>http://daveshuck.instantspot.com/blog/2008/02/01/New-pseudosteampunk-theme-on-my-blog</link><description>&lt;p&gt;I have a new addiction playing with the style editor for my blog... I hate to call this a steampunk theme, simply for the inevitable flow of hardcore steampunk people coming here and telling me about how I don&apos;t know what steampunk is... so let&apos;s settle for pseudo steampunk shall we?&amp;nbsp;&lt;/p&gt; &lt;p&gt;Regardless, at my current rate I will change it again in a few days anyway! :)&lt;/p&gt; &lt;p&gt;I was also told this week that I look a lot different in my picture than I do in person.&amp;nbsp; I decided to add a headshot that says &amp;quot;Hey look... Dave was up all night coding again.&amp;quot;&amp;nbsp; I think it is fairly true to life.&lt;/p&gt;</description><pubDate>Fri, 01 Feb 2008 17:13:00 GMT</pubDate><guid>http://daveshuck.instantspot.com/blog/2008/02/01/New-pseudosteampunk-theme-on-my-blog</guid><category>InstantSpot,Blog</category></item><item><title>Publishing blog entries with ScribeFire using XMLRPC API</title><link>http://daveshuck.instantspot.com/blog/2008/01/29/Publishing-blog-entries-with-ScribeFire-using-XMLRPC-API</link><description>&lt;p&gt;On the most recent release of InstantSpot, we added in XMLRPC support so that blog administration can happen anywhere, using any client that supports XMLRPC.  We are thinking it might be fun to create an AIR app for this purpose down the line (or better yet... someone else! hint...hint...), but until that time, there are a variety of clients that can be used, since we followed the MetaWeblog API standards.&lt;br /&gt; &lt;br /&gt; I am actually trying this out for the first time on our live instance with this blog entry by using a *sweet* Firefox plugin called ScribeFire.  Considering that we haven&apos;t really published this ability, I thought it might make sense to do a walk through of setting it up and using it.&lt;br /&gt; &lt;br /&gt; First, let&apos;s walk through the ScribeFire Account Wizard.  One you have installed the ScribeFire plugin (&lt;a href=&quot;https://addons.mozilla.org/en-US/firefox/addon/1730&quot;&gt;available here&lt;/a&gt;), click on the little text pad icon in the bottom corner of your browser window and start the Account Wizard.  You should see a window that looks like the one below.  Choose &amp;quot;Manually Configure&amp;quot; and continue.&lt;br /&gt; &lt;br /&gt; &lt;img src=&quot;http://daveshuck.instantspot.com/userfiles/073006/91/ScribeFireWizard01.png&quot; style=&quot;border: 1px solid rgb(48, 48, 48);&quot; alt=&quot;&quot; /&gt;&lt;br /&gt; &lt;br /&gt; You will then be presented with a number of options of various &lt;ahem&gt;inferior&lt;/ahem&gt; blogging services.  Choose  &amp;quot;Custom Blog&amp;quot; and continue.&lt;br /&gt; &lt;br /&gt; &lt;img src=&quot;http://daveshuck.instantspot.com/userfiles/073006/91/ScribeFireWizard02.png&quot; style=&quot;border: 1px solid rgb(48, 48, 48);&quot; alt=&quot;&quot; /&gt;&lt;br /&gt; &lt;br /&gt; On the screen you see below, choose &amp;quot;MetaWeblog API&amp;quot; and enter this URL into the Server API URL input box:  &lt;strong&gt;http://www.instantspot.com/gospot/remote.metaweblogAPI&lt;/strong&gt; &lt;br /&gt; Leave &amp;quot;Advanced Settings&amp;quot; unchecked and continue.&lt;br /&gt; &lt;br /&gt; &lt;img src=&quot;http://daveshuck.instantspot.com/userfiles/073006/91/ScribeFireWizard03.png&quot; style=&quot;border: 1px solid rgb(48, 48, 48);&quot; alt=&quot;&quot; /&gt;&lt;br /&gt; &lt;br /&gt; On the following screen you will be prompted for your username and password.  Since the new release of InstantSpot, your email address is now used as your username.  &lt;br /&gt; &lt;br /&gt; &lt;img src=&quot;http://daveshuck.instantspot.com/userfiles/073006/91/ScribeFireWizard04.png&quot; style=&quot;border: 1px solid rgb(48, 48, 48);&quot; alt=&quot;&quot; /&gt;&lt;br /&gt; &lt;br /&gt; That&apos;s it!  If you did this correctly you should see your blog listed in the following screen like this:&lt;br /&gt; &lt;img src=&quot;http://daveshuck.instantspot.com/userfiles/073006/91/ScribeFireWizard05.png&quot; style=&quot;border: 1px solid rgb(48, 48, 48);&quot; alt=&quot;&quot; /&gt;&lt;br /&gt; &lt;br /&gt; Now, you should see a list of your categories (labeled in the interface as &amp;quot;tags&amp;quot;), blogposts, and in the future, saved &amp;quot;Notes&amp;quot; which are drafts stored locally by ScribeFire to the right of the ScribeFire window like this:&lt;br /&gt; &lt;img src=&quot;http://daveshuck.instantspot.com/userfiles/073006/91/ScribeFireInterface01.png&quot; style=&quot;border: 1px solid rgb(48, 48, 48);&quot; alt=&quot;&quot; /&gt;&lt;br /&gt; &lt;br /&gt; From here, the interface is pretty simple.  One thing that is noteworthy is that we even support the ability for you to upload and insert images through ScribeFire.  When you click on the image icon on the editor, you will see a window that looks like this:&lt;br /&gt; &lt;br /&gt; &lt;img src=&quot;http://daveshuck.instantspot.com/userfiles/073006/91/ScribeFireImageUpload.png&quot; style=&quot;border: 1px solid rgb(48, 48, 48);&quot; alt=&quot;&quot; /&gt;&lt;br /&gt; &lt;br /&gt; Choose &amp;quot;Image Upload&amp;quot;, then after browsing to your file, select &amp;quot;Upload Via API&amp;quot;.  &lt;br /&gt; &lt;br /&gt; &lt;img src=&quot;http://daveshuck.instantspot.com/userfiles/073006/91/ScribeFireImage%20UploadWait.png&quot; style=&quot;border: 1px solid rgb(48, 48, 48);&quot; alt=&quot;&quot; /&gt;&lt;br /&gt; &lt;br /&gt; When it completes you will see the following window.  Choose &amp;quot;Insert Image&amp;quot; and you will see your image inserted into your text.&lt;br /&gt; &lt;br /&gt; &lt;img src=&quot;http://daveshuck.instantspot.com/userfiles/073006/91/ScribeFireUploadComplete.png&quot; style=&quot;border: 1px solid rgb(48, 48, 48);&quot; alt=&quot;&quot; /&gt;&lt;br /&gt; &lt;br /&gt; Now you can start posting away to your heart&apos;s content!&lt;/p&gt; &lt;p class=&quot;poweredbyperformancing&quot;&gt;Powered by &lt;a href=&quot;http://scribefire.com/&quot;&gt;ScribeFire&lt;/a&gt;.&lt;/p&gt;</description><pubDate>Tue, 29 Jan 2008 15:37:00 GMT</pubDate><guid>http://daveshuck.instantspot.com/blog/2008/01/29/Publishing-blog-entries-with-ScribeFire-using-XMLRPC-API</guid><category>InstantSpot,Tips and Tricks</category></item><item><title>Short night... but here we are on the new Spot!</title><link>http://daveshuck.instantspot.com/blog/2008/01/12/Short-night-but-here-we-are-on-the-new-Spot</link><description>&lt;p&gt;We finally called it a night about 4am after flipping the switch to the new InstantSpot. There have been relatively few surprises so far, and the application is just purring along.&lt;/p&gt; &lt;p&gt;Due to MUCH heavier caching in almost every nook and cranny of the application, we are using substantially more memory than we were on the old system, as was expected. With all the caching, the overall speed difference is quite noticeable and the act of sitting and watching the processor performance is a much more pleasant experience!&lt;/p&gt; &lt;p&gt;Thanks to those that have submitted bug/enhancement requests. We are working through the queue as fast as we can. If you are an InstantSpot user and run across any problems, look for the link to submit tickets in the control panel and let us know.&lt;/p&gt;</description><pubDate>Sat, 12 Jan 2008 16:13:00 GMT</pubDate><guid>http://daveshuck.instantspot.com/blog/2008/01/12/Short-night-but-here-we-are-on-the-new-Spot</guid><category>InstantSpot</category></item><item><title>Final day of the original InstantSpot!</title><link>http://daveshuck.instantspot.com/blog/2008/01/11/Final-day-of-the-original-InstantSpot</link><description>&lt;p&gt;  In the past 7 months, Aaron and I have completely rewritten InstantSpot from bottom to top. &amp;nbsp; It was a much more clear and direct path than when we started with the original version in 06.&amp;nbsp; In fact, we never even planned on networking the sites together in the first place, and adding blogs to them was an afterthought, which is hard to believe in hindsight!&lt;br /&gt;  &lt;/p&gt;  &lt;p&gt;  Around the beginning of summer 07 we decided to step back and evaluate, which lead to a rewrite of the entire application.&amp;nbsp; We originally thought about replacing pieces here and there, but pretty quickly realized that it would be much smarter to start with a blank slate, now that we actually know where we are and where we are going, and could take advantage of all the things we have learned since we started.&amp;nbsp; It has been a *huge* job, and I think we can pretty easily say that we have more development time put into version 2 than we did in version 1.  &lt;/p&gt;  &lt;p&gt;  We are trying some interesting stuff with this version in all areas, from the decision to use Railo as our CFML engine, opening up XMLRPC for desktop blogging, in place editting on blogs, much broader friend/networking support, and lots of ajax around the edges primarily using Jquery.&amp;nbsp; And, for those that have always hated the blog comment activation -a couple of names stick out in my head at the moment! :) - we have retooled that process.&amp;nbsp; Now, if you are not an InstantSpot member, you will be prompted to confirm your email address *1 TIME ONLY* across the entire network.&amp;nbsp; From then on, you will not have to activate on each comment.&amp;nbsp; For instance, if you comment on my blog and validate your email address, you can hop over to Aaron&amp;#39;s blog and leave comments on his which are automatically activated.&amp;nbsp; (and check out the ajax stuff in that process!)  &lt;/p&gt;  &lt;p&gt;  With all of that said, I expect to be blogging about our experience of the new server and migration in the next few days.&amp;nbsp; We feel like we have been meticulous with our planning, but we all know that sometime surprises happen.&amp;nbsp; We will be making the DNS change tonight and migrating all the  production data.&amp;nbsp; Our DNS TTL is an hour, so for many people the change  will show up almost immediately. &lt;br /&gt;  &lt;/p&gt;  &lt;p&gt;  If you are an InstantSpot user and want to see a preview of what your site will look like today before the switch, shoot me an email at dshuck+instantspotpreview@gmail.com and I will give you instructions.  &lt;/p&gt;  &lt;p&gt;  One last item - Today is the last day of open enrollment to InstantSpot as we will be going to an invitation-only model on the new version.&amp;nbsp; If you want to go create a Spot, now might be a good time.   &lt;/p&gt;  &lt;p&gt;  Now... we have our fingers crossed for a smooth migration.&amp;nbsp; Wish us luck!&amp;nbsp;   &lt;/p&gt;  </description><pubDate>Fri, 11 Jan 2008 15:10:27 GMT</pubDate><guid>http://daveshuck.instantspot.com/blog/2008/01/11/Final-day-of-the-original-InstantSpot</guid><category>InstantSpot</category></item><item><title>Open call to web designers</title><link>http://daveshuck.instantspot.com/blog/2007/07/20/Open-call-to-web-designers</link><description>&lt;p&gt;  Aaron and I are currently hard at work busting out the next version of InstantSpot which we hope to launch on our 1 year anniversary in September.&amp;nbsp; As part of this major rewrite, we decided it is time to have a complete redesign done of the main InstantSpot site at &lt;a href=&quot;http://www.instantspot.com&quot;&gt;www.instantspot.com&lt;/a&gt;.&amp;nbsp;&amp;nbsp;   &lt;/p&gt;  &lt;p&gt;  If you are interested, please &lt;a href=&quot;http://staff.instantspot.com/index.cfm/show/Contact-Us&quot;&gt;contact us using this form&lt;/a&gt;.   &lt;/p&gt;  </description><pubDate>Fri, 20 Jul 2007 17:17:07 GMT</pubDate><guid>http://daveshuck.instantspot.com/blog/2007/07/20/Open-call-to-web-designers</guid><category>InstantSpot</category></item><item><title>New look for my Spot</title><link>http://daveshuck.instantspot.com/blog/2007/04/26/New-look-for-my-Spot</link><description>&lt;p&gt;  I finally decided that I was tired of my right-justified canyon-dust colored theme and decided to try something new.&amp;nbsp; This is the first time that I had made a new skin on my Spot since Todd Sharp (&lt;a href=&quot;http://www.cfsilence.com&quot;&gt;www.cfsilence.com&lt;/a&gt; ) created &lt;a href=&quot;http://www.isdx.net&quot;&gt;ISDX - The InstantSpot Design Exchange&lt;/a&gt;.&amp;nbsp;&amp;nbsp;  &lt;/p&gt;  &lt;p&gt;  I started out by pouring through OSWD and found a skin that struck me, then pasted the CSS into the editor on ISDX.&amp;nbsp; I then went through the file element by element and hit the &amp;quot;Preview on my Spot&amp;quot; link to check my progress.&amp;nbsp; Then when everything seemed to be where and how I wanted it, I hit the &amp;quot;Apply this style to my Spot&amp;quot; link in the preview.... and.... Bam!  &lt;/p&gt;  &lt;p&gt;  I am still not completely settled on the header image.&amp;nbsp; I am sure I will plop a few different things in there over the next day or so &lt;br /&gt;  &lt;/p&gt;  &lt;p&gt;  Big thanks to Todd for creating such a cool interface that makes InstantSpot skinning so easy!   &lt;/p&gt;  </description><pubDate>Thu, 26 Apr 2007 13:55:33 GMT</pubDate><guid>http://daveshuck.instantspot.com/blog/2007/04/26/New-look-for-my-Spot</guid><category>InstantSpot</category></item><item><title>Got Twitter?  Now you can update status from InstantSpot</title><link>http://daveshuck.instantspot.com/blog/2007/04/13/Got-Twitter--Now-you-can-update-status-from-InstantSpot</link><description>&lt;p&gt;  OK, I will admit that I am standing in the front of the line of those who don&amp;#39;t really &amp;quot;get&amp;quot; Twitter.  However, I clearly recognize that I missing something that a number of people seem to love.  With that said, we decided to add Twitter support into &lt;a href=&quot;http://www.instantspot.com/join&quot;&gt;InstantSpot&lt;/a&gt;.  Now you can automatically update your Twitter status as you submit blog entries from your InstantSpot control panel.    &lt;/p&gt;  &lt;p&gt;  Below are a couple of screen shots of how it works.   First, we added a new link above the editor that says &amp;quot;Update my Twitter status&amp;quot; as you see here:  &lt;/p&gt;  &lt;p&gt;  &lt;a href=&quot;http://www.instantspot.com/images/staff/twitter1.jpg&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://www.instantspot.com/images/staff/twitter1thumb.jpg&quot; alt=&quot;Twitter is being hailed as the new darling of silicon valley, allowing people to post 140 character messages to their Twitter account to keep their friends updated on what they are doing.   What makes Twitter somewhat unique and has drawn many people to use it is the fact that they allow posting from anywhere - from their site, from your phone, and now... from InstantSpot!  If you are a Twitter user and want to let people know that you just updated your blog on InstantSpot, you can now update your Twitter status as you make your blog entry.    In your blog entry editor, you will find a new link above the editor that says &quot; title=&quot;Update Twitter as you submit your InstantSpot Blog entry!&quot; width=&quot;300&quot; height=&quot;183&quot; /&gt;&lt;/a&gt;  &lt;/p&gt;  &lt;p&gt;  When you click that we pop open a new div with a form for inserting your email address, password, and Twitter status message as you see here:  &lt;/p&gt;  &lt;p&gt;  &lt;a href=&quot;http://www.instantspot.com/images/staff/twitter2.jpg&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://www.instantspot.com/images/staff/twitter2thumb.jpg&quot; alt=&quot;Update Twitter as you submit your InstantSpot Blog entry!&quot; title=&quot;Update Twitter as you submit your InstantSpot Blog entry!&quot; width=&quot;300&quot; height=&quot;184&quot; /&gt;&lt;/a&gt;  &lt;/p&gt;  &lt;p&gt;  Cool eh?  &lt;/p&gt;  &lt;p&gt;  If any of you InstantSpot users would like to see further Twitter functionality &lt;a href=&quot;http://staff.instantspot.com/index.cfm/show/Contact-Us&quot;&gt;let us know&lt;/a&gt;.  If there is any interest in more features, we are always open to requests! &lt;br /&gt;  &lt;/p&gt;  </description><pubDate>Fri, 13 Apr 2007 13:23:19 GMT</pubDate><guid>http://daveshuck.instantspot.com/blog/2007/04/13/Got-Twitter--Now-you-can-update-status-from-InstantSpot</guid><category>InstantSpot</category></item><item><title>Putting the &quot;social&quot; in social network!</title><link>http://daveshuck.instantspot.com/blog/2007/03/27/Putting-the-social-in-social-network</link><description>&lt;p&gt;  As I posted recently, I have hit my stride again doing the 4-hours of sleep per night thing and coding like a junkie does smack.  Of course this only occurs when I am not at my 7-4 day job, my 1-hour commute, spending time with the family, taking care of the yard, Jeepin, etc... so about 15-20 hours a week!  &lt;/p&gt;  &lt;p&gt;  The biggest recipient of this newly regained vigor is &lt;a href=&quot;http://www.instantspot.com&quot;&gt;InstantSpot&lt;/a&gt;!   This week, Aaron and I finally rolled a couple of pieces that we feel really pushes InstantSpot to the next level when it comes to the &amp;quot;social&amp;quot; part of being a social network.  That is... actually being able to communicate with other members!   &lt;/p&gt;  &lt;p&gt;  You see, until this week, we kind of half-way had the concept of &amp;quot;Friends&amp;quot; in place, which was fine except that it was almost impossible to figure out how to have a friend, and then once you had one... then what?   &lt;/p&gt;  &lt;p&gt;  &lt;a href=&quot;http://www.instantspot.com/images/staff/Shoutbox.jpg&quot; target=&quot;_blank&quot;&gt;&lt;img style=&quot;border: 1px solid black; margin: 10px&quot; src=&quot;http://www.instantspot.com/images/staff/ShoutboxThumb.jpg&quot; alt=&quot;Aaron&amp;#39;s Shoutbox!&quot; width=&quot;200&quot; height=&quot;209&quot; align=&quot;right&quot; /&gt;&lt;/a&gt; Around January, we partially answered this question in the form of the &amp;quot;Shoutbox&amp;quot; on each Spot&amp;#39;s &amp;quot;My Friends&amp;quot; page.  This work was in large part Aaron&amp;#39;s contribution, and came out pretty sweet!    &lt;/p&gt;  &lt;p&gt;  So...  with that piece people with extraordinary IQs were able to have conversations with their equally smart friends who all must have magically figured out how to befriend each other!   &lt;/p&gt;  &lt;p&gt;  Now, bringing us to today, with a lot of banging out new code this past week, Aaron and I put some sweet new features in place that we feel is going to really help the growth of our little Spot!  &lt;/p&gt;  &lt;p&gt;  First off, we finally found a way to manage friends in a reasonable fashion.  Now, any user can easily request to be added to other member&amp;#39;s friends list.  We added this in three places (that I can think of at the moment!):  1) On the My Friends page, which you see in the screen shot of Aaron&amp;#39;s Spot.   2) On the Friend Activity page, which is basically an aggregator of your friends&amp;#39; blog activity.  &lt;a href=&quot;http://daveshuck.instantspot.com/index.cfm/event/FriendActivity&quot;&gt;Here&amp;#39;s mine&lt;/a&gt;.  and 3) in our new feature that allows private messaging through our system.  &lt;/p&gt;  &lt;p&gt;  &lt;a href=&quot;http://www.instantspot.com/images/staff/MessageForm.jpg&quot; target=&quot;_blank&quot;&gt;&lt;img style=&quot;border: 1px solid black; margin: 10px&quot; src=&quot;http://www.instantspot.com/images/staff/MessageFormThumb.jpg&quot; alt=&quot;The message form on Rob Wilkerson&amp;#39;s Spot!&quot; width=&quot;200&quot; height=&quot;131&quot; align=&quot;left&quot; /&gt;&lt;/a&gt; Now on all the Spots (including mine if you look at the top of this page) there is a link in the browser bar that says &amp;quot;Send a Private Message!&amp;quot;.   You can click that above to see how it works.  In case you are not an InstantSpot member and you see the login/join buttons, it looks like the image on the left to the rest of us.  From that form you can send a message to anyone on your friends list.  And they will receive an email notification in addition to a notification message (&lt;a href=&quot;http://www.instantspot.com/images/staff/NewMessage.jpg&quot; target=&quot;_blank&quot;&gt;example here&lt;/a&gt;) that appears on any Spot they are visiting.   &lt;/p&gt;  &lt;p&gt;  We put some  features in the Control Panel to manage all of this, including an Inbox (&lt;a href=&quot;http://www.instantspot.com/images/staff/Inbox.jpg&quot; target=&quot;_blank&quot;&gt;screenshot here&lt;/a&gt;) and another private messaging form that has the same functionality as the one at the top of each Spot (&lt;a href=&quot;http://www.instantspot.com/images/staff/InboxCompose.jpg&quot; target=&quot;_blank&quot;&gt;screenshot here&lt;/a&gt;).  &lt;/p&gt;  &lt;p&gt;  So with that I think we are going to call it a week and knock out the final touches (thanks in large part to some VERY reusable code!) on our newest project --- a cousin of InstantSpot called ResumeSpot.  I am sure I will be yapping about that one soon! :) &lt;br /&gt;  &lt;/p&gt;  </description><pubDate>Tue, 27 Mar 2007 21:18:25 GMT</pubDate><guid>http://daveshuck.instantspot.com/blog/2007/03/27/Putting-the-social-in-social-network</guid><category>InstantSpot</category></item><item><title>Whoo hooo!  Code publishing in blogs made easy.</title><link>http://daveshuck.instantspot.com/blog/2007/01/29/Whoo-hooo--Code-publishing-in-blogs-made-easy</link><description>&lt;p&gt;  Since we started &lt;a href=&quot;http://www.instantspot.com/index.cfm/event/join&quot;&gt;InstantSpot&lt;/a&gt;, one feature in particular has been less than ideal as a techie-type user has been posting code into your blog entries.  That ends today!    &lt;/p&gt;  &lt;p&gt;  As was announce on several blogs a month or so ago, the &lt;a href=&quot;http://www.everfro.com&quot;&gt;EverFro&lt;/a&gt;  team has put together a cool resource for sharing code with other developers called &lt;a href=&quot;http://codeshare.everfro.com&quot;&gt;codeShare&lt;/a&gt;.   Their service allows people to submit code through a form, and then let other developers view it and submit comments to it via a public URL.  &lt;/p&gt;  &lt;p&gt;  Considering our needs and their new service, we thought it might be interesting to team up to create a nice way to publish code in blog entries on InstantSpot. After some discussions, we co-developed a web service for them that allows people to submit code to their service remotely via an API, and specifically from our blog entry form.     &lt;/p&gt;  &lt;p&gt;  The way it works is pretty cool, making use of both Web Services in ColdFusion and more of Rob Gonda&amp;#39;s AjaxCFC (which I continue to love!).  When one of our users adds a code share, it will automatically add them as a user to codeShare if they are not already a member.  If they are already a member the code will be added to existing account&amp;#39;s shares.   This way they can go modify or notate their code at anytime by visiting codeShare.    &lt;/p&gt;  &lt;p&gt;  Here are some screenshots of the process:  &lt;/p&gt;  &lt;p&gt;  In our blog entry form in the control panel we have a new link above the editor &amp;quot;Insert code to this entry&amp;quot;.   &lt;/p&gt;  &lt;p&gt;  &amp;nbsp;&lt;img src=&quot;http://img255.imageshack.us/img255/9955/codeshare1dw1.png&quot; border=&quot;1&quot; alt=&quot; &quot; /&gt;  &lt;/p&gt;  &lt;p&gt;  &lt;br /&gt;  When you click that link, the editor window slides down and exposes the codeShare interface which allows you to paste in an publish code:  &lt;/p&gt;  &lt;p&gt;  &amp;nbsp;  &lt;img src=&quot;http://img255.imageshack.us/img255/3552/codeshare2tr3.png&quot; border=&quot;1&quot; alt=&quot; &quot; /&gt;  &lt;/p&gt;  &lt;p&gt;  &amp;nbsp;  &lt;/p&gt;  &lt;p&gt;  When that is submitted, the following is displayed:  &lt;/p&gt;  &lt;p&gt;  &lt;img src=&quot;http://img255.imageshack.us/img255/3658/codeshare4dz2.png&quot; border=&quot;1&quot; alt=&quot; &quot; /&gt;  &lt;/p&gt;  &lt;p&gt;  As you can see in that response, you can preview your code &lt;a href=&quot;http://codeshare.everfro.com/janca423&quot;&gt;like this&lt;/a&gt;.  You can then paste the codeshare tag anywhere in your entry (multiple code shares are acceptable in a single post), or by hitting the &amp;quot;Insert into your entry&amp;quot;, the tag will be inserted and the codeShare interface will disappear.  &lt;/p&gt;  &lt;p&gt;  So what did we create?  Well, now I am going to paste in that bracketed codeShare tag.  &lt;/p&gt;  &lt;p&gt;  [codeshare janca423]  &lt;br /&gt;  &lt;/p&gt;  &lt;p&gt;  Keep your eye on the &lt;a href=&quot;http://codeshare.everfro.com&quot;&gt;codeShare&lt;/a&gt;  project.  They have some other super secret alliances in the near future that will also make use of the submission API!   &lt;/p&gt;  &lt;p&gt;  &amp;nbsp;  &lt;/p&gt;  </description><pubDate>Tue, 30 Jan 2007 04:59:06 GMT</pubDate><guid>http://daveshuck.instantspot.com/blog/2007/01/29/Whoo-hooo--Code-publishing-in-blogs-made-easy</guid><category>InstantSpot</category></item><item><title>Christmas &quot;break&quot; - not so much!  Lots of new features</title><link>http://daveshuck.instantspot.com/blog/2006/12/27/Christmas-break--not-so-much--Lots-of-new-features</link><description>Since there are a number of &lt;a href=&quot;http://www.instantspot.com/&quot;&gt;InstantSpot&lt;/a&gt;  users that subscribe to my blog, I thought I would give you guys an update.  &lt;a href=&quot;http://www.aaronjlynch.com&quot;&gt;Aaron&lt;/a&gt;  and I didn&amp;#39;t rest over the holidays.  We took the opportunity to bust out some crazy amounts of code and rolled some really cool features into InstantSpot, including enhanced Friend features, AdSense color matching, cleaner blog commenting, improved stats tracking and more.  If you are interested, go check out our &lt;a href=&quot;http://staff.instantspot.com/blog/index.cfm/2006/12/27/Big-things-afoot-at-InstantSpot&quot;&gt;InstantSpot Staff Blog&lt;/a&gt;.   </description><pubDate>Wed, 27 Dec 2006 16:04:31 GMT</pubDate><guid>http://daveshuck.instantspot.com/blog/2006/12/27/Christmas-break--not-so-much--Lots-of-new-features</guid><category>InstantSpot</category></item><item><title>Hey... I&apos;ve got style!</title><link>http://daveshuck.instantspot.com/blog/2006/11/14/Hey-Ive-got-style</link><description>Not being a terribly design-minded guy, my sites are usually lacking a little bit of style... ok, some might say a lot of style.  This became a challenge for us when trying to add new templates for our users on &lt;a href=&quot;http://www.instantspot.com&quot;&gt;InstantSpot.&lt;/a&gt;   After some discussions, we decided that since we have a very CSS-friendly template as the base for our Spots, an obvious feature would be to allow our users to come up with whatever designs they could conceive rather than keep trying to reinvent our templates.  So, after a couple of months of a defined set of templates on InstantSpot, this past weekend&amp;#39;s release of code included some &lt;a href=&quot;http://aaronjlynch.com/blog/index.cfm/2006/11/13/Full-access-to-your-CSS--AKA-New-features-for-InstantSpot&quot;&gt;awesome code by Aaron Lynch&lt;/a&gt;  that &lt;a href=&quot;http://staff.instantspot.com/blog/index.cfm/2006/11/13/New-Code--New-Features--New-Cool&quot;&gt;exposed CSS&lt;/a&gt;  in the control panel for all of the InstantSpot sites.  After seeing one of our users come up with a really good looking creation, I got inspired last night and modified my own.  Using the control panel features totally revamped the site in about 45 minutes.  I think it looks pretty dang cool, but considering I have a hard enough time getting my socks to match in the morning, feedback from any of you more design oriented types is welcome!    </description><pubDate>Tue, 14 Nov 2006 17:06:22 GMT</pubDate><guid>http://daveshuck.instantspot.com/blog/2006/11/14/Hey-Ive-got-style</guid><category>InstantSpot</category></item><item><title>The annoying right-click thing is gone!</title><link>http://daveshuck.instantspot.com/blog/2006/11/01/The-annoying-rightclick-thing-is-gone</link><description>&lt;p&gt;  I have had a number of (very valid) comments about the annoying right-click behavior on my blog, and on all the &lt;a href=&quot;http://www.instantspot.com&quot;&gt;InstantSpot&lt;/a&gt;  blogs for that matter.&amp;nbsp; Here is the story behind the right-click thing and why it was even there in the first place.&amp;nbsp; When we were designing InstantSpot, we wanted some common way for the Spots to still be an extension of the network, with links back to key features, friend sites, network-wide searching, plus we wanted to include a search capability for each site.&amp;nbsp; The DOJO browser bar widget seemed like an ideal solution... in development.&amp;nbsp; &amp;nbsp; Once we rolled into production, we found that not only did the widget load *terribly* slowly, but it also included that silly right click thing. &amp;nbsp;  &lt;/p&gt;  &lt;p&gt;  While I am sure there is someway to disable that (we didn&amp;#39;t look very hard!), we were so irritated with the loading of the bar, that we decided to kill it altogether for something home grown.&amp;nbsp; We added it to the enhancements list, and this past week it finally made it to the top.  &lt;/p&gt;  &lt;p&gt;  To that end, &lt;a href=&quot;http://www.aaronjlynch.com&quot;&gt;Aaron Lynch&lt;/a&gt;  created our own browser bar that gives us the same functionality minus all the suckage!  &lt;/p&gt;  &lt;p&gt;  Hopefully you will notice the difference, and we will have lessened the annoyance factor a bit. :) &lt;br /&gt;  &lt;/p&gt;  </description><pubDate>Wed, 01 Nov 2006 13:42:47 GMT</pubDate><guid>http://daveshuck.instantspot.com/blog/2006/11/01/The-annoying-rightclick-thing-is-gone</guid><category>InstantSpot</category></item><item><title>We have landed</title><link>http://daveshuck.instantspot.com/blog/2005/07/10/We-have-landed</link><description>&lt;font size=&quot;2&quot; face=&quot;Verdana, Arial, Helvetica, sans-serif&quot;&gt;Well, I have installed my blogging software.&amp;nbsp; Time to play. :)&lt;br/&gt;  &lt;/font&gt;</description><pubDate>Sun, 10 Jul 2005 05:00:00 GMT</pubDate><guid>http://daveshuck.instantspot.com/blog/2005/07/10/We-have-landed</guid><category>ColdFusion</category></item></channel></rss>