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

Highlights

  • Pro

Block or report sagea

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