Ever wonder who these people are enriching your Mango experience? Wonder no more.
I took the opportunity to get a photo with Laura -- the creator of Mango -- at CFUnited this year. Thanks to Ben Nadel, who took the photo. We bribed him by also taking one for his blog header rotation. ;)

Of course there are other people involved with Mango, but they weren't at CFUnited. Or if they were, they didn't say hi to me. Maybe next ti... oh wait.
in
Mango |
1 Response
Posted 2010-08-26 09:00
I'll be presenting a primer on Git to the fine folks of the Boston CFUG tomorrow, Wednesday the 25th, at 6:00pm (Eastern Time). The presentation will be done via Adobe Connect, and will be open to anyone who would like to attend.
The URL to attend is: http://adobechats.adobe.acrobat.com/r35207590
in
Speaking |
2 Responses
Posted 2010-08-24 09:00
Today I'm excited to announce something that I've been working on quietly for a few months. I've created a framework for the purpose of building Restful APIs with semantically correct URIs -- no easy task in vanilla CFML -- simply and elegantly. I call it Taffy.
in
My projects |
Taffy |
34 Responses
Posted 2010-08-23 11:00
Have you ever added a file to svn:ignore and then immediately screamed "Noooooo! Command Zee!" (Or "Noooooo! Control Zee!" for you Windows folks...) I just did.
SVN:ignore is great for making sure you don't accidentally commit a configuration file containing passwords to your Subversion repository. You can get to it by right-clicking on the file you want to ignore in Eclipse/CFB's Navigator pane, and choosing "Add to svn:ignore..." from the "Team" menu.

This is all well and good until you accidentally ignore a file that you want in your repository. Whoops! Command Z!
Unfortunately, removing files from svn:ignore is not as intuitive. But don't fret, it's still pretty easy.
I am using Subversive for SVN integration in CFB, but I got the tip from someone using Subclipse, so I assume it's only some labels that are different, if anything.
- Right click on the project folder, and choose properties.
- In the dialog that comes up, choose the item "SVN Info" item in the left pane.
- SVN properties will be displayed in the listbox at the bottom-right of the dialog. Find "svn:ignore" and double-click it.
- A dialog displays the current value and allows you to edit it. Find the offending line, remove it, and hit the OK button to save your changes.
- Your file should now go back to the not-added-to-svn state, and you can commit it at will. If you don't see it, try refreshing the project.

in
No Responses Yet
Posted 2010-08-04 09:00
Yesterday's post exposed an embarrassing flaw in my own blog setup: High-ascii characters didn't display correctly. Previously, nobody had tried to post a high-ascii character in a comment; and I hadn't used any in a post. Now that it's happened, though, I've fixed the problem.
My first thought was that my database (MS SQL Server 2005 Express) hadn't been properly configured to allow the characters. But on inspection, each necessary column was the appropriate nvarchar / ntext type.
As it turns out, the culprit was my CF Datasource settings. If you edit the datasource properties, and then click the "Show Advanced Settings" button, you'll find the confusingly named setting: "String Format" that enables high-ascii characters and unicode.

Enabling this feature opened the door for high-ascii characters, and now they will display correctly here. Special thanks to Ben Nadel for exposing the flaw, and to Oğuz Demirkapı for being our community's i18n test case for as long as anyone can remember.
in
ColdFusion |
Databases |
5 Responses
Posted 2010-08-03 09:30