Skin Spider : A Testament To Application Portability

Posted October 20, 2006 at 8:55 AM

Tags: ColdFusion, Skin Spider

I haven't blogged much about this before, but I am a HUGE fan of highly portable application development. If you know me, you know I avoid all sorts of special programming elements, such as:

  • Mapped Paths
  • Installed Custom Tags (CF's custom tag folder)
  • CFX Tags
  • IIS Filters
  • Registered COM objects
  • Centralized Framework Code (grumble grumble)

I don't like the idea of having to set up things that I cannot do programmatically. Just about the only thing that I will do via the ColdFusion administrator is set up a data source. I know that this, now, can be done programmatically, but I like to do it in the Admin. Call this hypocritical... oh well. And, of course, I am not daft; if a project requires something special to get it done, I will do it. If I need some sort of upper level PDF COM object, then, yes, it gets installed. But, my philosophy is such that I should exhaust all other methods first before then creating a server-setting.

Skin Spider is going to be a testament to this development philosophy. Since it doesn't use a standard database, I will be making this 100% portable. By the time I am done, you should be able to pick it up and drop it anywhere and just have it work. In fact, just the other day, I moved it from one computer to another, opened it up, and it ran perfectly. I knew this would happen, but I was pretty pumped up to see it actually take place.

I have been asked before about how I configure my applications without XML and without hard coding any thing like URLs and Root directories and this project will demonstrate all of this. Please be patient, as it is coming in development iterations, but rest assured, it's gonna be pretty sweet in the end!

Also, just an FYI, for you convenience, I have set up http://www.skin-spider.com which should forward you to the Skin Spider section of my site. Just making it a little easier. I see that people have been going on and having it spider things. Glad to see some people are using it and getting a feel for how it works. Right now there is a cap on how many videos you can download, but I will go in ever few days a clean it out so more people can experiment.

Post Comment  |  Ask Ben  |  Other Searches  |  Print Page




Reader Comments

There are no comments posted for this web log entry.


Post Comment  |  Ask Ben

Recent Blog Comments
Mar 17, 2010 at 4:13 PM
Testing For NULL Values In A ColdFusion Query Result Set
To get around the empty strings in an UPDATE statement I pretended the variable was a string by enclosing it in single quotes, CAST it to an integer, let it convert empty strings to zeroes, and used ... read »
Mar 17, 2010 at 4:12 PM
Ask Ben: Environment-Based Application.cfc Settings
Ben, those are valid comments. I posted some code that shows how to "worryfree ;o)" copy code and let the Application.cfc sort it out. http://boncode.blogspot.com/2010/03/cf-dynamically-changing-ap ... read »
Mar 17, 2010 at 3:32 PM
Using Appropriate Status Codes With Each API Response
@Marc, For our project it isn't really a requirement, since most (if not all) of our resources are private and related to the logged in user. Anyway, IIRC google does execute javascript before inde ... read »
Mar 17, 2010 at 3:24 PM
Finally Finished Ayn Rand's Atlas Shrugged Audio Book
Objectivism is a form of positivism, and Quantum Mechanics does not fit positivism. One of the postulates of Quantum Mechanics is the impossibility of separating the object of measurement from the me ... read »
Mar 17, 2010 at 2:52 PM
Ask Ben: Blocking WSDL Access In A ColdFusion Application
<cfif structKeyExists( url, "wsdl" ) and not structKeyExists( url, "x")> should fix that ... read »
Mar 17, 2010 at 2:43 PM
Ask Ben: Blocking WSDL Access In A ColdFusion Application
You are correct. You can use HTTPservice RPC model instead and not worry about the wrapper. Not too much harder to do but not as extensible or fun! I wonder if the Flex app could pass an arg after t ... read »
Mar 17, 2010 at 2:40 PM
Using Appropriate Status Codes With Each API Response
Simon, If you're serving up what is essentially a blank page "template", and then getting the actual content for that page using javascript, how on earth are you getting the search engines to see yo ... read »
Mar 17, 2010 at 2:34 PM
Using Appropriate Status Codes With Each API Response
We have a similar setup as Rocky. We have a backend which only exposes REST services. It doesn't output any html, js, jsp, .. . (We are capable of running jsp, groovy, jsf, ruby, jython, etc.. but w ... read »