summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbnewbold <bnewbold@robocracy.org>2013-06-05 14:27:17 -0400
committerbnewbold <bnewbold@robocracy.org>2013-06-05 14:27:17 -0400
commit4d7ddf23ac946e247a194cfd19222b4c3c691d70 (patch)
treeb07cca08adb931a0a54ec7541f5af2c088b762b4
parentc1d56f67102c0113d35664e7d726559ac846fd7f (diff)
downloadknowledge-4d7ddf23ac946e247a194cfd19222b4c3c691d70.tar.gz
knowledge-4d7ddf23ac946e247a194cfd19222b4c3c691d70.zip
minor tweaks and notes
-rw-r--r--film/to-watch.page7
-rw-r--r--software/mailman.page14
-rw-r--r--software/python.page4
3 files changed, 25 insertions, 0 deletions
diff --git a/film/to-watch.page b/film/to-watch.page
index 5f56537..1d4a4fd 100644
--- a/film/to-watch.page
+++ b/film/to-watch.page
@@ -46,6 +46,9 @@ Films To Watch
* When Night Falls (Ying Liang, Chinese)
* The World of Suzie Wong
* Escape From Tomorrow (surreal Disney World)
+ * Born in Flames
+ * Boy Eating the Bird's Food
+ * Computer Chess
Documentaries:
@@ -59,3 +62,7 @@ Documentaries:
* Mondo Cane (shock film)
* The Oath
* My Country, My Country
+ * Dark Days (2000 NYC underground homeless)
+ * Aatsinki: The Story of Arctic Cowboys
+ * The Pervert's Guide to Cinema
+
diff --git a/software/mailman.page b/software/mailman.page
index 7255364..4e3ea2a 100644
--- a/software/mailman.page
+++ b/software/mailman.page
@@ -39,3 +39,17 @@ If using public mailing lists archives, add lines like the following around
self.author = self.email = 'redacted'
+Notes:
+- run thttpd as list user?
+- don't forget to set "nochroot" in /etc/thttpd/thttpd.conf
+- run newlist as root?
+- edit DEFAULT_URL_PATTERN, DEFAULT_URL_HOST, DEFAULT_EMAIL_HOST in /etc/mailman/mm_cfg.py
+- after above, to fix "instant logout" problem (no cookies set):
+ while read list stuff; do withlist -l -r fix_url "$list"; done < <(list_lists)
+
+ (ignore the error?)
+
+check_perms -f
+
+needed to allow symlinks from nginx to get 'list' group-owned archives to work.
+
diff --git a/software/python.page b/software/python.page
index abf145e..5d05ad8 100644
--- a/software/python.page
+++ b/software/python.page
@@ -75,3 +75,7 @@ For debian packaging, use [stdeb](http://pypi.python.org/pypi/stdeb)
The ``codecs`` package has some helpers; see for example
``open(f,mode,encoding)``.
+ASCII
+----------------
+'ord' is the function that takes a single ASCII character and returns the value
+number (as an int).