Mobile Video in the Enterprise

Interesting and very practical article from Andy Howard on mobile video in the enterprise.

http://www.nojitter.com/post/232300396/does-your-mobile-device-do-video

Help Wanted: Web Application Developer

Ravenglass Technologies, Inc., located near Syracuse, New York (USA) is seeking a full-time Web Application Developer.

Degree in Computer Science or related field required. Must have demonstrable experience with HTML, AJAX, CSS, and SQL. Web application development experience in at least one of the following: ColdFusion, JSP, ASP.NET, or PHP. Mobile application development experience is a strong plus.

Professionalism and strong communications skills are a must. Salary plus full benefits, flexible commuting arrangements considered. Apply with resume and cover letter to jobs@ravenglass.com.

SQL Prettifier (Lint) Tool

I have spent countless hours of my life staring at SQL code. While I made every effort to keep my own SQL neat, it's not always easy to decipher errors in complex queries - especially those in legacy code or written by developers who don't share my passion for code formatting.

Today I was fortunate to find an excellent SQL prettifier that analyzes code (like a lint-style tool) and formats it with proper capitalization, indentation, and so forth.

Here's the link; I hope it saves somebody time in debugging and managing SQL code as it has just done for me.

http://www.dpriver.com/pp/sqlformat.htm?ref=g_wangz

Adobe Presentation and Big Attendance at ColdFusion Users' Group Event

Wednesday's ColdFusion User's Group event at ITT Technical Institute was a rousing success! Ravenglass sponsored the event, and more than 50 group members heard Josh Adams from Adobe Systems present ColdFusion Builder 2. Ravenglass thanks Josh as well as CFUG leaders Pete Freitag and Brian Love for organizing the program.

Employment Opportunity with Ravenglass

Ravenglass Technologies (Cazenovia, NY) is seeking a Summer Intern or Temporary Subcontractor interested in web and mobile application development.

The successful candidate will be pursuing or have recently completed a degree in Computer Science or a related field, and must demonstrate knowledge of programming and database fundamentals. Web development experience with PHP, ASP.NET, or ColdFusion is preferred. Familiarity with mobile application development for iOS or Android is a strong plus, as is practical experience with the administration and networking of desktop computers and mobile devices. Professionalism and strong communications skills are a must.

Opportunity for part-time or full-time ongoing employment beyond Summer 2011 for the right candidate. Apply with resume and cover letter to jobs@ravenglass.com.

Ravenglass hires two new developers

BRIAN CAUFIELD and CATHERINE TUXBURY have been hired at Ravenglass Technologies, Inc., a technology consulting and software development company in Cazenovia. Caufield, of Syracuse, is a mobile solutions specialist. He is a graduate of the State University College of Environmental Science and Forestry and worked for Time Warner Cable, in Syracuse. Tuxbury, of Baldwinsville, is knowledge manager. She is a graduate of Bates College, Lewiston, Maine, and worked for Time Warner Cable, in Syracuse.

Help Wanted: Web Application Developer and Mobile Application Developer

These positions were filled in November 2010. Please check our Employment Openings page for the latest information about jobs at Ravenglass Technologies.


Ravenglass is seeking two application developers: one Web Application Developer and one Mobile Application Developer. Will consider contract, contract-to-hire, or full-time with salary plus full benefits. Flexible commuting arrangements considered

Web Application Developer Degree in Computer Science or related field required. Must have demonstrable experience with HTML, XML, AJAX, and SQL. Web application development experience in ColdFusion, JSP, ASP.NET, or PHP is also required. Mobile application development experience is a plus.

Mobile Application Developer Degree in Computer Science or related field required. Must have professional mobile application development experience with iOS or Android OS. Web application development (ColdFusion, PHP, ASP.NET) and HTML5 knowledge are a strong plus.

Professionalism and strong communications skills are a must. Apply with resume and cover letter to jobs@ravenglass.com.

Getting your site's bookmark icon (favicon) to work in IE and all other browsers.

We had some fun with this seemingly simple problem today. Setting up a new web site, we found that the "favicon" graphic (the little icon that show up next to your page's URL or title in a browser tab or address bar) was working for all browsers but Internet Explorer (IE).

It turns out that IE is very particular about the way that the favicon must be set. The graphic must be of type "ICO". While other browsers support GIF, JPG, and PNG icons, IE requires ICO.

Next, a reference to the icon must be included in the section of your HTML document, using the tag. The tag must have the attributes "rel", "type", and "href" set to the values "SHORTCUT ICON", "image/vnd.microsoft.icon", and the full URL (including http:// and your domain) to the ICO file.

view plain print about
1<link rel="icon" type="image/vnd.microsoft.icon" href="http://www.yourdomain.com/images/favicon.ico" />

For more information, see the following links:

Where did the name Ravenglass originate?

If you've ever wondered where the name "Ravenglass" comes from, it's the name of a port village in England's lake district. Company Founders Jim Jurista and Aimee Koval visited Ravenglass in 1993 and were struck by the natural beauty and historic places such as Muncaster Castle. In 1997, when they were looking for a unique name for their new business, "Ravenglass Technologies" appealed to both of them, and it's been with us ever since.

Common Problem - Simple Solution: Adding quotes to ValueList in ColdFusion

I was updating some ColdFusion old code and had a brain freeze about how to wrap items from a ValueList() function in single quotes, so that I could use them in a query.

Fortunately I found this article from Cold Fusion Jedi. Just use QuotedValueList() instead of ValueList() - each item in the list will be surrounded in single quotes. For example, if ValueList(query.alphabet) returns a,b,c,d, QuotedValueList(query.alphabet) will return 'a','b','c','d'.

If you want to have arbitrary characters (instead of single quotes) around your list items, use ListQualify(). Continuing the example above, ListQualify(ValueList(query.alphabet),":") would return :a:,:b:,:c:,:d:.

I hope this helps somebody!

More Entries