diff options
Diffstat (limited to 'misc')
-rw-r--r-- | misc/byobu_commands.txt | 6 | ||||
-rw-r--r-- | misc/find.txt | 1 | ||||
-rw-r--r-- | misc/notes.txt | 41 | ||||
-rw-r--r-- | misc/python_stuff.txt | 1 | ||||
-rw-r--r-- | misc/runserver.txt | 1 | ||||
-rw-r--r-- | misc/virtual_env.txt | 1 |
6 files changed, 41 insertions, 10 deletions
diff --git a/misc/byobu_commands.txt b/misc/byobu_commands.txt deleted file mode 100644 index 48e85396..00000000 --- a/misc/byobu_commands.txt +++ /dev/null @@ -1,6 +0,0 @@ -byobu -RD -control-a then :multiuser on -control-a then :acladd sam - -type: screen -list for sessions -screen -r zas1024/25679.byobu diff --git a/misc/find.txt b/misc/find.txt deleted file mode 100644 index 5c792d80..00000000 --- a/misc/find.txt +++ /dev/null @@ -1 +0,0 @@ -find | grep _____ diff --git a/misc/notes.txt b/misc/notes.txt new file mode 100644 index 00000000..be023c1d --- /dev/null +++ b/misc/notes.txt @@ -0,0 +1,41 @@ +To get server running: + +Start up virtual environment: +source ~/ve27/bin/activate + +To set WQFLASK_SETTINGS environment variable: +export WQFLASK_SETTINGS=~/gene/wqflask/cfg/zach_settings.py (or wherever file is located) + +To search for commands in history if necessary: +history | grep "(whatever is being searched for)" + +Run server: +python runserver.py + +=========================================== + +Start screen session +byobu -RD (to start) +control-a then :multiuser on +control-a then :acladd sam + +type: screen -list for sessions +screen -r zas1024/25679.byobu + +or if only one: + +screen -r zas1024/ + +=========================================== + +Coffeescript Stuff: + +coffee -c (filename) +coffee -c -w (to watch for changes and recompile) +coffee --help (for information about setting options) + +=========================================== + +Python stuff: + +Classes should always inherit "object"
\ No newline at end of file diff --git a/misc/python_stuff.txt b/misc/python_stuff.txt deleted file mode 100644 index f36fe338..00000000 --- a/misc/python_stuff.txt +++ /dev/null @@ -1 +0,0 @@ -Classes should always inherit "object"
\ No newline at end of file diff --git a/misc/runserver.txt b/misc/runserver.txt deleted file mode 100644 index 71e3dfd7..00000000 --- a/misc/runserver.txt +++ /dev/null @@ -1 +0,0 @@ -python runserver.py diff --git a/misc/virtual_env.txt b/misc/virtual_env.txt deleted file mode 100644 index 7a8f20be..00000000 --- a/misc/virtual_env.txt +++ /dev/null @@ -1 +0,0 @@ -source ~/ve27/bin/activate |