Fusion Bay

Fusion Bay is an application development firm in Baltimore, MD. We provide contract application development and programming resources throughout the United States. The majority of our work comes from partnerships with web design firms and advertising agencies. Our skill-set includes programming in most of the popular languages, infrastructure planning/engineering, and database administration.

We also create web applications, applications for the iPhone including the popular game Wordabble, and anything else that fancies us in our free time.

Contact

Phone: 410.276.4022
Fax: 443.836.0575

3500 Boston Street MS 2
Baltimore, MD 21224


Posts Tagged ‘Frameworks’

Eliminate redundant processes, use the add another input method

Tuesday, February 13th, 2007

We’ve all seen web applications that require the user to do a repetitive task. Unfortunately, programmers often ignore how unnatural it is to go through a multitude of form fields, how unclean the design looks, and how hard-coding the number of elements one can enter at a single time limits the use of your application. Stick with keeping it simple, and keeping it simple means keeping things clean and intuitive. (more…)

Client side form validation

Thursday, February 8th, 2007

Form validation is vital to every web based application, and too often I’ve seen it implemented page-by-page. Custom code blocks to check for email address formats, telephone numbers, social security numbers, etc.

If you need client-side form validation and you can rely on javascript, I highly recommend Andrew Tetlaw’s “ Really easy field validation.” It does require prototype.js and of course, java script enabled browsing.

I’ve written a few additional validators that I’ll post sometime soon for anyone that might be interested.