pf » Tag: coldfusion on Pete Freitag's Blog

CFSCRIPT Cheatsheet

coldfusion Last year I put together a CFSCRIPT cheatsheet for my cheatsheet collection. I just realized today, I don't think I ever blogged about it. Let me know if you find it useful or if I am missing anything.


This entry was:

ColdFusion 8 Update 1 Fixes some Image Processing Quirks

coldfusion It was nice to see that two of the quirks that I talk about in my Image Processing in ColdFusion 8 presentation were fixed in ColdFusion 8, Update 1 - they are:

The cfimage tag and image functions now retain EXIF data after operating on an image.


This entry was:

10 Most Useful Image Functions in ColdFusion 8

coldfusion Last week when I gave my Image Manipulation with ColdFusion 8 presentation at the New York City ColdFusion Users Group, several people asked me to blog this slide.


This entry was:

Foundeo's 2007 End of the Year Sale

coldfusion Foundeo is holding a special promotion through the rest of 2007. We have bundled Foundeo's popular Image Effects Component for ColdFusion 8 along with the full source of our Simple Feed Parser for ColdFusion for $49.99 (you save $139!).


This entry was:

ColdFusion 8 Image Manipulation Presentation Recording

coldfusion Last night I gave a presentation on Image Processing and Manipulation with ColdFusion 8 at the ColdFusion Online Meetup. The recording is now available.

Charlie Arehart, the host of the ColdFusion Meetup, has also posted it on his UGTV.


This entry was:

Online ColdFusion Manual

coldfusion Webucator, a web development training company has posted their ColdFusion training manual online. It currently covers ColdFusion 7, and will be updated to Cover ColdFusion 8 within the next few months.

Looks like a great resource to send folks to that are new to ColdFusion.


This entry was:

CFImage Effects Library for ColdFusion 8

coldfusion I have been very busy today launching the CFImage Effects Component for ColdFusion 8.


This entry was:

CFThread - Don't Abuse It

coldfusion I love the fact that you can now create threads with CFML in ColdFusion 8, however as Spiderman can tell you with great power comes great responsibility.

Using threads can increase the performance of your application, however using threads can also decrease performance.


This entry was:

Serializing CFC's in ColdFusion 8

coldfusion java One of the handy new features in ColdFusion 8 is that CFC's are now serializable. There isn't a whole lot of information about this new feature in the docs, but I did some playing around and it does appear that they have used Java's serialization API. This means that you can use java's java.io.


This entry was:

ColdFusion 8 Security Whitepaper

coldfusion Adobe has published a whitepaper called: ColdFusion 8 Product Security Briefing, which outlines the results of an independent security audit from Information Risk Management Plc.


This entry was:

ColdFusion Security Presentation Slides

coldfusion I want to thank everyone who attended my sessions at CFUnited this year. I was particularly amazed by the turnout for Building Secure CFML Applications. Here are the slides for the presentation.


This entry was:

Announcing Web Application Firewall for ColdFusion

coldfusion I'm proud to announce a Web Application Firewall for ColdFusion, a new product that I have been working on. This product detects malicious requests (such as SQL Injection, Cross Site Scripting, etc) and then logs, filters, or blocks the request.


This entry was:

RSS Presentation Code and Slides

coldfusion Several people have asked me for the code samples and slides from my RSS presentation at the CFUnited conference (Working with RSS in ColdFusion). As promised, the slides and code examples are now up online.


This entry was:

Getting the Application Root Path in ColdFusion

coldfusion I wrote a handy function today that will return the server file system path of the acting Application.cfm file for a ColdFusion application. It works by working its way up the directory tree until it finds an Application.cfm file. If it doesn't find one it will throw an exception.


This entry was:

Application.cfm and AJAX

coldfusion I had someone email me with the following question today:

I'm developing a ColdFusion app with Prototype. Seems Ajax.updater wants to insert my application.cfm code into my div along with responseText. How can I stop this?

This question brought up two good points.


This entry was:

Finding the Last Modified Date on a File

coldfusion This question came up on my local CFUG mailing list yesterday:

how can I get the time last updated of the two

documents? I know you can do this with uploaded files using

FILE.TimeLastModified.


This entry was:

Top 10 Underrated Functions in ColdFusion

coldfusion I gave a presentation at my local CFUG yesterday called 10 Underrated Functions in ColdFusion, I plan on doing one for tags as well at some point. Here was my list of functions, in no particular order:

ValueList - Returns the contents of an entire query column in a string list.


This entry was:

New Icons for Adobe's Next Product Line

coldfusion misc Adobe's new lineup of icons for the upcoming products including ColdFusion 8 (Scorpio), Adobe Photoshop CS3, etc. have been made public by John Nack, and they are generated quite a bit of reaction both good and bad.

