This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// LABjs style | |
<script src="js/LAB.min.js"></script> | |
<script> | |
$LAB | |
.script("underscore.js") | |
.script("jquery.js") | |
.script("mycode.js") | |
.wait(function() { | |
//do something |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* ***** BEGIN LICENSE BLOCK ***** | |
* Version: MPL 1.1/GPL 2.0/LGPL 2.1 | |
* | |
* The contents of this file are subject to the Mozilla Public License | |
Version | |
* 1.1 (the "License"); you may not use this file except in compliance | |
with | |
* the License. You may obtain a copy of the License at | |
* http://www.mozilla.org/MPL/ | |
* |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
in bespinclient | |
source bin/activate | |
cd ../bespinserver | |
python | |
from bespin import config | |
config.set_profile("dev") | |
config.activate_profile | |
from bespin import db | |
db.User.create_user(username, password, email, "/path/to/your/home/directory (optional)") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"define metadata"; | |
({ | |
"name": "hello", | |
"provides": [ | |
{ | |
"ep": "command", | |
"name": "hello", | |
"description": "Says hi", | |
"pointer": "#helloWorld" | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Theme stuff follows */ | |
{ | |
"description": "Provides the standard Bespin theme", | |
"provides": [ | |
{ | |
"ep": "editorTheme", | |
"name": "standard", | |
"description": "The standard Bespin theme", | |
"pointer": "#theme" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"define metadata"; | |
({ | |
"provides": [ | |
{ | |
"ep": "keymapping", | |
states: { | |
start: [ | |
{ | |
name: 'Copy to clipboard', | |
regex: 'ctrl_c' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"define metadata"; | |
({ | |
"provides": | |
[ | |
{ | |
"ep": "command", | |
"name": "hello", | |
"description": "simple hello world", | |
"pointer": "#hello" | |
} |
NewerOlder