Clone Mastodon's repository.
# Clone mastodon to ~/live directory
git clone https://github.com/tootsuite/mastodon.git live
# Change directory to ~/live
cd ~/live
| package ciphers | |
| import ( | |
| "crypto/rand" | |
| "crypto/rsa" | |
| "crypto/sha512" | |
| "crypto/x509" | |
| "encoding/pem" | |
| "log" | |
| ) |
| function generatePlayers(player, dice) { | |
| let players = [] | |
| for (let id = 0; id < player; id++) { | |
| let dices = [] | |
| for (let die = 0; die < dice; die++) { | |
| dices.push(0) | |
| } |
| <?php | |
| class s9y2blogger { | |
| private $database = NULL; | |
| private $errors = array(); | |
| private $curEntry = array(); // current entry of the parser | |
| private $inPublished = false; | |
| public function __construct() { |