Skip to content
View ByteDice's full-sized avatar
🦀
Rust is cool
🦀
Rust is cool

Block or report ByteDice

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
ByteDice/README.md

Hello, my name is Byte Dice!

Certified insect exterminator in coding, Helldivers 2, and sometimes real life.

About me

struct Person<'a> {
    name:          &'a str,
    pronouns:      &'a str,
    languages: Vec<&'a str>,
    websites:  Vec<&'a str>,
}

fn main() {
  let me = Person {
    name: "Byte Dice",
    pronouns: "up to your imagination (any)",
    languages: vec![
      "Rust",
      "HTML / CSS / JS",
      "Kotlin",
      "Python",
    ],
    websites: vec!["https://ByteDice.net"]
  };

  // unoptimal but more readable
  println!("Hello, I'm {}!", me.name);
  println!("My pronouns are {}.", me.pronouns);
  println!("I code in {}.", me.languages.join(", "));
  println!("Check out my websites:\n{}", me.websites.join("\n"));
}


Little Bits of Byte:

  • POSTFIX NOTATION FOREVER!!!
  • If it takes more than 0.5s to load, it's too slow. No exceptions. Go fix your code.

Pinned Loading

  1. BDE_ParticleSys BDE_ParticleSys Public

    A minecraft server-side particle system using Block Display Entities (BDEs)

    Kotlin

  2. ByteDiceWeb ByteDiceWeb Public

    A small website served as a place to find all (not yet all) content related to Byte Dice.

    JavaScript 1