Here's the new icon for ColdFusion 8.


This entry was:

Trick or Treat - Web 2.0 Goodies for ColdFusion

coldfusion I am happy to announce the latest creation from foundeo: fusionKit.

fusionKit is a CD full of some handy ColdFusion components and UDF's. It is a similar concept to the DRK's that Macromedia used to sell, but is it's 100% ColdFusion.


This entry was:

ColdFusion Search Engine Using Google Coop

coldfusion I went ahead and started a ColdFusion search engine with Google Coop.


This entry was:

What's New in BlueDragon 7?

coldfusion New Atlanta, just released Beta 1 of version 7 of thier BlueDragon CFML application server.

Below is a list of the new features - I think the IsNull function and null keyword will prove to be quite handy.


This entry was:

Adobe Has a del.icio.us Account

coldfusion Thanks Rich at the basement for pointing out that Adobe has a del.icio.us account.


This entry was:

CFCHART Example - Pie Chart

coldfusion Here's a quick example of some coldfusion code to make a pie chart.


This entry was:

Floor Function in ColdFusion is Int

coldfusion Those of you coming from programming languages that have a floor function, may be hard pressed to find it in ColdFusion - that's because it's called Int.

The Int function will take in a floating point number chop off the decimal part, leaving you with just the integer part.


This entry was:

CFDocs.org back up and running

coldfusion Several people have emailed to tell me that cfdocs.org was down. I have moved it to a different server, and it is now back up and running.

If it's still not working for you give the DNS some time to propagate.


This entry was:

ColdFusion on the TIOBE index

coldfusion My brother sent me a link to the TIOBE index which has ColdFusion at #13 (up from #26 last year). According to the site:

The TIOBE Programming Community index gives an indication of the popularity of programming languages.


This entry was:

Textile for ColdFusion

coldfusion A few weeks ago I mentioned that I had an open source project in the pipeline. Well I've been really busy so I haven't had a chance to release it until now...

I built a UDF for converting textile markup into HTML markup.

You can learn more about textile here.


This entry was:

Use CFSILENT

coldfusion Here's my tip for the day. If you have a choice in using either the cfsilent tag, or cfsetting enablecfoutputonly="true" use cfsilent.

Here's why

Easier to type

Easier to read

The enablecfoutputonly gets very messy when used across cfincludes.


This entry was:

Jobs: ColdFusion vs Ruby

coldfusion misc The Ruby programming language is getting a lot of interest these days, thanks to the Ruby on Rails framework developed by 37 Signals' David Heinemeier Hansson.


This entry was:

ColdFusion debate on digg

coldfusion I was surprised to find that my AJAX zip code example made it on digg today. I was wondering why I was getting so many blog comments today...

Anyways since I used ColdFusion in this example you will find some debate on ColdFusion in the comments on digg.


This entry was:

Null Java References in CF 6 vs 7

coldfusion java ColdFusion 7 appears to be much better at passing null values to a java object. ColdFusion 6 however likes to block you from doing it, even when you want to.

I am tring to work with a java API that requires me to pass a null value to a method.


This entry was:

ColdFusion Tagging Library

coldfusion Kunal Anand sent me an email to let me know about his tagging engine for coldfusion - check it out.


This entry was:

Get Wheelin!

coldfusion Rob Cameron has just released version 0.1 of ColdFusion on Wheels a MVC framework for ColdFusion, and inspired by Ruby on Rails.

There's no better way to get started than to check out his 8 min. video tutorial. And if your new to Ruby on Rails check out their 15 min video.


This entry was:

DNS Query with ColdFusion

coldfusion java It has been a while since I've posted one of these java + cfml tricks, so here's a neat one for ya'.

You can use the Java Naming and Directory Interface (JNDI) to perform a DNS query in ColdFusion.


This entry was:

Want additional DB or OS support in ColdFusion?

coldfusion Are you burnin' for built-in PostgreSQL support in Macromedia ColdFusion (BlueDragon already has this)? How about FreeBSD? Debian Linux Support? Fedora Support? Additional J2EE servers? 64-Bit Operating systems?

Then go and take the ColdFusion vendor support survey.


This entry was:

Build a directory browser with ColdFusion

coldfusion Most web servers have directory browsing disabled, but sometimes you want it to work for certain directories. Most web servers also allow you to setup specific settings for your directories for instance you could do it with an .htaccess file on Apache.


This entry was:

RDS Security Problems?

coldfusion Erki Esken posted a comment on Ben Forta's blog asking if the source to the RDS plugin for Eclipse would be released. Forta's response was:

