Where is the Real Ajax/Flex Revolution Happening?
andzik writes "Even with all of the buzz around Rich Internet Applications these days, using toolsets like Ajax and Flex, most sites that utilize these technologies seem to be incremental improvements, not revolutionary interface changes. Where does the Slashdot community feel the best opportunities are to substantially create different/better user experiences using RIA tools? What will be the killer app? Are we just not seeing them because the best improvements are being made to web based applications and not in the public space?"
On a related note, Vertigo asks: "Not so long ago everybody believed that it was a good thing to have the freedom to modify your software to suit your needs or to mangle your data in any way. But now that users are flocking to non-modifiable, one-size-fits-all web 2.0 apps like Gmail or Flickr, are we moving away from our open source ideals? Those services do provide many important benefits, but in the process of their enthusiastic adoption did we not loose sight of the most important issues?"
instead of complaining about the lack of killer apps, maybe you should be out building one.
Do you even lift?
These aren't the 'roids you're looking for.
most sites that utilize these technologies seem to be incremental improvements, not revolutionary interface changes.
I like the idea of AJAX being used to enhance applications, not completely rebuild them.
If I wanted to do something like change the menus/site navigation I could already hose up the browser's controls with a flash based site.
If i want to do a quick validation in a form against a remote database, I'll use AJAX
If I want to add a quick way to change a record(ex. disable a user) in a table, I'll add a link that makes an AJAX call.
If I want a text box to do a spellcheck without posting a complete form, I'll use AJAX
"If they have both, tell them we use Linux. And if they have that, tell them the computers are down." -Dave Chapelle
BTW: Flex is a popular lexer based on Yacc and not some web2 buzzword.
I see some really nice web designs out there, but when it takes a minute (or more!) to load a page with a DSL line, then I get a little testy. And many times, I absolutely agree with you. I just want the information, the graphics/Flash/whatever do not add anything. And many times, it makes site navigation difficult because the page becomes so cluttered, it's hard to make out what you're looking for.
Saturday is April 1. Slashdot will be shut down. Sorry for the inconvenience.
Heh, you better not rely on javascript to validate your forms. What happens when the malicious user disables/modifies the javascript? You still need to send that data to a server-side process for validation.
Using asynchronous javascript to send the data to the server and get the response is a way of saving time by drawing less of the page. But you still need to server-validate.