diff options
| author | Chinaman <root@chinaman> | 2011-09-06 19:47:58 +0200 |
|---|---|---|
| committer | Chinaman <root@chinaman> | 2011-09-06 19:47:58 +0200 |
| commit | 108f3616e3f4958752d881192ef29e5fc4c2b045 (patch) | |
| tree | 3c67478c852265219b72e6e1b05467d7065b7ba8 /cholerab/pattern | |
| parent | b2d65500160bcdf7abb2bf985f7da582b810e25c (diff) | |
| parent | c3bc5a6d16868c121aca780f3109155797b51d76 (diff) | |
Merge branch 'master' of github.com:krebscode/painload
Diffstat (limited to 'cholerab/pattern')
| -rw-r--r-- | cholerab/pattern/README | 68 |
1 files changed, 68 insertions, 0 deletions
diff --git a/cholerab/pattern/README b/cholerab/pattern/README new file mode 100644 index 00000000..0980ac6e --- /dev/null +++ b/cholerab/pattern/README @@ -0,0 +1,68 @@ +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 +--------------------- + +Source-based Documentation / Help +--------------------------------- +<code> + #! /bin/sh + if echo "$*" | grep -q '\(^\| \)-h\( \|$\)'; then + cat "$0" + fi + # [more code] +</code> + +Literate Programming +-------------------- +Omit all the comments. + + |
