summaryrefslogtreecommitdiffstats
path: root/cholerab
diff options
context:
space:
mode:
authormakefu <github@syntax-fehler.de>2012-12-07 23:06:17 +0100
committermakefu <github@syntax-fehler.de>2012-12-07 23:06:17 +0100
commit253f0a908b190f0ff6d2f71023d050c088533c02 (patch)
tree70416e998512a34ff520e1244fa3645077f0198b /cholerab
parent7e5a88e4681ec39b109db9aee13fe3d07251f11c (diff)
pattern/README -> ENTERPRISE_PATTERN
add to pattern : 'litterate programming' and 'Enterprise Expect'
Diffstat (limited to 'cholerab')
-rw-r--r--cholerab/ENTERPRISE_PATTERN (renamed from cholerab/pattern/README)16
1 files changed, 16 insertions, 0 deletions
diff --git a/cholerab/pattern/README b/cholerab/ENTERPRISE_PATTERN
index 0980ac6e..4e417709 100644
--- a/cholerab/pattern/README
+++ b/cholerab/ENTERPRISE_PATTERN
@@ -65,4 +65,20 @@ Literate Programming
--------------------
Omit all the comments.
+Litterate Programming
+---------------------
+Write throw-away code and it will become production code
+
+Enterprise Expect
+-----------------
+Because you always know what you want, `expect(3)` script code can be replaced
+by a `subshell and pipe` pattern :
+
+<code>
+ ( echo "$username"; sleep 1; echo "$password"; sleep 1; echo "cp old new" ) | telnet
+</code>
+
+painload example: `//retiolum/bin/announce_pubkey`
+
+