Hi, please Register

Author Archives: David Nolen

Reading for next week

http://www.cs.brown.edu/memex/ACM_HypertextTestbed/papers/60.html

Orbited Drawing Example

here

Extremely simple, it actually only works well under Safari at the moment.  Packaging drawings in “frames” could be one way to improve performance.  You’ll need to at least get the orbited 0.7 tutorial working on your local machine.  Once you do running this should be a cinch.   Let me know of any troubles you all have getting it working.

Class 9 Notes

class9pub

Comet & Orbited

For those of you working on projects that would benefit from bidirectional communication you should check out Orbited which I will go over tomorrow. You can find information about it here. The latest version is actually 0.7 which can be downloaded from here.

GitHub contrib, SSUnit

Not sure if any of you do unit testing, but I developed one that uses MooTools and posted it on GitHub, here.

Preventing console.log from breaking browsers

If you don’t want console.log or other console statements to break browsers that don’t support them you need to include this piece of Javascript before anything else:

if(!console)
{
  var console = {
    log: function() {},
    error: function() {},
    warning: function() {}
  };
}

Paul Noble

Artist who sometimes make map-like drawings.

Subversion Tutorial

Please go over this. It should work exactly as described on itp.nyu.edu. Post any questions or concerns on the class Google Group.

svn_tutorial

Class 6 Notes and Examples

Class 6 notes and examples.  The examples should work just fine if you place them in your public_html folder on itp.nyu.edu.  If they don’t, please let me know.  Try modifying at least one of these example.  For next class you should have a presentation worked out for your final project(s) (5-8 minutes).

class6pub.zip

Great tool for collaborative JS Debugging

http://jsbin.com/