summaryrefslogtreecommitdiffstats
path: root/cholerab/enterprise/README
diff options
context:
space:
mode:
authortv <tv@also>2011-08-06 00:57:39 +0200
committertv <tv@also>2011-08-06 00:57:39 +0200
commit001777d48a6e98eab1c1b3b82f64601a0e60b257 (patch)
treeaf61be9ab3f851104a09f46b7f848207ff6102dd /cholerab/enterprise/README
parentc40807d49d6e53afc3aa3c5f14fd503ea7166b60 (diff)
parentc823c6fcfc9b655bd18c202cfcaed3c7f77950ab (diff)
Merge remote-tracking branch '52e446de-9909-430a-becf-0c1b94e08fc6/4b74cb04-c218-4cbd-8cd7-e73623ef87f6'
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
+---------------------