Skip to content
View Burial0268's full-sized avatar
😇
😇
  • Failue Management
  • Earth
  • 13:29 (UTC +08:00)

Organizations

@GBCLStudio @Sgguo-Development-Team

Block or report Burial0268

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
Burial0268/README.md
// hi, I'm Burial0268 👋

mod humans {
    pub struct Introduction {
        pub info_list: Vec<&'static str>,
        pub projects: std::collections::HashMap<&'static str, &'static str>,
        pub tech_stack: std::collections::HashMap<&'static str, &'static str>,
        pub position: &'static str,
        pub goals: Vec<&'static str>,
    }

    pub struct About {
        pub intro: Introduction,
    }

    impl About {
        pub fn bootstrap(&self) {
            println!("[Log/Boot] Starting introduction... done");
            println!("[Log]      Initialize the introduction process... done");

            println!(
r#"
      ___           ___           ___       ___       ___     
     /\__\         /\  \         /\__\     /\__\     /\  \    
    /:/  /        /::\  \       /:/  /    /:/  /    /::\  \   
   /:/__/        /:/\:\  \     /:/  /    /:/  /    /:/\:\  \  
  /::\  \ ___   /::\~\:\  \   /:/  /    /:/  /    /:/  \:\  \ 
 /:/\:\  /\__\ /:/\:\ \:\__\ /:/__/    /:/__/    /:/__/ \:\__\
 \/__\:\/:/  / \:\~\:\ \/__/ \:\  \    \:\  \    \:\  \ /:/  /
      \::/  /   \:\ \:\__\    \:\  \    \:\  \    \:\  /:/  / 
      /:/  /     \:\ \/__/     \:\  \    \:\  \    \:\/:/  /  
     /:/  /       \:\__\        \:\__\    \:\__\    \::/  /   
     \/__/         \/__/         \/__/     \/__/     \/__/    
"#);
        }

        pub fn dump(&self) {
            println!("\nMy common info: {:#?}", self.intro.info_list);
            println!("My project info: {:#?}", self.intro.projects);
            println!("Tech stack: {:#?}", self.intro.tech_stack);
            println!("My position: {}", self.intro.position);
            println!("My goals: {:#?}", self.intro.goals);
        }
    }
}

fn main() {
    use std::collections::HashMap;
    use humans::{About, Introduction};

    let intro = Introduction {
        info_list: vec![
            "🔭 Currently working on GBCLstudio",
            "🌱 A completely stupid student",
            "🎮 Minecraft fan + retro tech & SBCs lover",
            "🎵 EDM addicted, rhythm game enjoyer (sub Porter Robinson!)",
        ],
        projects: HashMap::from([
            ("FoF-Upload-Qcloud", "https://github.com/GBCLStudio/FoF-Upload-Qcloud"),
            ("Flarum-UserIP", "https://github.com/GBCLStudio/userip"),
        ]),
        tech_stack: HashMap::from([
            ("Backend", "PHP(8.x), Laravel, Flarum, TypeScript, Rust"),
            ("Frontend", "React, Vue, Vanilla JS, Mithril, Astro"),
            ("Other", "CDN, VPS, DNS, WAF, Tauri"),
        ]),
        position: "China Mainland",
        goals: vec![
            "Keep Alive😇",
            "Study Rust",
            "Finish endless examination",
            "To contribute to open source.",
        ],
    };

    let me = About { intro };
    me.bootstrap();
    me.dump();
}

Pinned Loading

  1. GBCLStudio/fof-upload-qcloud GBCLStudio/fof-upload-qcloud Public

    FoF Upload,but with TencentCloud COS

    PHP 13 2

  2. GBCLStudio/userip GBCLStudio/userip Public

    🗺 Geolocation for Flarum

    PHP 8 3

  3. flarum-lang/chinese-simplified flarum-lang/chinese-simplified Public

    Flarum Simplified Chinese Language Package

    JavaScript 100 15

  4. GBCLStudio/Flarum-MinecraftAuth GBCLStudio/Flarum-MinecraftAuth Public

    Minecraft Login Intergration for Flarum, a extend provider based on FoF/OAuth.

    PHP 1

  5. GMPlayer GMPlayer Public

    Forked from imsyy/SPlayer

    GMPlayer, a SPlayer Modified.

    Vue 13 44

  6. Lyric-Atlas-API Lyric-Atlas-API Public

    一个运行于 Vercel 的简单的 Node.js API 服务器,用于获取网易云音乐歌曲的歌词,它会优先从指定的 GitHub 仓库获取 TTML 格式,然后按顺序查找仓库中的其他格式,最后回退到一个外部 NCM API。

    TypeScript 3 12