find /var/lib/cassandra/data/ -type f | grep -v -- -ib- | grep -v "/snapshots"
The version numbers, to date are:
find /var/lib/cassandra/data/ -type f | grep -v -- -ib- | grep -v "/snapshots"
The version numbers, to date are:
A visual overview of the Observable Property ontology is provided here
| #!/usr/bin/env bash | |
| # Check we've got command line arguments | |
| if [ -z "$*" ] ; then | |
| echo "Need to specify ssh options" | |
| exit 1 | |
| fi | |
| # Start trying and retrying | |
| ((count = 100)) |
| #!/bin/bash | |
| mkdir -p ~/.ssh | |
| # generate new personal ed25519 ssh keys | |
| ssh-keygen -o -a 100 -t ed25519 -f ~/.ssh/id_ed25519 -C "rob thijssen <[email protected]>" | |
| ssh-keygen -o -a 100 -t ed25519 -f ~/.ssh/id_robtn -C "rob thijssen <[email protected]>" | |
| # generate new host cert authority (host_ca) ed25519 ssh key | |
| # used for signing host keys and creating host certs |
| #!/bin/bash -x | |
| ## original author: Oliver Nassar <[email protected]> | |
| ## credit: harmy <[email protected]> | |
| ## Ubuntu VPN for poor Chinese (you know de) | |
| ## Sample Usage: | |
| ## | |
| ## wget https://gist.github.com/raw/3891178/ff1702fac175eb21c513b93f51f39948be693aba/vpn-setup.sh | |
| ## chmod +x vpn-setup.sh | |
| ## sudo ./vpn-setup.sh <username> <password> |