- good will hunting
- bill cunningham newyork
- argo
- a beautiful mind
http://en.wikipedia.org/wiki/Independent_Spirit_Award_for_Best_First_Screenplay
http://en.wikipedia.org/wiki/Independent_Spirit_Award_for_Best_First_Screenplay
| var express = require('express'), | |
| wine = require('./routes/wines'); | |
| var app = express(); | |
| app.configure(function () { | |
| app.use(express.logger('dev')); /* 'default', 'short', 'tiny', 'dev' */ | |
| app.use(express.bodyParser()); | |
| }); |
| body { | |
| white-space: pre; | |
| font-family: monospace; | |
| font-family: inconsolata; | |
| background: #042029; | |
| color: #819090; | |
| } | |
| .property { | |
| font-weight: normal; |
| (function(exports) { | |
| var object1 = { name : 'daniel' }; | |
| // make a reference to the local variable | |
| exports.globalObject = { reference : object1 }; | |
| })(window); |