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
Dec 15
posted by Jim Jurista in
Mobile, video, enterprise
| 0 Comments
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
This entry was posted on December 15, 2011 at 2:28 PM and has received 336 views. There are currently 0 comments. Print this entry.
Nov 14
posted by Jim Jurista in
Ravenglass, HTML, Jobs, Javascript, news, Coldfusion
| 1 Comments
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.
This entry was posted on November 14, 2011 at 12:43 PM and has received 643 views. There are currently 1 comments. Print this entry.
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
This entry was posted on August 8, 2011 at 9:04 PM and has received 2102 views. There are currently 1 comments. Print this entry.
Jun 16
posted by Jim Jurista in
CFBuilder, Ravenglass, CFUG, Coldfusion
| 0 Comments
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.
This entry was posted on June 16, 2011 at 2:02 PM and has received 583 views. There are currently 0 comments. Print this entry.
Apr 21
posted by Jim Jurista in
Ravenglass, Jobs
| 0 Comments
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.
This entry was posted on April 21, 2011 at 1:23 PM and has received 704 views. There are currently 0 comments. Print this entry.
Mar 7
posted by Jim Jurista in
Ravenglass, Jobs, news
| 0 Comments
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.
This entry was posted on March 7, 2011 at 5:14 PM and has received 686 views. There are currently 0 comments. Print this entry.
Sep 3
posted by Jim Jurista in
Ravenglass, HTML, Jobs, CSS, Coldfusion, SQL
| 0 Comments
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.
This entry was posted on September 3, 2010 at 3:57 PM and has received 1036 views. There are currently 0 comments. Print this entry.
May 6
posted by Jim Jurista in
HTML, Usability
| 0 Comments
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.For more information, see the following links:
This entry was posted on May 6, 2010 at 1:43 PM and has received 479 views. There are currently 0 comments. Print this entry.
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.
This entry was posted on May 5, 2010 at 4:50 PM and has received 517 views. There are currently 0 comments. Print this entry.
Mar 16
posted by Jim Jurista in
Coldfusion
| 2 Comments
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!
This entry was posted on March 16, 2010 at 12:30 PM and has received 2318 views. There are currently 2 comments. Print this entry.
Binding delegated events with jQuery's .on()
Shelly Saxton said: Truly I'm so surprised to know the binding delegated events with jQuery. It's very critical tutorial...
[More]
Common Problem - Simple Solution: Adding quotes to ValueList in ColdFusion
Saravanan said: Great Post, helped me to resolve an issue, thanks revenglass...
[More]
Binding delegated events with jQuery's .on()
MikeZ83 said: IIRC the major advantage of this approach is that it will also match elements you might add in the f...
[More]
Binding delegated events with jQuery's .on()
Mike Goeppner said: @Dan -- The cool thing about this method is an event never truly becomes "dirty" since it ...
[More]
Binding delegated events with jQuery's .on()
Dan G. Switzer, II said: Not having any experiencing w/jQuery mobile (so this may be a problem w/either solution) one issue y...
[More]