Dance with me

Dance Chalat is loading.

Depending on your connection speed, it may take up to a minute ...

If you get a Unresponsive script warning, please click "Continue"

Requires Javascript.

TiddlyWiki - a reusable non-linear personal web notebook
!Options used by UploadPlugin\nUsername: <<option txtUploadUserName>>\nPassword: <<option pasUploadPassword>>\n\nUrl of the UploadService script^^(1)^^: <<option txtUploadStoreUrl 50>>\nRelative Directory where to store the file^^(2)^^: <<option txtUploadDir 50>>\nFilename of the uploaded file^^(3)^^: <<option txtUploadFilename 40>>\nDirectory to backup file on webserver^^(4)^^: <<option txtUploadBackupDir>>\n\n^^(1)^^Mandatory either in UploadOptions or in macro parameter\n^^(2)^^If empty stores in the script directory\n^^(3)^^If empty takes the actual filename\n^^(4)^^If empty existing file with same name on webserver will be overwritten\n\n<<upload>> with these options.\n\n!Upload Macro parameters\n{{{\n<<upload [storeUrl [toFilename [backupDir [uploadDir [username]]]]]>>\n Optional positional parameters can be passed to overwrite \n UploadOptions. \n}}}\n\n
/***\n|''Name:''|UploadPlugin|\n|''Description:''|Save to web a TiddlyWiki|\n|''Version:''|3.4.5|\n|''Date:''|Oct 15, 2006|\n|''Source:''|http://tiddlywiki.bidix.info/#UploadPlugin|\n|''Documentation:''|http://tiddlywiki.bidix.info/#UploadDoc|\n|''Author:''|BidiX (BidiX (at) bidix (dot) info)|\n|''License:''|[[BSD open source license|http://tiddlywiki.bidix.info/#%5B%5BBSD%20open%20source%20license%5D%5D ]]|\n|''~CoreVersion:''|2.0.0|\n|''Browser:''|Firefox 1.5; InternetExplorer 6.0; Safari|\n|''Include:''|config.lib.file; config.lib.log; config.lib.options; PasswordTweak|\n|''Require:''|[[UploadService|http://tiddlywiki.bidix.info/#UploadService]]|\n***/\n//{{{\nversion.extensions.UploadPlugin = {\n major: 3, minor: 4, revision: 5, \n date: new Date(2006,9,15),\n source: 'http://tiddlywiki.bidix.info/#UploadPlugin',\n documentation: 'http://tiddlywiki.bidix.info/#UploadDoc',\n author: 'BidiX (BidiX (at) bidix (dot) info',\n license: '[[BSD open source license|http://tiddlywiki.bidix.info/#%5B%5BBSD%20open%20source%20license%5D%5D]]',\n coreVersion: '2.0.0',\n browser: 'Firefox 1.5; InternetExplorer 6.0; Safari'\n};\n//}}}\n\n////+++!![config.lib.file]\n\n//{{{\nif (!config.lib) config.lib = {};\nif (!config.lib.file) config.lib.file= {\n author: 'BidiX',\n version: {major: 0, minor: 1, revision: 0}, \n date: new Date(2006,3,9)\n};\nconfig.lib.file.dirname = function (filePath) {\n var lastpos;\n if ((lastpos = filePath.lastIndexOf("/")) != -1) {\n return filePath.substring(0, lastpos);\n } else {\n return filePath.substring(0, filePath.lastIndexOf("\s\s"));\n }\n};\nconfig.lib.file.basename = function (filePath) {\n var lastpos;\n if ((lastpos = filePath.lastIndexOf("#")) != -1) \n filePath = filePath.substring(0, lastpos);\n if ((lastpos = filePath.lastIndexOf("/")) != -1) {\n return filePath.substring(lastpos + 1);\n } else\n return filePath.substring(filePath.lastIndexOf("\s\s")+1);\n};\nwindow.basename = function() {return "@@deprecated@@";};\n//}}}\n////===\n\n////+++!![config.lib.log]\n\n//{{{\nif (!config.lib) config.lib = {};\nif (!config.lib.log) config.lib.log= {\n author: 'BidiX',\n version: {major: 0, minor: 1, revision: 1}, \n date: new Date(2006,8,19)\n};\nconfig.lib.Log = function(tiddlerTitle, logHeader) {\n if (version.major < 2)\n this.tiddler = store.tiddlers[tiddlerTitle];\n else\n this.tiddler = store.getTiddler(tiddlerTitle);\n if (!this.tiddler) {\n this.tiddler = new Tiddler();\n this.tiddler.title = tiddlerTitle;\n this.tiddler.text = "| !date | !user | !location |" + logHeader;\n this.tiddler.created = new Date();\n this.tiddler.modifier = config.options.txtUserName;\n this.tiddler.modified = new Date();\n if (version.major < 2)\n store.tiddlers[tiddlerTitle] = this.tiddler;\n else\n store.addTiddler(this.tiddler);\n }\n return this;\n};\n\nconfig.lib.Log.prototype.newLine = function (line) {\n var now = new Date();\n var newText = "| ";\n newText += now.getDate()+"/"+(now.getMonth()+1)+"/"+now.getFullYear() + " ";\n newText += now.getHours()+":"+now.getMinutes()+":"+now.getSeconds()+" | ";\n newText += config.options.txtUserName + " | ";\n var location = document.location.toString();\n var filename = config.lib.file.basename(location);\n if (!filename) filename = '/';\n newText += "[["+filename+"|"+location + "]] |";\n this.tiddler.text = this.tiddler.text + "\sn" + newText;\n this.addToLine(line);\n};\n\nconfig.lib.Log.prototype.addToLine = function (text) {\n this.tiddler.text = this.tiddler.text + text;\n this.tiddler.modifier = config.options.txtUserName;\n this.tiddler.modified = new Date();\n if (version.major < 2)\n store.tiddlers[this.tiddler.tittle] = this.tiddler;\n else {\n store.addTiddler(this.tiddler);\n story.refreshTiddler(this.tiddler.title);\n store.notify(this.tiddler.title, true);\n }\n if (version.major < 2)\n store.notifyAll(); \n};\n//}}}\n////===\n\n////+++!![config.lib.options]\n\n//{{{\nif (!config.lib) config.lib = {};\nif (!config.lib.options) config.lib.options = {\n author: 'BidiX',\n version: {major: 0, minor: 1, revision: 0}, \n date: new Date(2006,3,9)\n};\n\nconfig.lib.options.init = function (name, defaultValue) {\n if (!config.options[name]) {\n config.options[name] = defaultValue;\n saveOptionCookie(name);\n }\n};\n//}}}\n////===\n\n////+++!![PasswordTweak]\n\n//{{{\nversion.extensions.PasswordTweak = {\n major: 1, minor: 0, revision: 3, date: new Date(2006,8,30),\n type: 'tweak',\n source: 'http://tiddlywiki.bidix.info/#PasswordTweak'\n};\n//}}}\n/***\n!!config.macros.option\n***/\n//{{{\nconfig.macros.option.passwordCheckboxLabel = "Save this password on this computer";\nconfig.macros.option.passwordType = "password"; // password | text\n\nconfig.macros.option.onChangeOption = function(e)\n{\n var opt = this.getAttribute("option");\n var elementType,valueField;\n if(opt) {\n switch(opt.substr(0,3)) {\n case "txt":\n elementType = "input";\n valueField = "value";\n break;\n case "pas":\n elementType = "input";\n valueField = "value";\n break;\n case "chk":\n elementType = "input";\n valueField = "checked";\n break;\n }\n config.options[opt] = this[valueField];\n saveOptionCookie(opt);\n var nodes = document.getElementsByTagName(elementType);\n for(var t=0; t<nodes.length; t++) \n {\n var optNode = nodes[t].getAttribute("option");\n if (opt == optNode) \n nodes[t][valueField] = this[valueField];\n }\n }\n return(true);\n};\n\nconfig.macros.option.handler = function(place,macroName,params)\n{\n var opt = params[0];\n if(config.options[opt] === undefined) {\n return;}\n var c;\n switch(opt.substr(0,3)) {\n case "txt":\n c = document.createElement("input");\n c.onkeyup = this.onChangeOption;\n c.setAttribute ("option",opt);\n c.className = "txtOptionInput "+opt;\n place.appendChild(c);\n c.value = config.options[opt];\n break;\n case "pas":\n // input password\n c = document.createElement ("input");\n c.setAttribute("type",config.macros.option.passwordType);\n c.onkeyup = this.onChangeOption;\n c.setAttribute("option",opt);\n c.className = "pasOptionInput "+opt;\n place.appendChild(c);\n c.value = config.options[opt];\n // checkbox link with this password "save this password on this computer"\n c = document.createElement("input");\n c.setAttribute("type","checkbox");\n c.onclick = this.onChangeOption;\n c.setAttribute("option","chk"+opt);\n c.className = "chkOptionInput "+opt;\n place.appendChild(c);\n c.checked = config.options["chk"+opt];\n // text savePasswordCheckboxLabel\n place.appendChild(document.createTextNode(config.macros.option.passwordCheckboxLabel));\n break;\n case "chk":\n c = document.createElement("input");\n c.setAttribute("type","checkbox");\n c.onclick = this.onChangeOption;\n c.setAttribute("option",opt);\n c.className = "chkOptionInput "+opt;\n place.appendChild(c);\n c.checked = config.options[opt];\n break;\n }\n};\n//}}}\n/***\n!! Option cookie stuff\n***/\n//{{{\nwindow.loadOptionsCookie_orig_PasswordTweak = window.loadOptionsCookie;\nwindow.loadOptionsCookie = function()\n{\n var cookies = document.cookie.split(";");\n for(var c=0; c<cookies.length; c++) {\n var p = cookies[c].indexOf("=");\n if(p != -1) {\n var name = cookies[c].substr(0,p).trim();\n var value = cookies[c].substr(p+1).trim();\n switch(name.substr(0,3)) {\n case "txt":\n config.options[name] = unescape(value);\n break;\n case "pas":\n config.options[name] = unescape(value);\n break;\n case "chk":\n config.options[name] = value == "true";\n break;\n }\n }\n }\n};\n\nwindow.saveOptionCookie_orig_PasswordTweak = window.saveOptionCookie;\nwindow.saveOptionCookie = function(name)\n{\n var c = name + "=";\n switch(name.substr(0,3)) {\n case "txt":\n c += escape(config.options[name].toString());\n break;\n case "chk":\n c += config.options[name] ? "true" : "false";\n // is there an option link with this chk ?\n if (config.options[name.substr(3)]) {\n saveOptionCookie(name.substr(3));\n }\n break;\n case "pas":\n if (config.options["chk"+name]) {\n c += escape(config.options[name].toString());\n } else {\n c += "";\n }\n break;\n }\n c += "; expires=Fri, 1 Jan 2038 12:00:00 UTC; path=/";\n document.cookie = c;\n};\n//}}}\n/***\n!! Initializations\n***/\n//{{{\n// define config.options.pasPassword\nif (!config.options.pasPassword) {\n config.options.pasPassword = 'defaultPassword';\n window.saveOptionCookie('pasPassword');\n}\n// since loadCookies is first called befor password definition\n// we need to reload cookies\nwindow.loadOptionsCookie();\n//}}}\n////===\n\n////+++!![config.macros.upload]\n\n//{{{\nconfig.macros.upload = {\n accessKey: "U",\n formName: "UploadPlugin",\n contentType: "text/html;charset=UTF-8",\n defaultStoreScript: "store.php"\n};\n\n// only this two configs need to be translated\nconfig.macros.upload.messages = {\n aboutToUpload: "About to upload TiddlyWiki to %0",\n backupFileStored: "Previous file backuped in %0",\n crossDomain: "Certainly a cross-domain isue: access to an other site isn't allowed",\n errorDownloading: "Error downloading",\n errorUploadingContent: "Error uploading content",\n fileLocked: "Files is locked: You are not allowed to Upload",\n fileNotFound: "file to upload not found",\n fileNotUploaded: "File %0 NOT uploaded",\n mainFileUploaded: "Main TiddlyWiki file uploaded to %0",\n passwordEmpty: "Unable to upload, your password is empty",\n urlParamMissing: "url param missing",\n rssFileNotUploaded: "RssFile %0 NOT uploaded",\n rssFileUploaded: "Rss File uploaded to %0"\n};\n\nconfig.macros.upload.label = {\n promptOption: "Save and Upload this TiddlyWiki with UploadOptions",\n promptParamMacro: "Save and Upload this TiddlyWiki in %0",\n saveLabel: "save to web", \n saveToDisk: "save to disk",\n uploadLabel: "upload" \n};\n\nconfig.macros.upload.handler = function(place,macroName,params){\n // parameters initialization\n var storeUrl = params[0];\n var toFilename = params[1];\n var backupDir = params[2];\n var uploadDir = params[3];\n var username = params[4];\n var password; // for security reason no password as macro parameter\n var label;\n if (document.location.toString().substr(0,4) == "http")\n label = this.label.saveLabel;\n else\n label = this.label.uploadLabel;\n var prompt;\n if (storeUrl) {\n prompt = this.label.promptParamMacro.toString().format([this.toDirUrl(storeUrl, uploadDir, username)]);\n }\n else {\n prompt = this.label.promptOption;\n }\n createTiddlyButton(place, label, prompt, \n function () {\n config.macros.upload.upload(storeUrl, toFilename, uploadDir, backupDir, username, password); \n return false;}, \n null, null, this.accessKey);\n};\nconfig.macros.upload.UploadLog = function() {\n return new config.lib.Log('UploadLog', " !storeUrl | !uploadDir | !toFilename | !backupdir | !origin |" );\n};\nconfig.macros.upload.UploadLog.prototype = config.lib.Log.prototype;\nconfig.macros.upload.UploadLog.prototype.startUpload = function(storeUrl, toFilename, uploadDir, backupDir) {\n var line = " [[" + config.lib.file.basename(storeUrl) + "|" + storeUrl + "]] | ";\n line += uploadDir + " | " + toFilename + " | " + backupDir + " |";\n this.newLine(line);\n};\nconfig.macros.upload.UploadLog.prototype.endUpload = function() {\n this.addToLine(" Ok |");\n};\nconfig.macros.upload.basename = config.lib.file.basename;\nconfig.macros.upload.dirname = config.lib.file.dirname;\nconfig.macros.upload.toRootUrl = function (storeUrl, username)\n{\n return root = (this.dirname(storeUrl)?this.dirname(storeUrl):this.dirname(document.location.toString()));\n}\nconfig.macros.upload.toDirUrl = function (storeUrl, uploadDir, username)\n{\n var root = this.toRootUrl(storeUrl, username);\n if (uploadDir && uploadDir != '.')\n root = root + '/' + uploadDir;\n return root;\n}\nconfig.macros.upload.toFileUrl = function (storeUrl, toFilename, uploadDir, username)\n{\n return this.toDirUrl(storeUrl, uploadDir, username) + '/' + toFilename;\n}\nconfig.macros.upload.upload = function(storeUrl, toFilename, uploadDir, backupDir, username, password)\n{\n // parameters initialization\n storeUrl = (storeUrl ? storeUrl : config.options.txtUploadStoreUrl);\n toFilename = (toFilename ? toFilename : config.options.txtUploadFilename);\n backupDir = (backupDir ? backupDir : config.options.txtUploadBackupDir);\n uploadDir = (uploadDir ? uploadDir : config.options.txtUploadDir);\n username = (username ? username : config.options.txtUploadUserName);\n password = config.options.pasUploadPassword; // for security reason no password as macro parameter\n if (!password || password === '') {\n alert(config.macros.upload.messages.passwordEmpty);\n return;\n }\n if (storeUrl === '') {\n storeUrl = config.macros.upload.defaultStoreScript;\n }\n if (config.lib.file.dirname(storeUrl) === '') {\n storeUrl = config.lib.file.dirname(document.location.toString())+'/'+storeUrl;\n }\n if (toFilename === '') {\n toFilename = config.lib.file.basename(document.location.toString());\n }\n\n clearMessage();\n // only for forcing the message to display\n if (version.major < 2)\n store.notifyAll();\n if (!storeUrl) {\n alert(config.macros.upload.messages.urlParamMissing);\n return;\n }\n // Check that file is not locked\n if (window.BidiX && BidiX.GroupAuthoring && BidiX.GroupAuthoring.lock) {\n if (BidiX.GroupAuthoring.lock.isLocked() && !BidiX.GroupAuthoring.lock.isMyLock()) {\n alert(config.macros.upload.messages.fileLocked);\n return;\n }\n }\n \n var log = new this.UploadLog();\n log.startUpload(storeUrl, toFilename, uploadDir, backupDir);\n if (document.location.toString().substr(0,5) == "file:") {\n saveChanges();\n }\n var toDir = config.macros.upload.toDirUrl(storeUrl, toFilename, uploadDir, username);\n displayMessage(config.macros.upload.messages.aboutToUpload.format([toDir]), toDir);\n this.uploadChanges(storeUrl, toFilename, uploadDir, backupDir, username, password);\n if(config.options.chkGenerateAnRssFeed) {\n //var rssContent = convertUnicodeToUTF8(generateRss());\n var rssContent = generateRss();\n var rssPath = toFilename.substr(0,toFilename.lastIndexOf(".")) + ".xml";\n this.uploadContent(rssContent, storeUrl, rssPath, uploadDir, '', username, password, \n function (responseText) {\n if (responseText.substring(0,1) != '0') {\n displayMessage(config.macros.upload.messages.rssFileNotUploaded.format([rssPath]));\n }\n else {\n var toFileUrl = config.macros.upload.toFileUrl(storeUrl, rssPath, uploadDir, username);\n displayMessage(config.macros.upload.messages.rssFileUploaded.format(\n [toFileUrl]), toFileUrl);\n }\n // for debugging store.php uncomment last line\n //DEBUG alert(responseText);\n });\n }\n return;\n};\n\nconfig.macros.upload.uploadChanges = function(storeUrl, toFilename, uploadDir, backupDir, \n username, password) {\n var original;\n if (document.location.toString().substr(0,4) == "http") {\n original = this.download(storeUrl, toFilename, uploadDir, backupDir, username, password);\n return;\n }\n else {\n // standard way : Local file\n \n original = loadFile(getLocalPath(document.location.toString()));\n if(window.Components) {\n // it's a mozilla browser\n try {\n netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");\n var converter = Components.classes["@mozilla.org/intl/scriptableunicodeconverter"]\n .createInstance(Components.interfaces.nsIScriptableUnicodeConverter);\n converter.charset = "UTF-8";\n original = converter.ConvertToUnicode(original);\n }\n catch(e) {\n }\n }\n }\n //DEBUG alert(original);\n this.uploadChangesFrom(original, storeUrl, toFilename, uploadDir, backupDir, \n username, password);\n};\n\nconfig.macros.upload.uploadChangesFrom = function(original, storeUrl, toFilename, uploadDir, backupDir, \n username, password) {\n var startSaveArea = '<div id="' + 'storeArea">'; // Split up into two so that indexOf() of this source doesn't find it\n var endSaveArea = '</d' + 'iv>';\n // Locate the storeArea div's\n var posOpeningDiv = original.indexOf(startSaveArea);\n var posClosingDiv = original.lastIndexOf(endSaveArea);\n if((posOpeningDiv == -1) || (posClosingDiv == -1))\n {\n alert(config.messages.invalidFileError.format([document.location.toString()]));\n return;\n }\n var revised = original.substr(0,posOpeningDiv + startSaveArea.length) + \n allTiddlersAsHtml() + "\sn\st\st" +\n original.substr(posClosingDiv);\n var newSiteTitle;\n if(version.major < 2){\n newSiteTitle = (getElementText("siteTitle") + " - " + getElementText("siteSubtitle")).htmlEncode();\n } else {\n newSiteTitle = (wikifyPlain ("SiteTitle") + " - " + wikifyPlain ("SiteSubtitle")).htmlEncode();\n }\n\n revised = revised.replaceChunk("<title"+">","</title"+">"," " + newSiteTitle + " ");\n revised = revised.replaceChunk("<!--PRE-HEAD-START--"+">","<!--PRE-HEAD-END--"+">","\sn" + store.getTiddlerText("MarkupPreHead","") + "\sn");\n revised = revised.replaceChunk("<!--POST-HEAD-START--"+">","<!--POST-HEAD-END--"+">","\sn" + store.getTiddlerText("MarkupPostHead","") + "\sn");\n revised = revised.replaceChunk("<!--PRE-BODY-START--"+">","<!--PRE-BODY-END--"+">","\sn" + store.getTiddlerText("MarkupPreBody","") + "\sn");\n revised = revised.replaceChunk("<!--POST-BODY-START--"+">","<!--POST-BODY-END--"+">","\sn" + store.getTiddlerText("MarkupPostBody","") + "\sn");\n\n var response = this.uploadContent(revised, storeUrl, toFilename, uploadDir, backupDir, \n username, password, function (responseText) {\n if (responseText.substring(0,1) != '0') {\n alert(responseText);\n displayMessage(config.macros.upload.messages.fileNotUploaded.format([getLocalPath(document.location.toString())]));\n }\n else {\n if (uploadDir !== '') {\n toFilename = uploadDir + "/" + config.macros.upload.basename(toFilename);\n } else {\n toFilename = config.macros.upload.basename(toFilename);\n }\n var toFileUrl = config.macros.upload.toFileUrl(storeUrl, toFilename, uploadDir, username);\n if (responseText.indexOf("destfile:") > 0) {\n var destfile = responseText.substring(responseText.indexOf("destfile:")+9, \n responseText.indexOf("\sn", responseText.indexOf("destfile:")));\n toFileUrl = config.macros.upload.toRootUrl(storeUrl, username) + '/' + destfile;\n }\n else {\n toFileUrl = config.macros.upload.toFileUrl(storeUrl, toFilename, uploadDir, username);\n }\n displayMessage(config.macros.upload.messages.mainFileUploaded.format(\n [toFileUrl]), toFileUrl);\n if (backupDir && responseText.indexOf("backupfile:") > 0) {\n var backupFile = responseText.substring(responseText.indexOf("backupfile:")+11, \n responseText.indexOf("\sn", responseText.indexOf("backupfile:")));\n toBackupUrl = config.macros.upload.toRootUrl(storeUrl, username) + '/' + backupFile;\n displayMessage(config.macros.upload.messages.backupFileStored.format(\n [toBackupUrl]), toBackupUrl);\n }\n var log = new config.macros.upload.UploadLog();\n log.endUpload();\n store.setDirty(false);\n // erase local lock\n if (window.BidiX && BidiX.GroupAuthoring && BidiX.GroupAuthoring.lock) {\n BidiX.GroupAuthoring.lock.eraseLock();\n // change mtime with new mtime after upload\n var mtime = responseText.substr(responseText.indexOf("mtime:")+6);\n BidiX.GroupAuthoring.lock.mtime = mtime;\n }\n \n \n }\n // for debugging store.php uncomment last line\n //DEBUG alert(responseText);\n }\n );\n};\n\nconfig.macros.upload.uploadContent = function(content, storeUrl, toFilename, uploadDir, backupDir, \n username, password, callbackFn) {\n var boundary = "---------------------------"+"AaB03x"; \n var request;\n try {\n request = new XMLHttpRequest();\n } \n catch (e) { \n request = new ActiveXObject("Msxml2.XMLHTTP"); \n }\n if (window.netscape){\n try {\n if (document.location.toString().substr(0,4) != "http") {\n netscape.security.PrivilegeManager.enablePrivilege('UniversalBrowserRead');}\n }\n catch (e) {}\n } \n //DEBUG alert("user["+config.options.txtUploadUserName+"] password[" + config.options.pasUploadPassword + "]");\n // compose headers data\n var sheader = "";\n sheader += "--" + boundary + "\sr\snContent-disposition: form-data; name=\s"";\n sheader += config.macros.upload.formName +"\s"\sr\sn\sr\sn";\n sheader += "backupDir="+backupDir\n +";user=" + username \n +";password=" + password\n +";uploaddir=" + uploadDir;\n // add lock attributes to sheader\n if (window.BidiX && BidiX.GroupAuthoring && BidiX.GroupAuthoring.lock) {\n var l = BidiX.GroupAuthoring.lock.myLock;\n sheader += ";lockuser=" + l.user\n + ";mtime=" + l.mtime\n + ";locktime=" + l.locktime;\n }\n sheader += ";;\sr\sn"; \n sheader += "\sr\sn" + "--" + boundary + "\sr\sn";\n sheader += "Content-disposition: form-data; name=\s"userfile\s"; filename=\s""+toFilename+"\s"\sr\sn";\n sheader += "Content-Type: " + config.macros.upload.contentType + "\sr\sn";\n sheader += "Content-Length: " + content.length + "\sr\sn\sr\sn";\n // compose trailer data\n var strailer = new String();\n strailer = "\sr\sn--" + boundary + "--\sr\sn";\n //strailer = "--" + boundary + "--\sr\sn";\n var data;\n data = sheader + content + strailer;\n //request.open("POST", storeUrl, true, username, password);\n try {\n request.open("POST", storeUrl, true); \n }\n catch(e) {\n alert(config.macros.upload.messages.crossDomain + "\snError:" +e);\n exit;\n }\n request.onreadystatechange = function () {\n if (request.readyState == 4) {\n if (request.status == 200)\n callbackFn(request.responseText);\n else\n alert(config.macros.upload.messages.errorUploadingContent + "\snStatus: "+request.status.statusText);\n }\n };\n request.setRequestHeader("Content-Length",data.length);\n request.setRequestHeader("Content-Type","multipart/form-data; boundary="+boundary);\n request.send(data); \n};\n\n\nconfig.macros.upload.download = function(uploadUrl, uploadToFilename, uploadDir, uploadBackupDir, \n username, password) {\n var request;\n try {\n request = new XMLHttpRequest();\n } \n catch (e) { \n request = new ActiveXObject("Msxml2.XMLHTTP"); \n }\n try {\n if (uploadUrl.substr(0,4) == "http") {\n netscape.security.PrivilegeManager.enablePrivilege("UniversalBrowserRead");\n }\n else {\n netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");\n }\n } catch (e) { }\n //request.open("GET", document.location.toString(), true, username, password);\n try {\n request.open("GET", document.location.toString(), true);\n }\n catch(e) {\n alert(config.macros.upload.messages.crossDomain + "\snError:" +e);\n exit;\n }\n \n request.onreadystatechange = function () {\n if (request.readyState == 4) {\n if(request.status == 200) {\n config.macros.upload.uploadChangesFrom(request.responseText, uploadUrl, \n uploadToFilename, uploadDir, uploadBackupDir, username, password);\n }\n else\n alert(config.macros.upload.messages.errorDownloading.format(\n [document.location.toString()]) + "\snStatus: "+request.status.statusText);\n }\n };\n request.send(null);\n};\n\n//}}}\n////===\n\n////+++!![Initializations]\n\n//{{{\nconfig.lib.options.init('txtUploadStoreUrl','store.php');\nconfig.lib.options.init('txtUploadFilename','');\nconfig.lib.options.init('txtUploadDir','');\nconfig.lib.options.init('txtUploadBackupDir','');\nconfig.lib.options.init('txtUploadUserName',config.options.txtUserName);\nconfig.lib.options.init('pasUploadPassword','');\nsetStylesheet(\n ".pasOptionInput {width: 11em;}\sn"+\n ".txtOptionInput.txtUploadStoreUrl {width: 25em;}\sn"+\n ".txtOptionInput.txtUploadFilename {width: 25em;}\sn"+\n ".txtOptionInput.txtUploadDir {width: 25em;}\sn"+\n ".txtOptionInput.txtUploadBackupDir {width: 25em;}\sn"+\n "",\n "UploadOptionsStyles");\nif (document.location.toString().substr(0,4) == "http") {\n config.options.chkAutoSave = false; \n saveOptionCookie('chkAutoSave');\n}\nconfig.shadowTiddlers.UploadDoc = "[[Full Documentation|http://tiddlywiki.bidix.info/l#UploadDoc ]]\sn"; \n\n//}}}\n////===\n\n////+++!![Core Hijacking]\n\n//{{{\nconfig.macros.saveChanges.label_orig_UploadPlugin = config.macros.saveChanges.label;\nconfig.macros.saveChanges.label = config.macros.upload.label.saveToDisk;\n\nconfig.macros.saveChanges.handler_orig_UploadPlugin = config.macros.saveChanges.handler;\n\nconfig.macros.saveChanges.handler = function(place)\n{\n if ((!readOnly) && (document.location.toString().substr(0,4) != "http"))\n createTiddlyButton(place,this.label,this.prompt,this.onClick,null,null,this.accessKey);\n};\n\n//}}}\n////===\n
Type the text for 'New Tiddler'
* UPGRADE: TW2.1.2, still compatible with TW 2.0.x (note: LegacyStrikeThrough plugin is not included)\n* IMPROVEMENT: password now encrypted with SHA1 for improved security\n* IMPROVEMENT: Display result of action directly from feedback of msghandle.php via displayMessage\n* IMPROVEMENT (CONFIG): add reqLogin, display blank page for anonymous users\n* IMPROVEMENT: AJAX support\n* IMPROVEMENT: auto-clear display message after certain time (debug mode would leave it open)\n* IMPROVEMENT: convert uploadStoreArea and uploadRSS to marco button to reduce confusion\n* IMPROVEMENT: ccT now works with BidiX's uploadPlugin\n* IMPROVEMENT: automatically add uploadPlugin and uploadButton for easy conversion between standalone and online version ccT\n* IMPROVEMENT: filter tiddler with tags/tag search. use + and - to separate tags, no need for ] ] and [ [ for multi-word tag, - in front of tag to remove suggested by ocat\n* IMPROVEMENT: logout button to clear username and password cookie\n* CHANGES: change saveChanges to autoupload RSS\n* CODE: move part of the code (generic) to serverside.js\n* CODE: change saveTiddler and deleteTiddler (PHP version) to use error code\n* CODE: change parameter in user_tiddlerPrivilegeOfUser\n* CODE: user_*Privilege now return BOOL\n* CODE: developing only sees -1, 0 and 1. All value default to 0 except when -1 and developing passed via GET\n* BUG: username and password cookie do not work properly under subdirectory (non-root) due to TW set its path to root by default\n* BUG: extra line-break appended to tiddlers after import/upload\n* BUG: special characters (such as ' and ") not supported in title\n* BUG: UTF-8 settings didn't have any effect
* Dance Chalat - kid produced (Sept 10, 2006) [M]\n* WikiLecture\n** LectureChecklist\n** LectureBio\n* CommunityDancing\n* first DanceWorkshop in Thailand (Oct 22, 2006) [M]\n* EmotionalBankAccount\n* flyers/handouts (1st iteration)\n* first VCD created by kids for HomeIntro with parents\n* DanceLabs 1 page executive overview\n* DanceChalat WebSite prototype [C] (based on GTDTiddlyWiki)
* [[Collaborative Environments for Effective Project Management|http://www.dancelabs.com/doc/ict]] ([[prep|http://www.writely.com/Doc.aspx?id=acfbv7hvsjm6_25gcnwdb]]) \n
! Events\n* see uncommitted items in [[%Events]] register\n\n! Community\n* OmidyarNetwork group workspace //collaborative outcome?//\n* refine our [[values|http://www.omidyar.net/group/dancelabs/ws/Values]]\n* publish a newsletter monthly //constrast to blog-driven//\n* [[WebSite]] [P]\n** syndicate DanceInnovationNews\n** //include transition plan - if applicable//\n* Dance Chalat channel (mg)\n\n! Presence\n* http://www.aboutus.org/DanceLabs.com (next Google!)\n* Dance Labs wikipedia entry ([[article|http://tinyurl.com/fweoo]])\n\n! Training and Support\n* [[15.967 Managing and Volunteering In the Non-Profit Sector, Spring 2005|http://ocw.mit.edu/OcwWeb/Sloan-School-of-Management/15-967Spring-2005/CourseHome/index.htm]]\n* ProjectManagement class || PMP certification\n* zaadz.com - Working for Good Cirriculum ([[biz plan contest|http://www.zaadz.com/survey/take/working_for_good_business_plan_contest]])\n\n! Management\n* OpenBusinessModel\n* BusinessCoach\n* BusinessPlan (v2)\n* CMMILevel2: OrganizationalPolicy\n* [[P-CMM|http://tinyurl.com/nu3rs]]\n* OPM3 certified\n* GTDBinder (physical) [C]\n* IntegrityStructures\n\n! Office\n* clean up file cabinet - recontextualize project folders as needed\n\n! AdminOperations\n* ChangeRequestSystem (collector || ''Trac'')\n* version control (evolves into Office 2.0 applications)\n* CRM system (be sure to populate and checkin with folks who have shown previous interest)\n** CiviCRM (Drupal version looks promising for starters; data exportable?)\n** salesforce.com (foundation gives 10 licenses to legitimate non-profits, Enterprise support)\n* design of A/V process (pictures, video, etc)\n* note completion process [P?] (meetings)\n\n! Documentation\n* [[DJ]]'s guide to coordinating with dance catalysts\n* transform FreedomToAsk into a ''joint'' guide\n\n! Enrollment\n* Portfolio - various printouts (web page snapshots, overview, CV, pictures, other related projects)\n* WhitePaper/CaseStudy (business services)\n* DanceCard (ref: Kuoh's design pre-BurningMan)\n* Dance Chalat LogoDesign\n* Branding [J]\n* PhysicalAppearance\n* CourseSyllabus\n\n! Technology\n* automated "checkin" script for all wikis [defer to ZiddlyWiki]\n\n! Fulfillment\n* review feedback from Jan 2002 workshop (need to find forms) (not in gmail/Y! acct since Nov 2003)\n\n! Purchases\n* IT (~DVD-R, ~CD-RW blank media)\n* art supplies\n** eraser(s)\n** oil pastels (48?)\n
could clearly turn this into an EventCalendar soon...\n\n! Participate\n* IndianDance (Kasetsart University, Dec 2007)\n\n! Proposed\n* TimelessArt - BaanSuanThon HomeIntro (proposal drafted)\n\n! Suspended\n* weekly DanceExperiment in ThonburiPark every sunday\n* Bangkok International ArtsFestival\n\n! Seeking Coordinator\n* DanceDay, April 28\n* [[Earthdance]] (Sept 14)\n* BurningMan, Aug 2008 (arts, theme camp)\n\n! Incubating\n* DanceFusion (performance)\n* Kanachaburi RiverRaftLaunchParty (celebration)\n* 1M person DanceMarch in Washington DC (political)\n* the DanceConnection (dating)\n* DanceAThon (benefit)\n\n! Research\n* International Computer Music Conference (Aug 27-Sept 1, Copenhagen)\n* DancersWithNoFrontiers (Sept 12-15, Athens)\n
these are ''major'' 3 month non-event deliverables:\n\n* [[Foundation]]\n* [[Grant]]\n\nsee [[our portfolio|&Portfolio]] for higher order initiatives\nalso see our [[%Events]] register for on-the-ground initiatives
synchronicity has it this event is planned by LandmarkEducation\n\nour initial vision for a DanceCelebration
This exposes DanceChalat's "dance" with DanceLabs - no hierarchy here kids - it's a partnership in being!\n\n* SelfSustainable - gotta ''be'' bread on the table\n* [[Foundation]] - make it rock solid like the earth\n* CommunityDancing - keep our space fun!\n\nSee our OutcomeMatrix overseeing outcomes we envision.\n\nSee our RoleMatrix to see areas of responsibilities we envision.
this "flow" is from our 2nd experiment with the kids (Sept 3, 2006)\n* intro\n* stretch [Chalip]\n* my name my style\n* who's leading\n* break\n* ''isolation'' //xpander edit//\n* ''demo'' //lazy dog//\n* salsa\n* break (lunch)\n* relocate [Chalip]\n* spheres\n* rabbit\n* playground (free)\n* pictures (free)\n* share\n* intro (to new parents)\n* group picture\n* relocate (old location)\n* my name my style [Morn]\n* train (to baan suan thon)\n
universal principles developed by StephenCovey\n\n|!Habit|!Outcome|\n|Be Proactive|EmotionalBankAccount|\n|Begin with the End in Mind|SourceDocument, MissionStatement, DanceChalatCheer, CommunityDancing|\n|First Things First||\n|Think Win Win||\n|Seek First to Understand||\n|Synergize||\n|Sharpen The Saw||\n
! Morn\n!! Now\n\n!! Weekly\n\n!! Not now\n* LifePartner ([[worksheet|http://partner.dancelabs.com]])\n\n! Tanya\n* @Checkin: DialDiary software\n* creativity in Thailand (in talks with TCDC?)\n* DanceChalat\n** ProgramDashboard\n** GuestTeacher - [[Mindmapping]]\n\n! Lek\n* ProgramDashboard\n\n! Pech\n
* YouthMediaProject\n
* DanceExchange\n** toolbox synergy\n* BaanSuanThon management office\n** clear re: [[Foundation]] on premises [word is "no noise"...]\n** community center (cost, guidelines, availability) [need fixing]\n** services provided to condo owners? [NOOP]\n
* whiteboard hooks\n* exchange 3eBK for PCI-5BK (IT city, Fortune)\n
Sarah was great to point us to the work of LizLerman\n\n!Resources\n* CriticalResponseProcess we intend to experiment with.\n* [[Toolbox|http://www.danceexchange.org/toolbox/]] resource that complements our BuildingBlocks with a dose of formality and professionalism!\n
* VolunteerCoordinator\n* ProjectManager\n* BusinessDeveloper\n
!to Thai\n* DanceLabs overview\n* DanceChalat overview\n\n!to English\n* Invitation to Bangkok International Art Festival\n
* K. Pongtada - temp Foundation status\n* JJ - EN ArtsFestival enrollment letter\n* Oey - Gary's contact info\n* Pech - inkjet printer donation\n\n! media\n* Oey - HomeIntro\n* Pech - DanceCelebration\n* ? mom - DanceCelebration\n* LEC - DanceCelebration (video)
yes - we're supposed to shoehorn a financial/accounting system in here somewhere!\n\n* [[&Budget]]\n* BalanceSheet\n
has a relationship to CoveyCompass\nsource - Bob's feedback on PlanForAction (initial document given to PlanInternational)\n\n! Oct 6, 2006\n* ProgramManager\n* SustainabilityAndGrowthPartner\n\n! Oct 4, 2006\n* DanceCatalyst - CatalystsGuide\n\n! Sept 29, 2006\n* see DanceLabs\n\n! Aug 29, 2006\n* CommunityBuilder\n* FundDeveloper\n* CourseSupervisor\n* Producer\n* WellBeing Manager\n* [[DJ]]\n* Media\n** photography\n** movie\n* Reporter\n** PressRelease\n* Promoter\n\n! Sept 25, 2006\n* DanceInnovator\n* OutcomeCoordinator - OutcomeMatrix\n\n
our first workshop experience in Thailand was in fact an experiment in itself!\n\nwe asked the kids, "this hand is very intentional, straight, on target and ''very'' powerful - the other hand is new, playful, open, and flexible - which do you want?"\n\nwe got: "We want ''power''!"\n\n"well ok then!"\n\nNOTE: DesignNotation you witness below in process of invention\n\n! Pre (10 min)\n# NameTag\n[begin OpenSpace]\n[choose WorkshopFormat || ExperimentFormat] (see above)\n[begin WorkshopFormat]\n\n! Part 1 (50 min)\n# QuickIntro\n# WorkshopIntention\n# SittingMeditation\n[switch to ExperimentFormat]\n# SpiralStretch\n[switch to WorkshopFormat]\n# StretchYourBody (ยืดแข้งยืดขา) [G]\n# BeingATree [Julia]\n[switch to ExperimentFormat]\n# StandingYourOwn [FreedomToAsk]\n[switch to WorkshopFormat]\n# MyNameMyStyle (หนูชื่ออะไร) [DialoguesBetweenLifeAndArt]\n# RhythmPlay [Rufiena]\n# DanceDimensions [DialoguesBetweenLifeAndArt]\n[focus WellBeing]\n\n! break (10 min)\n# WaterBreak\n[switch to ExperimentFormat]\n\n! part 2 (50 min)\n# BeWithAnother []\n# AnyoneCanBeALeader (ใครๆก็เป็นผู้นำได้) [FreedomToAsk]\n# PointOfContact [ContactImprov]\n# DanceAllOut [inspired by LandmarkEducation]\n# PartnerShare\n\n! post (~15 min)\n# CoolDown\n[complete ExperimentFormat]\n[complete WorkshopFormat]\n[end OpenSpace]\n
The center of all our DanceChalat activities:\n\nDance Chalat\n365/1039 Buddhabuccha Rd Soi 47\nBangmod, Thungkru\nBangkok, Thailand 10140\n\nyou are welcome to visit anytime or ContactUs\n\n[[Directions]] coming soon!\n
* ProjectManagement structures [C]\n** OutcomeMatrix\n\nresource: [[Admin & Operations checklist|http://www.asia.socialtext.net/startup/index.cgi?administration_and_operations_checklist]]\n
since 1995, Chinarut fell in love with his style of [[Salsa]]. he loves to play around with dancing salsa to hip hop.\n\n* [[DVDs|http://www.alexdasilva.com/dvd/dvd.html]]\n* [[bad ass video|http://www.alexdasilva.com/videos.htm]] as to how well he teaches\n\nHe is based out of Los Angeles, CA.
<html>\n<a href="http://www.flickr.com/photos/chinarut/227113680/" title="Anyone can be a leader (ใครๆก็เป็นผู้นำได้)" target="blank_"><img src="http://static.flickr.com/73/227113680_b1b4fcd80c_m.jpg" width="240" height="180" alt="Anyone can be a leader (ใครๆก็เป็นผู้นำได้)" /></a>\n</html>\n\n! Intention\n* let go of your sense of leadership\n* reflect upon who they're being in life\n* play with others\n* experience life as a co-creative act\n* be left in a different space free to dance with others\n\n! Outcome\n* [[video|http://video.google.com/videoplay?docid=-431166900004250795]]\n\n! Guidelines\n* music is optional\n* if you choose to do this alone with your partner (or child), reflect with each other, time is typically a non-issue - play til you wanna do something else :)\n* duration: 10 min\n* Thai: ใครๆก็เป็นผู้นำได้\n\n! Steps\n# ask everyone to find a partner\n** boy/girl or same sex - it depends on your context. in general it doesn't matter\n# have each pair choose an A or B\n# ask A to be the leader, B to be the follower\n# allow everyone to move and dance for 1 minute\n** ask people to notice what it is to be a leader or a follower (ie. what is it like for you?) people need not answer just have them consider as they are doing the exercise\n# ask everyone to stop\n# ask B to be the leader, A to be the follower\n# repeat the exercise for 1 minute and ask people:\n** what is it like to be on the other side?\n** have you given up being a leader?\n** are you being with your partner?\n** what is it like to follow?\n# ask everyone to stop\n# declare "there is no leader"\n# repeat the exercise for another minute and see what happens!\n** allow enough time for people to get co-creation.\n** go up to pairs and work with them directly if it appears like one is dominating the other.\n** support people having fun with it - surprises are abound!\n\n! Completion\n# PartnerShare works great\n# acknowledge and thank everyone for playing!\n\n! Ack\n* FreedomToAsk\n
* TechnologyTable\n\n! Purchased\n* Boombox - battery operated CD player (1400)\n* mac mini (17500) + LCD (10500)\n* external HDD, DVD writer, printer (~9000)\n* surge supressor, router (~4000)\n* camera & assessories (~6000)\n* Comforto ergo chair (32000)\n* computer desk (1600)\n\n! Donated\n* web hosting space [C]\n* web domain name http://www.dancelabs.com [TK]\n* Mind Manager X5 Pro license [TP]\n* TV, DVD player, and speakers [glow]\n\n! TacitKnowledge\n* LandmarkEducation CirriculumForLiving\n* AreteExperience\n* TamalpaInstitute DialoguesBetweenLifeAndArt\n* SterlingInstitute MensWeekend\n* DavidAllen ManagingWorkflowAndPriorities\n
<html>\n<a href="http://www.flickr.com/photos/chinarut/285078510/" title="the games we play..."><img src="http://static.flickr.com/103/285078510_84db391c98_m.jpg" width="240" height="180" alt="IMG_2446.JPG" /></a>\n</html>\n\nThanks for your interest in our program!\n\nOur team stands for being connected, related, and inspired\n\nFour (4) ways you may discover your place:\n# Fill in our TeamGaps\n# Explore the RoleMatrix\n# Define a role from scratch that speaks to you\n# Dance like nobody's watching exactly where you are ;-)\n\nContactUs if you have any questions!\n\nCheers,\nThe AssistingTeam\n\n
<html>\n<!-- wondering how to remove gaps -->\n<a href="http://www.flickr.com/photos/chinarut/284784624/" title="juicy orange"><img src="http://static.flickr.com/113/284784624_92aabe7184_t.jpg" width="75" height="100" alt="juicy orange" /></a>\n\n<a href="http://www.flickr.com/photos/chinarut/284948746/" title="dance share"><img src="http://static.flickr.com/118/284948746_2fae23157b_t.jpg" width="100" height="75" alt="dance share" /></a>\n\n<a href="http://www.flickr.com/photos/chinarut/227110645/" title="skinny jeans"><img src="http://static.flickr.com/86/227110645_edabf97f65_t.jpg" width="100" height="75" alt="skinny jeans" /></a>\n</html>\n\n! Openings for Action\n* review our SourceDocument\n* generate [[Clearing]]\n* stand we be EffectiveLeader(s)\n* create InfromationForm as basis for our TeamRoster\n* plan DanceRetreat\n* refine AssistingProgram (structure)\n* review our RoleMatrix\n
<insert Tara's cirriculum framework here>\n\n* http://www.global-mindshift.org/memes/wombat.swf\n
Invitation to be\nOBJ: accept oneself and another\n\n! guidelines\n* switch every minute\n* ask people to "soften" and widen their gaze\n* duration: 10 min
duration: 10 min\n\n! Tree in the wind\nauthor: ?\n# Stand in most relaxed position\n# Rolling over ankles, try moving feet in different positions\n# Loosen shoulders, head\n# Visualize tree, how does it react to wind\n# Energy going through tree, pick favorite color\n\n! Ack\n* Julia\n
! Steps\n* isolate body parts and focus on expressing just that (ie. arms, hands, finger)\n* integrate all body parts\n** be sure to ask kids if there is anything that is not integrating (ie. is your right elbow moving?)\n\n! Guidelines\n* consider "dancing" with one's facial features\n* duration: 15 min\n\n! Ack\n* TedKo\n
long-term, the content of this tiddler is dynamic and driven by Amazon, Listal, or some book management web service!\n\n! Active\n* WinnieThePooh\n* CulturalCreatives\n* FundraisingFundamentals\n* [[7 Habits]] of Highly Effective Families\n\n! Suspended\n* [[PMBOK]]\n\n! Recommended\n* GettingThingsDone\n* [[7 Habits]] of Highly Effective People\n* Somatics\n* Alchemist\n\n! Write Review\n* PourYourHeartIntoIt\n\n! Queue\n* How to Write a Family MissionStatement (audio)\n* Awaken the Genius in your Child\n* ComingAlive - TamalpaInstitute\n* ElementsOfStyle\n* How to Get Your Point Across in 30 Seconds or Less\n\n! Get my hands on\n* Siddartha\n* Tuesdays with Morrie\n* The WorldIsFlat\n* CriticalResponseProcess by LizLerman and John Borstel\n* 365 Days of Creative Play (EN) by Sheila Ellison and JudithGray\n\n! Consider (ie. wishlist)\n* [[Refactoring to Agility, Digital Shortcut|http://www.awprofessional.com/bookstore/product.asp?isbn=0321486471&rl=1]] (agile project management)\n
intent: method to report [[Breakthroughs]] to parents\naddresses: concerns parents have around "what are my kids doing?"\n\n* offline and online\n* pictures and video\n* PowerfulShare(s) (volunteers and kids)\n\n! Opens\n* Darun - what do they put online for parents?\n
! Sept 29, 2006\n* Community declare "being one" and giving up judgement\n* Chalip is fully being with Champagne through dance. Morn's mom thinks it's absolutely beautiful. He is asked if they want to be a couple. Chalip boldly says it's about ''dancing''\n\n! Oct 30, 2006\n# Pu share Pepsi with everyone\n# Pulki cooks for everyone, shows an interest in SwimLanes (need post its!)\n# Moo puts glasses away\n# Champagne playful as always (...)\n# Chalip select pictures from wkd\n# Puoh aspires to be a professional photographer\n# Morn thinks everything is perfect\n# Chin just takes on being...\n\n(may be sourced from ProgramStatus each week)\n
Think of these like ~LEGOs and/or puzzle pieces!\n\nThese blocks are guidelines, please pay attention to the ''categories'' - take your own expression and bring that uniqueness to the table while you lead others.\n\nfor example, if you love African dance, consider bringing an African flavor to stretching and that same flavor to expressing in a different exercise!\n\nWe eventually want you to have your own format that represents your contribution to our community.\n\nYou may read more about our FormatDesign process.\n\ngood luck!\n\n!!begin\n<<tag prep>> <<tag open>>\n!!body\n<<tag awareness>> <<tag stretching>>\n!!self\n<<tag grounding>> <<tag expression1>> <<tag boundaries>> <<tag listening>> <<tag expression2>> <<tag texture>> <<tag generation>>\n!!partner\n<<tag being>> <<tag cocreation>> <<tag dancing>>\n!!community/team\nlooking for designers :)\n!!end\n<<tag post>>\n!!misc\n<<tag transit>> <<tag break>>\n\n!More Blocks\n* DanceExchange toolbox\n* 365 Days of Creative Play (see BookList)\n* JoyKu's games
find email sent to Ian (ex-TENF) summarizing experiences by year.
At the end of the day, we have [[reality|http://docs.google.com/Doc?id=acfbv7hvsjm6_bbf47dqd86f3p]] to contend with (in layman terms, money!)\n\nPlease ContactUs if you are present to OurPossibility!\n\n!Finanicals\n* one page summary (need to transform to not-for-profit)\n** projected revenue\n** costs of sales\n** overhead and margins (years 1-5)\n* IncomeStatement\n* BalanceSheet\n* StatementOfCashFlows
We choose to innovate in the area of Dance. CMMI is one of the foremost models to developing a world-class R&D organization. Our long term goal is level 5. Our short-term goal is level 2.\n\n! Current Goals\n* CMMILevel2\n\n! Phases\n# Establish an OrganizationalPolicy\n# Ability to Perform\n** Plan the Process\n** Provide the Resources\n** Assign Responsibility\n** Train People\n# Directing the Implementation\n** Manage Configurations\n** Identify and Involve Relevant Stakeholders\n** Monitor and Control Process\n# Verifying Implementation\n** Review Status with Higher Level Management\n** Objectively Evaluate Performance\n
pseudo gap analysis\n\n# REQM\n** SourceDocument\n** ProgramRequirements (not present)\n** TraceabilityMatrix (not now)\n# PP\n** CommunityProjectPlan\n** OutcomeMatrix\n** StewardshipAgreement(s)\n** ProjectPlan (incomplete)\n** WeeklyMindmap (ongoing - to be scanned pending h/w)\n# PMC\n** ProgramDashboard\n** ProgramStatus\n** [[Risks]] (note: we are not currently risk-driven)\n# SAM\n** SupplierAgreement(s) (no key suppliers)\n# MA\n** CommunityDancing\n** FundraisingDisplay\n** IntroStatistics\n# PPQA\n** OrganizationalPolicy (loose)\n# CM\n** ChangeRequests ([[%Projects]], [[%NotNow]] at best) (think: Trac)
!missing\n* format already printed - lost format arranged with Morn!!!\n* 3 min silence (with bell at end) audio track\n* completely reviewed LizLerman's toolbox\n** LaserPrinter - printouts -> read while lying down, take to park\n* # of guests\n* RegistrationForm for review\n* peace of mind; freedom to act - lots of thinking to give up!
in a nutshell and to be blunt: you catalyze or speed up the process of gettin everyone's booty on the floor!\n\nintent: to provide the DanceCatalyst a guide to delivering distinctions and principles through dance (aka. our BuildingBlocks)\n\ncontrast this to our ProductionManual which focuses on the details of creating and holding a safe space - we invite you make the world a safe place to dance! ;)\n\nif you choose - you may create a DanceExperiment and fold ideas into a regular DanceWorkshop in your own neighborhood.\n\nwe discuss the details of this process in FormatDesign\n\nAnyoneCanBeALeader is a great starting point for anyone of all ages.\n\nthe VibePatrol plays a complementary and more subtle role in the background.\n\n! Bootstrap process\nIn the "ideal" world, there is no need for a production team per se - the world is a safe, free place to be. Perhaps the closest approximation of this environment is BurningMan\n\nOutside of this context, your role as a catalyst may go through the following progression:\n# participating - leads via participation\n# generating - focus on leading, creating from inside the space\n# holding the space - empowers others to generate\n\n! Opens\n* localization of this guide to Thai\n
<html>\n<a href="http://www.flickr.com/photos/chinarut/268623004/" title="Catch that train!" target="blank_"><img src="http://static.flickr.com/93/268623004_8c2d44e22f_m.jpg" width="240" height="180" alt="Catch that train!" /></a>\n</html>\n\n! Ack\n* Pech\n
see DanceCelebration for current detail\n\n! Opens\n* <do further storyboarding>\n* InvitationDesign\n\n! Choices\n* food\n* costumes\n* decor\n* performance?\n* video\n* keynote\n* music design\n* space\n* invite guests who represent other developing countries\n
items to configure for JazzedKids who have a computer and access to the Internet\n\n! Dock\n* Flock - http://chalat.dancelabs.com, photobar set to chinarut\n* Skype - callto://dancechalat, set to SkypeMe mode\n* iPhoto\n* iMovie\n* DivIllusion\n* iTunes\n* Marble Blast Gold\n* Terminal\n\n! Pending\n* iDVD\n\n
!Bio\n"With an innate feeling for dance, Chinarut began ballroom dancing in 1995 and found a passion for connecting through [[Salsa]]. Through explorations of a variety of environments and diverse musical styles, he shares his love for partner dancing as he pioneers a new form of connected dancing to electronica. Chinarut envisions how dance frees pain, suffering, and frustration and brings forth a deep sense of relatedness and joy to oneself and others."\n//(originally written in 2002)//\n\n! other tidbits\n* LectureBio\n* RoleMatrix - index of commitments to DanceLabs\n* [[Dance Labs CV|http://docs.google.com/Doc?id=dhjhk7vs_19c4bxmr]] (in progress - see [[resume|http://resume.chinarut.com]])\n* [[LinkedIn profile|http://www.linkedin/in/chinarut]]\n* [[Circuit Rider profile|http://rider.chinarut.com]]\n** [[Omidyar profile|http://omidyar.chinarut.com]]\n** [[Asia Commons profile|http://asia-commons.chinarut.com]]\n\n
! Intention\n* get out of your head\n* be with the team\n* generate from nothing\n\n! Steps\n# acknowledge what's so\n# complete the past\n# create possibility\n# declare completion\n
!Intentions\n* to get feedback on our productions\n* to assist with choosing which DanceExperiment blocks get forwarded to our next DanceWorkshop
* blog community once/month (minimum)\n\nunclear relationship to CommunicationsManagementPlan (PMBOK)\n
we use the word communication in the extraordinary sense and include NonVerbalCommunication as an equal aspect to what we do.\n\n|!role|!characteristics|!references|\n|Engineer|problem solver, creates solutions, systematic, focused|R&D|\n|Consultant|listens, analyzes, opportunity seeking, presences impact||\n|Executive|cuts the shit, no bullshit, get to the point, forward action, vision||\n|[[Dancer]]|adapts to all communication styles, flows, partnership, <4th>|DanceCatalyst|\n|Musician|rhthym, tempo, patterns, creative, improvises|RhythmPlay|\n|Possibility|enrollment, registration, being, transformation, unknown|LandmarkEducation|\n|Communicator|concepts, agendas, structured, public speaking, messenger||\n|Toolmeister|develops own "tools", process-centric, reusability|ProgramDashboard|\n|Artist|creative, outside the box, unattached, beauty, elegance|CommunityDancing|\n|Mystery|fill in the gap, saves your ass, breakdowns, support|? ;-)|\n|Coach|stand, ...||\n\nsourced: Sept 9, 2004\n\nsee also GlobalDancer\n
welcome to the many faces of Dance Chalat!\n\n! Living\n<html>\n<a href="http://www.flickr.com/photos/chinarut/107533536/" title="newsflash"><img src="http://static.flickr.com/43/107533536_84cc4b2320_m.jpg" width="240" height="180" alt="newsflash" /></a>\n\n<a href="http://www.flickr.com/photos/chinarut/277303296/" title="Calling all dancers!"><img src="http://static.flickr.com/88/277303296_a592c11428_m.jpg" width="240" height="180" alt="Calling all dancers!" /></a>\n</html>\n\n! Office\n<html>\n<a href="http://www.flickr.com/photos/chinarut/68744444/" title="long live the mini!"><img src="http://static.flickr.com/6/68744444_c456940954_m.jpg" width="240" height="180" alt="long live the mini" /></a>\n</html>\n\n! Bedroom\n<html>\n<a href="http://www.flickr.com/photos/chinarut/92453814/" title="perfect bed"><img src="http://static.flickr.com/37/92453814_b1b6469068_m.jpg" width="240" height="196" alt="perfect bed" /></a>\n</html>\n
! Intention\n* to visualize the growth of our community\n* to have sight of our goal\n\n[img[http://static.flickr.com/82/272162713_dd22bc860b_m.jpg]]\n\n! Vision\nidea is to create an piece of art that represents our dance floor. kids who join our community take a figure of a child, put their name on it, dress it up as needed, and start "dancing" on the floor by moving it from outside ("in the stands") to the circle.\n\n! Resources\n* large newspaper print sheets (x8)\n* double-sided tape\n* pencils\n* crayons, oil pastels, colored pencils\n* colored construction paper\n\n! Actual Outcome\n[img[http://static.flickr.com/88/277303296_a592c11428_m.jpg]]\n\n! Followup\n* DancingSelf game\n\n
* <meet Thonburi community leaders>\n* LEC home introduction\n* Dance Chalat home introduction\n* free Wifi network over Thonburi (community resourcefulness)\n* <brainstorm giving back to KMUTT, FIBO, CC, GMI>\n** educate the community on the benefits of telecommuting [L,X]\n\n!Resources\n* review 12 principles of Collaboration white paper\n
we acknowledge LandmarkEducation for providing this format as part of the SELP\n\n! Possibility\n* community\n* freedom\n* fun\n* responsibility\n* happiness\n\n! Project Description\n- not your everyday dance\n- share freedom around dance\n- what is to to be free\n- what is to have fun\n* responsibility\n** taking care of your well being\n** around being open (esp between male & female)\nDanceCelebration\n\n! Outcomes\nBy January 1, 2007:\n* 100 kids participating - JazzedKids\n** 50 kids declare project and be team leaders\n* Thonburi HomeIntro at Baan Suan Thon\n* Foundation\n* DanceCelebration - kids invite parents to dance and play!\n\nBy November 15, 2006\n* AssistingTeam of 20\n*\n*\n*\n\nBy October 21, 2006\n* DanceSpace\n*\n*\n*\n\nBy October 10, 2006\n* CelebrationBudget\n*\n*\n*\n\nBy October 5, 2006\n* DanceInvitation\n*\n*\n*\n\nBy October 2, 2006\n* declare possibility! CommunityProjectPlan\n*\n*\n*\n\n! Next Actions\n
This is the spreadsheet form of our DancersDatabase\n\n!Depth\n* A - full time and/or in touch multiple times a week. firm commitments\n* B - presence is felt. assists as time is available.\n* C - general listening - in the conversation\n* D - listening is not "direct" (ie. dance connection) - tends to be more a result of who they're being as a dancer. infrequent contact.\n
* ''PPC mac'' || x86 mac || PCClone (full TH support - s/w & h/w)\n* ''MacOSX'' || WinXP || Linux (need eval TH support)\n* Microsoft Office (Word, Excel, Powerpoint) || ''OpenOffice''\n* Microsoft Outlook || ''let go'' of NetCentrics plug-in\n\n* also see subset of TechnologyTable (alternative: <<tag technology>>\n
This is conceptual edit-in-place blog invented on Friday, Sep 29, 2006 at 11:21pm.\n\n! Entry\n\nWhat Morn & I have worked out so far is to get the kids excited about a celebration on what is effectively Christmas Eve in the states. we intend to invite distiguished guests to share the potential of kids self-expression and invite them to share this possibility in their respective countries.\n\nI now realize that I'll have to do the legwork of enrolling representatives in other countries to support us in 2007.\n\nit's a timing issue - after the event is complete, how soon can we raise funds for 2007? how much will I be able to raise over these 3 months?\n\nto what degree do I have to guide the production effort?\n\nI have crazy ideas that seem to change the direction (but not the intent to celebrate) - what is the rollup process - how do we integrate our efforts?\n\nSourceDocument - declared & shared\nExpenseWorksheet - started & to confirm support for 3 months\nCommunityProjectPlan - complete\nOutcomeMatrix - minor updates\n\nthis is technically a blog entry TiddlyWiki style!\n\n(note timeline exists across revisions of this file)\n\nok - enough for today - it's getting late and want to take a break tomorrow!
* [[Creativities Unfold|http://www.tcdc.or.th/symposium/creativitiesunfold/]] - Oct 6 (BKK)\n
! sustainability\n* water :)\n\n! home office\n* paper (A4)\n* whiteboard markers\n* photo ink\n* toner\n* post-its\n\n! electronic\n* batteries (Cx6)\n* writable media (~CD-R, ~DVD-R) - archiving, VideoIntroduction\n* rewritable media (~CD-RW, ~DVD-RW) - backups, BreakthroughReport, ProgressionSet\n\n! art\n* oil pastels\n* pencils\n* erasers\n* crayons\n* paints\n* construction paper (colored)\n* newsprint (large)\n
You may contact us in one of many ways:\n# [[email us|mailto://chalat@dancelabs.com]]\n# [[Skype us|callto://dancechalat]]\n# call us: +66 (2) 869-3681\n# snail mail your DancingSelf\n# come dance with us in ThonburiPark!\n\nIn case you need our [[Address]]\n\nConnect soon!\n
dancers to take breaks contrary to popular belief!\n\nprovide water to participants whether they ask for it or not!
based on the work of [[7 Habits]] work by StephenCovey\n\ngoal is to create weekly outcomes for 7 key roles in your life and focus on "sharpening the saw"\n\n! Compass\n* SustainabilityAndGrowthPartner - commitment to Dance Chalat\n* KnowledgeWorker - this wiki (and friends)\n* CommunityLeader - I really have Chalip for inspiring me to stay in Thonburi and take on being a community leadership and think about ways I can give back to this community and make a difference after being here for 3 years.\n* OfficeManager - HomeOffice\n* InternationalLiaison\n* TechnicalSupport - Joomla!\n* ProjectManager\n\n! Saw\n* physical\n* emotional\n* mental - ThaiForBeginners (one lesson weekly) (x10)\n* spiritual //almost forgot :)//\n\n! R&D notes\n* was [[$Role]] (see RoleMatrix)\n* evaluate how we're doing on [[our path|http://chinarut.wikispaces.com/Path+to+Dance+Labs]]\n
The DJ has always been an MC in very subtle ways. It's time to bring the art of being a DJ to the foreground and give the DJ the opportunity to tune in - playing the music with the right emotion, rhythm, tempo, texture to support the activity at hand. This represents a very spontaneous responsibility very much a dance with ''both'' the participants and the DanceCatalyst!\n\nIf you are a DJ interested in expanding your skills in a new direction, ContactUs!\n\n! outcome\nProgressionSet\n\n! outstanding\ncreate stance on music and piracy. consider approaching artists for permission. "Dance Chalat purposes only"\n\n! Music\n* Sasha & Digweed's NorthernExposure\n* Lazy Dog Deep House
ack inspired by LandmarkEducation ILP "10x more excited" exercise\n\nintention: to explore the potential of your self-expression and pace yourself as you go along...\n\n# stop and go\n# switch off\n\n* music: yes\n* activity duration: ? min\n* 2, 4, 8, 16, 32 seconds\n\n! Guidelines\n* duration: 10 min\n\n! Ack\n* variation of LandmarkEducation ILP exercise\n
"in our AreteExperience, dance breaks are very inspiring..let spirits roam!"\n\n! Guidelines\n* duration: 5-10 min\n
We use the word "catalyst" as in accelerate - people who enjoy going onto the dance floor and encouraging others to dance. You may achieve this through a variety of ways:\n\n* dancing on your own which naturally attracts others\n* being with people who perhaps are tired and/or not in the space to move.\n* outright flirting and/or playfully teasing people\n* being the nature leader you are and inviting them without fear!\n\n! Resources\n* CatalystsGuide\n\n! Guidelines\n* avoid computers, email, machinery 24 hrs prior\n* sleep early\n* finalize format 24 hrs prior (optional)\n** music design complete\n* generating format and being with people is your responsibility (production team to take care of other details - see below)\n\n! Support\n* water, tea, coffee\n* wake up call\n\nsome SpecialThanks <3\n\n
! Vision\nDance Labs throws dance celebration on the beach with staff, volunteers, kids, and parents. The kids produce a short performance and invites everyone else to dance with them. All kids go home with a brand new father and mother who are brighter than when they first came. We can see this by looking at the before and after pictures. Dance Labs has another story to share with people all around the world!\n\n! Intention\n* community\n* fun\n* happiness -> share feelings with one another!\n*\n\n! Desired Results\n* CelebrationDesign (intentional)\n* 100 Dance Chalat kids show up\n* everyone joins activites\n* 50 kids declare themselves as leaders, willing to create their own dance experiments in life!\n* community of Thonburi declares next community they are inspired to make a difference! //ask wise elders//\n* smiles on everyone's face at end of celebration\n\n! Guidelines\n* give up being serious ;)\n* 2 months of planning\n* remember to breathe\n* get stuck is stuck ;)\n* FundraisingFundamentals\n
"Play is the child's royal road to intelligence, creative thinking, and joy. The child who can play will play skilfully and successfully throughout life." -- MagicalParentMagicalChild\n\n<html>\n<a href="http://www.flickr.com/photos/chinarut/227114962/" title="Dance Angel" target="_blank"><img src="http://static.flickr.com/62/227114962_b741ec95d4_m.jpg" width="240" height="180" alt="Dance Angel" /></a>\n</html>\n\n"Chalat" (ฉลาด) means smart in Thai. \n\nDance Chalat is our children's program designed to create community leaders through the use of music and dance.\n\nWe believe dance is a powerful context children naturally find fun and rewarding to learn within.\n\nThis program becomes a playground to experiment with new ideas that solidify the framework we call DanceLabs.\n\nNow if you're ready to jet set - just StartHere!
! Basic\n# big vs small\n# smooth vs jerky\n** what worked for kids: water vs robots\n# fast vs slow\n\n! Steps\n# go through each one separately\n# encourage them to experiment with mixing them up\n\n! Guidelines\n* duration: 15 min\n\n! Ack\n* DialoguesBetweenLifeAndArt\n
! Intention\n* creativity\n* everything is perfect\n* nothing is wrong\n* anything goes\n* place to get ideas\n\nwe may or may not use material in an experiment in one of our DanceWorkshop(s) - it is a playground and a sandbox of sorts.\n\n
! Games\n* DancingSelf\n* add to our BuildingBlocks\n\nfor each game:\n* outline step-by-step what, how, and why\n* be clear to note whether music is required or optional\n* indicate preference of music\n
Check [[our blog|http://blog.dancelabs.com]] for our latest innovations in dance.\n\nWe suggest you subscribe to our [[RSS feed|http://community.livejournal.com/dancelabs/data/rss]].\n\nEmbedded news articles coming to this tiddler soon!\n
part dancer, part engineer, part inventor\n\nthis role has the uncanny ability to marriage innovations in the area of dance with innovations in HumanPotential.\n\nA unique aspect is the respect we have for using <<tag technology>> for the purpose of seeding and facilitating the community building process.\n\nWe have the vision to embrace, develop, and/or support software that will expand our limits as DanceCatalyst(s)\n
(aka CommunityUpdate)\nscope: life/Dance Labs\n\n! Format\n* brief (few bullets up front for those short on time)\n* lengthy (prose for those who wnat to dive into details and/or get reasoning or love listening to stories :)\n\n! Outcomes\n* list of peeps who wish to stay current (ie. MailingList)\n* list of peeps who wish to volunteer (local/remote)\n\n! Spaces\n* pseudo-newsletter (email)\n* cross-post to DanceInnovationNews (blog)\n* cross-publish to GoogleDocuments\n** ref from ProgramDashboard\n* cross-post to DiscussionSpace (o.net, Zaadz)\n* cross-post to [[Flickr]] (?)\n\n! Communication\n* notes: http://docs.google.com/Doc?id=dhjhk7vs_28c5m2cn\n* prose: http://docs.google.com/Doc?id=dhjhk7vs_53q4trbp\n\n! Resources\n* CommunityRoster worksheet\n* AnnualUpdate summarizes biz points in approx 14 slides\n* StakeholderUpdate - some good ideas here to fold in
I love it - Harvard's alternative term for KnowlegeManagement (which is so passe and gets such bad rep!)\n\n* [[Most Popular Articles of 2006|http://hbswk.hbs.edu/item/5584.html]] - want to flip through the book - now!\n** AccidentalInnovator\n** ChannelSteward\n** OpenSource\n** VirtualDates\n** InnovationPyramid\n* [[UK Foresight Studies Identify Emerging Trends Over next 50 Years|http://www.experientia.com/blog/uk-foresight-studies-identify-emerging-trends-over-the-next-50-years/]] - I'll live to see these trends come into fruition so had better start help cause them now! (knock on wood)
we emphasize the role of a DanceExperiment to allow accidents to happen!!!\n\nhttp://hbswk.hbs.edu/item/5441.html
!Abstract\n"Too often channel strategies develop at the last minute -- when a product is ready to go to market. But this haphazard approach leaves a lot of efficiencies and synergies by the wayside, says V. Kasturi Rangan. Enter the concept of the "channel steward."\n\n!Key concepts\n* Distribution strategies are often supplier-conceived methods to get a product to market, but these strategies fail to capitalize fully on channel partners or customers.\n* A "channel steward" is a player in the chain who is best positioned to look out for the interests of all involved and devise a win-win strategy. (see [[7Habits]]\n* Distribution strategy needs the attention of high-level executives—not just a product manager (read: ProgramManager)\n* Think of the Internet as a complementary go-to-market tool, not a total solution.\n\nsrc: http://hbswk.hbs.edu/item/5459.html
given one of our aspirations is to create the DanceConnection all around the world and dream about DanceDating in SecondLife - read one!\n\n!Abstract\nUsers of online dating sites often struggle to find love because the sites themselves make it more difficult than it needs to be. To the rescue: Virtual Dates, an online ice-breaker from Jeana Frost of Boston University, Michael Norton of HBS, and Dan Ariely of MIT.\n\n!Key concepts\n* Technology influences the tone and trajectory of relationships.\n* The interface of online dating sites should be improved to help people filter better. (yes, no keyboard, voice and immersion!)\n* Virtual Dates is an experimental interface that allows couples to communicate in real time using colors, words, and images. (SecondLife DanceExperiment!)\n* The idea of virtual spaces for natural interactions may have applications for managers and entrepreneurs.\n\nsrc: http://hbswk.hbs.edu/item/5478.html
!Abstract\nBorrowing a practice that is common in the open source software community, HBS professor Karim R. Lakhani and colleagues decided to see how "broadcasting" might work among scientists trying to solve scientific problems.\n\n!Key concepts\n* Practices in the open source software community offer a model for encouraging large-scale scientific problem solving.\n* Open up your problem to other people in a systematic way. A problem may reside in one domain of expertise and the solution may reside in another.\n* Find innovative licensing ways or legal regimes that allow people to share knowledge without risking the overall intellectual property of the firm. (did someone say CreativeCommons? :)\n\nsrc: http://hbswk.hbs.edu/item/5544.html
We're out to cause a breakthrough in communication!\n\nOur intent is to have one place that summarizes group communications by priority and/or context. ContactUs if you are willing to assist us in making strategic decisions as to what communications blast DanceLabs into the stratosphere!\n\n# CommunityUpdate (aka DanceInvitation) - if everyone had the same set of ears, this would go out to everyone who's heard the word "Dance Labs" at one time or another over the past 5 yrs. the ideal outcome would be locate everyone as to whether "i'm interested in keeping up to date" or "no thanks!" I'm wanting to avoid "playing safe" and just emailing to those who've participated (ie. via dancing, workshops, etc) and just email everyone and be complete with all past communications!\n# GovernorLetter - the intent of this letter would be to win a 30 min in front of the BKK governor. it would be wonderful to share a success story with CA! this letter has a direct relationship to the upcoming ArtFestival\n# AnnualUpdate (aka. StakeholderUpdate) - this is 80% done and for biz folks - people who want to know our financial situation in particular and how we've used money over the past year (technically, 3 months), what we've done, and how we plan to project into 2007 - esp the support we need to make this happen (btw, this would be a really cool time for you to be involved from the get go!)\n# MassUpdate - there are a hell of a lot of people that may be missing the context of living a transformed life (in other words - what gives DanceLabs its power and it's umph! This would be an opportunity to invite everyone into a life we've created and acknowledge Dance Labs is a big part of a big puzzle discovered in Thailand. this eats up lots of "PsychicMemory" and potential costs my effectiveness in causing the above communications to happen (assertion)\n
Dance Labs is a grassroots organization committed to building self-awareness through music and dance.\n\n<html>\n<a href="http://www.flickr.com/photos/chinarut/227156944/" title="may Dance Labs sprout like bamboo!" target="_blank"><img src="http://static.flickr.com/89/227156944_3a10d33d60_m.jpg" width="180" height="240" alt="may Dance Labs sprout like bamboo!" /></a>\n</html>\n\n! About us\n* OurMission\n* KeyObjectives\n* WhatHappened - key event that started it all\n* [[Past]] - what we've done\n* [[Present]] - where are we?\n* OurPossibility - what's possible with our future\n\n! Our programs\n* DanceChalat
this is the catch 22 - Dance Chalat needs a world-class working environment to do what it needs to do (quickly) and there's no free lunch - it costs money to live in this world the way it is!\n\n! Focus\n* SelfSustainable - cashflow positive\n* [[Foundation]] - working environment (aka operations)\n* CommunityDancing - in action and in touch with community\n\n! Responsibilities\ndefined as UseCases\nconsider integrating into P2PFoundation document\n* Establish Organization\n** Declare Mission\n** Incorporate Organization\n** //Ellicit community Requirements//\n\n* Sustain Organization\n** Build Foundation\n** Sustain Cashflow\n*** Promote Organization\n*** Request Grant\n*** //Design Service// <see BusinessPlan:services>\n**** non-profits, foundations\n**** corporate\n*** //Manage implementation Team// (recursive?)\n**** implementation plans\n** Promote WellBeing :) \n\n* Steward Community\n** support growth and increased interaction of community\n*** Invent Structure\n*** Create StewardshipAgreement\n** stimulate community processes\n*** Develop community ContactPoints\n*** Stimulate Participation\n*** Create Partnership\n** Advise community Production (on and offline)\n*** website\n*** newsletter\n*** events\n\n! Outputs\n* AccountingStructures\n* BusinessPlan (incorporation)\n* GrantProposal (ie. long-term cashflow)\n* ProjectManagement/collaboration structures\n* coordination and alignment with other programs (portfolio management)\n* office management (offline and online)\n* engineering, innovation, R&D processes\n* executive management\n* cross-community connections (adults and kids, men and women)\n* future program design (aka new programs)\n* declaration and integrity of mission, vision, and values\n* legal structures\n* sustaining partnerships\n* process improvement and transformation\n* //overall presentation and public image// (PR)\n* OrganizationalStrategy\n
!Milestone\n* Publish first draft of the DanceLikeYouLoveIt cirriculum\n\n!Components\n* OurVision and OurMission\n* SourceDocument (or internal?)\n* DesignPrinciples, ProgramDesign, CelebrationDesign\n* [[Actors]]\n* ProductionManual and CatalystsGuide\n* KeyLearnings from all productions: HomeIntro, DanceExperiment, DanceWorkshop, DanceCelebration\n* DanceWorkbook\n* CourseSyllabus\n\n!Opens\n* review Ko's original multi-stage design for cirriculum\n
if you are looking for our PartnerUpdate\n\n! Intention\n* partner at the individual level (ie. your dance partners)\n* partner at the community level (ie. our partnerships)\n\n! vibe match\n* PlanInternational\n** children in developing countries - means of rounding out their experience at youth centers\n* AsianResourceFoundation (ARF)\n** dance experiment with staff\n** pilot work at learning centers in outside provinces in TH (Ranong, Phuket, Patani)\n* KMUTT\n** Darun - project-based learning, social club on Fridays\n\n! accept lead\n* Zaadz\n* DanceExchange - Truman scholars July 2006\n\n! take lead\n* Earthdance\n* ShuttleworthFoundation\n** dance a means to accelerate peer production process - encourage face-to-face, one-on-one interaction and experimentation -> distributed\n* Thailand Creative & Design Center\n\n! keep dancing\n* DanceLabs\n** PennisulaWorks\n** DancingMiracle\n** DanceChalat\n* TheCommunity\n** RadianceProduction\n** AreteCenter\n* LandmarkEducation\n** AdvancedCourse\n** [[SELP]]\n* BurningMan\n* SterlingInstitute\n* family\n* Ryze\n* coaches\n* DialoguesBetweenLifeAndArt\n* CarnegieMellonUniversity - interdisciplinary\n\n! powerful share\n* consumer\n* AsiaCommons\n* OmidyarNetwork\n** AppleComputer\n** Yahoo! [[Flickr]]\n* P2PFoundation - \n* Wall St. - integrate Dance Labs into [[Social Club schedule|http://wallstreet.in.th/en/currentWSIStudents.asp]]\n** statistic(20060825): 70%f 25-26 focus: building future\n* TamalpaInstitute\n* Thailand\n** KMUTT\n*** Linguistics - creativity with graduate students [Evonne] <3\n*** GMI - how to teach kids project management?\n** [[Thailand Creative & Design Center|http://www.tcdc.or.th]]\n* CMU\n** alumni\n** Heinz [[Social Innovation|http://www.heinz.cmu.edu/socialinnovation/]]\n* BayArea\n** ballroom\n** salsa\n** berkeley\n** GroupHug\n** VibeGang\n* LosAngeles\n** Moontribe\n* Professional network\n* InternationalDanceCouncil\n** DancersWithNoFrontiers
periodically, our team embarks on team retreats\n\n! Intention\n* let steam go\n* team renewal\n* sharpen the saw as a team\n* see dance from a different context, perspective\n\n! Inquiry\n* how do we play being DanceCatalyst(s) with each other?\n
some of you have a DanceConnection so profound you can't forget them!\n\nWe envision giving you technology so you may share what happened with other dancers - they may just take your share and use it themselves!\n\nidea: transform this into a blog-like structure. possible solution to evaluate: LiveJournal community blogs.\nidea: consider converting to XML using [[Lifehacker solution|http://www.lifehacker.com/software/memory/geek-to-live--roll-your-own-timeline-207426.php]]\n\n! No date\n* ?? - sun @ Kelly's with Samantha. connection with Japanese Hiroko? Alida. brief dance with Jen\n* ?? - walk to the beach with DancingSpirals - love as magic\n* Share with Dr. Cohen at CMU event\n* LA - programming self to give up asking a woman to dance at The Mayan (s)\n\n! pre-2000\n* xx 1995/1996 - SoundFactory solo sessions\n* xx 1995/1996 - first [[Salsa]] lesson at Albertos with AlexDaSilva\n* xx 19xx - AlexDaSilva [[Salsa]] workshop. meet Judy\n* xx 19xx Sound Factory. Marcie and friends. post-RTF discussions\n* xx 19xx - Spring Harmony connection with god with GRE gang in Oakland\n* 01 Jan 19?? - break asian circle in NYC over NYE (?)\n* ?? Nov 1998 - first Radiance. feel the vibe. connection with Sheyla\n\n! 2000\n* 01 Apr 2000 - Element. playful dance partners with Rockymau\n* 01 xxx 2000 - NorthernExposure tantric connection with RockyMau\n* 27 May 2000 - Imagination (?) connection with Farhat\n* 19 Nov 2000 - Radiance w/Brent. DanceSeduction with Laurie\n* 2000? Qool - dancin on stage non-stop\n* 2000? crazie dnb sessions down the alley with Chad after Qool\n\n! 2001\n* ?? 2001 - Pulse. Radiance - direct application to life in ER\n* 8-10 Jun 2001 - Vibrant campout\n* xx Jul 2001 - share vision for "music and dance" inspired by NorthernExposure meditation (email)\n* 17 Aug 2001\n** Craig Spahr\n*** vision around a 1M dance march\n*** lunch at the mexican tacqueria. "matrix"\n** Enchant\n*** Symbol with DancingSpirals\n*** Spontaneous fusion with Sheyla\n*** DJ Scott Carrelli dance of magic\n* 2x Aug 2001 - BM. Dance around fire. Dance of the wind.\n* ~Aug-Dec 2001 - SELP community project. vision around dance community. \n* 22 Sep 2001 - Ascend. "you are old soul" Cori\n* 21 Oct 2001 - Jim Yu's birthday party. Jen@Ideo\n* xx Nov 2001 - Freedom To Ask. VibeMatching. Gary\n* xx Dec 2001 - Arete Experience\n** woman's nuturing of a man's stand after breathwork\n** EnergySpheres\n** man to man invitation to dance as a method to diffuse tension\n** causing another to be present through dance during the break\n* Dec? 2001 - Kevin's SELP event at Cocomo. sweep the floor with ???\n* Dec? 2001 - Radiance dance with Cheri. missed connection with Paula\n* xx Dec 2001 - Ted's vision for cirriculum\n* 31 Dec 2001 - DanceWhirlwind (Jeff Hand)\n\n! 2002\n* 01 Jan 2002 - NYD after party\n** "chiseling" of a dancer and connection with Farhat. present to being latin in a past life\n** dance battle (shamanistic?)\n* 13 Jan 2002 - first DanceExperiment at Kung Fu USA\n* 24 Mar 2002 - Dialogues between Life and Art with Jaime\n* 07 Apr 2002 - org planning of role & resp with TedKo\n* xx Apr 2002 - DanceExperiment at Aron's\n* 26 Apr 2002 - Love n Sin. Jill Oringer\n* 04 May 2002 - Love Soup. Kuoh\n* 11 Jul 2002 - PenisulaWorks self-confidence through creativity workshop\n* 03 Aug 2002 - Cuong & Kathy's wedding. dance with Bambi\n* 0x Aug 2002 - club with Annie. dance battle with brother *hugs*\n* 10 Aug 2002 - Spundae @ Circus. Connect with Carl's wife and ???\n* 11 Aug 2002 - Share at Janet's BBQ.\n* xx Aug 2002 - Dance Labs WebSite launch thanks to JoyKu (classic)\n* xx Aug 2002 - BM: being with myself and dancing in the mirror the night of the burn. massive reintegration with community upon walking into the center of the playa. HipHop zigzag\n* BM 2002? - dance in the Afterlife. respect to the buddha\n* BM 2002? - singing bowl meditation. firewalking trip.\n* xx Aug 2002 - BM: dance healing (Spahr)\n* 02 Sep 2002 - BM: Aviva at center camp\n* 07 Sep 2002 - DanceWorkshop LA\n\n! 2002/2003\n* ?? 2002 - DJ Dave Matthias tri-connection. Samantha+Frank\n* ?? 2002 - Hike with Samantha. Dance of the ocean.\n* ?? 2002 - YABA event. Stephie\n* ?? 2002 - Gratitude. greeting team lead. shared experience w/Ted\n* ?? 2002/3 - dance in the CEO's office @ mediaglyph\n* ?? 2002/3 LA moontribe tuesdays - swing dancer who drove from FL.\n* ?? 2002/3 LA - go with Ryze friend to bar. ask dancer to meet me at Moontribe tuesdays\n\n! 2003\n* 0x Sep 2003 - meet Evonne, the lady in red @ BM\n* 0x Sep 2003 - Welshcake plays with arms after a swim\n* 0x Sep 2003 - hitchhike back with Jasper. EnergySpheres attracts ride\n\n! 2004/2005\n* ?? 2004 - mini dance party @ Smile Mansions\n* ?? 2004/5 - dance with Liza in front of athletic center to areobic music\n* ?? 2004/5 - DnB intensity at Astra with G\n* ?? 2004/5 - meet the Specialist at Fogovivo (mon)\n* ?? 2004/5 - EnergySpheres with G\n* xx Jul 2005 - pic in the guru from Ice-T @Q-bar\n\n! 2005\n* 03 Jul 2005 - Dance Labs [[Intranet]] born (thx Damien!)\n\n! 2006\n* 16 Jun 2006 - OmidyarNetwork group born\n* 04 Jul 2006 - wikispaces born\n* 29 Jul 2006 - Khon Jai Ngai at CMU alumni reunion\n* xx Aug 2006 - spontaneous share with Evonne to Lumpini\n* 08 Aug 2006 - spontaneous intro at ARF training with Keith & Judy\n* 27 Aug 2006 - first Dance Chalat!\n* 04 Sep 2006 - this ProgramDashboard born!\n* 09 Sep 2006 - TimeOut dance with Simone & Capoeira friend\n* 08 Oct 2006 - DanceFishing\n* 29 Oct 2006 - Our first HomeIntro before Halloween and school!\n* 31 Oct 2006 - Halloween with our JazzedKids\n* 20 Nov 2006 - roundtable discussion re: BKK Intl ArtsFestival\n* 23 Nov 2006 - roundtable discussion with LandmarkEducation\n* 30 Nov 2006 - Our first contest submission ([[Working For Good|http://dancelabs.wikispaces.com/Working+For+Good]])\n* 20 Dec 2006 - Our VideoTrailer goes live!\n* 25 Dec 2006 - GraduateCelebration with LandmarkEducation gradutes
[img[http://static.flickr.com/66/227116878_40b480b7f4_m.jpg]]\n\n! Guidelines\n* Thai: เต้นรำกันเถอะ\n* duration: open\n\n! Ack\n* Pech\n
Morn has an idea to design and include a workbook to give to children at the start of their program. The material is in line with our ProgramDesign and helps structure their work. It also keeps thoughts and ideas in one place so the children may powerful make conclusions upon completion of their program.\n
! Intention\n* making a difference\n* causing breakthroughs\n* inspiring all to share\n* causing transformation\n\nwe add successful ideas from our DanceExperiment(s) to our BuildingBlocks which in turn is a reference for our WorkshopFormat
We do not think of dancers in the ordinary sense of the word - we are a community of GlobalDancer(s)!\n
! Desired Results\n* include all relationships\n** KidsRoster\n** TeamRoster\n** volunteers\n** DancePartners (at community level)\n
The kids are building a dance community and want you to play no matter where you are in the world!\n\n<html>\n<a href="http://www.flickr.com/photos/chinarut/277303296/" title="Calling all dancers!"><img src="http://static.flickr.com/88/277303296_a592c11428_m.jpg" width="240" height="180" alt="Calling all dancers!" /></a>\n</html>\n\n!Steps\n# take a 8.5 x 11" or A4 piece of paper and cut it in half.\n# use your great artistic skills you have and create a rendition of yourself - who you being when you're on the dance floor?\n# dance on our CommunityDancing floor\n** if you are local: come by our CommunityCenter, introduce yourself, post your dancer, and join our next event!\n** if you are remote: mail in your dancer and we'll place it on our floor for you!\n\nThis is our [[Address]] and we look forward to seeing your dancing self! :)\n
[[Sawadee!]] DanceChalat DanceLabs StartHere
* stand and source from WellBeing\n* distinction\n** converation\n** exercise\n** sharing\n* we fundamentally are out to cause outcomes outside of dancing.\n** spur creativity\n** teamwork\n** new relationships, connections, and discoveries\n* we use brainstorming as a means to get the listening of Dance Chalat in the community.\n** we ask the community to select a distinction created and focus on that intention\n** each session focuses on a different distinction\n** the DanceCatalyst decides when it's time to "aggregate" distinctions and rollup into a powerful sharing with others whether they are fellow community members, executive support, new members, etc.\n** this all culminates into a celebration where all these distinctions are shared freely without structure\n* InnnovationProcess\n** what is X? (ie. an invitation to dance)\n** what supports X?\n** what environment factors affect X?\n*** music affects environment, yet is ''optional'' ([[DJ]])\n*** being alone might even catalyze the process!\n* elements of a successful format\n** analyze [[20060903Format]] and past formats with adults\n*** ref DanceWorkshop format [20020711]\n** style: how to create dynamic ''flow'' for your dance experiments - the dance of being intentional vs spontaneous and in the moment\n* the role of a celebration\n** the importance of transitioning the "safe" environment to one that is "supportive" to one that ultimately is "open and free"\n** how to wrap up experiments into a monthly event to share a series of experiments back with the community\n* how to match music to your exercises [[DJ]]\n
distinct from MeetingRoom\n\n* whiteboard\n* wiki\n
In real life, we have many different dance floors to choose amongst - who you choose to be on a [[Salsa]] floor may not be who you choose to be on a downtown club floor (subject to interpretation of course!). Thus it's no surprise we have different discussion spaces for you to participate in depending on how you like to interact with your online communities - each one adds a different "flavor" to our conversation.\n\nThe OmidyarNetwork and Zaadz are each kind to host a CommunitySpace for us:\n\n# [[ZaadzPod|http://pods.zaadz.com/dancelabs]]\n# [[OmidyarGroup|http://www.omidyar.net/group/dancelabs/news]] ([[cheatsheet|http://dancelabs.wikispaces.com/Omidyar+Network+Cheatsheet]] for an extra helpin hand!)\n\nDo ContactUs if you are a fellow CommunityBuilder!\n
! Leadership\n* generate themselves fully giving up their stories\n* takes a stand for commitment\n* possibility\n* fulfilled in life\n* no fear\n* communicator\n\n! Gives up\n* perfect //note: distinct from strives for perfection//\n* looking good\n* knows everything\n* expectations\n* anything is wrong\n** not good enough\n* self-judgement\n
<html>\n<a href="http://www.flickr.com/photos/chinarut/279656603/" title="The Source" target="blank_"><img src="http://static.flickr.com/91/279656603_138c77f66b_m.jpg" width="240" height="180" alt="The Source" /></a>\n</html>\n\ninspired by [[7 Habits]], this is an artifact of Habit 1 - Be Proactive.\n\nwe encourage kids to write their acknowledgement to each other on a piece of paper at any time and make deposits into the community bank account!\n\nthis captures our principle behind teaching children to build community.\n
!Methods\n* DanceFishing\n
* DesignFormat\n* AssignRoles\n* CleanUp\n
<insert photo here>\n\n! Intention\n* to ground yourself\n* be aware of the space you create\n* realize you can create as much or as little space as you'd like to\n* be playful, use imagination\n\n! Steps\n* play with energy between hands\n* create an energy sphere\n* imagine yourself grounding your left leg\n** thigh, knees, calf, ankle, foot, out through toes\n** into the ground, grass, trees, branches, into sky, up into the sky\n* recreate sphere\n* ground right leg\n* recreate sphere\n* expand sphere larger than self\n* step inside your sphere\n* be aware of your own space\n* create inside your own space\n* play inside your space\n* look around, invite others into your space\n* expand your space\n* become one\n* ack completion\n\n! Guidelines\n* be with participants\n* have others hold space\n* peak out sections so visualization is full\n* duration: 10 minutes\n\n! Ack\n* AreteExprience\n
available to support enrollment activities\n! short list\n* general - [[video|VideoTrailer]] (online, DVD/VCD), [[brochure|CelebrityBrochure]]\n* executive - [[overview|DanceLabs]], [[powerpoints|SlidePresentation]]\n* technical - [[dashboard|ProgramDashboard]]\n\n! Intro\n* CelebrityBrochure\n* DanceLabs organizational overview ([[download|http://www.dancelabs.com/doc/Dance Labs - Overview.pdf]])\n* DanceChalat program overview\n* Flyers (events)\n\n! Visual\n* [[Photos]] (fullsize printout, photoset, printouts)\n* VideoIntroduction (VCD, DVD)\n** slideshow (iPhoto, Flickr)\n** video clips: activities, shares, dancing, intro\n** disc and sleeve design\n\n! Business\n* SlidePresentation (zoho, openoffice slides, handouts)\n** 5 stacks: org, program, services, agreement, planning\n* AnnualUpdate\n* IntroductionLetter (formal)\n* GrantProposal\n** financial worksheet\n* WhitePaper (business services)\n\n! Community\n* ProgramDashboard (aka. interactive online overview) (open research model)\n** offline: proof-of-concept re: asynchronicity\n* DiscussionSpace (o.net, Zaadz)\n\n! Mechanics\n* CatalystsGuide\n** ActivityBook\n* ProductionManual (checklist)\n* TrainingModules (wiki)\n
an index into how DanceLabs stays in existence.\n\n! Current\n* [[Chin's|ChinarutRuangchotvit]] head\n* other people (head can only go so far :)\n* this dashboard (GTDSystem)\n* looseleaf (weekly compass, daily ideas/mindmaps/notes)\n* journal - Asia Commons (primary) (meeting notes)\n* [[writely|http://www.writely.com]]\n* [[o.net|http://omidyar.dancelabs.com]]\n* [[blog|http://blog.dancelabs.com]]\n* [[wiki|http://wiki.dancelabs.com]]\n* [[email|http://mail.google.com]]\n\n! Eval\n* whiteboard\n* zoho sheet\n\n! Aging\n* hard drive (Macintosh HD) (+Integration, ~/Documents)\n* filing cabinet folders (Dance Labs, Fundraiser)\n* office documents (word, excel) ([[documentation map|http://mindmap.dancelabs.com]])\n* compact flash (PEACE) (mindmaps, Personal Brain)\n* ring binders (linear, GTD)\n
! Pre\n# NameTag\n\n! Intro (10 min)\n* QuickIntro (5 min)\n* WorkshopIntention (5 min)\n\n! Part 1 (50 min)\n# meditation (5 min)\n# SpiralStretch (10 min)\n# BeingATree [Julia] (10 min)\n# StandingYourOwn [FreedomToAsk] (15 min)\n# MyNameMyStyle (หนูชื่ออะไร) [DialoguesBetweenLifeAndArt] (10 min)\n\n! break (10 min)\n# DanceBreak (10 min)\n\n! part 2 (60 min)\n# HearingAndExpressingMusic [Ko] (10 min)\n# DanceDimensions [DialoguesBetweenLifeAndArt] (10 min)\n# BeWithAnother [] (10 min)\n# AnyoneCanBeALeader (ใครๆก็เป็นผู้นำได้) [FreedomToAsk] (10 min)\n# PointOfContact [ContactImprov] (10 min)\n# DanceAllOut [LandmarkEducation] (10 min)\n\n! post\n# CoolDown\n# PartnerShare\n
! Contents\n|!item|!intention|!common|\n|tweezers|sterile hold of cotton||\n|cotton wool|use to clean wound holding tweezers||\n|sodium chloride|initial clean||\n|betadine|prep|yes|\n|scissors|cutting||\n|guaze|wrapping||\n|plaster tape|tape guaze|yes|\n|paracetamol|headaches||\n|ORS|diarrea||\n|cotton swabs|?|yes|\n\n! Scenarios\ninstructions of how to deal with certain scenarios/situations\n!! minor cuts\n* basic order (1-7) above\n* <insert actual details and guidelines here>\n\n!! loss of breath\n* CPR [Kris]\n
Flickr is complete genius - masked as a photo site, it is one of our most powerful community building tools to date. it acts like:\n\n* part blog by having a sense of linearity and comment threads\n* part wiki by letting you edit the description of each photo much like you edit MicroContent in this TiddlyWiki\n* it has tagging like GTDTiddlyWiki and naturally extends outward to the global tagging space.\n* it has a groups (aka pool) mechanism for discussion threads and photo pools (ie. DanceCatalyst can share their pictures with their respective kids and/or new BuildingBlacks or DanceGames they've come up with)\n* part data structure inherently created by it's set mechanism (supplemented by its tagging and pooling mechanism)\n\nother benefits:\n* it's web resident and hosted\n* it has an external API to mash into just about any social application you wish to write\n* built in discovery (aka explore) mechanism distinct from text-based web searches\n* it extends the notion of "comments" to visual notes - beyond just text\n* has ''excellent'' support for international character sets (ie. Thai!)\n* built-in support for CreativeCommons licensing models\n* built-in security mechanism at varying levels: public, friends, family, private\n* batch processing akin to editing multiple wiki entries at the same time based on arbitrary criteria\n* built-in statistics akin to "page views"\n* favorites mechanism providing real-time feedback\n\n!Experiments\n* [[query|http://flickr.com/search/?s=int&w=98973695%40N00&q=workshop+building+block&m=tags]] blocks with photos! (note: unordered)
on Oct 22nd, we invented a new process for developing our formats.\n\nWe used our BuildingBlocks as a basis.\n\nWorkshopFormat represents what we feel is our most powerful representation to date based on the feedback of others and experience. consider this to be a baseline and a reference for the next few weeks until we hold another DanceWorkshop\n\nExperimentFormat represents experimentation - trying new things we have no idea how it will land for the group.\n\nWe recommend using the last WorkshopFormat as a basis and develop a ExperimentFormat in parallel.\n\nOur ActualExperience bringing both these designs into sunday!\n
foundation as in "non-profit" establishment\n\n! Desired Results\n* CommunityCenter\n\n! Opens\n* need to report source of funding?\n* need OrganizationalSeal?\n* acceptable source of funds for StartupMoney\n* strict definition of "educational"\n\n! Prerequisites\n* SeedMoney - ability to sustain ourselves through the application process (ideal: 3-4 months, can be a year)\n\n! Requirements\n* StartupMoney - 200,000 for edu; 1,000,000 for non-edu. money must remain for entire application period\n* OperatingBudget - <clarify to what degree this is to be defined>\n* [[Stakeholders]] - 7 required (not including director). 1 must be assigned accountability when director is not present\n* HomeOffice - tax-registration entity\n* Overview of organization's intent and purpose\n** Dance Chalat ProgramOverview (no more than 200 words)\n** SlidePresentation (optional)\n** VideoIntroduction (optional)\n\n! Other notes\n* processing time - 3 months minimum: 1 month at local office, 2 months at gov\n* in Thailand, a Foundation has non-profit status\n\n! Resources\n* recontextualize to not-for-profit\n** [[Process of Forming a Company|http://www.startupventuretoolbox.com/Process%20of%20Forming%20a%20Company.htm]]\n** [[Administration & Operations Checklist|http://www.asia.socialtext.net/startup/index.cgi?administration_and_operations_checklist]]\n* text: Zen and Art of Making a Living\n* Civil and Commerical Code of Thailand\n** may visit Indo-Siam @Asok 02 260-3914 K. Amy\n* [[Registration Form|http://www.dopa.go.th/formreg/mn1.htm]]\n* ThaiWorldviewFoundation\n* AsianResourceFoundation\n* PlanInternational\n* NoloPress - [[Nonprofit Organizations|http://www.nolo.com/resource.cfm/catID/CE94A6B3-EFB6-4036-8498D5414328FD73/111/262/]]
Founded by NaomiColb, this is a workshop whose purpose is to raise the awareness of one's boundaries in life.
!Chapter\n* 5 - brainstorm AnnualMembership advantages\n* 10 (p 363) - Model List of Deadlines for MasterSchedule\n
* create list of potential partners [R]\n* program budget\n* event budget\n
! next year\n* SchoolPilot\n* DanceLikeYouLoveIt\n* TranscendComponents\n\n! next steps\noriginally a set of consquences brainstormed with Morn in our OutcomeMatrix.\n\nIt doesn't make sense to put it in a table as the timing of items do not line up.\n\n* kids - WorldTour\n* team - DanceRetreat\n* design - strong & expressed\n* intro - community of people able to be with kids\n* foundation - city.next()\n* sanook - free to assist\n
<<<\n//If you have built castles in the air, your work need not be lost. That is where they should be. Now put the foundation underneath them. -Henry David Thoreau//\n<<<\nWe've modeled our organizational processes after a recommended GettingThingsDone notebook design by DavidAllen\n\nIt is our long-term goal that every member of our community have a independent, ''personal'' view of how Dance Labs looks to them and at the same time, for those interested, zoom right up on to OurVision - this is how advanced we are being!\n\n! Notebook\n* [[Capture]] - notes from meetings, phone calls, thoughts, etc. Goal is to get this to ''empty'' every week.\n* Calendar - mainly used for day-specific commitments; primary: paper-based, secondary: iCal\n* Action Lists - see "@" <<tag context>> on the left\n* Projects - levels:\n** 10k ft (current) - <<tag OutcomeList>>\n** 20k ft (focus) - OutcomeMatrix\n** 30k ft (2007) - GrantProposal\n** 40k ft (3-5 yr) - DanceLabs and DiscussionSpace\n** 50k ft (life) - OurPossibility\n* [[Agendas|@Agendas]] - queue items for discussion\n* Plans - OutcomeMatrix is our current gluework\n* Reference - primary: GTDTiddlyWiki, secondary: [[workspace on o.net|http://omidyar.dancelabs.com/ws]], tertiary: [[wikispaces|http://dancelabs.wikispaces.com]]\n* [[Contacts|https://www.plaxo.com/my_plaxo]] - served by Plaxo and our CommunityRoster\n\n!Ticklers\n* notebook with tabs labeled 1-31 (fwding documents)\n* paper-based calendar (appts, reminders, day-specific actions)\n\n! Missing components\n* physical inbox\n\n! See also\n* ProgramDashboard - complete view\n* [[Franklin-Covey Compass|CoveyCompass]] - additional principles\n
Wikis provide us a form of GroupMemory.\n\nThe web technology you are using right now is a state-of-the-art wiki implementation.\n\nGTDTiddlyWiki is one of the most fascinating and elegant virtual stores we've seen to date. Touted as "[[your simple client side wiki|http://shared.snapgrid.com]]," it is read-only and currently maintained by ChinarutRuangchotvit.\n\nOur WikiIntention\n\n!Benefit summary\n# embrace the collaborative power of the wiki paradigm\n# massively quick refactoring of information\n** no need to wait for web server commits\n** no need to rewrite (whiteboard)\n** avoids killing more trees than necessary (paper)\n# "instant" processing of notes/ideas\n** end of piles and piles of journals and notes that require review.\n** refactor "in the moment" (say ''no'' to later!)\n** in-place editing\n# transportable - you may save this web page to a USB stick and review on an overseas business flight (hint hint... ;)\n\nIf anyone is interested in helping us evaluate a [[collaborative version|ZiddlyWiki]] (ie. community-editable) of this wiki, please let us know.\n\n! Resources\n* GTDSystem implementation\n* TiddlyEvaluationNotes\n* TiddlyChangeRequests\n
Authored by DavidAllen - this is one of the more profound books I've read in the area of personal time management.\n\nThai translation coming forth - can't wait!\n
anyone is welcome to revise this defintion and balance the "right brain" aspects of being a dancer - this is just a place to start! compare to CommunicationsCoach (point of inspiration)\n\n! Summary\nThe following is a list of traits that constitute being a dancer in a global world. You are equal with your peers no matter what role you choose at DanceLabs. You relate to others and assist at any opportunity you discover. Others see you as being extraordinary service to yourself, themselves, and the world. This is what it is to be a global dancer!\n\n!Right Brain\n# ''Spontaneous'' - ...\n# ''Creative'' - You adapt to your environment. You take advantage of technology to coordinate logistics and responses. You have an affinity for managing requests in a way that causes others to stand for you!\n# ''Musical'' - <rhthym, tempo, patterns, creative, improvises>\n# ''Cross-cultural'' - You are fluent in multiple languages and able to assist in bridging cultural gaps and love to connect people of seemingly different cultures.\n\n!Left Brain\n# ''Proactive'' - You execute world-class organizational, planning, communication skills to transform our CommunityDancing floor and CommunityCenter. You love to leverage time-proven principles and willing to invent new ones to get the job done. You have an extraordinary relationship to communication.\n# ''Aggressive'' - You are a self-starter not afraid to take risks. You take hold of your own personal development and ask for assistance when needed. You cause a new future to be present and unrelentlessly adapt to change.\n# ''Driven'' - You are process-oriented and communicate with those who run a tight ship. You have a gift for taking notes and transforming them into action plans. You are accountable for your actions and act on your own.\n# ''Problem solver'' - You excel at solving challenging issues without losing focus on tasks at hand.\n# ''Results-oriented'' - You plan outcomes and drive results predictablity and reliabily. You know when to drop the schedule for the sake of people.\n\nWelcome to your DancingSelf! ;-)\n
//translate these to Thai - they are the hear of our work!//\n\n! unique to Dance Labs\n* DanceCatalyst\n* DanceExperiment\n* DanceWorkshop\n* Format - structure of DanceWorkshop. TamalpaInstitute calls this a "score"\n\n! general\n* Project - narrow scope with specific deliverables
ranked from highest to lowest:\n* CommunityProjectPlan\n* GTDSystem\n* OutcomeMatrix\n* [[7 Habits]]\n* [[Franklin-Covey Compass|CoveyCompass]]\n* [[CMMI]]\n
We are in the process of kicking off fundraising activities\n\nsee GrantProposal\n
Please ContactUs if you wish to assist us with any of these proposals:\n* [[Plan Proposal|http://www.writely.com/Doc.aspx?id=acfbv7hvsjm6_19fq93xf]]\n* KMUTT Proposal\n
* express with just hands\n* rhythm and beats\n* different kinds of music\n* different ways people interpret music\n\n! Guidelines\n* duration: 10 min\n\n! Ack\n* TedKo\n
2007: 10 intro 30 guests each\n\nlocation: BaanSuanThon\nwe will knock on every door if we need to!\ndeclared goal: 50 guests\n\nwe'll hold it in KMUTT's largest lecture hall if need be!\n\nthis is distinct and also hold the intention that our DanceCelebration will very much be an introduction to the possibility of Dance Chalat for many\n\n! Guidelines\n* allow kids to leads as much as possible\n* be prepared to dance if co-leading conversation\n\n! Checklist\n# confirm guests\n# background music\n** radio plugged in\n# intention & timeline\n# list of [[Breakthroughs]]\n# paper, pencils, and colored paper for guests to play DancingSelf game\n# empty garbage\n# make tea\n# refill water pitcher\n# charge camera battery, empty memory card\n# prepare food (rice!)\n\n! Team\n* responsible for water (well being)\n* responsible for hot water\n* greeting team lead\n* makeup lead\n* space lead\n
Dance Chalat is based out of Bangkok, Thailand.\n\nWe have a condo that is the center of our operations. It is essentially our CommunityCenter now that many different faces are developing!\n\n* [[Assets]]
* DancePartners - humans are more effective in regards to holding you to integrity than any machine will ever be capable of!\n* free open-source being the foremost of them :)\n** ThaiOpenSource\n*** [[Chantra|http://www.osdev.co.th/chantra/]] - Thai collection of open-source software\n** LinuxTLE (pending)\n
<html>\n<a href="http://www.flickr.com/photos/chinarut/298576098/" title="Reawakening to One" target="blank_"><img src="http://static.flickr.com/103/298576098_041006898c_m.jpg" width="240" height="138" alt="Reawakening to One" /></a>\n</html> ([[image map|http://mindmap.dancelabs.com]])\n\nfor the most part, now superceded by our ProgramDashboard\n\n! Other references\n* ExistenceStructures\n* WebSite\n
* table\n* chairs\n* whiteboard (or chaulkboard)\n
|!Date|!invited|!dancing|!comments|!highlight|\n|? Aug|1:?|1:3?|#0 (evonne): all new|DancingSprit|\n|27 Aug|6:2|4:3|#1:5 new|Trio|\n|3 Sep|3?:3+|3:8|#2:5 new|FreePlay, EnergySpheres|\n|10 Sep|5?:?|6:11?|#3:''many'' new|Pia, Nonglek|\n|1 Oct|2+:?|2:1|#4:1 new|Ben|\n|8 Oct|4:+1|5:6|#5:3 new|FulbrightScholar|\n|15 Oct|3:+1|3:6?|#6|WereFlyin|\n|22 Oct|4:6?|2:6|#7|NorthernExposure|\n|29 Oct|||#8|ParentUpdate|\n|12 Nov|||#9|Honeymoon|\n|19 Nov||3:8|#10|WoodenSala, ChalipBirthday|\n|26 Nov|||#11|MornSolo|\n|3 Dec|||#12|Frederick|\n|10 Dec|||#13|Belle|\n|17 Dec|||#14|DancingInSoi|\n|24 Dec|||#15|DanceCelebration DryRun|\n\n!key\ncatalysts:dancers\n
* powerful enrollment shares (see [[Breakthroughs]])\n** verbal vs physical shares\n** focus on conversations for relatedness\n** exercise every 15 minutes and share insights\n
<storyboard DanceCelebration>\n\n* who is Dance Labs\n* what is Dance Chalat\n* what is happening\n* what our goals are\n* what our intention is\n* our vision - //We envision inviting guests who represent outside countries to see the difference we are making with kids today and invite them to support us in our efforts.//\n* how we make a difference in the relationships of children and their families.\n* power of sharing\n* power of community\n* our commmitment\n* where we need your support\n* ack listening\n* thank you\n
* keeping things fun - startup life is a wee bit serious!\n* choice re: use illegitimate software during BootstrapMode\n* web server not available (timed out)\n* no common business language\n* no common communication structures (phone or online)\n* this wiki is not community-editable (thus does not encourage spontaneous edits by the community and/or those who read it)\n* not all team members/volunteers are computer-savvy. must document face-to-face collaboration paradigms and absorb associated costs (travelling, paper, etc)\n\n
[img[http://static.flickr.com/100/281051950_3511f6bcdc_m.jpg]]\n\n! Desired Results\n100 kids on our KidsRoster\n\n!! Thailand\n"6.Have 30-50 kids of all place to join\ndancechalad.(May be 10 -15 per group and ) if we can\nset up 1 sustainable group in 2 months we may set up 2\nsustianable groups within december 2006."\n\n!! Global\nafter starting our CommunityDancing display, we are now inspired to have 50 kids outside of Thailand be part of the fun! send your DancingSelf in!
We're delighted you wish to join us!\n\n<html>\n<a href="http://www.flickr.com/photos/chinarut/284781909/" title="what joy!" target="blank_"><img src="http://static.flickr.com/120/284781909_fc5c67d5b5_m.jpg" width="180" height="240" alt="what joy!" /></a>\n</html>\n\n!When\nevery Sunday morning\n!Time\n10am-12pm \n!Where\nThonburiPark (click for directions, behind KMUTT)\n!Meeting Point\nTo the right of the large wooden sala right in front of you as you walk in the front gate ([[detailed instructions|MeetingPoint]])\n!What to bring\nYour DancingSelf!
Fold into ProductionManual\nAs you can see, there's an r-evolution going on here... ;)\n\n! August 27,2006 (generated: Aug 31, 2006)\n[[KEY LEARNINGS captured on wikispaces|http://dancelabs.wikispaces.com/Pilot+Dancelabs+with+Kids#tocPilot%20Dancelabs%20with%20Kids12]]\n\n! Sept 3, 2006 (generated: Sept 4, 2006)\n[IMG[http://s56.photobucket.com/albums/g179/chinarut/th_IMG_1956.jpg]]\n\n! Sept 10, 2006 (generated: Sept 12, 2006)\n!! worked\n* everyone on time\n* kids in action generating sunday\n* accountability worked\n* everyone brought their own food\n* chalip took leadership and generated sat assisting meeting\n\n!! didn't work\n* older kids have concerns around "looking good"\n* no experience getting what kids want\n* no full-time staff\n* didn't complete with assisting team\n* chin on it\n* no opportunity to coach\n* no course supervisor\n* didn't practice exercises\n* no new material (expect kid's games)\n* kids didn't generate completion\n* didn't let kids lead - "support" not clear\n\n! Oct 1, 2006 (generated Oct 3, 2006)\n!! worked\n* everyone on time - kids were early (9:30!)\n* freeplay present to freedom\n* present to family\n* new leader: Ben\n* Morn sourced sunday\n\n!! didn't work\n* one "not fun" response\n* not present to partner support\n* no assisting team to hold space\n* did not practice exercises - spheres missing details\n* outcome not clear from intention (freedom)\n* not enough food/water\n\n! Oct 8, 2006 (generated Oct 10, 2006)\n!! worked\n* English-speaking dancers showed up and created listening\n** kids could see it in self-expression of guests\n** powerful share - get possibility Dance Chalat and share\n* guest invent new game - rhythm with clapping\n* morn & chin were able to be with space\n\n!! didn't work\n* nobody to hold space\n** sphere's exercise (kids would not be present)\n* we didn't have a photographer\n* ran out of memory during powerfull share. didn't clean up memory card \n\n! Nov 12, 2006 (generated Nov 14, 2006)\n!!worked\n* kids early to prepare to surprise Joy with necklaces\n* Joy arrived on time by 8:40\n* kids made nothing of can truck driver being late over 30 minutes\n* kids play games with themselves\n\n!!didn't work\n* stayed up past midnight evening before\n* registration table a mess\n* arrived at 9:15, started at 9:35 (lost momentum)\n* Oey wasn't able to focus on being photographer\n* rotation instructions during BeingWithAnother confusing\n* candles left burning\n* didn't give current DanceLabs overview flyer\n* didn't ask if Lumpini on the 25th is a possibility\n* no Dance Chalat overview flyer\n* no telephone of can truck driver\n* stopped momentum to play EN version of Scrabble when can truck was in fact late\n* can truck driver out of communication at 6pm\n\n!!ideas\n* fax map to complex to hotel day before\n* take pictures of MeetingPoint (wooden sala, archway on right)\n
* Inspire individuals to have fun and feel the excitement of dance free of their inhibitions.\n** DanceExperiment\n* Get people out of their head, in their body, and realize dance occurs as an impromptu and free-flowing action not as a thought or technique.\n** EnergySpheres\n* Encourage dancers to experiment with human interaction in positive, playful, and creative ways.\n** AnyoneCanBeALeader\n* Build a community passionate about transcending dance interactions into their everyday life experiences.\n** CommunityDancing\n
this is a display that allows kids to see our community grow.\n\nthe display starts with everyone "in the stands" - outside the dance floor and as we invite new kids to be part of our Dance Chalat effort, we move the figure of the child onto the dance floor.\n\nthis display will start on paper and eventually will be eletronic long-term.\n\n<insert whiteboard picture here>\n
the Kid's Roster shall help subdivide children into manageable groups.\n\n! Intent\n* keep development logs\n* track child status\n\n! Categories\n# next experiment\n# next workshop\n# waiting list\n# not active\n\nwe use a RegistrationForm to capture data in regards to each child\n\n! Resources\n* Q: how does Darun's information system work?\n
For the time being, we use this wiki to:\n* Organize and index key projects and project support information as related to DanceChalat (form of GroupMemory)\n* Shield details of our DanceLabs operation itself to the best of our ability. Any details you do see are those that impact Dance Chalat directly.\n* Focus on supporting operations and our fundraising process.\n* Invite others to make a difference! (ie. feedback welcome until we can all edit this wiki!)\n
We acknowledge the [[SELP]] for giving us our sense of being CommunityLeader(s)\n\nA first cut where we align with LEC2020 strategic outcomes\nWe are in contrast, a not-for-profit organization\n\n! Impact on People, Organizations, and Society\n* "across cultures" - experiment outside spoken language\n* we "expand conversations for what's possible" in the domain of dance at all levels\n! Marketplace\n* we consider our community to produce "remarkable, unique results"\n! Organizational Scope and Size\n* >"powerfully established to further expand their availability"\n! Reputation\n* "innovative products and services"\n* "excellence of its business operations"\n* >"outstanding global reputation"\n! Customer Delight\n* >"exceeding its customers' expectations"\n! Built to Last\n* >"organizational capacities and structures for its evolution"\n* >"ensure its values are honored and its purpose and mission fulfilled beyond 2020"\n
//to be drafted into one paragraph//\n\n* name: ChinarutRuangchotvit\n* status\n** dual citizen born and raised in the United States\n** graduate of CarnegieMellonUniversity in Electrical/Computer Engineering\n* purpose: to build sustainable, global, online communities from Thailand\n* ack: not a [[PMP]]\n* what I share is breadth in experience\n** private, academic, and not-for-profit sector\n** engineering, sales, consulting, entrepreneur\n** startups to global enterprises such as Intel \n* passion\n** CommunityBuilding\n** BestPractices\n** innovation and research\n* inspiration to be a world-class producer\n** co-founder of DanceLabs\n
* audio recorder\n** laptop\n** Audiograbber\n** tabletop mic\n* sign-in sheet\n* handouts\n** slides\n** wiki article ($3M, work your net, etc)\n* water\n* slides (on USB stick, floppy, PDA, flash card, etc)\n
so I've gone nearly 3 years without having to ship stuff from LA. I think about stuff, I forget about others. what is really being a catalyst is having kids over and feeling I don't really have much to give them to play with!\n\nwill have to make a decision whether it's worth the effort to do this before I visit the states (tentatively April 2008)\n\n! OffFloorGames\n* chess\n* checkers\n\n! Books & Courses\n* Photoreading\n* RATL & s/w engring\n* <review booklist on Google Doc>\n\n! Video\n* PS/2 //voltage, doubles as DVD player//\n* Gameboy //Tetris//\n\n! ICT\n* server in LA (.5 TB) //power supply//\n* WiFi access point //secure?//\n\n! Tasks\n//requires trip planning - coordinate from BKK //\n* scan negatives (dance community!) - upload to [[Flickr]]\n* create gatherings and share what we've been up to with DanceChalat\n** biz networking (intro) - Ryze\n** dance (active) - Venice, parks, studio\n** personal (update) - Club Sugar, Moontribe\n** benefit - ?\n* transform all remaining music to mp3\n* transform VHS to DVD (minimum: index)\n* biz cards\n
*<<defaultHome>>\n*[[news|DanceInnovationNews]]\n*[[photos|Photos]]\n*[[video trailer|VideoTrailer]]\n*[[discussions|DiscussionSpace]]\n*[[contact us|ContactUs]]\n*[[join us|JoinUs]]\n\n*[[About our Coordinator|GTDSystem]]\n*[[events|%Events]]\n*<<tag context>>\n*[[detach me|DetachableWiki]]\n
<html>\n<a href="http://www.flickr.com/photos/chinarut/298746407/" title="Benefit Planning" target="blank_"><img src="http://static.flickr.com/113/298746407_aa91e358e5_m.jpg" width="240" height="180" alt="Benefit Planning" /></a>\n</html>\n
as of Oct 10, 2006, our Dance Chalat media disc contains:\n* 5 events\n* 456 [[Photos]]\n* 18 movie clips\n* 1.8 GB\n\nContactUs if you are interested in being a VideoEditor for our VideoIntroduction\n
We've put this visual guide together to help you find us!\n\n! Main Entrance\nwalk through the entrance to the right of this sign...\n<html>\n<a href="http://www.flickr.com/photos/chinarut/298751143/" title="Main Entrance" target="blank_"><img src="http://static.flickr.com/120/298751143_63af59dc37_m.jpg" width="240" height="180" alt="Thonburi Park" /></a>\n</html>\n\n! Main Path\nas you go down the main path, you will pass this on your right...\n<html>\n<a href="http://www.flickr.com/photos/chinarut/298755830/" title="Welcome!" target="blank_"><img src="http://static.flickr.com/110/298755830_6de509501e_m.jpg" width="240" height="180" alt="Welcome!" /></a>\n</html>\n\n! Wooden Sala\ngo straight towards the giant sala in front of you...\n<html>\n<a href="http://www.flickr.com/photos/chinarut/298776768/" title="Wooden Sala" target="blank_"><img src="http://static.flickr.com/111/298776768_b3f91d0a44_m.jpg" width="240" height="180" alt="Wooden sala" /></a>\n</html>\n\n! Veer Right\nfollow the fork in the path to the right...\n<html>\n<a href="http://www.flickr.com/photos/chinarut/298781395/" title="Veer Right..." target="blank_"><img src="http://static.flickr.com/102/298781395_64198437fb_m.jpg" width="240" height="180" alt="Veer Right..." /></a>\n</html>\n\n! Magic Gate\ngo through our gateway to intelligence... ;)\n<html>\n<a href="http://www.flickr.com/photos/chinarut/298760819/" title="Gateway to intelligence" target="blank_"><img src="http://static.flickr.com/101/298760819_f3f1bfe66e_m.jpg" width="240" height="180" alt="Gateway to intelligence" /></a>\n</html>\n\n! Sign in Table\ndrop your belongings and sign in...\n<html>\n</html>\n<coming soon>\n\n! Our Dance Floors!\nand get ready to dance!\n<html>\n<a href="http://www.flickr.com/photos/chinarut/298766832/" title="Dance Floor West" target="blank_"><img src="http://static.flickr.com/119/298766832_64866ed2e8_m.jpg" width="240" height="180" alt="Dance Floor West" /></a>\n\n<a href="http://www.flickr.com/photos/chinarut/298772309/" title="Dance Floor East" target="blank_"><img src="http://static.flickr.com/99/298772309_9bd9232b5d_m.jpg" width="240" height="180" alt="Dance Floor East" /></a>\n</html>\n\n
was "effective meetings"\n\n! 24 hrs prior\n* agenda predefined\n** time and date\n** length of meeting\n** attendees\n** agenda items\n** ideal outcome\n* attendees confirmed \n\n!Environment\n* translator\n* whitebaord\n* markers\n* notebooks\n* pens\n* ergo chair\n* table\n* water\n* place to lie down\n* computer (laptop over Wifi preferred)\n* internet (broadband preferred)\n\n!Resources\n* transportation roundtrip provided (taxi)\n
yes, we feel like parents...''loving'' parents! <3\n\n<html>\n<a href="http://www.flickr.com/photos/chinarut/227163188/" title="being home" target="_blank"><img src="http://static.flickr.com/84/227163188_872be72a53_m.jpg" width="240" height="180" alt="being home" /></a>\n</html>\n\n;-)\n
<html>\n<a href="http://www.flickr.com/photos/chinarut/268627003/" title="My Name My Style (หนูชื่ออะไร)" target="blank_"><img src="http://static.flickr.com/115/268627003_2247c0e303_m.jpg" width="240" height="180" alt="My Name My Style (หนูชื่ออะไร)" /></a>\n</html>\n\n! Intention\n* to have kids share their names through their bodies\n* to create a fun way to learn each other's names\n* to exercise "body memory"\n\n! Guidelines\n* we recommend that the one who is introducing him/herself stands and watches their expression "played back" to them\n* duration: 10 minutes\n* Thai: หนูชื่ออะไร\n\n! Ack\n* DialoguesBetweenLifeAndArt\n
<<<\nHi! I am a fan of your Nolo books and now located in Thailand. It is my assumption your non-profit related books outline steps and knowhow for U.S.-based entities - is this correct?\n\nI would appreciate a pointer as to how to obtain an equivalent rich resource as you offer for starting a non-profit (aka foundation) based out of Thailand.\n\nthanks!\n<<<\n
Inspired by listening to this set upon waking up at 5am and sharing what I got. Forever thankful to rockymau as it was a magical first date ;)\n\n! Possibility\n* peace\n\n! Desired Results\n* create an emersive space for participants to be with Northern Exposure CD set and share their experiences\n\n! Guidelines\n* consider holding this session at dawn\n* ask participants to close their eyes and not fall asleep\n** assume a sitting meditation position if at all possible\n* create a space free of distractions, noise, etc.\n** if done invidivually, use headphones\n* let participants be with silence at end of set for at least 5 minutes\n\n! Resources\n* Sasha & Digweed's Northern Exposure CD\n\n! Accountability\n* level 6 - act on own\n\n! Consequences\n* capture group/community experience and allow creativity to take hold!\n\n! References\n* "music & dance" share after completion of the LandmarkForum\n\n! Ideas\n* draw and/or write after set is complete\n* alternative is to create an art installation that is visual and interactive ;-)\n\n! Interpretation\n# Satellite Serenade\n** simple life\n** ''birth''\n** see nature\n** see things never seen before\n** <beats> //see cars, machinery, technology//\n# Cascade\n** thinking, ''imagination'', thinking about future\n** inspiration\n** <bongo> exploration\n# These Waves\n** technology\n# Raincry\n** robotic life\n** <2:24> lost - where's the simple life\n# Out of Body Experience\n** can't find the path home\n** give up, scared, fearful\n** fight with body\n** spirit flies\n** "will you meet me" - spirit talks\n# I'm Free\n** transformation\n** rebirth\n** 5:32 "open your mind, let it go, from the heart, feel it flow" "make it grow, say after me, FREE"\n** "another way", "see a dream" "same dream" "the dream we all seek is the same" "freedom"\n** "i am free"\n# Ultraviolet\n** possibility, sanook\n** angels\n** "i love you"\n# Obsession\n** 4:26 <diva>\n# Water From a Vine Leaf\n# Liquid cool\n** far future, doing the impossible, unknown\n** life is just being\n# Last Train to Lhasa\n** Wikipedia: "place of the gods"\n** akin to Gaia\n** afterlife\n** being one\n** peace, blissful\n
What's now playing at Dance Chalat HQ:\n\n[img[http://www.dancelabs.com/img/album.jpg]]\n\n//NOTE: there may be a delay in receiving the latest album cover if you are a great distance from our server in the states.//\n
ok - this list of games is sourced from giving kids games to play when we're off the dance floor...\n\n! wall\n* gigantic mindmap\n\n! table\n* Jenga\n* puzzles\n* chess set\n* board games (Pictionary)\n* backgammon\n* checkers\n* kids games (Chutes & Ladders) //did I keep these?//\n* Scrabble (Double Up - bi-lingual EN/TH)
OBJ: keep cost and resource usage at a minimum (self-sustainability)\n\n* recycle paper - reuse on-sided A4 sheets\n* don't print if not necessary\n
* zaadz.com [J]\n* o.net (existing presence) [LN]\n* SecondLife [E]\n* Flickr (picture-driven community building)\n** create group\n* Wikipedia (definition)\n* social: friendster, myspace, hi5\n* biz: LinkedIn, Ryze\n* email groups: MSN, Y!, Google\n
!Recommended\n* Vocal House - iTunes->Radio->Electronica->[[Circuit Candy|http://www.circuitmix.com]]\n
!Open Research\n\nthis is a great article capturing the how we wish to leverage the power of "open research" to invite researchers from around the world to collaborate on our efforts:\n\nhttp://blog.p2pfoundation.net/?p=376\n\nAll the world's a stage!\n\n!Two-sided Markets\n\nOur challenge "giving away" Dance Chalat:\n\n"Often the platform owner opens part of the platform, giving it away for free to one of these user groups, in order to make money from the other user group. So for example, buyers pay nothing to use the ~E-Bay service while sellers pay posting and sales fees. Job candidates can post resumes at recruiting sites while firms pay for access. Google gives away search for free in order to attract advertisers.\n\nThe trick is figure out how to match the groups of non-paying users with paying users and segment the market. If it’s done well, this also invokes network effects in ways that tend to lead to large dominant players as each side attracts more of the others.”\n\nsrc: http://blog.p2pfoundation.net/?p=377\n
* SeedMoney (est 100,000 until Dec 31, 2006)\n** FundraisingGoal - [[Project Development Plan|http://www.writely.com/Doc.aspx?id=acfbv7hvsjm6_27f7qdx7]]\n* WishList\n* [[Expense Worksheet|http://tinyurl.com/r9p3f]] (old, see .xls)\n** assign purchase line items to jars\n** create forecast as to when funds are required to be available\n\n! Resources\n* FundraisingFundamentals\n* AnnualUpdate - a few slides start to breakdown budget line items\n* PlanForAction - see CostAnalysis
the meeting of the minds is coming along nicely...\n\n! Merger\n* OutcomeMatrix (sourced from Morn's mindmap)\n* [[Overview Map|http://mindmap.dancelabs.com]]\n* whiteboard discussion (mapping to traditional org dept structure)\n* Dance Chalat resource mindmap (MornChin cocreation)\n\n! Progress\n* WebSite\n* DanceLabs responsibilities
//The purpose of this generic practice is to define the organizational expectations for the process and make these expectations visible to those in the organization who are affected.//\n\n//In general, senior management is responsible for establishing and communicating guiding principles, direction, and expectations for the organization.//\n\n# REQM - share possibilities abundantly. allow new ideas to flurish!\n# PP - create agreements\n# PMC - milestone reviews and weekly outcome planning\n# SAM - N/A\n# MA - use visual displays to communicate progress whenever possible\n# PPQA - document processes\n# CM - use GovernanceStructures to manage change\n\nalso see CMMILevel2 for specific artifacts\n
!Input\n* SWOTAnalysis\n
Give people the opportunity to explore themselves and interact with others in an environment that encourages everyone to play and be free.
Who we are being is the possibility of connectedness, relatedness, and unwavering presence.\n\nDanceLabs is a global community committed to facilitating, inventing, and sharing the possibilities for dance all over the world!\n\nOur vision for WorkingForGood\n\nWe invite you create a listening for our community in our DiscussionSpace
it's fun to refactor the matrix! ;)\n\n|!team|!owner|!key outcome|!desired outcomes|\n|kids|Morn|100 JazzedKids|RegistrationForm, KidsRoster|\n|team|Morn|20 AssistingTeam|AssistingProgram, SourceDocument, TeamRoster, StewardshipAgreement|\n|design, //research//|Chin|CatalystsGuide|CelebrationDesign, ProgramDesign, DesignPrinciples, ActivityDesign|\n|intro|Morn|HomeIntro|IntroductionFormat, VideoIntroduction, EnrollmentCollateral, [[SlidePresentation]]|\n|production|>Morn|DanceCelebration|DanceInvitation, ProductionManual, DanceWorkshop, DanceExperiment|\n|finance|Chin|[[Grant]]|GrantProposal, OperatingBudget, BalanceSheet, SeedMoney|\n|foundation, //admin//, //env//|Chin|[[Foundation]]|BusinessPlan, WebSite, ProgramDashboard|\n|sanook|>Morn|CommunityDancing|DanceGames, OffFloorGames, GetOffItGames, FreetimeDesign|\n|outcome planning|c\n\n|!section|!guidelines|!resources|!accountability|!consequences|\n|kids||telephone|CommunityDancing||\n|team|training|MeetingRoom|CommunityProjectPlan|DanceRetreat|\n|design|safety, impecable, nothing|DesignSpace|ZeroAccidentPolicy||\n|intro|intentional, presence|IntroRoom|IntroStatistics||\n|production|integrity|team|on time, on budget|break|\n|finance|unstoppable|communication|FundraisingDisplay|first grant|\n|foundation|clearing & stand|HomeOffice|demographics, CommunityDancing||\n|sanook|communication|energy|CommunityDancing||\n|outcome fulfillment|c\n\n! Source\nMorn's initial brainstorm\n[img[http://static.flickr.com/82/252458154_f2d5446496_m.jpg]] ([[original size|http://flickr.com/photo_zoom.gne?id=252458154&size=o]])\n\n! Transform~~1~~: COTW\n[img[http://static.flickr.com/83/260407382_81f3f4f423_m.jpg]] ([[original size|http://flickr.com/photo_zoom.gne?id=260407382&size=o]])\n\n! Transform~~2~~: Role declarations\n** ProgramManager\n** SustainabilityAndGrowthPartner\n\n! Notes\n* consider: transform to Zoho Sheet to support collaboration, concurrent editing, and whole table formatting\n* connect-the-dots: OrganizationalPlanning\n* current state: ProgramStatus\n* [[Future]]\n
ref: DanceLabs\nsrc: http://overview.dancelabs.com\n\n! Intention\n* provide a 10,000 foot level view of Dance Labs in 5 minutes or less\n* serve as a timeline for our VideoIntroduction\n* serve as an outline for SlidePresentation\n
from PMBOK 2000 Edition\n\n!Integration Management\n* ProjectPlan\n\n!Scope Management\n* >ProjectCharter\n* ScopeStatement (ref DanceCelebration)\n* WBS (ref OutcomeMatrix)\n\n!Time Management\n* ActivityList //not done//\n* NetworkDiagram (ref OutcomeMatrix) //not done with activities//\n* ActivityDurationEstimates //not done//\n* ProjectSchedule\n\n!Cost Management\n* ResourceRequirements\n* CostEstimates\n* CostBaseline\n\n!Quality Management\n* QualityManagementPlan\n\n!Organizational Management\n* RoleAndResponsibilityAssignments (ref MornChin role def)\n* TeamDirectory\n\n!Communications Management\n* CommunicationsManagementPlan\n\n!Risk Management\n* RiskManagementPlan\n* [[Risks]]\n* RiskRanking\n* QuantifiedRisks\n* RiskResponsePlan\n\n!ProcurementManagement\n* StatementOfWork\n* EvaluationCriteria\n\n
!required\n# Camera - before and after pictures\n# Camera battery (charged)\n# Sign-in sheet\n# Pen\n# Marker\n# Trash Bag\n# FirstAidKit\n# Boombox\n# Batteries\n# Music\n# Nametags\n# Water\n# Watch\n\n!kids\n# Lunch & Snack\n# Water\n# Music - regular ~CDs (not mp3s)\n# DanceGames (invention)\n\n!Optional\n# Umbrella\n# Mat\n# DanceGames (printout)\n# Sign\n# Snacks\n# Lunch\n# Plates\n# Spoon & Forks\n# TeamSign\n# spare set of batteries (Cx6)\n
<div id='header'>\n<div id='titleLine'>\n<span id='siteTitle' refresh='content' tiddler='SiteTitle'></span>\n<span id='siteSubtitle' refresh='content' tiddler='SiteSubtitle'></span>\n</div>\n</div>\n<div id='sidebar'>\n<div id='mainMenu' refresh='content' tiddler='MainMenu'></div>\n<div id='sidebarOptions' refresh='content' tiddler='SideBarOptions'></div>\n<div id='sidebarTabs' refresh='content' force='true' tiddler='SideBarTabs'></div><div id="licensePanel">\n<a rel="license" href="http://shared.snapgrid.com/gtd_tiddlywiki.html#RevisionHistory" target="_new">GTDTW Version <span macro="version"></span></a>\n<a rel="license" href="http://cctiddly.sourceforge.net">ccTiddly 1.1</a>\n<a rel="license" href="http://www.tiddlywiki.com" target="_new">\nTiddlyWiki is published by Jeremy Ruston at Osmosoft under a BSD open source license</a>\n<a rel="license" href="http://snapgrid.com" target="_new">GTD TiddlyWiki is a modification by Nathan Bowers at Snapgrid under the same license terms.</a>\n<a rel="license" href="http://davidco.com" target="_new">"Getting Things Done" is &#169; David Allen at Davidco. Davidco has no affiliation with TiddlyWiki or GTD TiddlyWiki.</a>\n\n<!--Creative Commons License--><a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/2.5/"><img alt="Creative Commons License" style="border-width: 0" src="http://creativecommons.org/images/public/somerights20.png"/></a><a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/2.5/">Our work at Dance Labs is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 2.5 License</a>.<!--/Creative Commons License--><!-- <rdf:RDF xmlns="http://web.resource.org/cc/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">\n<Work rdf:about="">\n<license rdf:resource="http://creativecommons.org/licenses/by-nc-sa/2.5/" />\n<dc:type rdf:resource="http://purl.org/dc/dcmitype/InteractiveResource" />\n</Work>\n<License rdf:about="http://creativecommons.org/licenses/by-nc-sa/2.5/"><permits \nrdf:resource="http://web.resource.org/cc/Reproduction"/><permits rdf:resource="http://web.resource.org/cc/Distribution"/><requires rdf:resource="http://web.resource.org/cc/Notice"/><requires rdf:resource="http://web.resource.org/cc/Attribution"/><prohibits rdf:resource="http://web.resource.org/cc/CommercialUse"/><permits rdf:resource="http://web.resource.org/cc/DerivativeWorks"/><requires rdf:resource="http://web.resource.org/cc/ShareAlike"/></License></rdf:RDF> -->\n\n</div></div>\n<div id='displayArea'>\n<div id='messageArea'></div>\n<div id='tiddlerDisplay'></div>
this is comprehensive from the start for the time being\n\n* ack: 5 yr anniversary coming up\n* DanceCelebration planned\n* what outcomes have we created\n* DanceChalat is alive and the heart of our community\n* be straight about where we are\n* our FundraisingGoal\n* follow up on offer\n** ack: BusinessPlan\n
* ''working agreements'' - defining outcomes and keeping accountability\n* ''team skills breakdown'' - clarify where each of our strengths lie and where we are wiling to assist paid and volunteer.\n* ''review current projects'' - identify where we may be of immedaite assistance on projects we are already committed to.\n* ''assess potential opportunities'' - assess any leads we can bring the table and generate a clear next step for each one. \n
We have conducted several proof-of-concepts working with children, individual men and women, couples, and students in various settings including martial arts and yoga studios, conference rooms, retreats, and parks. We are certain our process works and makes a difference for people from all walks of life. We've released our work under a CreativeCommons non-commercial license which allows anyone to design and run their own experiments in their respective communities and thus help evolve our community in a SelfSustainable manner.
This example is based on a successful design executed on July 11, 2002 from 6-8pm with TedKo, the kind assistance of Dawn, and 20 volunteer participants. A special thanks to Laurie for introducing us to Hal - he stands we share the power of creativity with the world!\n\ntotal time; 2 hrs\n# QuickIntro (5 min)\n# WorkshopIntention (5 min)\n# EnergySpheres (10 min)\n# MyNameMyStyle (หนูชื่ออะไร) (15 min)\n# HearingAndExpressingMusic (15 min)\n# BodyIsolation (10 min)\n# simple movements, DanceDimensions (15 min)\n# DanceBeak (10 min)\n# WhosLeading (15 min)\n# VibeMatching (10 min)\n# DanceAllOut (10 min)\n# CoolDown, CommentCard\n\nthis format is the basis for our BuildingBlocks
* our one page [[photoset|http://photos.dancelabs.com]] of our favorites\n* above set of pictures presented as a [[slideshow|http://slideshow.dancelabs.com]] (length: 3 minutes)\n** Note: please wait ~4 minutes for slides to buffer before pressing "play" (over 256Kbps connection)\n* unique [[query|http://flickr.com/search/?s=int&w=98973695@N00&q=workshop+building+block&m=tags]] into our BuildingBlocks photo database\n* if you are an editor, see all our raw photos in our [[galleries|http://udance4ever.zoto.com/galleries]] (ContactUs for high-resolution originals)\n* a 10 minute [[video slideshow|http://video.google.com/videoplay?docid=-7095634414107557497&hl=en]] created by the kids (broadband required)\n* tiddlers tagged with <<tag photo>>\n\nin case you are interested in viewing our VideoClip\n
Photos capture our full range of human emotion at DanceChalat!\n\n<html>\n<a href="http://www.flickr.com/photos/chinarut/227158029/" title="follow the leader!" target="blank_"><img src="http://static.flickr.com/65/227158029_013a71d19c_m.jpg" width="240" height="180" alt="follow the leader!" /></a>\n</html> (pick a <<tag photo>>)\n\nOur [[photoset|http://photos.dancelabs.com]] on [[Flickr]]\n\nOther PhotoLayouts
! Guidelines\n* duration: 10 min\n\n! Ack\n* ContactImprov\n
views that impact our community at one time or another:\n* [[Digital Rights Management|http://furl.net/item.jsp?id=12894993]] (DRM)\n
see [[Breakthroughs]] to choose amongst breakthrough events\n\nsee BreakthroughReport to see how we intend to update parents on a regular basis\n
We are now in the process of refining our mission and objectives to be consistent with our community's innovations in dance. We have begun our new mission through the development of a new program for children called DanceChalat from which we derive tremendous satisfaction and accomplishment. Our focus is to sustain and expand our operations. We are now looking for partners, volunteers, and management expertise to help us achieve our fundraising goals and complete the process of achieving non-profit status. \n
! Space\n* be free (what the park represents)\n* be intentional and generate\n* dancing\n* make mistakes (esp during a DanceExperiment - additional space for learning)\n* learn\n* have fun\n\n! Overview\n* Components\n** site\n** games\n** music\n** food & water\n** guests\n\n* Support\n** DanceCatalyst (click for details)\n** assisting team\n** meeting schedule\n** checklist\n** guidelines (ie. safety)\n** budget\n** team workspace\n** timeline (1: prep; 2: activities)\n\n! Process\n# Recruit Team - TeamRoster. single point of contact\n# Choose Date and time - EventDateTime\n** SiteSurvey\n** SiteDirections\n** location of toilet\n** backup if it rains\n# Choose Place - EventLocation\n# Develop roster - KidsRoster, RegistrationForm\n# Prepare Agenda - WorkshopAgenda (1: preparation 2: activities)\n# Chooose Games - DanceGames\n# Prepare Stuff - snacks, recharge batteries, etc.\n# Pack Stuff - PackingChecklist\n# Relocate - ThonburiPark\n# Register guests - sign-in\n# Dance! :)\n\n! invitations (between now and next time)\n# Play DanceGames\n\n! post-production\n# Unpack Stuff (lost anything?)\n** Recharge Battery\n** Upload photos\n# Choose [[Photos]]\n# Edit Video (consider appending to VideoIntroduction)\n# publish event\n# PressRelease\n# Print Photos (optional, resource pending)\n# Update KidsRoster with new dancers\n\n! resources\n# TeamWorkspace (wiki, room, VirtualCenter)\n\n! Guidelines\n* safety first\n** stretching\n** FirstAidKit\n** CPR (be prepared!)\n* using our online community space to share your experiences\n* experiment production (see CatalystsGuide)\n** components\n** guidelines\n** checklists\n* our relationship to OpenSpace methodology\n* roles/[[Actors]]\n* productive meetings (MeetingNotes)\n* extract ProjectManagement best practices\n* KeyLearnings\n
the vision for our dashboard started as a wiki. this wiki serves as a prototype as to how simple an existence structure can be. This is especially true for non-corporate communities where this is more of a compass and/or guidance for the community.\n\nWe envision our ProgramDashboard to customize itself according to the hats you wear in life. The RoleMatrix represents a primary data structure to index what outcomes/faces shall be shown to you initially.\n\nThe ProgramManager evolves this dashboard, tracks breakthroughts, fields change requests, and collaborates with various communities on an as needed basis.\n\nit is possible this represents different views of the organization...\n\n* ProgramStatus - what's so\n* GTDSystem - execution\n* ProjectManagement - control structures\n* GovernanceStructures - guidance, direction, best practices\n* AccountingStructures - financials\n
Dance Labs DesignPrinciples are the basis of our Dance Chalat program.\n\n! Intention\n* discovery, exploration, curiousity, creativity\n\n! outputs\n* direction, strategy, and implementation\n\n! Dance Chalat\nspecifics in design influenced by children\n\n!! models\n# invite children every week (''current'')\n# wait to invite children monthly\n\n!! tips\n* inviting kids to collaborate and lead projects\n* keeping the attention of children\n\n!! resources\n* book: Magical Parent Magical Child\n* book: Awaken the Genius in your Child\n
[[formal agreement|http://www.writely.com/Doc?id=dhjhk7vs_7g7t489]] (@writely)\n\n!Desired Results\n* kids\n** 100 kids participating [JazzedKids]\n** RegistrationForm\n** KidsRoster\n* team\n** 20 person AssistingTeam\n** AssistingProgram\n*** InformationForm\n*** TeamRoster\n** Dance Chalat SourceDocument\n*** SourceDocument reviewed and edited by entire assisting team\n** Invent unstoppable TeamStructures [C]\n*** All team members declare StewardshipAgreement [C]\n** BusinessCoach [C]\n* intro\n** Baan Suan Thon Dance Chalat home introduction [HomeIntro]\n*** Thai\n*** English [C]\n** IntrodutionFormat\n** DanceInvitation (all events)\n*** Thai\n*** English [C]\n* sanook\n** Design a fun way for kids to play together when they are not on the dance floor [OffFloorGames]\n** FreetimeDesign\n** GetOffItGames\n* production\n** DanceCelebration\n** DanceWorkshop\n** DanceExperiment\n** Dance Chalat declares outcomes and budget for a period of 3 months prior to October 1, 2006 [C]\n*** Index of all outcomes [OutcomeMatrix]\n** ProgramDashboard [C]\n** List of KeyLearnings to assist with the design of our ProductionManual [C]
this is ''manually'' updated once a week. vision being this is live, dynamic, in-the-moment\n\n|!section|!status|!week outcome|!notes|\n|sanook|DanceExperiment|CommunityDancing|ArtStore|\n|kids|total:14, leaders:5|leaders:6, [[Workday]]|storyboard|\n|team|2|5, AssistingMeeting||\n|intro|kid:1,adult:3|adult:3, HomeIntro|slideshow|\n|design|DanceInvitation thoughts|ZeroAccidentPolicy||\n|production|DanceExperiment|DanceExperiment||\n|finance|out:2300, in:0|SlidePresentation|detail overview|\n|foundation|[[Foundation]] research|LandmarkEducation|SELP|\n\n! Noteworthy last week\n* member returns after declaring being "out" - possibility\n* [[Workday]] clearing - member being asked to leave, others give up judgement, give up being right, listening, forgiveness -> responsibility of how who you're being impacts others\n* give space to member leaving - "nothing wrong"\n* Dance Chalat cheer! - teamwork\n* 3 dancing guests & rhythm exercise - ack(sanook)\n
! key components\n* WorkingForGood\n* ZeroAccidentPolicy\n\n! steps\n* review OrganizationalStrategy for DanceLabs\n* brainstorm how the context of children may fulfill on all key objectives and goals\n* declare unique strategy for Dance Chalat\n* create ProgramDesign\n
model after Sasha & Digweed's NorthernExposure\n\n! intent\n* to align with progression outlined in our BuildingBlocks\n\n! early iteration\n* <Yoga music> - slow, no beat\n* expander - expansion, ...\n* mr. disco - ? (80s)\n* deep house - tempo but light beat; funky [up]\n* madonna Get Together - light beat, flowing\n* <house> - 70s disco, diva: "I can feel it, can you feel it?"\n* zouk - Thai, romantic //perhaps choose another selection//\n* salsa La Receta\n* dancey - Thai //choose new?//\n* ? - mysterious, unknown journey -> birth\n<needs a transition to psytrance>\n* psytrance\n<needs uncompression>\n\n! Added\n* <insert from iTunes %Dance Labs playlist> //be neat to automatically sync//\n\n! New\n* dark progressive //play being evil >:)//\n* Los Angeles - rock //success, on top of the world//\n* ? - hip hop\n* ? - lindy, big band\n* less electronica dammit!\n
We buy into Agile methods and we're pretty much making it up on the fly at this point - we just know it works ;-)\n\n* [[Project List|%Projects]]\n* [[PMBOK]]\n* [[&Budget]]\n\n* MasterSchedule re: availability\n* ProjectManager //role description//\n** monitor schedule and drive tasks\n\n! Lists\n* [[Breakdowns]]\n* [[Issues]]\n\n! Distinctions\n* Porfolio, Program, Project (OPM3) [LD]\n* Operations (OfficeManager) vs Production\n\n! Research\n* Edward Tuft's [[thread on PM|http://www.edwardtufte.com/bboard/q-and-a-fetch-msg?msg_id=000076&topic_id=1]]\n* Contingency Theory on PMTT (GMI)\n\n! Software\n* [[Writer's Blocks|http://writersblocks.com/]] (screenwriting) US$149\n* [[JCVGantt Pro|http://www.gantt-solution.com/en/products/jcvgantt.html]] (Mind Manager integration) US$129\n\n! Requirements\n* outcome-based\n* role-based\n
what we promise are breakthroughs in MusicAndDance\n\nwe provide a community building tool that focuses on the power music and dance has to make a difference.\n
! Intention\nfor DanceCatalyst to review and assist with generating intention and outcome for DanceWorkshop\n\n! Form\n* anything parent would like child to get out of the workshop\n* anything child shares about dancing\n* favorite music\n* any special needs (injuries, etc)\n* any concerns\n* dance experience - formal, lessons, self-taught\n\n! Basic Fields\n* First and Last Name\n* Age\n\n! Guidelines\n* have an example form filled in for AssistingTeam to see\n\n! References\n* refer to [[Ted's registration form|http://docs.google.com/Doc?id=dhjhk7vs_27dvc83m]] for additional ideas\n
* IT repairs\n* dancing\n* family\n* community\n* friends (sync)\n* training\n** LandmarkEducation center\n* celebrate\n* agencies (ie. forward non-profit matters)\n* fundraising\n
! dance\n* application of dance in unorthodox ways\n* experiment with dance\n* fuse existing dance styles\n\n! ICT for community development, growth and expansion\n* Web 2.0\n** Office 2.0 ([[vision|http://itredux.com/blog/office-20/]])\n*** writely.com\n* Free/Open Source software\n** OpenOffice.org\n** GTDTiddlyWiki\n\n! Opens\n* not-for-profit?\n* how to build an institute?\n
* can play with dynamics\n* can play with space (front, back, etc) - help people ''visualize'' rhythm!\n* music is optional\n* consider using feet instead of hands\n\n! Guidelines\n* duration: 15 min\n\n! Ack\n* Rufiena\n
simple list suffices for now - intend to prioritize risks\n\n* falling cashflow negative\n* Chin's camera breaks\n* child gets hurt\n
in this ever changing world - our RoleMatrix is taking on a transformation that is to cause a reorg (as depicted by OutcomeMatrix) in 2007.\n\nfor now, we're keeping things as is so as not to introduce too much change!\n
This table was inspired by our initial vision for our [[Intranet]]\n\n|33 roles, 60 outcomes|c\n|!role|!team|!coord|!outcome|\n|[[Accountant]]|finance|C+|BalanceSheet|\n|BusinessDeveloper|foundation|C+|BusinessPlan, SlidePresentation, ProgramStrategy|\n|CenterManager|foundation|C|OurVision, OperatingBudget, [[Stakeholders]], [[Foundation]], CommunityCenter|\n|CommunicationsCoach|external|(M)|CommunicationsPlan|\n|CommunicationsOfficer@!|foundation|C|CommunityUpdate, PartnerUpdate, StakeholderUpdate|\n|CommunityBuilder|foundation|C|CommunityDancing, CommunityProjectPlan, WebSite, DiscussionSpace|\n|CurriculumDesigner|design|C|DanceLikeYouLoveIt, CourseSyllabus|\n|CreativeDirector|design|C|CelebrationDesign|\n|DanceCatalyst|kids&|C|BuildingBlocks|\n|DanceExplorer?|intro&|C|WorldTour|\n|DanceInnovator|design|C|ProgramDashboard|\n|[[DJ]]@|sanook&|C|NorthernExposure|\n|EventProducer|production|C+|DanceCelebration, DanceExperiment, DanceWorkshop|\n|FundDeveloper|finance|C+|GrantProposal, [[Grant]], SeedMoney, StartupMoney, EnrollmentCollateral|\n|[[Greeter]]|intro|M+EN|StartHere, [[Sawadee!]], PhysicalAppearance, DanceInvitation|\n|IntroductionLeader|intro|M+EN|IntroductionFormat, HomeIntro|\n|[[Lawyer]]|external|(C)|ZeroAccidentPolicy|\n|MomAndDad|kids|M+|JazzedKids|\n|OfficeManager|foundation|C|HomeOffice|\n|[[Partner]]@|external|C*|PartnerAgreement|\n|[[Photographer]]|sanook|M+|[[Photos]]|\n|ProjectManager|foundation|C+|RoleMatrix|\n|ProgramDesigner|design|C+|CatalystsGuide, ProgramDesign, DanceWorkbook, WorkdayManual|\n|ProgramManager/|foundation&|M+|DanceChalat|\n|RegistrationManager|kids|M+|RegistrationForm, KidsRoster|\n|SpaceDesigner|production|C|ProductionManual|\n|[[Stakeholder]]@|external|C*|StakeholderAgreement|\n|SustainabilityAndGrowthPartner/|foundation|C+|DanceLabs|\n|[[Translator]]!|foundation&|M+EN|TranslationGuide|\n|VideoEditor|intro|C&|VideoIntroduction|\n|[[Volunteer]]@|*|*|StewardshipAgreement|\n|VolunteerCoordinator|team|M+EN|AssistingTeam, TeamRoster|\n|WellBeingManager|foundation&|M|FirstAidKit|\n!Key\n|!symbol|!meaning|\n|+|role requires a bit of assistance|\n|@|role sourced from StartHere (ref OutcomeMatrix for completeness)|\n|&|action being taken on a role not accountable for OR team being "borrowed"|\n|/|root partner role|\n|*|wildcard|\n|~!|requirement|\n
* Oct 21, 2006 - Feb 22, 2007\n* register by Oct 12 6pm\n\n* what time commitment outside of classroom?\n* classroom: every Friday evening\n* coaching: "do it for yourself"\n\n! Concerns\n* money to and from downtown\n* well being - extended sitting\n* translated to EN?\n
!Strengths\n\n!Weaknesses\n\n!Opportunities\n\n!Threats\n\n! Resources\n* NoloPress - [[SWOT elements|http://www.nolo.com/article.cfm/pg/3/objectId/0B0C50E1-EDFD-41B1-A5D3C9DC03ADFC33/catId/CE94A6B3-EFB6-4036-8498D5414328FD73/111/262/ART/]]
AlexDaSilva is Chinarut's salsa idol :)\n\nspecial thanks to Alberto's in Mountain View, CA for making the introduction!\n\n! Teaching\n* Basic step (variations: fwd/back, side-to-side, etc)\n** without music\n** with music\n* Simple turn\n* with a partner\n
Thank you for visiting our web site!\n\nOur JazzedKids are excited and want ''you'' to play a game and share your DancingSelf!\n\n<html>\n<a href="http://www.flickr.com/photos/chinarut/261593176/" title="Dance Chalat #3" target="_blank"><img src="http://static.flickr.com/84/261593176_900e287561_m.jpg" width="240" height="180" alt="Dance Chalat #3" /></a>\n</html> (pick a <<tag photo>> or <<tag video>>)\n\nFor those of you who can't wait, check out our BuildingBlocks!\n\nYou may read our overview of DanceChalat - an exciting new community service program born in Thailand based on our research at DanceLabs.\n\nWe are very excited as we approach our 5th anniversary in Dec 2006!
* sync/present (send email) [TK]\n
! Paradigms\n* being resourceful\n* multi-intentional\n* implement MillionaireMind jar scheme\n** maintain a FinancialFreedomAccount - our golden goose\n\n! Dance Chalat\n* suggested donation (0-100)\n* kids bring lunch, snacks, water, music\n\n! Dance Labs\n* keep operating costs low\n** teach kids to SustainThemselves\n
rebirth of Dance Labs!
Dance Chalat
<html>\n<a href="http://www.flickr.com/photos/chinarut/284778248/" title="I was a cat, I was a fish" target="blank_"><img src="http://static.flickr.com/116/284778248_71dd2a7f36_m.jpg" width="240" height="180" alt="I was a cat, I was a fish" /></a>\n</html>\n\nduration: 3 minutes\n
current draft powerpoint available for [[download|http://www.dancelabs.com/doc/ppt/Dance%20Chalat.ppt]] (approx 1.5MB)\n\nIf you would like to be a part of our [[Fundraising]] team, please ContactUs\n\n! Relationships\n* based on ProgramStrategy\n* supports BusinessPlan\n\n! Questions\n* top 10 benefits?\n* see FAQ and discussions on o.net\n\n! existing partner update flow\n* vision - possibility\n* what's happening\n* establish foundation ("center")\n* our goal\n* optional: engine\n\n! Primary Flow\n* Who are we? Credentials? OurBios\n* Dance Labs Overview\n** Mission\n** Obectives\n** History\n** Accomplishments\n** Support we need\n** What's possible //move?//\n* proposal draft\n* this wiki\n\n! References\n* [[wikispaces wiki|http://dancelabs.wikispaces.com]]\n* classic [[mindmap|http://mindmap.dancelabs.com]]\n* classic 3-ring notebook\n* omidyar workspace\n\n! Resources\n* past slide presentations for example flows (ie. CEP engine)\n
in actuality, this document is sourced by Morn out of her inspiration for DanceChalat from nothing, in Thai.\n\n
this is a partial list of participants we are very grateful for their contribution to our work. If you are not listed here and wish to be acknowledged, please ContactUs!\n\n* Ko\n* @TheCommunity\n** Naomi\n** Farhat\n** Damien\n** Mark Lewis\n* @SterlingInstitute\n** Waterman\n* Kris\n* @BurningMan\n* @Moontribe\n* @SAYLI\n** MLF\n* Michel\n* Chalip\n* Warisara\n* Pech\n* Morn\n* Bob\n* Sarah\n* Liza\n* Rufiena\n* Evonne\n* Oey\n* Natalie\n* @Zaadz\n
"imagine yourself hanging like a piece of rope..."\n\nduration: 10 min
! Dance\n* passionate about integrating music and dance\n* passionate about the potential of ICT to fulfill a possibility that is inheritly non-ICT\n* tried a variety of dance styles\n* loves improvisation\n\n! Plus\n* completed and familar with different styles of transformational work\n** done the LandmarkForum and other graduate courses\n* went to BurningMan\n* lives in Thailand\n* passion for Thai people\n* volunteer coordination skills\n* PMP\n* chooses non-profit sector\n* CommunityLeader and CommunityBuilder\n\n! Resources\n* LandmarkConnect\n\n
The vision is for this to be a "living" package - not a CD, not a set of files on your memory stick - but a set of artifacts on the web that communicate the stake you are taking - we are a ''living'' community!\n\n# /''Pictures'' - 108 pre-selected photos from the last 5 events\n# /''Video'' - our best capture of the kind of dance we share with children\n# ''Financial Worksheet'' (DanceChalat-MornChin [v0.8].ods) - what I am using to work out operating expenses at 3 levels:\n## foundational (ie. basic living expenses)\n## organizational (Dance Labs)\n## program (Dance Chalat)\n# ProgramDashboard (DanceChalat.20061015.1543200596.html) - wiki I created for the purpose of VolunteerCoordination. It is our knowledge base and what we introduce to our volunteers to help them:\n** get a sense of the scope of our operation\n** get a sense of our future and where we are headed\n** identify an outcome they are excited about and would like to assist with\n** make a difference!\n# SlidePresentation (Dance Chalat.ppt) - Dance Labs overview slides. Primary purpose at the moment is to get fundraising and management support. Eventually we will add more information about Dance Chalat and use these slides with parents (scheduled to be the 28th right now)\n# StewardshipAgreement(s) - two documents that capture the partnership that Morn and I have declared. v1.0 serves as a baseline.\n## (Dance Chalat - SustainabilityAndGrowthPartner [v1.0].pdf) - my role at Dance Labs is to support every program we generate, Dance Chalat being the first.\n## (Dance Chalat - ProgramManager [v1.0].pdf) - Morn's current role as a Program Manager. Her goal is to learn this role well so that we may enlist other program managers to lead new Dance Labs efforts. It would be great if you would help clarify that what I have discussed with her matches what you see in English - I have reviewed it with her to the best of my ability. If you have an interest in being a Dance Labs program manager, let us know asap!\n
! Guidelines\n* duration: 15 minutes\n* with children, we recommend you start with BeingATree and work on their imagination and visualization of self\n\n! Ack\n* FreedomToASk\n
For those who are open and brave, dive right into our BuildingBlocks!\n\nFor those interested in assisting us, please join our AssistingProgram.\n\nAny feedback and/or ideas you have are more than welcome. You may ContactUs directly or share in our DiscussionSpace.\n\nThanks for supporting [[our future|OurPossibility]]!\n
This framework was invented by StephenCovey, author of 7 Habits of Highly Effective Families\n\nThis is typically sourced at the individual level. We are experimenting with creating it at the community level. It has a relationship to our CommunityProjectPlan\n\nWho are we being at Dance Chalat?\n\n! Possibility\n* being one\n\n! Desired Results\n* Benefit: DanceCelebration\n* see additional key outcomes in OutcomeMatrix\n\n! Guidelines\n* GovernanceStructures\n* Individuals source an agreement based off our community agreement (use Outcome Fulfillment table in OutcomeMatrix as a starting point for team leads)\n* share in [[Community Blog|http://blog.dancelabs.com]]\n\n! Resources\n* CommunityDevelopmentPlan //training & development - people, technical//\n\n! Accountability\n* level 6 - act on own\n* ProgramStatus\n\n! Consequences\n* one year support to design Dance Chalat-based programs\n
<html>\n<a href="http://www.flickr.com/photos/chinarut/227109351/" title="Stretch your body (ยืดแข้งยืดขา)" target="blank_"><img src="http://static.flickr.com/85/227109351_bd08db4abc_m.jpg" width="240" height="180" alt="Stretch your body (ยืดแข้งยืดขา)" /></a>\n</html>\n! Guidelines\n* 10 minutes\n* Thai: ยืดแข้งยืดขา\n\n! Steps\n# Standing on the ground\n# Move whole of body by start from head until feets everystep move slowly\n# Move head from left to right ,front to back then move like a circle\n# Move 2 sholders from front to back, then back to front\n# Move 2 hands like a circle then to left and right\n# Move your elbow with stretch hand over head then move together like circle\n# Then Knees, and feet\n\n! Video\n* coming soon!\n\n! Ack\n* G, Pech\n
/***\n!GTD Style\n\n!Generic rules /%==================================================================== %/\n***/\n/*{{{*/\nbody {\n background: #464646 url('http://shared.snapgrid.com/images/tiddlywiki/bodygradient.png') repeat-x top fixed;\n color: #000;\n font: .82em/1.25em "Bitstream Vera Sans", Verdana, Helvetica, Arial, sans-serif;\n/*"Lucida Sans Unicode", "Lucida Grande","Trebuchet MS", */\n}\n/*}}}*/\n/***\n!Header rules /%====================================================================== %/\n***/\n/*{{{*/\n#contentWrapper\n{\n margin: 0 auto;\nwidth: 59em;\nposition: relative;\n}\n\n#header\n{\n color: #fff;\n padding: 1.5em 1em .6em 0;\n}\n\n#siteTitle {\n\n font-size: 2.3em;\n margin: 0;\n}\n\n#siteSubtitle {\n font-size: 1em;\n padding-left: .8em;;\n}\n\n#titleLine{\n background: transparent;\n padding: 0;\n}\n\n#titleLine a {\n color: #cf6;\n}\n/*}}}*/\n/***\n!Sidebar rules /%====================================================================== %/\n***/\n/*{{{*/\n#sidebar{\n left: 0;\nwidth: 18em;\n margin: .9em .9em 0 0;\n color: #000;\n background: transparent;\n}\n/*}}}*/\n/***\n!Main menu rules /%=================================================================== %/\n***/\n/*{{{*/\n#mainMenu{\n position: static;\n width: auto;\n\n background: #600;\n border-right: 3px solid #500;\npadding: 0;\n text-align: left;\n font-size: 1em;\n}\n\n#mainMenu ul{\n padding: 0;\n margin: 0;\n list-style: none;\n}\n\n#mainMenu li a,\n#mainMenu li a.button{\n display: block;\n padding: 0 5px 0 10px;\nborder: 0;\n border-bottom: 1px solid #500;\n border-top: 1px solid #900;\nmargin: 0;\n}\n\n#mainMenu a,\n#mainMenu a.button{\n height: 22px;\nheight: 1.83em;\n line-height: 22px;\n color: #fff;\n background: #700;\nmargin-left: 1em;\n}\n\n#mainMenu a:hover,\n#mainMenu a.button:hover {\n background: #b00;\n color: #fff;\n}\n/*}}}*/\n/***\n!Sidebar options rules /%============================================================ %/\n***/\n/*{{{*/\n#sidebarOptions {\n background: #eeb;\n border-right: 3px solid #bb8;\n color: #B4C675;\n padding: .5em 0;\n}\n\n#sidebarOptions a {\n color: #700;\n margin: .2em .8em;\n padding: 0;\n border: 0;\n}\n\n#sidebarOptions a:hover, #sidebarOptions a:active {\n color: #fff;\n background: #700;\n border: 0;\n}\n\n#sidebarOptions input{\n margin: 2px 10px;\n border: 1px inset #333;\npadding: 0;\n}\n\n#sidebarOptions .sliderPanel {\n background: #fff;\n color: #000;\n padding: 5px 10px;\n font-size: .9em;\n}\n\n#sidebarOptions .sliderPanel a{\n font-weight: normal;\n margin: 0;\n}\n\n#sidebarOptions .sliderPanel a:link,#sidebarOptions .sliderPanel a:visited {\n color: #700;\n}\n\n#sidebarOptions .sliderPanel a:hover,#sidebarOptions .sliderPanel a:active {\n color: #fff;\n background: #700;\n}\n/*}}}*/\n/***\n!Sidebar tabs rules /%===================================================================== %/\n***/\n/*{{{*/\n#sidebarTabs {\n background: transparent;\n border-right: 3px solid #740;\n border-bottom: 3px solid #520;\n border: 0;\n padding: 0;\n}\n\n#contentWrapper #sidebarTabs a,\n#contentWrapper #displayArea .tabContents a{\n color: #fff;\n}\n\n#contentWrapper #sidebarTabs a:hover,\n#contentWrapper #displayArea .tabContents a:hover {\n background: #000;\n color: #fff;\n}\n\n#contentWrapper #sidebarTabs a:active,\n#contentWrapper #displayArea .tabContents a:active{\n color: #000;\n}\n\n\n\n#contentWrapper .tabSelected {\n background: #960;\n}\n\n#contentWrapper .tabUnselected{\n background: #660;\n}\n\n#contentWrapper #sidebar .tabset{\n background: #eeb;\n border-right: 3px solid #bb8;\n padding: 0 0 0 .75em;\n}\n\n#contentWrapper .tabContents{\nfont-size: .95em;\nbackground: #960;\nborder:0;\n border-right: 3px solid #740;\n border-bottom: 3px solid #520;\n padding: .75em;\n}\n\n#contentWrapper .tabContents{\n width: auto;\n}\n\n#contentWrapper #sidebarTabs .tabContents .tabset,\n#contentWrapper .tabContents .tabset{\n border: 0;\n padding: 0;\n background: transparent;\n}\n\n#contentWrapper .tabContents .tabSelected,\n#contentWrapper .tabContents .tabContents {\n background: #700;\n border: 0;\n}\n\n#contentWrapper .tabContents .tabUnselected {\n background: #440;\n}\n\n#contentWrapper .tabset a {\n color: #fff;\n padding: .2em .7em;\n margin: 0 .17em 0 0;\n height: 2em;\nposition: static;\n}\n\n#contentWrapper .tabset a:hover {\n background: #000;\n color: #fff;\n}\n\n#contentWrapper .tabset a:active {\n color: #000;\n}\n\n#contentWrapper .tabContents ul{\n margin: 0;\n padding: 0;\n list-style: none;\n}\n\n#contentWrapper .tabContents .tabContents ul{\n color: #eeb;\n}\n\n.tabContents ul a,\n.tabContents ul .button{\n color: #fff;\n display: block;\n padding: .1em 0 .1em .7em;\n background: transparent;\n border: 0;\n}\n\n.tabContents ul a:hover {\n color: #fff;\n background: #000;\n}\n/*}}}*/\n/***\n!License panel rules /%==================================================================== %/\n***/\n/*{{{*/\n#licensePanel {\n padding: 0px 1em;\n font-size: .9em;\n}\n\n#licensePanel a {\n color: #960;\n display: block;\n margin-top: .9em;\n}\n\n#licensePanel a:hover {\n color: #fff;\n background: transparent;\n}\n/*}}}*/\n/***\n!Popup rules /%================================================================= %/\n***/\n/*{{{*/\n.popup {\n font-size: .8em;\n padding: 0em;\n background: #333;\n border: 1px solid #000;\n}\n\n.popup hr {\n margin: 1px 0 0 0;\n visibility: hidden;\n}\n\n.popup li.disabled {\n color: #666;\n}\n\n.popup li a,\n.popup li a:visited{\n color: #000;\n border: .1em outset #cf6;\n background: #cf6;\n}\n\n.popup li a:hover {\nborder: .1em outset #cf6;\n background: #ef9;\n color: #000;\n}\n/*}}}*/\n/***\n!Message area rules /%================================================================= %/\n***/\n/*{{{*/\n#messageArea{\n font-size: .9em;\n padding: .4em;\n background: #FFE72F;\n border-right: .25em solid #da1;\n border-bottom: .25em solid #a80;\n\nposition: fixed;\n top: 10px;\n right: 10px;\n color: #000;\n}\n\n#contentWrapper #messageArea a{\n color: #00e;\n text-decoration: none;\n}\n\n#contentWrapper #messageArea a:hover{\n color: #00e;\n text-decoration: underline;\n background: transparent;\n}\n\n#contentWrapper #messageArea .messageToolbar a.button{\n border: 1px solid #da1;\n}\n\n#contentWrapper #messageArea .messageToolbar a.button:hover{\n color: #00e;\n text-decoration: none;\n border: 1px solid #000;\n background: #fff;\n}\n\n\n\n/*}}}*/\n/***\n!Tiddler display rules /%================================================================== %/\n***/\n/*{{{*/\n#displayArea {\n width: 39.75em;\n margin: 0 0 0 17em;\n}\n\n.tiddler {\n margin: 0 0 .9em 0;\n padding: 0 1em;\n border-right: .25em solid #aaa;\n border-bottom: .25em solid #555;\n background: #fff;\n}\n\n.title {\n font-size: 1.5em;\n font-weight: bold;\n color: #900;\n}\n\n.subtitle {\n font-size: 1em;\n}\n\n.toolbar {\n font-size: .8em;\n padding: .5em 0;\n}\n\n.toolbar .button{\n padding: .1em .3em;\n color: #000;\n\n border: .1em outset #cf6;\n background: #cf6;\nmargin: .1em;\n}\n\n.toolbar .button:hover {\n background: #ef9;\n color: #000;\n}\n\n.toolbar .button:active {\n background: #ff0;\n}\n\n/*}}}*/\n/***\n!Viewer rules /% ------------------------------------------------------------------------------------------ %/\n***/\n/*{{{*/\n.viewer {\n line-height: 1.4em;\n font-size: 1em;\n}\n\n.viewer a:link, .viewer a:visited {\n color: #15b;\n}\n\n.viewer a:hover {\n color: #fff;\n background: #000;\n}\n\n.viewer .button{\n background: transparent;\n border-top: 1px solid #eee;\n border-left: 1px solid #eee;\n border-bottom: 1px solid #000;\n border-right: 1px solid #000;\n}\n\n.viewer .button:hover{\n background: #eee;\n color: #000;\n}\n\n.viewer .button:active{\n background: #ccc;\n border-bottom: 1px solid #eee;\n border-right: 1px solid #eee;\n border-top: 1px solid #111;\n border-left: 1px solid #111;\n}\n\n\n.viewer blockquote {\n border-left: 3px solid #777;\n margin: .3em;\n padding: .3em;\n}\n\n.viewer pre{\n background: #fefefe;\n border: 1px solid #f1f1f1;\n}\n\n.viewer pre, .viewer code{\n color: #000;\n}\n\n.viewer ul {\n padding-left: 30px;\n}\n\n.viewer ol {\n padding-left: 30px;\n}\nul{\nlist-style-type: asquare;\n}\nol{ \n list-style-type: decimal;\n}\n\nol ol{ \n list-style-type: lower-alpha;\n}\n\nol ol ol{ \n list-style-type: lower-roman;\n}\n\n.viewer ul, .viewer ol, .viewer p {\n margin: .0;\n}\n\n.viewer li {\n margin: .2em 0;\n}\n\nh1,h2,h3,h4,h5,h6 {\n color: #000;\n font-weight: bold;\n background: #eee;\n padding: 2px 10px;\n margin: 5px 0;\n}\n\n.viewer h1 {font-size: 1.3em;}\n.viewer h2 {font-size: 1.2em;}\n.viewer h3 {font-size: 1.1em;}\n.viewer h4 {font-size: 1em;}\n.viewer h5 { font-size: .9em;}\n.viewer h6 { font-size: .8em;}\n\n.viewer table {\n border: 2px solid #303030;\n font-size: 11px;\n margin: 10px 0;\n}\n\n.viewer th, .viewer thead td{\n color: #000;\n background: #eee;\n border: 1px solid #aaa;\n padding: 0 3px;\n}\n\n.viewer td {\n border: 1px solid #aaa;\n padding: 0 3px;\n}\n\n.viewer caption {\n padding: 3px;\n}\n\n.viewer hr {\n border: none;\n border-top: dotted 1px #777;\n height: 1px;\n color: #777;\n margin: 7px 0;\n}\n\n.viewer\n{\n margin: .5em 0 0 0;\n padding: .5em 0;\n border-top: 1px solid #ccc;\n}\n\n.highlight {\n color: #000;\n background: #ffe72f;\n}\n/*}}}*/\n/***\n!Editor rules /% ----------------------------------------------------------------------------------------- %/\n***/\n/*{{{*/\n.editor {\n font-size: .8em;\n color: #402C74;\n padding: .3em 0;\n}\n\n.editor input, .editor textarea {\n font: 1.1em/130% "Andale Mono", "Monaco", "Lucida Console", "Courier New", monospace;\n margin: 0;\n border: 1px inset #333;\n padding: 2px 0;\n}\n\n.editor textarea {\n height: 42em;\n width: 100%;\n}\n\ninput:focus, textarea:focus\n{\n background: #ffe;\n border: 1px solid #000;\n}\n.footer\n{\n padding: .5em 0;\n margin: .5em 0;\n border-top: 1px solid #ddd;\n color: #555;\n text-align: center; \n}\n/*}}}*/\n/***\n!IE Display hacks /% ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~%/\n***/\n/*{{{*/\nbody{\n _text-align: center;\n}\n\n#contentWrapper\n{\n/* _width: 770px; CSS UNDERSCORE HACK FOR PROPER WIN/IE DISPLAY */\n _text-align: left; /* CSS UNDERSCORE HACK FOR PROPER WIN/IE DISPLAY */ \n}\n\n#messageArea{\n _position: absolute;\n}\n/*}}}*/
/*{{{*/\n\n@media print {\n#mainMenu, #sidebar, #messageArea {display: none !important;}\n#displayArea {margin: 1em 1em 0em 1em;}\n\n\n/* LAYOUT ELEMENTS ========================================================== */\n*\n{\n margin: 0;\n padding: 0;\n}\n\nbody {\n background: #fff;\n color: #000;\n font-size: 6.2pt;\n font-family: "Lucida Grande", "Bitstream Vera Sans", Helvetica, Verdana, Arial, sans-serif;\n}\n\nimg {\n max-width: 2.2in;\n max-height: 4.3in;\n}\n\n#header, #side_container, #storeArea, #copyright, #floater, #messageArea, .save_accesskey, .site_description, #saveTest, .toolbar, .footer\n{\n display: none;\n}\n\n#tiddlerDisplay, #displayArea\n{\n display: inline;\n}\n\n.tiddler {\n margin: 0 0 2em 0;\n border-top: 1px solid #000;\n page-break-before: always;\n}\n\n.tiddler:first-child {\n page-break-before: avoid;\n}\n\n.title {\n font-size: 1.6em;\n font-weight: bold;\n margin-bottom: .3em;\n padding: .2em 0;\n border-bottom: 1px dotted #000;\n}\n\np, blockquote, ul, li, ol, dt, dd, dl, table\n{\n margin: 0 0 .3em 0;\n}\n\nh1, h2, h3, h4, h5, h6\n{\n margin: .2em 0;\n} \n\nh1\n{\n font-size: 1.5em;\n}\n\nh2\n{\n font-size: 1.3em;\n}\n\nh3\n{\n font-size: 1.25em;\n}\n\nh4\n{\n font-size: 1.15em;\n}\n\nh5\n{\n font-size: 1.1em;\n}\n\nblockquote\n{\n margin: .6em;\n padding-left: .6em;\n border-left: 1px solid #ccc;\n}\n\nul\n{\n list-style-type: circle;\n}\n\nli\n{\n margin: .1em 0 .1em 2em;\n line-height: 1.4em; \n}\n\ntable\n{\n border-collapse: collapse;\n font-size: 1em;\n}\n\ntd, th\n{\n border: 1px solid #999;\n padding: .2em;\n}\n\nhr {\n border: none;\n border-top: dotted 1px #777;\n height: 1px;\n color: #777;\n margin: .6em 0;\n}\n}\n/*}}}*/
* SeedMoney\n* BusinessCoach\n* BusinessPlan\n** FinancialModel - goal: breakeven, SelfSustainable\n* ProjectManagement\n
* use natural resources (ie. park)\n* bring your own lunch, snacks, drink\n* replace what you use\n** water\n** snacks\n* return community center back to original state\n** sweep\n** put art supplies back where they belong (consider bringing your own)\n** take out the trash\n** wash dishes & cups\n** arrange stuffed animals (presentable!)\n\n! share\n* create BreakthroughReport for your parents\n** achievements\n** today's pictures, progress\n\n! optional\n* post to global community\n** pictures\n** video\n** blog\n\n! opens\n* transportation\n* time\n** with kids\n** design time (source activities)\n* technology (camera, PC, photo ink, online services)\n
[[formal agreement|http://www.writely.com/Doc?id=dhjhk7vs_1vndmsw]] (@writely)\n\n!Desired Results\n* finance\n** Dance Labs receives one year [[Grant]] to sustain a full-time ProgramManager for Dance Chalat until January 1, 2008\n*** 10 organizations enrolled in the possibility of Dance Chalat\n*** 4 business partners\n** Dance Chalat receives SeedMoney to support the design, production, and administration going until January 1, 2007\n** GrantProposal package including an executive SlidePresentation and VideoIntroduction to Dance Chalat\n** FundraisingDisplay\n** Dance Labs 2007 FundraisingGoal\n** BalanceSheet\n* foundation\n** Dance Labs attains legal non-profit status in Thailand by January 1, 2007 [[Foundation]]\n** Dance Labs communicates monthly with all leaders, participants, volunteers, and those interested since inception in 2001.\n** CommunityProjectPlan\n** Dance Chalat declares 4 partner agreements\n* design\n** CelebrationDesign\n*** List of DesignPrinciples required to make all Dance Labs productions impeccable.\n** ProgramStrategy\n** ProgramDesign\n** ActivityDesign\n** DanceExperiment [M]\n** CatalystsGuide [M]\n
<<timeline modified 25>>
unclear distinction betweeen <<tag activity>> and <<tag block>> (ref BuildingBlocks)\n\n
* DanceCelebration production team - save the date: Dec 24th\n* complete [[Fundraising]] for 2007 by end of this year (2006)\n
basically a list of staff and volunteers.\nbe sure to add pictures of everyone here. in the future we'll have a link to a video of each person's MyNameMyStyle ;)\n\nwe request everyone fill in an InformationForm\n
NOTE: soon to be phased out by tiddlers tagged with <<tag technology>>\n\n|!who|!what|!why|!example|\n||requests||[[gmail|http://www.gmail.com]]|\n||status reports, annoucements|ack|[[blog|http://blog.dancelabs.com]]|\n||templates, proposals, agreements|integrity|[[writely|http://www.writely.com]]|\n||vocab|distinctions|[[wikipedia|http://www.wikipedia.org]]|\n|R&D||3D|[[Second Life|http://www.secondlife.com]]|\n||process|workflow|[[GTD|http://www.gettingthingsdone.com]]|\n||ProgramDashboard|PM|GTDTiddlyWiki|\n||events|coordination|[[wikispaces|http://dancelabs.wikispaces.com]]|\n|community|KB|training|[[Omidyar Network|http://omidyar.dancelabs.com]]|\n||[[Photos]]|emotion|[[Flickr]]|\n||VideoIntroduction|story|Google Video|\n|||possibility|[[Landmark Education|http://www.landmarkeducation.com]]|\n||mindmaps|brainstorming|Mind Manager|\n|Technologies|c\n
[K. Samphan]\n\nMy name is Chinarut and I am your partner fighting against software piracy in Thailand. I have been an open-source champion for about a year now and have significant background in all aspsect of software development from engineering to sales to consulting.\n\nI am co-founder of a grassroots organization called Dance Labs and it is my intention for contacting you.\n\nAt Dance Labs, we stand that everything we do be with integrity - this means no to pirated software.\n\nI have had much success riding the open-source ever since our adoption of Web 2.0 strategies since Oct 2005. Open source has been a key component of this strategy.\n\nI would like to speak to you on the phone in regards to a few matters:\n\n* How I may best support children in using open source from the get go. I am working with a child who is one of many families upon purchasing their computer, had no idea it came with pirated software (WinXP, Office, games, etc). I've had a discussion about piracy and wish to support him further.\n* Linux - what is the best Linux distribution esp for Thai children aged 7-12?\n* Jintra - the details on your site are in Thai. This child's father asks for Office components like Word and Excel.\n\nI am happy to have an open conversation with you as I'm sure you have your hands in quite a few efforts outside of open source.\n\nPerhaps we may exchange ideas over the phone and if it makes sense, we can schedule a time to meet.\n\nCheers to what you're doing in Thailand and look forward to hearing from you!\n\nChinarut\n\nps. I am not certain if I will get an email reply (registration parts were in Thai) - please call me at 081 713 8620 if you do not hear back from me promptly.
Thonburi Park is one of our hidden gems on this side of the river!\n\n<html>\n<a href="http://www.flickr.com/photos/chinarut/285066936/" title="Photo Sharing" target="blank_"><img src="http://static.flickr.com/33/285066936_7aee6e1b78_m.jpg" width="240" height="180" alt="IMG_2418.JPG" /></a>\n</html>\n\nif you are looking for directions to our MeetingPoint\n\n!Car or Taxi\nplease print this map:\n\n<coming soon> ([[Google Earth pushpin|http://bbs.keyhole.com/ubb/download.php?Number=284373]])\n\nRide is approx 20-40 minutes from downtown assuming you take the expressway.\n\n!Bus\ncatch the #75 in front of Robinsons at the Saphan Taskin BTS stop. Ask to get off at "Suan Thon" The park is about 5-10 minutes past the university (KMUTT) Ride is approx 40-60 minutes\n\n
not to be confused with ChangeRequests\n\n! Defects\nB in MainMenu - URL requires trailing slash if first entry "Dance Innovation News|http://blog.dancelabs.com" \nB line starting with "|" comes up blank\nB in MainMenu undefined tiddler: "overview|CommunityOverview" gets interpreted as an external link\nB in VideoIntroduction, regexp fails on two external links in a row: "sample [[video clip|http://video.dancelabs.com]] ([[index|http://dancelabs.wikispaces.com/Video+Introduction]])\nB see "dummy line requirement below to avoid identation\n\n! Enhancements\nE would love to be able to create a hyperlinked image via "img[http://static.flickr.com/84/227117649_37afeebf46_m.jpg]| http://community.livejournal.com/dancelabs/2625.html"\nE ability to comment hyperlinked text: "integrate Dance Labs into [[Social Club schedule|http://wallstreet.in.th/en/currentWSIStudents.asp]]\nE colors\nE concurrent editing (a la Writely)\nE tiddler autosave (ie. like writely)\nE API - intent: cross-Tiddlywiki (ie. cross-domain) reports\nE checkbox to limit searches to just Tiddler names\n** first cut: sort Tiddler name match to top\n\n//defect: dummy space requirement above (or all proceeding lines are all indented)//\nE emacs-bindings (Control-A for beginning of line) //dependent on browser?//\nE right justification (ie. Thoreau quote signature)\nE speed up active search by requiring minimum of 3 characters (press "search" button to force)\nE tagging does not update lastUpdated date\nE cache internet files (like embedded pictures) for offline use\nE Command-W closes Tiddler (ie. not browser tab or window)\nE cross-TiddlyWiki linking (concept: domain traversing)\nE import/transform MediaWiki content\nE statistics - age of tiddlers, size, frequency of modification\nE graphing - visualize distribution of content (heatmaps) - GraphWiz component?\nE caching - reduce load time, load components on demand (think: Java), load tiddlers in some type of recently-used fashion (approaching database model) (how does detaching processing work with UA?)
+ no "install" required - single page web app!\n+ allows for multiple "tiddlers" opened at once on right pane\n+ slick eye-candy (ie. animations)\n+ history on left-pane\n+ search simple and works\n- if you forgot newline after section, next section header is missing\n+ I get it - this will run on any Internet capable mobile device! (ie. [[Nokia 770|http://www.michaelrobertson.com/archive.php?minute_id=215]])\nT apparently "designed" to print (ie. Tiddlers only print, CSS customizable)\n+ open source - yeay! //Google Mail and SCM integration// heh..heh...\n | no history is kept - purely edit-in-place (akin to a whiteboard)\n+ keyboard shortcuts (Control-Enter to save)\n+ supports MicroContent paradigm - encourages you to continuously refactor information due to its edit in place design. for example, you may create MeetingNotes and due to its context, it is meant to be emptied over time. You may create as many contexts as behaviours required.\n+ no dependency on server, web host, self-sufficient\n+ easy to create tables (HTML-style?)\n | animations a tad slow\n | uses spaces to separate tags just like Flickr :)\n+ small: wiki can be emailed as a single file\n+ tags for objects (ie. role) or owners (ie. morn)\n\n!Questions\n? how to reorder tiddlers? alphabetical default?\n? file://localhost doesn't have permission to save\n? if you start an indented bullet (**) without a parent (*), all succeeding lines are indented\n? how to manage information over time (ie. meeting notes)\n? (more HTML-related) - it is possible to create alt links to local files when remote file is not avail? (ie. ./img/foo.jpg instead of http://static.flickr.com/img/foo.jpg)\n
this is a tri-fold handout invented for the purpose of sharing at our DanceCelebration. it is currently in Thai with a one-sixth page dedicated to introducing DanceLabs and our WorkingForGood vision for DanceChalat\n\n* includes a sample "take home" activity/game to share with family (in Thai)\n\n
* self-expression\n* freedom //to be//\n* sanook //this is life//\n** present\n* improvisation //Contact Improv//\n** creativity\n* partnership //ballroom, salsa//\n* cocreation //who's leading?//\n* recreation //nothing//\n* listening //mirror//\n
Invitation to relate\nOBJ: be spontaneous, playful\n\n!Opens\n[[@Waiting]] - Ko to describe this exercise further\n
during our DanceCelebration, the goal of your team is to:\n* be on the lookout for those individuals who feel like they're not connecting, not present, or anything that takes them away from celebrating how great life is.\n* be there for these folks and hear them out!\n\n!acknowledgement\n* RaiseTheFrequency (in particular Marcie!)
one of our favorite video clips from our first DanceExperiment:\n\n<html>\n<embed style="width:400px; height:326px;" id="VideoPlayback" type="application/x-shockwave-flash" src="http://video.google.com/googleplayer.swf?docId=-431166900004250795&hl=en" flashvars=""> </embed>\n</html> ([[link|http://video.dancelabs.com]])\n\nWe are working on a professional VideoIntroduction\n\nEnjoy!\n
[[Photos]] capture emotion, video helps tell the story!\n\n* our first VideoTrailer\n* sample VideoClip\n* temporary [[index|http://dancelabs.wikispaces.com/Video+Introduction]] of VCD tracks\n\n\nthe following framework is a StewardshipAgreement\n\n! Desired Results\n* long-term: Dance Labs documentary showing at a theater near you! ;)\n* short-term: Dance Chalat VCD we may include in our proposals and share with parents who are interested in this program or those who just plain ask "what is Dance Chalat?"\n\n* bi-lingual (English and Thai) would be awesome\n* subtitles would be a plus\n* script components\n** introductions - MyNameMyStyle, spoken intro, cheer\n** individual - \n** partnership - share phases\n** celebration - play (intentional and free)\n** interviews - shares from kids, staff, volunteers, parents\n*** Chalip - likes to be a leader...\n*** Puoh - likes to follow...\n*** Moo - likes to do both...\n** collaboration - [[Workday]]\n* format: DVD\n\n! Guidelines\n* use latest [[overview|DanceLabs]] as a guide for flow\n\n! Resources\n* human\n** looking for a volunteer production lead\n** Chalip is willing to learn how to edit video\n** Pech has a friend who may be able to assist with editing\n** Pech and Natalie are willing to assist with script writing\n** Hady has media production skillz\n** Chin can provide support on the Dance Labs vision\n** Morn can provide support on the Dance Chalat vision with kids\n* media\n** [[raw video snippet|http://video.dancelabs.com]]\n** [[Photos]]\n** more footage not online - please request a MediaDisc\n* video processing software and hardware\n** Chin has a mac mini with iMovie and iDVD for grabs when he's not using it\n\n! Accountability\n\n! Consequences\n
<div class='toolbar' macro='toolbar -closeTiddler closeOthers +editTiddler permalink references jump'></div>\n<div class='title' macro='view title'></div>\n<div class='subtitle'>by <span macro='view modifier link'></span>, <span macro='view modified date [[DD MMM YYYY]]'></span> (created <span macro='view created date [[0DD/0MM/YYYY]]'></span>)</div>\n<div class='viewer' macro='view text wikified'></div>\n<div class='footer' macro='tags'></div>
<html>\n<a href="http://flickr.com/photos/sbraiden/55651505/" title="Serendipity Retreat Center" target="blank_"><img src="http://static.flickr.com/30/55651505_13ba7c2cb9_m.jpg" width="240" height="180" alt="Serendipity Retreat Center" /></a>\n</html>\n\ncomplements of SueBraiden and her vision for the Serendipity Retreat Center\n\n!Desired Result\n* first cut\n** use Flickr CommunityCenter photos to recreate CommunityCenter in SecondLife\n** walk children through center at a remote site (perhaps Chalip's house) and have them get what it's like to play, create, and meet people in a virtual world.\n** show parallels to the real life - creating objects, taking pictures, painting, adding avitars becomes a recursive concept\n\n! Resources\n* SecondLife platform\n
first step: meet your AssistingTeam!\n\n!Openings for Action\n* update CommunityRoster\n** add new folks (DanceChalat) (see mini bluebook)\n** role, outcome (now?)\n* CommunityUpdate\n
need to work out an overall philosophy to the design of our website. initial ideas to fulfill on multiple intentions below. ok to be phased rollout.\n\npossible resource: [[Web Design for the Social Benefit Sector|http://www.socialedge.org/Events/Workshops/82]]\n\n! Components\n* about us (now DanceLabs)\n* [[Photos]]\n* orbs (aka. DancersDatabase)\n* calendar\n* videos (see VideoIntroduction)\n* news\n* discussion\n* knowledge base\n* ContactUs\n\n! volunteer-based view\n* Pech's [[design|http://www.writely.com/Doc.aspx?id=acfbv7hvsjm6_13crf67r]]\n\n! fun/learning/kid-based view\n* intent: create a fun learning opportunity for kids to interact on the Internet. An example of independent activity is learning about the history of salsa.\n\n! action/use case-centric view\n* reviewed [[Overview Map|http://mindmap.dancelabs.com]] for completeness\n** sanook - listen\n** intro - learn, enroll\n** team - share (communication), facilitate (bio)\n** production - connect (schedule), produce\n** design - design\n** kids - register\n** missing\n*** finance - give\n*** foundation - support\n\n! public vs internal view\n* staff & volunteers: [[Intranet]]\n\n! community-centric view\n* website contribution is community collaboration\n** production - workshop schedule, project management systems\n** design - cirriculum descriptions, experiment schedule, collaboration (read: wiki & discussion) (Trac)\n** finance - budget worksheets\n** foundation - website (portal), office (directions), resource management systems (?)\n** kids - roster, registration lists\n** team - collaboration, shares (communication)\n** intro - vision, pictures, flyers, news, discussions (new)\n** sanook - video, discussion (possibility)\n
ok - we're still in the process of creating a stable WeekDesign\n\nCompletion\n* ref: WeeklyReview (as defined by DavidAllen)\n* complete WeeklyMindmap\n** complete AIs/outcomes\n* clear BalanceSheet (on budget/target?)\n* IntroStatistics\n* [[@Communicate]]\n** thank you\n** closure (no shows)\n** acknowledgements (AssistingTeam)\n** UpdateCommunity\n** ack(action, outcomes) (starred email)\n* generate KeyLearnings\n* update checklists\n** PackingChecklist\n* update BuildingBlocks (soon to be ActivityBook) with new ideas\n* BackupSystem (mac mini)\n* UpdateDashboard\n* UpdateRoster\n* update WorkshopFormat (ie. current baseline)\n
our week starts on ''Tuesday''\n\n|!day|!activity|\n|Tuesday|CommitOutcomes, ProgramStatus. InviteGuests|\n|Wednesday|PrepareWorkday|\n|Thursday|ConfirmGuests|\n|Friday||\n|Saturday|AssistingMeeting: dinner, DynamicIntro: dance!|\n|Sunday|DanceSharing: [[Workday]]|\n|Monday|open [[Capture]], WeekCompletion, CoolDown, BrainstormOutcomes|\n
!Goal\n* Maintain your well being thus that you can be at our Dance Chalat celebration 100% being fully alive and self-expressed!\n\n! Items\n* FirstAidKit\n* water\n* snacks (veggies)\n\n! Accountability\n* IntegrityChecklist\n* ZeroAccidentPolicy\n
DanceLabs was founded in Nov 2001 during the production of Naomi Colb's FreedomToAsk workshop. A student shared how others laughed at his dancing and was coached through a series of movement exercises to explore his self-expression. A week later he showed up at [[Radiance]], an intentional DanceCommunity, jumping for joy appreciating his new found ability to dance freely amongst 150-200 people! In Dec 2001, Dance Labs co-founder, TedKo, took this inspiration of being a "DanceCatalyst" and envisioned Dance Labs on a flight to Taiwan. ChinarutRuangchotvit has since taken this vision and manages all aspects of the organization while maintaining a critical focus on fusing experimentation and innovation.\n\nWe document key events and milestones in our DanceTimeline\n
! Now\n* spare batteries for boombox\n* rechargeable C batteries (x8 and charger)\n* camera for Dance Chalat use only\n* PC (admin, pictures, website, video, email, communty dev)\n\n! Super\n* new music [[DJ]]\n* decent speakerphone with answering machine\n* scanner (kid's mindmaps)\n* laser printer (b&w crisp business documents, low cost per page)\n* office desk and chair\n* cell phone\n* professional FirstAidKit\n* SoftwareLicenses\n* SELP scholarship - Oct 21\n* [[Conferences]] scholarship\n* iP4200 photo ink (to give photos to kids) (cyan/magenta)\n\n
The core of our program is comprised of a DanceExperiment or a DanceWorkshop each week.\n\nOur programs are holistic in the sense that we also include a classroom-like setting to apply new team skills to the table.\n\n<insert picture of kids working at table here>\n\nThis is an opportunity to invite a GuestTeacher\n\nsee WorkdayIdeas\n\n! Steps\n* Generate Ideas\n** brainstorm themes\n** mindmap ideas\n** review lesson idea list (above)\n* Plan Lesson\n** how, why, what, who\n* Study\n* Execute\n\n! Guidelines\n* clear workday format 24 hrs in advance\n* declare notetaking guidelines\n* envision use of whiteboard\n* start and end 10 min early\n* Balance work vs fun\n* break even\n\n! Checklist\n* clear assisting team\n* attendance sheet\n* erase whiteboard\n* have and/or host breakfast\n* water\n* fruit & snacks\n
! direct input (from parents)\n* "kids like to learn computers and English"\n\n! now\n* read SourceDocument\n* [[7 Habits]] for families (play games for children)\n* EnergySpheres coaching\n* MegaMindmap\n* brainstorming outcomes/projects kids want to work on\n\n! ideas\n* introduction to new dance\n* generate distinctions\n* intro to LF for kids\n* [[Mindmapping]] [TP]\n* photo gallery (post-event sharing online)\n* VoIP - yackpack (requires mic & internet)\n* collaborative skill\n* brainstorm fun - what is fun?\n\n! next\n* video production\n\n! Future\n* Linux\n* english\n* OnlineCollaboration\n** email\n** wiki (group memory)\n* time management (GTD)\n* website production\n** principles for creating for kids\n
previous baseline: PennisulaWorks\n\n! Pre\n# RegistrationForm [Ko]\n\n! part 1 (50 min)\n# QuickIntro (5 min)\n# WorkshopIntention (5 min)\n# SittingMeditation (5 min)\n# StretchYourBody (ยืดแข้งยืดขา) [G] (10 min)\n# StandingYourOwn [FreedomToAsk] (15 min)\n# MyNameMyStyle (หนูชื่ออะไร) [DialoguesBetweenLifeAndArt] (10 min)\n\n! break\n# DanceBreak (10 min)\n\n! part 2 (60 min)\n# RhythmPlay [Rufiena] (10 min)\n# DanceDimensions [DialoguesBetweenLifeAndArt] (10 min)\n# BeWithAnother [] (10 min)\n# YouAreMyMirror (เธอคือเงาของฉัน) //VibeMatching?// (10 min)\n# AnyoneCanBeALeader (ใครๆก็เป็นผู้นำได้) [FreedomToAsk] (10 min)\n# DanceAllOut [LandmarkEducation] (10 min)\n\n! post\n# DanceWithMe (เต้นรำกันเถอะ) [Pech] (open)\n# CoolDown\n# CommentCard\n
duration: 5 min\n\n* discover how ''you'' like to move\n* create a safe space\n** "not about how you look"\n** "no one is going to judge you here"\n
<html>\n<a href="http://www.flickr.com/photos/chinarut/268585632/" title="You are my mirror (เธอคือเงาของฉัน)" target="new_"><img src="http://static.flickr.com/90/268585632_12855c0a55_m.jpg" width="240" height="180" alt="You are my mirror (เธอคือเงาของฉัน)" /></a>\n</html>\n\n! Guidelines\n* duration: 15 min\n* Thai: เธอคือเงาของฉัน\n* play with facial movements too!\n\n! Opens\n* how is this distinct from VibeMatching\n
inspired by TenFold's zero defect policy\n\nwe need to juggle the fact that Thailand (and other developing countries) don't have the strictest of safety standards when it comes to the outside environment\n\nsome say this is beautiful (ie. uncut trees in the parks) or dangerous (children just climb them!)\n\ninquire to how the construction industry enforces stringent standards
this wiki is bout to be reborn!!!\n\nmy application to the FreeZope folks:\n<<<\nI've been having a ball creating a dashboard with GTDTiddlyWiki over the past month and it's time to release it to the community and have them [everyone] dynamically update it ~ZiddlyWiki-style :)\n<<<\ntry the [[Ziddly Sandbox|http://www.ziddlywiki.com/sandbox]]\n\nthis is really exciting!\n\n!Updates\n* It's been over 2 weeks and I'm not getting a response from the FreeZope folks :-/ if anyone has a Zope instance to donate to us, much appreciated in the spirit of community!\n* 20061106: I set up ZiddlyWiki on my local server and it needs a bit of tweaking before we can get it working as envisioned. Any fellow programmers out there willing to help troubleshoot would be great!\n* 20061112: I have temporarily set up [[ccTiddlyWiki]] to experiment with a PHP/MySQL based server-side solution.
test of insert priveleges
We've been on a mission to make this wiki world-editable and the fact that you're reading this means we're a huge step closer!!!\n\nPlease ContactUs to request a login. We'll consider making this editable anonymously at a later date.
* WikiLecture\n
we use a variety of mediums to update the community\n* DanceSharing (aka dancing)\n* DiscussionSpace (online)\n* MailingList (email)\n* [[Photos]]\n* VideoReport (parents)\n* DanceInnovationNews (blog)\n* AssistingTeam meetings\n* 1-on-1\n* ConferenceCall\n* Mailings (snail mail)\n\n
we keep our CommunityCenter spic n span - we request everyone keep it this way!\n\n* SweepFloor\n* MopFloor\n* ScrubBathroom\n* ScrubKitchen\n* DoDishes\n
!Mission\nmake use of all the new parks that have sprouted in the city - help get kds off the streets and bring new context to parks never seen before!\n\n!Demo vehicle\nart festival with 6 different themes in different parts of the city.\n\n!Desired outcome\ninitial presentation to the governor (30 min)\n\n!Ideal followup\nhis presence on our dance floor!
what happened since Feb 2nd:\n# got an invite to be an international liaison in SL\n# dished up a cover letter and CV for Linden Lab\n# sent it with no initial response\n# found the VP of biz dev on LinkedIn, David Fleck thru my college classmate\n# asked to connect with him\n# was asked to interview in-world with Char Linden and another superdupervisor\n# didn't make the cut\n# attended a town hall in April 2006\n# wrote meeting minutes\n# posted them to the community forum and cc'ed Philip by email\n# Dance Chalat gave birth with the kids\n# made a commitment to month to work on this for 3 months (rest of my savings)\n# told Philip I'm putting the Linden Lab ball down to focus on Dance Chalat\n# got an instant response saying he loves the photos with the kids!\n\nnext?\n
brainchild of LindenLab\n\n!Vision for dance\n//You dance away to your favorite music and it feels so good. You love it when you're dancing alone. Another dancer steps into your space and for a moment, a tinge of shyness comes over you. But wait - you're an avitar and you're still alone in real life! You give up that thought and keep dancing free in your self-expression - uncontrolled by the judgement of others. You dance like nobody's watching. What's so is they do see you and they absolutely love it. You continue to interact in-world and you play with dance moves - you mirror each other - it's just like this in real life! So you keep in touch and choose to meetup on a dance floor in real life. You both discover a connection unreal - individually and then as partners. You've found a partner you may explore every aspect of your life together: business, dancing, career, well being, you name it - you come to the realization and look each other in the eye that you are dance partners in your **second** life!//\n\n!On the ground\nYou absolutely cannot wait to meet in real life and fall in love again! <3\n\nwelcome to VirtualDating folks!\n\ndiscussion: http://www.omidyar.net/group/dancelabs/news/8/
* GovernorLetter requesting a 30 min meeting kicks off a series of powerful communications with the world!
ContactUs if you wish to receive and/or have us present our annual review.\n\n* Accomplishments (what we have and haven't done with the money we've raised)\n* Breakthroughs (unexpected results)\n* SWOTAnlysis (quick review of strengths & weaknesses & impact)\n* What's in store (planned outcomes for next year)\n* Fundraising plans (fulfillment of this future)\n* Requests (skills/roles, donations)\n* References (more information)\n
!Openings for Action\n* benefit WBS in XML\n
* OperatingBudget\n\n!Openings for Action\n* SlidePresentation\n** support requested\n** PlanInternational - review 2015\n
One of the interesting aspects of this GTDSystem is it's detachable - ready to go when you don't have internet access or where internet access is expensive and/or slow.\n\nSo open [[this page|./index.php?standalone=1&]] and save it to your laptop (or InternetTablet for you adventurous ones) before your next flight - never know what might happen! ;-)\n\nfuture: JeremyRuston has been working on SocialtextUnplugged which sounds very promising!
the cat is out of the bag - at our first HomeIntro, the kids loved the idea of creating a map of their future!\n\n<html>\n<a href="http://www.flickr.com/photos/chinarut/284788797/" title="someone say dance?" target="new_"><img src="http://static.flickr.com/122/284788797_e8d2db6cfa_m.jpg" width="240" height="180" alt="someone say dance?" /></a>\n</html>\n\nclick on image to engage in a discussion!
! Share\nAs individuals become globally-minded, there arises a need to preserve the intimate nature of local communities. DanceChalat is a community service program designed to connect children, parents, and neighbors in fun, natural, and playful ways. We hold our programs in natural public spaces, such as [[parks|ThonburiPark]] that inspire freedom and creativity. Our use of dance and music encourages participants to explore their self-expression, their environment, and connection with others. Communities find they are able to [[visualize their growth|CommunityDancing]] and expand their sense of family, leadership, service, and fulfillment. \n\n[[survey answers|http://dancelabs.wikispaces.com/Working+For+Good]]\n[[discussion thread|http://www.omidyar.net/group/dancelabs/news/9/]] (with reference to download curriculum)\n\ninspiration for our DanceChalat ProgramStrategy\n
date: Feb 23-Mar 18, 2007\nlocation: Bangkok, Thailand\n\n* ack: BMA already supports festival\n* ack: request additional support - GovernorLetter\n* WorkingForGood community service vision\n* Thonburi model community (may need to request extension of boundary)\n** recreate ThonburiPark in other parks in the city\n** BaanSuanThon dancing in the soi\n** opportunity to model [[zone layout|http://dancelabs.wikispaces.com/Bangkok+International+Arts+Festival]] using multiple sois\n* Pech's IndianDance idea\n* 6 zones (idea: farangs, teens, same sex, backpackers, traditional, clubgoers) ([[wikispaces|http://dancelabs.wikispaces.com/Bangkok+International+Art+Festival]])\n* website: http://www.bkkartfest.com\n\n!devil in the details\n* reuse CelebrityBrochure (todo: translate into EN)\n* MeetingPoint (1 per area)\n* MasterSchedule \n\n[[team workspace|http://dancelabs.wikispaces.com/Bangkok International Arts Festival]]\n[[proposal to BIAF|http://docs.google.com/Doc?id=dhjhk7vs_35gprjnh]]\n
!References\n* CommunicationsMatrix
[img[http://static.flickr.com/50/109121336_b564a32bfc_m.jpg]] (thanks to RossMayfield for image)
[[Timeless Art|http://docs.google.com/Doc?id=dhjhk7vs_39ddb8kz]]\n
the kids on my street here in BaanSuanThon mentioned Audition Online, a game that apparently take DanceBattling to the online world!\n\naptly named, "Dancing Paradise" in Japan - be interesting to see how Thai kids play the game (haven't seen it yet!)\n\nand I thought SecondLife was exciting...\n
A wonderful workshop created by JaimeNisenbaum based on the Halprin Life/Art Process at the TamalpaInstitute.\n
http://www.ciis.edu/faculty/nisenbaum.html
http://www.tamalpa.org\n
from [[1993 article from Community Arts Network|http://www.communityarts.net/readingroom/archivefiles/2003/10/toward_a_proces.php]]:\n# Affirmation\n# Artist As Questioner\n# Responders ask the Questions\n# Opinion Time\n# Subject Matter Discussion\n# Working on the Work\n
!Introduction\n* OurVision\n* DanceLabs EnrollmentCollateral\n* DanceChalat SourceDocument\n* ProgramStrategy\n* ProgramDesign\n\n!Infrastructure\n* ProgramDashboard (aka KnowledgeBase)\n* DancersDatabase\n* DiscussionSpace (see also WebSite)\n* MasterSchedule\n* ThonburiPark MeetingPoint\n* BaanSuanThon CommunityCenter (see also [[Foundation]])\n* DanceWorkbook\n\n!Peeps\n* AssistingTeam\n* JazzedKids\n\n!Core\n* ProductionManual\n* CatalystsGuide (see also BuildingBlocks)\n* [[Workday]] (WIP: see also PrepareWorkday and WorkdayIdeas)\n\n!Events\n* DanceExperiment\n* DanceWorkshop\n* HomeIntro\n* DanceCelebration (see also GraduateCelebration)\n\n!Community\n* CommunityDancing\n* EmotionalBankAccount\n* [[Photos]] (see also VideoClip)\n* DanceInnovationNews (aka blog)\n** BreakthroughReport (related to VideoIntroduction)\n
!Quotes\n* "modernizing elites broke people out of their traditional roles and communities by creating new opportunities...Those who left their communities...often fatally weakened traditional bonds of friendship, religion, class origin, community, and locality" (p.75)\n\nsee WorkingForGood\nwebsite: http://culturalcreatives.org/
given that us humans ''really'' can't see the future - this is a bit of a ReverseEngineering process :)\n\nit's all bout being in action and giving up what you think you know!!!!\n\n! Puzzle pieces discovered\n* Naomi's FreedomToAsk\n* Ko's DanceLikeYouLoveIt\n* Lewis' thoughts influenced by RelationDancing\n* Tara's Dance Labs AwakeningToOne (circa Jan 2002)\n* Morn's Dance Chalat SourceDocument (circa Sept 2006, from nothing, in Thai)\n* Chin's vision for WorkingForGood\n\nwe're clearly forming a DreamTeam pretty quickly!\n\n
[[lecture|http://mitworld.mit.edu/play/264]] at MIT\n
/***\n''SearchOptionsPlugin for TiddlyWiki version 2.0''\n^^author: Eric Shulman - ELS Design Studios\nsource: http://www.TiddlyTools.com/#SearchOptionsPlugin\nlicense: [[Creative Commons Attribution-ShareAlike 2.5 License|http://creativecommons.org/licenses/by-sa/2.5/]]^^\n\nThe TiddlyWiki search function normally looks in both tiddler titles and tiddler body content ('text'). However, narrowing the search so that it examines only titles or only text, or expanding the search to include text contained in tiddler tags can be very helpful, especially when searching on common words or phrases. In addition, it is often useful for the search results to show tiddlers with matching titles before tiddlers that contain matching text or tags.\n\n!!!!!Usage\n<<<\nThis plugin adds checkboxes (see below and in AdvancedOptions) to let you selectively configure the TiddlyWiki search function to just examine any combination of tiddler titles, text, or tags. It also provides an option to switch the search results order between 'titles mixed in' (default) and 'titles shown first', as well as an option display the search results as a list of links (in an auto-generated "SearchResults" tiddler), rather than actually displaying all matching tiddlers. You can also enable/disable the "incremental search" (key-by-key searching), so that a search is only initiated when you press the ENTER key or click on the "search:" prompt text.\n<<<\n!!!!!Configuration\n<<<\nIn additional to the checkboxes in AdvancedOptions, a self-contained control panel is included here for your convenience:\n<<option chkSearchTitles>> Search tiddler titles\n<<option chkSearchText>> Search tiddler text\n<<option chkSearchTags>> Search in tiddler tags\n<<option chkSearchTitlesFirst>> Show title matches first\n<<option chkSearchList>> Show list of matching tiddlers\n<<option chkSearchIncremental>> Incremental searching\n<<<\n!!!!!Installation\n<<<\nimport (or copy/paste) the following tiddlers into your document:\n''SearchOptionsPlugin'' (tagged with <<tag systemConfig>>)\n^^documentation and javascript for SearchOptionsPlugin handling^^\n\nWhen installed, this plugin automatically adds checkboxes in the AdvancedOptions shadow tiddler so you can enable/disable the extended search behavior. However, if you have customized your AdvancedOptions, you will need to manually add {{{<<option chkSearchTitles>>}}}, {{{<<option chkSearchText>>}}} and {{{<<option chkSearchTitlesFirst>>}}} (with suitable prompt text) to your customized tiddler.\n<<<\n!!!!!Revision History\n<<<\n''2006.02.03 [2.2.1]''\nrewrite timeout clearing code and blank search text handling to match 2.0.4 core release changes. note that core no longer permits "blank=all" searches, so neither does this plugin. To search for all, use "." with text patterns enabled.\n''2006.02.02 [2.2.0]''\nin search.handler(), KeyHandler() function clears 'left over' timeout when search input is < 3 chars. Prevents searching on shorter text when shortened by rapid backspaces (<500msec)\n''2006.02.01 [2.1.9]''\nin Story.prototype.search(), correct inverted logic for using/not using regular expressions when searching\nalso, blank search text now presents "No search text. Continue anyway?" confirm() message box, so search on blank can still be processed if desired by user.\n''2006.02.01 [2.1.8]''\nin doSearch(), added alert/return if search text is blank\n''2006.01.20 [2.1.7]''\nfixed setting of config.macros.search.reportTitle so that Tweaks can override it.\n''2006.01.19 [2.1.6]''\nimproved SearchResults formatting, added a "search again" form to the report (based on a suggestion from MorrisGray)\ndefine results report title using config.macros.search.reportTitle instead of hard-coding the tiddler title\n''2006.01.18 [2.1.5]''\nCreated separate functions for reportSearchResults(text,matches) and discardSearchResults(), so that other developers can create alternative report generators.\n''2006.01.17 [2.1.4]''\nUse regExp.search() instead of regExp.test() to scan for matches. Correctd the problem where only half the matching tiddlers (the odd-numbered ones) were being reported.\n''2006.01.15 [2.1.3]''\nAdded information (date/time, username, search options used) to SearchResults output\n''2006.01.10 [2.1.2]''\nuse displayTiddlers() to render matched tiddlers. This lets you display multiple matching tiddlers, even if SinglePageModePlugin is enabled.\n''2006.01.08 [2.1.1]''\ncorrected invalid variable reference, "txt.value" to "text" in story.search()\n''2006.01.08 [2.1.0]''\nre-write to match new store.search(), store.search.handler() and story.search() functions.\n''2005.12.30 [2.0.0]''\nUpgraded to TW2.0\nwhen rendering SearchResults tiddler, closeTiddler() first to ensure display is refreshed.\n''2005.12.26 [1.4.0]''\nadded option to search for matching text in tiddler tags\n''2005.12.21 [1.3.7]''\nuse \s\s to 'escape' single quotes in tiddler titles when generating "Open all matching tiddlers" link. Also, added access key: "O", to trigger "open all" link.\nBased on a suggestion by UdoBorkowski.\n''2005.12.18 [1.3.6]''\ncall displayMessage() AFTER showing matching tiddlers so message is not cleared too soon\n''2005.12.17 [1.3.5]''\nif no matches found, just display message and delete any existing SearchResults tiddler.\n''2005.12.17 [1.3.4]''\nuse """{{{""" and """}}}""" to 'escape' display text in SearchResults tiddler to ensure that formatting contained in search string is not rendered \nBased on a suggestion by UdoBorkowski.\n''2005.12.14 [1.3.3]''\ntag SearchResults tiddler with 'excludeSearch' so it won't list itself in subsequent searches\nBased on a suggestion by UdoBorkowski.\n''2005.12.14 [1.3.2]''\nadded "open all matching tiddlers..." link to search results output.\nBased on a suggestion by UdoBorkowski.\n''2005.12.10 [1.3.1]''\nadded "discard search results" link to end of search list tiddler output for quick self-removal of 'SearchResults' tiddler.\n''2005.12.01 [1.3.0]''\nadded chkSearchIncremental to enable/disable 'incremental' searching (i.e., search after each keystroke) (default is ENABLED).\nadded handling for Enter key so it can be used to start a search.\nBased on a suggestion by LyallPearce\n''2005.11.25 [1.2.1]''\nrenamed from SearchTitleOrTextPlugin to SearchOptionsPlugin\n''2005.11.25 [1.2.0]''\nadded chkSearchList option\nBased on a suggestion by RodneyGomes\n''2005.10.19 [1.1.0]''\nadded chkSearchTitlesFirst option.\nBased on a suggestion by ChristianHauck\n''2005.10.18 [1.0.0]''\nInitial Release\n<<<\n!!!!!Credits\n<<<\nThis feature was developed by EricShulman from [[ELS Design Studios|http:/www.elsdesign.com]].\nBased on a suggestion by LyallPearce.\n<<<\n!!!!!Code\n***/\n//{{{\nversion.extensions.SearchTitleOrText = {major: 2, minor: 2, revision: 1, date: new Date(2006,2,3)};\n//}}}\n\n//{{{\nif (config.options.chkSearchTitles==undefined) config.options.chkSearchTitles=true;\nif (config.options.chkSearchText==undefined) config.options.chkSearchText=true;\nif (config.options.chkSearchTags==undefined) config.options.chkSearchTags=true;\nif (config.options.chkSearchTitlesFirst==undefined) config.options.chkSearchTitlesFirst=false;\nif (config.options.chkSearchList==undefined) config.options.chkSearchList=false;\nif (config.options.chkSearchIncremental==undefined) config.options.chkSearchIncremental=true;\n\nconfig.shadowTiddlers.AdvancedOptions += "\sn<<option chkSearchTitles>> Search in tiddler titles";\nconfig.shadowTiddlers.AdvancedOptions += "\sn<<option chkSearchText>> Search in tiddler text";\nconfig.shadowTiddlers.AdvancedOptions += "\sn<<option chkSearchTags>> Search in tiddler tags";\nconfig.shadowTiddlers.AdvancedOptions += "\sn<<option chkSearchTitlesFirst>> Search results show title matches first";\nconfig.shadowTiddlers.AdvancedOptions += "\sn<<option chkSearchList>> Search results show list of matching tiddlers";\nconfig.shadowTiddlers.AdvancedOptions += "\sn<<option chkSearchIncremental>> Incremental searching";\n//}}}\n\n//{{{\nif (config.macros.search.reportTitle==undefined)\n config.macros.search.reportTitle="SearchResults";\n//}}}\n\n//{{{\nconfig.macros.search.handler = function(place,macroName,params)\n{\n var lastSearchText = "";\n var searchTimeout = null;\n var doSearch = function(txt)\n {\n if (txt.value.length>0)\n {\n story.search(txt.value,config.options.chkCaseSensitiveSearch,config.options.chkRegExpSearch);\n lastSearchText = txt.value;\n }\n };\n var clickHandler = function(e)\n {\n doSearch(this.nextSibling);\n return false;\n };\n var keyHandler = function(e)\n {\n if (!e) var e = window.event;\n switch(e.keyCode)\n {\n case 13: // ELS: handle enter key\n doSearch(this);\n break;\n case 27:\n this.value = "";\n clearMessage();\n break;\n }\n if (config.options.chkSearchIncremental)\n {\n if(this.value.length > 2)\n {\n if(this.value != lastSearchText)\n {\n if(searchTimeout) clearTimeout(searchTimeout);\n var txt = this;\n searchTimeout = setTimeout(function() {doSearch(txt);},500);\n }\n }\n else\n if(searchTimeout) clearTimeout(searchTimeout);\n }\n };\n var focusHandler = function(e)\n {\n this.select();\n };\n var btn = createTiddlyButton(place,this.label,this.prompt,clickHandler);\n var txt = createTiddlyElement(place,"input",null,null,null);\n if(params[0])\n txt.value = params[0];\n txt.onkeyup = keyHandler;\n txt.onfocus = focusHandler;\n txt.setAttribute("size",this.sizeTextbox);\n txt.setAttribute("accessKey",this.accessKey);\n txt.setAttribute("autocomplete","off");\n if(config.browser.isSafari)\n {\n txt.setAttribute("type","search");\n txt.setAttribute("results","5");\n }\n else\n txt.setAttribute("type","text");\n}\n//}}}\n\n//{{{\nStory.prototype.search = function(text,useCaseSensitive,useRegExp)\n{\n highlightHack = new RegExp(useRegExp ? text : text.escapeRegExp(),useCaseSensitive ? "mg" : "img");\n var matches = store.search(highlightHack,"title","excludeSearch");\n var q = useRegExp ? "/" : "'";\n clearMessage();\n if (!matches.length) {\n if (config.options.chkSearchList) discardSearchResults();\n displayMessage(config.macros.search.failureMsg.format([q+text+q]));\n } else {\n if (config.options.chkSearchList) \n reportSearchResults(text,matches);\n else {\n var titles = []; for(var t=0; t<matches.length; t++) titles.push(matches[t].title);\n this.closeAllTiddlers(); story.displayTiddlers(null,titles);\n displayMessage(config.macros.search.successMsg.format([matches.length, q+text+q]));\n }\n }\n highlightHack = null;\n}\n//}}}\n\n//{{{\nTiddlyWiki.prototype.search = function(searchRegExp,sortField,excludeTag)\n{\n var candidates = this.reverseLookup("tags",excludeTag,false,sortField);\n\n // scan for matching titles\n var title_results = [];\n if (config.options.chkSearchTitles)\n for(var t=0; t<candidates.length; t++)\n if(candidates[t].title.search(searchRegExp)!=-1)\n title_results.push(candidates[t]);\n\n // scan for matching text\n var text_results = [];\n if (config.options.chkSearchText)\n for(var t=0; t<candidates.length; t++)\n if(candidates[t].text.search(searchRegExp)!=-1)\n text_results.push(candidates[t]);\n\n // scan for matching tags\n var tag_results = [];\n if (config.options.chkSearchTags)\n for(var t=0; t<candidates.length; t++)\n if(candidates[t].tags.join(" ").search(searchRegExp)!=-1)\n tag_results.push(candidates[t]);\n\n // merge the results, eliminating redundant matches\n var results = [];\n for(var t=0; t<title_results.length; t++) results.pushUnique(title_results[t]);\n for(var t=0; t<text_results.length; t++) results.pushUnique(text_results[t]);\n for(var t=0; t<tag_results.length; t++) results.pushUnique(tag_results[t]);\n\n // if not 'titles first', re-sort results to so titles, text and tag matches are mixed together\n if(!sortField) sortField = "title";\n var bySortField=function (a,b) {if(a[sortField] == b[sortField]) return(0); else return (a[sortField] < b[sortField]) ? -1 : +1; }\n if (!config.options.chkSearchTitlesFirst) results.sort(bySortField);\n return results;\n}\n//}}}\n\n// // ''REPORT GENERATOR''\n//{{{\nif (!window.reportSearchResults) window.reportSearchResults=function(text,matches)\n{\n var title=config.macros.search.reportTitle\n var q = config.options.chkRegExpSearch ? "/" : "'";\n var body="";\n\n // summary: nn tiddlers found matching '...', options used\n body+="''"+config.macros.search.successMsg.format([matches.length,q+"{{{"+text+"}}}"+q])+"''\sn";\n body+="^^//searched in:// ";\n body+=(config.options.chkSearchTitles?"''titles'' ":"");\n body+=(config.options.chkSearchText?"''text'' ":"");\n body+=(config.options.chkSearchTags?"''tags'' ":"");\n if (config.options.chkCaseSensitiveSearch||config.options.chkRegExpSearch) {\n body+=" //with options:// ";\n body+=(config.options.chkCaseSensitiveSearch?"''case sensitive'' ":"");\n body+=(config.options.chkRegExpSearch?"''text patterns'' ":"");\n }\n body+="^^";\n\n // numbered list of links to matching tiddlers\n body+="\sn<<<";\n for(var t=0;t<matches.length;t++) body+="\sn# [["+matches[t].title+"]]";\n body+="\sn<<<\sn";\n\n // open all matches button\n body+="<html><input type=\s"button\s" href=\s"javascript:;\s" ";\n body+="onclick=\s"story.displayTiddlers(null,["\n for(var t=0;t<matches.length;t++)\n body+="'"+matches[t].title.replace(/\s'/mg,"\s\s'")+"'"+((t<matches.length-1)?", ":"");\n body+="],1);\s" ";\n body+="accesskey=\s"O\s" ";\n body+="value=\s"open all matching tiddlers\s"></html> ";\n\n // discard search results button\n body+="<html><input type=\s"button\s" href=\s"javascript:;\s" ";\n body+="onclick=\s"story.closeTiddler('"+title+"'); store.deleteTiddler('"+title+"');\s" ";\n body+="value=\s"discard "+title+"\s"></html>";\n\n // search again\n body+="\sn\sn----\sn";\n body+="<<search \s""+text+"\s">> ";\n body+="<<option chkSearchTitles>>titles ";\n body+="<<option chkSearchText>>text ";\n body+="<<option chkSearchTags>>tags";\n body+="<<option chkCaseSensitiveSearch>>case-sensitive ";\n body+="<<option chkRegExpSearch>>text patterns";\n\n // create/update the tiddler\n var tiddler=store.getTiddler(title); if (!tiddler) tiddler=new Tiddler();\n tiddler.set(title,body,config.options.txtUserName,(new Date()),"excludeLists excludeSearch");\n store.addTiddler(tiddler); story.closeTiddler(title);\n\n // use alternate "search again" label in <<search>> macro\n var oldprompt=config.macros.search.label;\n config.macros.search.label="search again";\n\n // render tiddler\n story.displayTiddler(null,title,1); // force refresh\n\n // restore standard search label\n config.macros.search.label=oldprompt;\n\n}\n\nif (!window.discardSearchResults) window.discardSearchResults=function()\n{\n // remove the tiddler\n story.closeTiddler(config.macros.search.reportTitle);\n store.deleteTiddler(config.macros.search.reportTitle);\n}\n//}}}\n
function onClickDefaultHome(e) {\nstory.closeAllTiddlers();\nconfig.options.txtDefaultTiddlers = "";\nsaveOptionCookie('txtDefaultTiddlers');\nvar start = store.getTiddlerText("DefaultTiddlers");\nif(start)\nstory.displayTiddlers(null,start.readBracketedList());\n}\n\nconfig.macros["defaultHome"] = {label: "home", prompt: "Show the default tiddlers", title: "Home"};\nconfig.macros.defaultHome.handler = function(place) {\ncreateTiddlyButton(place,this.label,this.prompt,onClickDefaultHome);\n\n}
/***\n\n''Inspired by [[TiddlyPom|http://www.warwick.ac.uk/~tuspam/tiddlypom.html]]''\n\n|Name|SplashScreenPlugin|\n|Created by|SaqImtiaz|\n|Location|http://lewcid.googlepages.com/lewcid.html#SplashScreenPlugin|\n|Version|0.21 |\n|Requires|~TW2.08+|\n!Description:\nProvides a simple splash screen that is visible while the TW is loading.\n\n!Installation\nCopy the source text of this tiddler to your TW in a new tiddler, tag it with systemConfig and save and reload. The SplashScreen will now be installed and will be visible the next time you reload your TW.\n\n!Customizing\nOnce the SplashScreen has been installed and you have reloaded your TW, the splash screen html will be present in the MarkupPreHead tiddler. You can edit it and customize to your needs.\n\n!History\n* 20-07-06 : version 0.21, modified to hide contentWrapper while SplashScreen is displayed.\n* 26-06-06 : version 0.2, first release\n\n!Code\n***/\n//{{{\nvar old_lewcid_splash_restart=restart;\n\nrestart = function()\n{ if (document.getElementById("SplashScreen"))\n document.getElementById("SplashScreen").style.display = "none";\n if (document.getElementById("contentWrapper"))\n document.getElementById("contentWrapper").style.display = "block";\n \n old_lewcid_splash_restart();\n \n if (splashScreenInstall)\n {if(config.options.chkAutoSave)\n {saveChanges();}\n displayMessage("TW SplashScreen has been installed, please save and refresh your TW.");\n }\n}\n\n\nvar oldText = store.getTiddlerText("MarkupPreHead");\nif (oldText.indexOf("SplashScreen")==-1)\n {var siteTitle = store.getTiddlerText("SiteTitle");\n var splasher='\sn\sn<style type="text/css">#contentWrapper {display:none;}</style><div id="SplashScreen" style="border: 3px solid #ccc; display: block; text-align: center; width: 320px; margin: 100px auto; padding: 50px; color:#000; font-size: 28px; font-family:Tahoma; background-color:#eee;"><b>'+siteTitle +'</b> is loading<blink> ...</blink><br><br><span style="font-size: 14px; color:red;">Requires Javascript.</span></div>';\n if (! store.tiddlerExists("MarkupPreHead"))\n {var myTiddler = store.createTiddler("MarkupPreHead");}\n else\n {var myTiddler = store.getTiddler("MarkupPreHead");}\n myTiddler.set(myTiddler.title,oldText+splasher,config.options.txtUserName,null,null);\n store.setDirty(true);\n var splashScreenInstall = true;\n}\n//}}}
<!--{{{-->\n<link rel='alternate' type='application/rss+xml' title='RSS' href='index.xml'/>\n<!--}}}-->\n\n<style type="text/css">#contentWrapper {display:none;}</style><div id="SplashScreen" style="border: 3px solid #ccc; display: block; text-align: center; width: 500px; margin: 60px auto; padding: 30px; color:#000; font-size: 28px; font-family:Tahoma; background-color:#eee;">\n\n\n<a href="http://www.flickr.com/photos/chinarut/227116878/" title="Dance with me"><img src="http://static.flickr.com/66/227116878_40b480b7f4_m.jpg" width="240" height="180" alt="Dance with me" border=0 /></a><p>\n<b>Dance Chalat</b> is loading.<p>\nDepending on your connection speed, it may take up to a minute<blink> ...</blink><p>\nIf you get a <font face="courier">Unresponsive script</font> warning, please click "Continue"<p>\n<a href="http://www.dancelabs.com"><img src="img/DanceLabs_header_name_130px.jpg" border=0></a><p>\n<span style="font-size: 14px; color:red;">Requires Javascript.</span><p>\n\n</div>
<script src="http://www.google-analytics.com/urchin.js" type="text/javascript">\n</script>\n<script type="text/javascript">\n_uacct = "UA-567455-2";\nurchinTracker();\n</script>\n
hosted by our local DanceCentre in Bangkok\n\nsee the InternationalDanceCouncil (aka CID)\n\n[[history|http://www.cid-unesco.org/html/dance_day.html]]\n
Dance researchers unite! We have an exciting opportunity to share our work!\n\nhosted by the InternationalDanceCouncil\n\n[[announcement|http://www.cid-unesco.org/html/announcements.html]]\n\npresentation text due: 31 July 2007\n\ngo team!
headquartered in Paris, the CID (Council Internationale de la Danse) represents the global dance community in a big way!\n\n!Priorities\n# Restructure in each country in order to ensure full representation of:\n** all forms of dance (professional or amateur, theatrical, ballroom, folk etc.),\n** all levels (international, national, regional, local),\n** all sectors (companies, schools, ensembles, choreographers, researchers, publications, supplies etc.).\n** all fields (education, stage, recreation, therapy, research, management etc.)\n# Establish a computer network to facilitate contacts with the CID and between members.\n# Reinforce the headquarters' secretariat in Paris and create an auxiliary secretariat in Athens.\n# Attract smaller countries to the CID and assist them in making contacts and exchanges within the worldwide dance community.\n([[source|http://www.cid-unesco.org/html/members.html]])\n\n[[nutshell|http://www.unesco.org/ngo/cid/]]\nmain [[website|http://www.cid-unesco.org]]\n
* JaimeNisenbaum - DialoguesBetweenLifeAndArt\n** Life/ArtProcess\n** DanceChalat\n** CreativeCommons\n** action/opportunities\n*** PlanInternational\n*** ArtsFestival\n*** WorkingForGood GovernorLetter\n* DanceCentre\n** ArtsFestival - Creative Dance For Children\n** DanceLabs Foundation\n* InternationalDanceCouncil\n** UniversalDance\n** OnlineCommunity\n** ProgramDashboard\n** DancersWithNoFrontiers\n
We have KenVanosky to acknowledge for creating a possibility so big it's taking over the world by dance!\n
A series of intentional dance celebrations produced by RaiseTheFrequency held in the SF bay area that gave way for co-creative connected dance to genres such as electronica.
* MadHotBallroom - particularly powerful as it is a documentary of a successful program in NYC\n\nsee also http://omidyar.dancelabs.com/ws/Movies\n
config.options.chkSearchList=true;
<html>\n<embed style="width:400px; height:326px;" id="VideoPlayback" type="application/x-shockwave-flash" src="http://video.google.com/googleplayer.swf?docId=1351153766529498900&hl=en" flashvars=""> </embed>\n</html>\n\n!Info\n* intent: share dance as community\n* length: 1 minute 38 seconds\n\n!Credits\n* Producer/Editor - ChinarutRuangchotvit\n* Director - DuangsamornPattanakanokchai\n* Photography - Oey, Morn, Chin, Chalip, Puoh\n* Interviews - Sarah, Chalip, Dee, Liza\n* Dancers - Chin, Oey, Moo, Chalip, Puoh, Pech\n* music - Xpander by Sasha © 1999 Ultra Records\n* hardware: Canon Powershot SD400\n* hardware: Apple mac mini\n* software: iLife '05 by Apple Computer\n
http://www.socialtext.net/exchange/index.cgi?socialtext_unplugged_faq
!Chinarut's Vision\nEmbrace Web 2.0 revolution. end the paradigm and need for hosted web space. store, edit, and collaborate with others online. what Web 2.0 is for me is being resourceful. putting power of the web in expert hands. I've been an IT professional and I'm humbled myself quite dearly after being in Thailand.\n
Innovation strategy that works at three levels:\n# The lion's share of the investment underwrites a few big bets at the top\n** clear directions for the future.\n# portfolio of promising mid-range ideas driven by designated teams\n# early-stage ideas or incremental innovations that permit continuous improvement.\n\nsrc: http://hbswk.hbs.edu/item/5525.html\n* key concept: "Innovators must be kept connected to the mainstream business. Isolating them leads to tensions with other parts of the company and lessens the chances that their work will be adopted."
I hear CulturalCreatives here...\n\n!Rise of\nhttp://www.sigmascan.org//ViewIssue.aspx?IssueId=92
* DanceLabs - January 13 2002\n* DanceChalat - August 27, 2006 (technically the nite of the burn so it is August 26 (GMT+7) in 2007 - see BurningMan)\n
http://www.dance-centre.com