Kevin Lynch starts his Weblog

In Archive by Fredy Ore

Kevin Lynch, the Chief Software Architect at Macromedia has started writing a Weblog
www.klynch.com.

It is great reading his Software story and reading his Foundation articles. These articles are a collection of some of the most influential books, articles and papers which he has come across.

Many thinkers and inventors developed the foundations that influence what we do today, with a tremendous amount of innovation beginning in the aftermath of World War II. Some that inspire me beyond the recent decade include:Kevin Lynch

As We May Think by Vannevar Bush (July 1945)
Man-Computer Symbiosis by J.C.R. Licklider (1960)
Spacewar by Stephen Russell, Peter Samson, Dan Edwards and Martin Graetz, together with Alan Kotok, Steve Piner and Robert A. Saunders. (1962)
Augmenting Human Intellect: A Conceptual Framework by Douglas Engelbart, SRI (October 1962)
Sketchpad: A Man-Machine Graphical Communication System by Ivan Sutherland, MIT (1963)
Xanadu by Ted Nelson (1965)
The Computer as a Communication Device by J.C.R. Licklider (1968)
The Mythical Man-Month by Frederick Brooks, lessons learned from IBM’s System/360 project (1975)
The Xerox Star: A Retrospective about the team of Alan Kay, Larry Tesler, Charles Irby, John Warnock, Chuck Geschke, Charles Simonyi, Butler Lampson, David Liddle, Ed Satterthwaite, and many others at Xerox (1975-1981)
The Soul of a New Machine by Tracy Kidder, about a team building a new computer at Data General (1981)
Inventing the Lisa User Interface developed by Larry Tesler, Bill Atkinson, and the Lisa team at Apple (1979-1983)
Macintosh developed by Andy HertzfeldBill AtkinsonSusan Kare, Bud Tribble, Burrell Smith, Mike Boich, Joanna Hoffman, Mike Murray, George Crow, Bruce Horn, Steve Capps, Caroline Rose, Jef Raskin, Steve Jobs and many more (1984)
The Desktop of Tomorrow by Norm Meyrowitz, Brown University (July 1989)
Information Management: A Proposal by Tim Berners-Lee, CERN (1989)
The Computer for the 21st Century by Mark Weiser, Xerox PARC (September 1991)

Is Weblog technology going too fast?

In Archive by Fredy Ore

An interesting article in the New York Times (free subscription required to view) which looks at whether the rapid adoption of weblogs and the technology associated with it is just a trend which will fade out in the future.
Read More

Detecting if a file exits in ActionScript

In Archive by Fredy Ore

A useful tutorial by Guy Watson from Flash Guru on “Detecting if an include file exists”.
http://www.flashguru.co.uk/000310.php

[js] fileExists=new LoadVars();
fileExits._parent=this;
fileExists.onLoad=function(success)
{
//success is true if the file exists, false if it doesnt
if(success)
{
//the file exists
var nm=this._parent.createEmptyMovieClip(“swfHolder”,1); //so create a movieclip
nm.loadMovie(“myfile.swf”); //and load our .swf file into it
}
}
fileExists.load(“myfile.swf”) //initiate the test
[/js]