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

  • Backend Engineering: 8+ years building scalable backend systems with focus on maintainable architecture and performance optimization. Experienced in system modernization and reducing technical debt.
  • Cloud & Infrastructure: Proficient in containerized deployments and resource orchestration using Kubernetes. Skilled in building reliable, high-availability systems.
  • DevOps & Automation: Experienced in CI/CD pipelines, system monitoring, and workflow optimization. Advocate for developer productivity through collaborative tooling and automation.
  • Technical Leadership: Skilled in mentoring engineers, defining coding standards, and guiding architectural decisions in collaborative teams.

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);