summaryrefslogtreecommitdiffstats
path: root/cholerab/enterprise/README
diff options
context:
space:
mode:
authormakefu <github@syntax-fehler.de>2011-08-06 01:56:55 +0200
committermakefu <github@syntax-fehler.de>2011-08-06 01:56:55 +0200
commit494b2e6d6d93bd6febbab2fa086fc43310228512 (patch)
tree3a0d0028daf2cefa70c49bae463a3923cb18f4c9 /cholerab/enterprise/README
parent596c29972408c83a3e83bb3eb369734bd87d4f7b (diff)
parentd865d9db85cc283ae3e7be20dbe4441a4e69f7b3 (diff)
emergency merge
Diffstat (limited to 'cholerab/enterprise/README')
-rw-r--r--cholerab/enterprise/README52
1 files changed, 52 insertions, 0 deletions
diff --git a/cholerab/enterprise/README b/cholerab/enterprise/README
new file mode 100644
index 00000000..03c1c068
--- /dev/null
+++ b/cholerab/enterprise/README
@@ -0,0 +1,52 @@
+Enterprise Patterns
+==================
+Stellt sicher, dass das richtige passiert, egal was gemacht wird
+
+Enterprise Loop
+---------------
+
+Enterprise Exception Handling
+-----------------------------
+ggf ersetzbar durch enterprise loop.
+
+
+Enterprise Installation
+-----------------------
+
+Rebooting
+----------
+
+Enterprise Einschalter (eon)
+----------------------------
+Device that turns something on as soon as possible.
+
+Supernintendo Pattern
+---------------------
+
+Enterprise Root
+---------------
+scripts which need root access but are called with lower privileges. The Enterprise Root Pattern provides a Solution for this issue by calling the script itself as sudo.
+<code>
+if test "${nosudo-false}" != true -a `id -u` != 0; then
+ echo "we're going sudo..." >&2
+ exec sudo "$0" "$@"
+ exit 23 # go to hell
+fi
+</script> // enterprise ist, wenn <code> ... </script> trotzdem matcht
+
+Enterprise Shutdown
+------------------
+Mittel der Wahl um einen Shutdown zu erzwingen
+
+Bsp: das Not-Aus in der Maschinensicherheit
+
+Enterprise Deep Copy
+--------------------
+Bsp: var copy = JSON.parse(JSON.stringify(source))
+
+Enterprise Thinking
+-------------------
+Prozess um auf Enterprise Patterns zu kommen
+
+Bug-Driven Development
+---------------------