February 13, 2018

Get Paid For Networking (Referrals FTW)

In August of 2017, we celebrated our twentieth year in business. It has been quite a journey and a lot has transpired over the years. We’ve learned a lot, one of the biggest lessons we continue to learn each day is that networking is a critical component of a thriving business. We have been fortunate over the years to connect with so many in the development community that we have learned from, worked together with, and ultimately developed close relationships with. Early on we implemented a referral program to reward those that sent business our way. So, I thought I would tell you more about how that works so you can network with us and get paid too!

January 13, 2018

Legacy app, meet ColdBox

The term "legacy application" strikes fear in the heart of many a developer, invoking images of spaghetti code, undocumented secret sauce, and evidence of multiple attempts to start some semblance of a paradigm that might have been in the vague direction of a coding standard or convention. Fortunately, there now exists a direct path to bring your legacy out of the cold and into the warm embrace of a modern framework.

ColdBox has seen the need for a migration path for these applications and implemented a feature called Implicit View Dispatch. This means that without having an event handler defined, you can create views, and the events and actions are implicitly created based on folder structure of /views. For example, I can create a view file in the location of views/about/contactUs.cfm, and the corresponding event is implicitly created, permitting the URL mysite.com/about/contactUs to display that view. No handlers, no layouts, no routes. Just views. Pretty slick.

May 13, 2014

How We Rest: CFSummit 2014 presentation

This talk focuses on 5 key ways that the ColdFusion community produces REST applications. Both native implementations, CF10+ and Railo 4+, are covered as well as 3 popular frameworks: Taffy, Coldbox, and FW/1.

"5

 

This is an entry level topic aimed to help developers and development teams see their options and choose according to their preferences and needs.

The slides are up at the CFSummit slideshare: http://www.slideshare.net/ColdFusionConference/how-we-rest

The slides and code examples are on my github: http://github.com/Francainath/CFSummit-How-We-Rest

Thank you to all who attended this session and the content committee for setting it up.

April 18, 2014

Nathaniel is speaking at Into The Box 2014

We are proud to announce that Nathaniel Francis has been selected to speak at the very first Into The Box conference in May.  

He will be speak on Relaxing With ColdBox RESTFul Services.  See more on this hot-N-ready topic at http://www.intothebox.org/#sessions

October 28, 2013

Handling BOMs with JSMin

A fantastic tool for increasing web app efficiency is Luis Majano's JSMin compressor.  It takes your local CSS or JavaScript files, compresses them, and stores them as an aggregated file in your app's cache.  I did run into a bit of trouble with it recently when I ran it on an app's new stack and encountered a bit of a BOM problem.  Here's why the BOM can be a problem and a simple way to fix it.