From dd37de7256a407fbfbe3cdc08c0829078286caea Mon Sep 17 00:00:00 2001 From: tv Date: Tue, 11 Jan 2022 23:34:39 +0100 Subject: thesauron: moved to the cholerab repo E.g. https://github.com/krebs/cholerab --- cholerab/thesauron | 136 ----------------------------------------------------- 1 file changed, 136 deletions(-) delete mode 100644 cholerab/thesauron (limited to 'cholerab') diff --git a/cholerab/thesauron b/cholerab/thesauron deleted file mode 100644 index 2b260a09..00000000 --- a/cholerab/thesauron +++ /dev/null @@ -1,136 +0,0 @@ -Legende: - -Cholerab n. -[de] -- Kunstwort aus Kollaboration und Cholera. Beschreibt den Zustand, dass - Zusammenarbeit niemals gut, einfach und ohne Schmerzen funktioniert. -- Teamwork-Plattform für Krebscode. - -eigentlich adv. -[de] -- Hinweis darauf, dass der Inhalt eines Satzes eine Soll-Realität beschreibt, - die nicht der Fall ist. -Antonym: tatsaechlich - -ghost n. -[de] -- Host im Darknet welcher evtl. irgendwie noch da ist (als dd image auf anderen - Festplatten) aber wohl nie wieder kommen wird. -Siehe: Wiederbelebung - -KD;RP abbr. (pronounciation: kah-derp) -[en] -- Short for Krebs Darknet / Retiolum Prefix. - -krebs -[de] -- krebs ist ein soziales Experiment, eine Organisation, das zweit aelteste - Softwareprojekt im Shack und viel verteilte infrastruktur. - -kremium -[en] -- coinage derived from the words premium and krebs -see: broken -usage: Reaktor ircbot has unfixed broken behavior since ever->"Kremium Software" - -KRI abbr. (pronounciation: [en] cry) -[en] -- Short for Krebs Request for Implementation. - Derived from Scheme Requests for Implementation (SRFI). - -litterate programming n. -[en] -- any code that has not been proved mathematically. - -Nahziel n. -[de] -- Ziel mit höchst möglicher Priorität. - -Nahzielerfahrung n. -[de] -- das Erlebnis der (endgültigen) Nichterreichung eines Nahziels (obwohl - nur noch wenig ((quasi-) infinitesimal viel) nötig gewesen wäre). - -parentheses of fear -[en] -- unnecessary parentheses, usually used when order of precedence is unknown. - - Examples: 1 + (2 * 3) - -Protip n. -[en] -- (Probably vague) description how a task can be solved. - - Antonym: Spoiler - - Example: - - To defeat the Cyberdaemon, shoot at it until it dies. - - RTFM - -Punching Lemma n. -[de] -- Sozialer Druck zur Aufrechterhaltung der Ordnung in dem sozialen Geflaecht - von Krebs - -ref, n. -[en] -- A reference like an URI, ISBN, name of a person, etc. - -reftrace, n. -[en] -- A stacktrace-like representation of refs that lead to some (any kind of) - conclusion. Usually generated by a human. The conclusion can be either on - the top or on the bottom of the stack. If the order is ambiguous, then it - should be communicated explicitly. - - Example: (conclusion first) - - http://en.wikipedia.org/wiki/Stack_trace - - google "stacktrace" (first entry / 2014-12-05T12:13:58Z) - - think about some example [this could be omitted, as it's obvious...] - -Retiolum n. -[en] -- The official darknet of Krebs which utilizes the Retiolum Prefix to - address individual nodes. - -Retiolum Prefix n. -[en] -- The universally accepted IPv6-prefix, 42::/16. Anyone can has a - /128-subnet and, if require, anything larger. - -Retiolum Realtime Map n. -[en] -- The network map of the public visible part of Retiolum. - -RRM [abbr.] -[en] -- Short for Retiolum Retiolum Map. - -Sanatorium n. -[en] -- The Krebs Control and Command Center. -- An Retiolum-based IRC-channel where all Reaktor-enabled nodes gather - and lurk for relevant input. - -Spoiler n. -[en] -- A subset of walkthrough, i.e. any individual steps may be omitted. - - Antonym: Protip - -tatsaechlich, adv. -[de] -- Hinweis darauf, dass der Inhalt eines Satzes exakt der Realität entspricht. -Antonym: eigentlich - -Verkrebsung n. -[de] -- Synonym fuer die Installation von Krebs (oder eine einzelnen Krebs - Komponente) auf einem beliebigem System. - -Walkthrough n. -[en] -- Description of the individual steps to complete a task. - - Examples: - - program code - - small-step semantics - -Wiederbelebung n. -[de] -- Ein ghost wird im Darknet wieder erreichbar -Siehe: ghost -- cgit v1.2.3 From 0d317a9294a90b4705db8f2d072837f5a58e3e72 Mon Sep 17 00:00:00 2001 From: tv Date: Tue, 11 Jan 2022 23:37:34 +0100 Subject: enterprise-patterns: moved to the cholerab repo E.g. https://github.com/krebs/cholerab --- cholerab/ENTERPRISE_PATTERN | 92 --------------------------------------------- 1 file changed, 92 deletions(-) delete mode 100644 cholerab/ENTERPRISE_PATTERN (limited to 'cholerab') diff --git a/cholerab/ENTERPRISE_PATTERN b/cholerab/ENTERPRISE_PATTERN deleted file mode 100644 index f0e6da23..00000000 --- a/cholerab/ENTERPRISE_PATTERN +++ /dev/null @@ -1,92 +0,0 @@ -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. - -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 - // enterprise ist, wenn ... 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 ---------------------------------- - - #! /bin/sh - if echo "$*" | grep -q '\(^\| \)-h\( \|$\)'; then - cat "$0" - fi - # [more code] - - -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 : - - - ( echo "$username"; sleep 1; echo "$password"; sleep 1; echo "cp old new" ) | telnet - - -painload example: `//retiolum/bin/announce_pubkey` - -Enterprise Waiting ------------------- -Quietly wait until someone else solves the problem. -Passive variant of Complainterprise Waiting. - -Complainterprise Waiting ------------------------- -Submit a bug report and do Enterprise Waiting. -Active variant of Enterprise Waiting. - -- cgit v1.2.3