Clone Mastodon's repository.
# Clone mastodon to ~/live directory
git clone https://github.com/tootsuite/mastodon.git live
# Change directory to ~/live
cd ~/live
| export let epoch = 0; | |
| export const gen = (date = Date.now()) => { | |
| return ((BigInt(date - epoch) << (64n - 41n)) ^ (BigInt(crypto.getRandomValues(new Uint8Array(32)).join('')) % (2n ** (64n - 41n)))); | |
| }; | |
| export const time = (uuid) => { | |
| return new Date(Number((BigInt(uuid) >> (64n - 41n))) + epoch); | |
| }; |
| # coding: utf-8 | |
| from creative import * | |
| def clear_screen(): | |
| for _ in range(50): | |
| print("") | |
| def get_percentage(stats,string): |