nextwebgen.com

The Next Generation Web Now

Get GO-ing to Ajax by bike - Newsdurhamregion.com

Filed under: Web 2.0 News — Ajax - Google News at 10:04 am on Friday, May 30, 2008

Get GO-ing to Ajax by bike
Newsdurhamregion.com, Canada - 55 minutes ago
By Keith Gilligan The Toronto cyclist came up with the GO-by-Bike to Ajax idea from a similar initiative offered by Via Rail last year.
Cycle your way into summer Riverview ThisWeek
all 4 news articles

Get GO-ing to Ajax by bike - Newsdurhamregion.com

Filed under: Web 2.0 News — Ajax - Google News at 10:04 am on Friday, May 30, 2008

Get GO-ing to Ajax by bike
Newsdurhamregion.com, Canada - 18 hours ago
By Keith Gilligan The Toronto cyclist came up with the GO-by-Bike to Ajax idea from a similar initiative offered by Via Rail last year.

AJAX should not mandate HTTP - TechRepublic

Filed under: Web 2.0 News — Ajax - Google News at 9:30 am on Friday, May 30, 2008

AJAX should not mandate HTTP
TechRepublic, KY - 4 hours ago
An interesting and unfortunate by-product of AJAX applications is that these applications rely upon the existence of an application server always being

Remove Nested Patterns with One Line of JavaScript

Filed under: Web 2.0 News — Dion Almaer at 8:36 am on Friday, May 30, 2008

Steven Levithan has been flagrant by creating a simple way to remove nested patterns with a while loop and a replace:

JAVASCRIPT:

  1.  
  2. var str = “abc&lt;1&lt;2<>3>4>def”;
  3.  
  4. while (str != (str = str.replace(/<[^<>]*>/g, “”)));
  5.  
  6. // str -> "abcdef"
  7.  

Notice that the regex in this one-liner doesn’t try to deal with nested patterns at all. The while loop’s condition replaces instances of <…> (where angled brackets are not allowed in the inner pattern) with an empty string. This repeats from the inside out, until the regex no longer matches. At that point, the result of the replacement is the same as the subject string, and the loop ends.

You can use a similar approach to grab nested patterns rather than delete them, as shown below.

JAVASCRIPT:

  1.  
  2. var str = “abc(d(e())f)(gh)ijk()”,
  3.     re = /\([^()]*\)/,
  4.     output = [],
  5.     match, parts, last;
  6.  
  7. while (match = re.exec(str)) {
  8.     parts = match[0].split(\uFFFF”);
  9.     if (parts.length <2)
  10.         last = output.push(match[0]) - 1;
  11.     else
  12.         output[last] = parts[0] + output[last] + parts[1];
  13.     str = str.replace(re, \uFFFF”);
  14. }
  15.  
  16. // output -> ["(d(e())f)", "(gh)", "()"]
  17.  

Recruiters not taking advantage of web 2.0 (Netimperative)

Filed under: Web 2.0 News — Yahoo! News Search Results for web 2.0 at 8:17 am on Friday, May 30, 2008

Many HR and recruitment managers are not taking advantage of web 2.0 technologies, according to new research.

AJAX and Enterprise RIA Tools - JSF, Flex, and JavaFX - SYS-CON Media

Filed under: Web 2.0 News — Ajax - Google News at 8:01 am on Friday, May 30, 2008

SYS-CON Media

AJAX and Enterprise RIA Tools - JSF, Flex, and JavaFX
SYS-CON Media, NJ - 58 minutes ago
Richard Monson-Haefel wrote: I think this article is little more than an advertisement for Exadel which provides a JSF/Ajax solution.

AJAX and Enterprise RIA Tools - JSF, Flex, and JavaFX - SYS-CON Media

Filed under: Web 2.0 News — Ajax - Google News at 8:01 am on Friday, May 30, 2008

SYS-CON Media

AJAX and Enterprise RIA Tools - JSF, Flex, and JavaFX
SYS-CON Media, NJ - 7 hours ago
Richard Monson-Haefel wrote: I think this article is little more than an advertisement for Exadel which provides a JSF/Ajax solution.
Curl Outperforms Adobe Flex? SYS-CON Media
all 7 news articles

Improved Collaboration Primary Driver for Web 2.0 Technologies (CRM Today)

Filed under: Web 2.0 News — Yahoo! News Search Results for web 2.0 at 7:42 am on Friday, May 30, 2008

WorkLight says Internet tools such as Facebook and iGoogle are at the heart of a recent survey that reveals new figures regarding enterprise adoption of Web 2.0 technologies.

« Previous PageNext Page »