(draft; work in progress)
See also:
- Compilers
- Program analysis:
- Dynamic analysis - instrumentation, translation, sanitizers
(draft; work in progress)
See also:
| ------------------------- MODULE GryadkaCasRegister ------------------------- | |
| EXTENDS Integers, Sequences, FiniteSets | |
| ----------------------------------------------------------------------------- | |
| \* Timestamps is the set of possible timestamps for operations to choose from. | |
| \* Each operation uses a unique timestamp. | |
| \* Values is the set of possible values to set the register to. | |
| \* Acceptors is the set of nodes which act as acceptors in the paxos sense. | |
| \* Quorums is the set of all possible quorums, typically simple majorities. | |
| CONSTANTS Timestamps, Values, Acceptors, Quorums |
| # 0 is too far from ` ;) | |
| set -g base-index 1 | |
| # Automatically set window title | |
| set-window-option -g automatic-rename on | |
| set-option -g set-titles on | |
| #set -g default-terminal screen-256color | |
| set -g status-keys vi | |
| set -g history-limit 10000 |
| #!/bin/sh | |
| # | |
| # a simple way to parse shell script arguments | |
| # | |
| # please edit and use to your hearts content | |
| # | |
| ENVIRONMENT="dev" |