Skip to content
View mu8086's full-sized avatar

Block or report mu8086

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.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. 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
mu8086/README.md

Luke Yao

  • Senior Backend Expertise: 8+ years of experience specializing in Go and distributed systems. Specialist in Hexagonal Architecture, prioritizing decoupled, testable codebases to reduce technical debt.
  • High-Consistency Systems: Proven track record in engineering mission-critical billing engines using defense-in-depth locking and self-healing mechanisms to ensure 100% data integrity.
  • Infrastructure & Platform: Hands-on experience in bare-metal Kubernetes and virtualization control planes (oVirt). Skilled in enabling GPU-accelerated workloads and building custom sidecar agents for automated routing.
  • Technical Leadership: Experienced lead who fosters a culture of engineering excellence, mentoring engineers, and defining rigorous coding standards for scalable architectures.

Pinned Loading

  1. LeetCode LeetCode Public

    https://leetcode.com/problemset/all/

    C 1

  2. rc rc Public

    bashrc, screenrc, vimrc, ..., etc.

    Shell

  3. [Bash] Dynamically expanded bash men... [Bash] Dynamically expanded bash menu that can call any function
    1
    #!/bin/bash
    2
    
                  
    3
    shopt -s extglob
    4
    
                  
    5
    SCRIPT_NAME="$(basename $0)"
  4. [C] List Reverse [C] List Reverse
    1
    int listReverse(struct ListNode** head) {
    2
        int node_count = 0;
    3
        struct ListNode *tmp = NULL, *walker = *head;
    4
        
    5
        if (walker != NULL) {
  5. [C] variadic free function [C] variadic free function
    1
    void doFree(void * allocate, ...) {
    2
        void *target = allocate;
    3
        
    4
        va_list args;
    5
        
  6. [C] 3dArray [C] 3dArray
    1
    char ***char3dArray(int length, int width, int height) {
    2
        // ret[height][width][length]
    3
        char ***ret = (char ***) malloc(sizeof(char **) * height + sizeof(char *) * height * width + sizeof(char) * height * width * length);
    4
    
                  
    5
        char **first_row = (char **)(ret + height);