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.
- Host: GitHub
- URL: https://github.com/bytedice/bytedice
- Owner: ByteDice
- Created: 2024-06-18T09:09:39.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2025-01-30T17:33:14.000Z (over 1 year ago)
- Last Synced: 2025-01-30T18:31:55.559Z (over 1 year ago)
- Topics: config, github-config
- Homepage: https://github.com/ByteDice
- Size: 1.95 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.