Automate Compressing JS and CSS with ANT

December 31, 2009

I’m still a bit of a n00b with ANT still, but I took the time today to improve my skills with it a tad to help automate a task which has become quite repetitive. Once we are ready to roll changes to our application we first have to minify our JavaScript and CSS files. We [...]

3

Basic Query Loop and Group in ColdFusion

December 30, 2009

While going over the DreamInCode.net forums I came across this question.

Good day everyone. I’m hoping someone can point me in the right direction. I’ve been using Coldfusion for awhile, although I admit, I’m not a master at it.

I’m pulling my hair out on a project I’m hoping someone can shed some light on.

I have a [...]

2

Webservice WSDL Document Consumption in ColdFusion

December 30, 2009

This question was posted on the Adobe ColdFusion forums (found here at http://forums.adobe.com/thread/546708?tstart=0).

Does anyone know of a service for this compatible with CF? I need to display an amount for Korean Won and USD on a checkout form and the service at http://www.xmethods.net/sd/2001/CurrencyExchangeService.wsdl doesn’t exist anymore. I searched Google for a while but didn’t find [...]

1

Example of jQuery Autocomplete with ColdFusion

December 22, 2009

A useful feature, and high “value add” to many sites today is a text box with autocomplete and suggestion as you type. The powerful jQuery JavaScript library makes this really easy to do, especially with the help of the excellent autocomplete plugin from bassistance.de. In this example we will setup a page to search for [...]

1

Dumbass Code of the Week 12-20-2009

December 21, 2009

Please, someone explain to me why this was necessary. The first line of code is just a sample setup. The real code has a loop over some orders, assembles this string, and adds the word “NewOrder” at the end of it. It then executes line #2 with the revers, replace, and reverse. This is the [...]

2

SES URLs with OpenBD and Google App Engine

December 17, 2009

A little tidbit that I though I’d share. While playing with the Google App Engine (GAE) version of the OpenBD CFML engine I noticed that SES friendly URL’s weren’t working for me. After a small search I came across a bug entry on the OpenBD site that suggested that the SES filter is not setup [...]

0

Setting Cookies then Relocating in ColdFusion

December 15, 2009

This question came across the ColdFusion User Group just recently. The developer has some type of login form, followed by a query that validates the user’s information. It then attempts to set a cookie then redirect to another page. The subsequent page checks for the existence of the cookie, and if it is not set [...]

11

From Gregorian to Julian Dates in JavaScript

December 10, 2009

I am working on a contract right now where I am having to do some manipulation of dates in a calendar. This particular calendar stores dates in Julian Day Number (JDN) format. This by itself is not a serious issue as PHP has simple functions to handle these conversions. However I have a situation where [...]

0