Skip to content

Instantly share code, notes, and snippets.

Step-by-Step into Minecraft

Getting an account

The first step to getting minecraft is going to be getting an account. You should have gotten a single-use code from one of the Seniors for Minecraft. They look something like this:

QXYYM-YGXYH-CJ79X-TJR3J-JDKFZ
@cptroot
cptroot / keybase_proof.md
Created June 22, 2016 06:11
Proof of Keybase Identity

Keybase proof

I hereby claim:

  • I am cptroot on github.
  • I am cptroot (https://keybase.io/cptroot) on keybase.
  • I have a public key whose fingerprint is FC55 48BE 71C2 18F0 E04E D2A8 8BC8 2878 5FD8 947F

To claim this, I am signing this object:

#[macro_use]
extern crate rusty_peg;
use std::str::FromStr;
use rusty_peg::Symbol;
rusty_peg! {
parser Test<'input> {
FLOAT_NUMBER_STRING: &'input str = regex(r"[\+-]?\d*(\.\d*)?");
FLOAT_NUMBER: f32 = (<s:FLOAT_NUMBER_STRING>) => f32::from_str(s).unwrap();