"But, my gut feel is that it would not be a good idea to fully expose the source for RDS as that may create potential security problems.


This entry was:

Cheat Sheet Roundup - Over 30 Cheatsheets for developers

apple coldfusion databases java linux web Lets face it, unless you have a photographic memory, no developer can remember all the different functions, options, tags, etc. that exist. Documentation can be cumbersome at times, thats why I like cheat sheets.


This entry was:

CodeFetch

books coldfusion CodeFetch is a clever little app that searches published books for code samples matching your search. So if you search for cfmail you will get code samples from several books on ColdFusion. You can then of course buy the books through amazon.


This entry was:

ColdFusion Jobs

coldfusion The indeed job search engine has a pretty cool feature that you can add to your site, called job rolls. So for instance if you have a coldfusion site, and want to list coldfusion jobs then, you can paste in a job roll for coldfusion jobs:

Jobs from Indeed


This entry was:

Dynamic Java Class Loading with ColdFusion

coldfusion java Doug Hughes has posted a very clever technique for allowing you to run Java classes without adding them to your classpath. This means that people who build ColdFusion apps that include java classes can make them super easy to install.


This entry was:

40% use RDS

coldfusion I am retiring my poll Do you use RDS? after 129 responses, 51 people said Yes (about 40%), and 78 people said no (about 60%).

New poll coming up.


This entry was:

Critics skeptical of Fusion in a Jar

coldfusion An EE Times Article about two Purdue researchers attempting to create Cold Fusion:

But hard-headed physicists have grown wary of "fusion in a jar" experiments.

Don't they know that Macromedia has already done this? cfusion.


This entry was:

CF on Rails

coldfusion web I have noticed two CFML developers have made the switch to Ruby On Rails (a Rapid Web Application Development Framework for the Ruby programming language).


This entry was:

New Poll: Do you use RDS?

coldfusion I have added a new blog poll titled Do You Use RDS? I'm just curious how many people use it. There are lots of reasons not to use it, but I think its still pretty popular.

Here's why some people might use it:

Easy way to edit files on a remote server.


This entry was:

The client variables debacle

coldfusion Nathan Strutz recently said that client variables are no good to use. From reading his entire post, he isn't saying that the concept is flawed, just the current implementation. He even suggests how they may could be improved.


This entry was:

Macromedia Example Applications

coldfusion web Looking for example applications built with Macromedia products? I found this list of Macromedia sample applications

in the del.icio.us side bar on cfmx.org.

There are Flex, Flash, ColdFusion, and Dreamweaver example apps there.


This entry was:

cfmx.org

coldfusion I have owned the domain cfmx.org for a while now, and I have had a lot of ideas for what I can do with it. But I wanted to start using it, so I whipped up a ColdFusion only aggregator portal a few weeks ago.


This entry was:

Installing multiple versions of CFMX on JRun

coldfusion I like to setup my development machine with different versions ColdFusion, but all with the same web root. I setup a server for each instance, so I can use the same url on different ports (eg CFMX 6 on port 8600, CFMX 7 on port 8700, etc).


This entry was:

Parsing RSS 1.0 with ColdFusion MX

coldfusion Well thanks to Sean Corfield I understand why I was having issues with namespaces when trying to parse RSS 1.0 with XPath.

If you have a document with namespaces such as RSS 1.


This entry was:

RSS and XPath

coldfusion I came across a handy reference article on xml.com today that gives XPath queries for RSS and Atom feeds. Just last week I was attempting to parse a RSS 1.0 feed in CFMX using the XMLSearch function. I'm running into problems however due to the name spaces in RSS 1.


This entry was:

Using Java Web Services with CFMX

coldfusion java JWS files are nothing more than a Java class with a .jws extension. But when placed on a web server with Axis installed (such as ColdFusion MX), you can expose that class as a web service. This works just like CFC's do in ColdFusion. Here's an example JWS we will call CaseService.


This entry was:

Regular Expressions with ColdFusion - a Howto Guide

coldfusion Regular Expressions are a powerful tool for both developers and computer users alike. Regular Expressions were originally developed on Unix systems and used in programs like Perl, sed, and grep.


This entry was:

Batch Files to Restart Services on Windows

coldfusion I wrote some batch files today for restarting services on windows. The bat files can be used to restart ColdFusion MX or IIS services on Windows NT/2000/XP.

Batch File to restart ColdFusion MX

@echo off

REM - File: cfmxrestart.


This entry was:

CFC's - private works like protected

coldfusion I noticed yesterday that when you use access="private" in a CFC function, inherited CFC's also have access to this function.

In object oriented languages such as Java, C++, or C# this type of access is known as "protected" access.


This entry was:

Subscribe to my RSS Feed: solosub RSS
Tags