Back in 1992, tchrist wrote GUIs Considered Harmful. A few of the main quotations:
All very relevent points, many of which are still problematic. There has been some attempts to make a programmable GUI application framework (like OLE), to varying degrees of success.
However, with the growing maturity of the web, we now have the ability to run a fully programmable GUI. WWW::Mechanize is the most flexible realization of this, but it isn't the only one.
As soon as people had CGI-capable web servers, the address bar had many of the capabilities of a command line. Early on, some people even had bash execute parameters off the query string directly. Of course, this was horribly insecure, but illustrates the capabilities of this method.
Web applications address two interesting points at once:
Many people think you need something like SOAP to get RPC out of a web application, but really this was possible all along. SOAP and others merely provide a standard protocol so that libraries can be written in multiple languages and (hopefully) all get them to work together.
The WWW::Mechanize method of grabbing forms, filling them out, and submitting is perhaps more cumbersome than the Unix filter concept, but it allows the same web application to serve both GUIs and command line users with no additional work for the application developers.
Further, it was inevitable that once the web got big, command line tools would be made to use it. Both wget and lynx (with the -source option) allow you to use a web app as part of a Unix shell pipeline.
Firefox takes this even further. The "Quick Searches" bookmarks lets you use a keyword followed by a string. It'll place the string within the query. For instance, I can search Google with google Perl. It's easy to add your own. Just make a bookmark within the Quick Searches section. The string %s in the address will be replaced with whatever you type. I've added a few custom search bookmarks, such as CPAN (http://search.cpan.org/search?query=%s&mode=module).
With features like that, the address bar becomes a command line, and we didn't need Java Applets, JavaScript, or Flash to do it (in fact, those things usually get in the way of this concept).
Between better browsers and simple tools, we no longer need to fear GUIs, at least for the web.
"There is no shame in being self-taught, only in not trying to learn in the first place." -- Atrus, Myst: The Book of D'ni.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: The Address Bar is the new Command Line
by jdporter (Paladin) on Dec 29, 2004 at 21:10 UTC | |
by hardburn (Abbot) on Dec 29, 2004 at 21:34 UTC | |
by trammell (Priest) on Dec 29, 2004 at 22:09 UTC | |
|
Re: The Address Bar is the new Command Line
by martinvi (Monk) on Dec 30, 2004 at 08:44 UTC | |
by zentara (Cardinal) on Dec 30, 2004 at 12:01 UTC | |
|
Re: The Address Bar is the new Command Line
by Anonymous Monk on Dec 29, 2004 at 21:48 UTC | |
by hardburn (Abbot) on Dec 29, 2004 at 21:52 UTC | |
|
Re: The Address Bar is the new Command Line
by dimar (Curate) on Dec 31, 2004 at 06:45 UTC |