Category: Prototype

link
2

At long last: Prototype has an actual web site. With documentation. There’s plenty more to say, and I’ll save it for a longer post, but Justin Palmer is owed some major kudos for working so hard on the site. And so do Chris, Tobie, and Mislav — the three newest members of Prototype Core — who poured their hearts and souls into documentation.

code

Code: Prototype Auto-build TextMate Command

Bind to ⌘S. Will execute rake dist automatically if you just saved a file in the src directory.

#!/usr/bin/env ruby

# Save: Current File
# Input: None
# Output: Discard
# Scope: source.js.prototype

FILE = ENV['TM_FILEPATH']
DIR  = File.dirname(FILE)
if (DIR =~ /\/src$/)
  basedir = DIR.gsub(/\/src$/, '')
  Dir.chdir(basedir)
  `/usr/local/bin/rake dist -f #{basedir}/Rakefile`
end
thought

Sam Foster and I are once again leading a JavaScript discussion for Refresh Austin — this time focusing on the major libraries and on practical problem‐solving. Show up tonight at 7pm for the Dojo vs. Prototype girly slap‐fight! You won’t be disappointed.

With Ajax Having Been Experienced…

Posted in Articles, Prototype

That’s right — I just used the perfect passive participle. Deal with it. Everyone else is doing it, so I suppose I have to do a postmortem on The Ajax Experience. IE.next and JavaScript The just‐released Internet Explorer 7 features only a few crumbs for JavaScript developers, so I respect Chris Wilson

Read more →