Skip to content
View obertguo's full-sized avatar
๐Ÿ 
Working from home
๐Ÿ 
Working from home

Block or report obertguo

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
obertguo/README.md

๐Ÿ‘‹ Hello, I am Obert Guo

I enjoy solving a wide range of problems, anything from low level programming and embedded hardware, to creating high-level Web APIs, or computer graphics, algorithm efficiency and optimization, and all things Mathematics!

As hobbies, I love to play the piano and play badminton.

Visit my Personal Website!

Pinned Loading

  1. os-dev os-dev Public

    A journey in OS development starting from scratch, using a mix of assembly and C.

    C

  2. 3DRender 3DRender Public

    TypeScript

  3. hatlib hatlib Public

    C++

  4. lcss-covid-bot lcss-covid-bot Public

    Repository containing source and compiled files for the covid bot running in LCSS's Discord server.

    TypeScript 1

  5. compile.sh compile.sh
    1
    #!/bin/bash
    2
    
                  
    3
    #Bash script for compiling and linking an assembly file using ELF_i386 format (using NASM compiler and GCC linker) 
    4
    #Example: ./compile.sh <filename>, where <filename> is the assembly file to be compiled (including the .asm extension is optional)
    5
    
                  
  6. Creates a graph from an array of val... Creates a graph from an array of values as dependent variables (y-values). The position of element serves as independent variables (x values)
    1
    //Creates a graph from an array of values as dependent variables (y-values). The position of element serves as independent variables (x values)
    2
    class Graph{
    3
        //graph settings
    4
        private graphHeight: number;
    5
        private values: Array<number>;