An open API service indexing awesome lists of open source software.

https://github.com/bytedice/bytedice

Config files for my GitHub profile.
https://github.com/bytedice/bytedice

config github-config

Last synced: 8 months ago
JSON representation

Config files for my GitHub profile.

Awesome Lists containing this project

README

          

Hello, my name is Byte Dice!




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

## About me

```rs
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.
* If it's a library that takes more than 0.5s to load, then it's an unoptimized one.