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.

Content in all repositories owned by your account will be closed.
Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to 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!

Award winning spaghetti chef
Award winning insect breeder
(In code, also a joke)

Note

Most of my repositories have moved to https://git.bytedice.net/ByteDice
Reason: I love self-hosting.

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",
      "Python",
      "HTML / CSS / JS",
      "C#"
    ],
    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"));
}

Other things about me:

  • Apparently people think I'm a femboy
  • I really, really love Rust
  • ...I know why people think I'm a femboy

Pinned Loading

  1. ByteDiceAssistant ByteDiceAssistant Public archive

    An automation tool for Byte Dice. It's both a Discord and Reddit bot in one program.

    Rust

  2. ByteDiceWeb ByteDiceWeb Public archive

    A small website served as a place to find content related to Byte Dice.

    JavaScript 1

  3. BDE_ParticleSys BDE_ParticleSys Public archive

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

    Kotlin