Skip to content
View sagea's full-sized avatar
  • Nomad

Highlights

  • Pro

Block or report sagea

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

Pinned Loading

  1. experiment-conway experiment-conway Public

    Conway game of life experiment

    JavaScript

  2. Circle & sphere interactions Circle & sphere interactions
    1
    // Point is inside circle.
    2
    function isWithinCircle(x, y, circleX, circleY, circleRadius){
    3
      return square(circleX - x) + square(circleY - y) < square(circleRadius);
    4
    }
    5
    
                  
  3. experiments experiments Public

    A place for me to keep track of random tests across a multitude of languages. I have a lot of silly incomplete ideas/experiments and I want to be able to look back when I'm 50 and laugh at how stup…

    HTML

  4. rust-terminal-paint rust-terminal-paint Public

    Terminal UI for creating Ascii art

    Rust