nextwebgen.com

The Next Generation Web Now

McKinsey report: Enterprise Web 2.0 adoption still growing – NetworkWorld.com

Filed under: Uncategorized — web 2.0 - Google News at 11:13 am on Thursday, July 31, 2008
McKinsey report: Enterprise Web 2.0 adoption still growing
NetworkWorld.com, MA - 12 hours ago
The adoption by those companies of most Web 2.0 technologies has risen since the poll was conducted for the first time last year, according to the report.

Ajax Youth Shine in Hillingdon Romp – TWTD.co.uk

Filed under: Uncategorized — Ajax - Google News at 11:09 am on Thursday, July 31, 2008
Ajax Youth Shine in Hillingdon Romp
TWTD.co.uk, UK - 4 hours ago
It was Ajax youth team players Silvinho Comivarins and Leandro Resida that were creating most of the opportunities early on and despite missing an open goal
Yeovil XI beat Hillingdon Vitalfootball
all 2 news articles

JavaFX: The preview has landed

Filed under: Uncategorized — Dion Almaer at 10:51 am on Thursday, July 31, 2008

JavaFX was announced at JavaOne…. in 2007, and we are now seeing a preview release.

Josh Marinacci of the JavaFX team put together a post with an example that builds the following:

The code for this is simply:

JAVA:

  1.  
  2. package blogdemo;
  3.  
  4. import javafx.scene.*;
  5. import javafx.scene.paint.*;
  6. import javafx.scene.geometry.*;
  7. import javafx.application.*;
  8. import javafx.scene.transform.*;
  9. import javafx.input.*;
  10. import javafx.animation.*;
  11. import java.lang.System;
  12.  
  13. var angle = 0.0;
  14.  
  15.     windowStyle: WindowStyle.TRANSPARENT  visible: true
  16.     width: 400 height: 400
  17.     stage: Stage {
  18.         fill: null
  19.         content: Group {
  20.             translateX: 100 translateY: 100
  21.             content: for(i in [0..10]) {
  22.                 // here is the magic with binding
  23.                 Rectangle {
  24.                     fill: Color.rgb(25*i,0,0, i/10.0)
  25.                     width: 100 height: 100 arcHeight: 10 arcWidth: 10
  26.                     stroke: Color.BLACK strokeWidth: 5
  27.                     transform: bind [
  28.                         Transform.rotate(-i*36+angle/2,50,50),
  29.                         Transform.translate(angle/4,0),
  30.                     ]
  31.                 }
  32.             }
  33.             onMousePressed: function(e:MouseEvent):Void { System.exit(0); }
  34.         }
  35.     }
  36. }
  37.  
  38. var anim = Timeline { keyFrames: [
  39.         KeyFrame { time: 0s values: angle => -360 tween Interpolator.EASEBOTH },
  40.         KeyFrame { time: 2s values: angle => 360 tween Interpolator.EASEBOTH },
  41.     ]
  42.     autoReverse: true
  43.     repeatCount: Timeline.INDEFINITE
  44. };
  45. anim.start();
  46.  

And you can check out the application if you have Java 1.6 installed.

Michael Coté got together with the Sun folks and recorded a demo and interview:

I am interested to see what Sun does with JavaFX, but I have to admit to being underwhelmed and more excited about what Sun could do with the Java plugin and have that as a way to interact with Ajax applications.

Rommedahl lauds Ajax style – WalesOnline

Filed under: Uncategorized — Ajax - Google News at 10:18 am on Thursday, July 31, 2008
Rommedahl lauds Ajax style
WalesOnline, United Kingdom - Jul 31, 2008
Dennis Rommedahl believes Ajax’s style of football will stand them in good stead on their pre-season tour of England. The Denmark winger, who spent three

Rommedahl lauds Ajax style – WalesOnline

Filed under: Uncategorized — Ajax - Google News at 10:18 am on Thursday, July 31, 2008
Rommedahl lauds Ajax style
WalesOnline, United Kingdom - 12 hours ago
Dennis Rommedahl believes Ajax’s style of football will stand them in good stead on their pre-season tour of England. The Denmark winger, who spent three

Rommedahl lauds Ajax style – WalesOnline

Filed under: Uncategorized — Ajax - Google News at 10:18 am on Thursday, July 31, 2008
Rommedahl lauds Ajax style
WalesOnline, United Kingdom - 41 minutes ago
Dennis Rommedahl believes Ajax’s style of football will stand them in good stead on their pre-season tour of England. The Denmark winger, who spent three

IE 8 and the User Features

Filed under: Uncategorized — Dion Almaer at 9:27 am on Thursday, July 31, 2008

The first main play for IE 8 was to get developers on board, and start a conversation with us on what they are fixing, and where they are going.

There were a couple of user features such as Activities and Web Slices, but you could tell they hadn’t finished there.

In their latest blog post they talk about reliability and the fact that they now have isolation between web pages and the chrome itself via processes. This means that a page could die, but the browser is fine:

One of our most significant investments is in a feature called Loosely-Coupled IE (“LCIE”), which is an architectural attribute that helps isolate different parts of the browser from each other, most notably, the frames from the tabs. LCIE is the foundation that we have built a few of our features on including Automatic Crash Recovery of which I expand on below.

For Beta 2, we added the following changes:

Frame Process Merging

To help improve startup performance, we have reduced the number of processes that we start. Instead of firing up two processes every time you launch the browser (one for the frame and one for your tabs), we now only fire up one frame process the first time you launch IE. Subsequent launches will only start a new tab process or make a new tab in an existing tab process.

For users that are accustomed to browsing websites in multiple “sessions”, for example if you want to log in to multiple email sites simultaneously, you can specify the “-nomerge” command line option to disable this feature.

More tab processes

It turns out that the vast majority of all IE sessions contain three or fewer tabs. Accordingly, in Beta 2 we try to give users three efficient tab processes. This is contingent on the user’s computer capabilities, but the more capable a computer is, the more processes we will use, up to a point. Adding more processes gives users much better isolation in the event of a failure. If each tab is in its own process, websites are completely isolated from each other.

Virtual tabs

We have also added the internal capability to “hot swap” the process from underneath a tab. Previously, Protected Mode worked on a per-process basis. For example, say you add a website to your trusted sites in IE7. If that site links to another site that is not in your trusted sites, it will cause you to switch browser windows when you click the link.

We improved this in IE8 Beta 1 with LCIE when we split the frame from the tabs. With the split we can create a new tab in the same window and switch you to that tab as opposed to being “punted” to a new window.

Virtual tabs lets you navigate across Protected Mode in the same tab since we just switch the process under the tab to the correct integrity level. This is really just “UI-sugar” – virtual tabs do not impact security or protected mode in any way, other than to make it more convenient to transition between protected mode on/off.

LCIE’s capability of isolating different parts of the browser coupled with more tab processes and virtual tabs will improve the performance and overall reliability of Internet Explorer.

I saw an early IE 8 beta 2, and there are other very interesting features in there too. Some were subtle but interesting. We should get our hands on it soon!

SIIA Chicago Brown Bag Lunch to Address Leveraging Web 2.0 for B2B … – MarketWatch

Filed under: Uncategorized — web 2.0 - Google News at 9:27 am on Thursday, July 31, 2008
SIIA Chicago Brown Bag Lunch to Address Leveraging Web 2.0 for B2B
MarketWatch - 16 hours ago
How have emerging technologies such as online advertising, search engine optimization, user-generated content and social media impacted the ways that

« Previous PageNext Page »