12 comments

[ 1.6 ms ] story [ 39.9 ms ] thread
while letting anyone with a link view it is not a bad idea, giving anyone editing rights was certainly not a good one :)
Agreed. It works fine for Wikis, which allow you to revert trivially to previous versions.

But a vandal could easily just delete the contents of this and save it, leaving no trace.

Umm, actually you can revert to previous versions.

Google docs saves revisions of every edit: File -> Show Revision History (Could be slightly different, because i translated them from my localized google docs)

Are these compatible with the scripts from Adsense or Facebook?
"HeadJS row 9: jewish" ... umm what?
See the thread about it being set editable.
Is there really an advantage of loaders over using something like sprockets and then minifying that single script file?
It depends on what you're working on and how often it changes. If you have 8 JS files that are one single script in production, every time you change anything in any script, the user has to re-download the whole thing. If the scripts remain separate in production a change to one does not invalidate the cached versions of the others, so they don't have to be re-downloaded.

Again it depends on the sizes of the files and how often they change, but ideally you could define your core JS that would be loaded first, and then asynchronously load the rest of the JS that might not be needed, or at least not be needed on the initial page load.