Skip to content
View quantum-corn's full-sized avatar
💭
just learning one command at a time
💭
just learning one command at a time
  • India

Block or report quantum-corn

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

Welcome


I am a physics graduate from India. The years in college and after left me in a bad place in life, when I decided to become a software developer because I always knew I love coding as much as I love physics. I believe the two ae not very different. Pure logic and abstraction take up tangible forms in programs and physics is just the art of unraveling the code of the massive codebase that is the universe, one line at a time. Fascinating to think that we ourselves are part of that program. Isn't it like some fascinating AI that writes its own code, keeps learning and keeps getting better. I had some previous programming experiences which only made me want more.


What I have learned


  • Languages
    • Java
    • Python
    • C
    • HTML/CSS
    • JavaScript
    • SQL
  • Others
    • LaTeX
    • Arduino
    • Linux

Pinned Loading

  1. thethoughtpalette thethoughtpalette Public

    HTML

  2. A merge sort alogrithm in JS A merge sort alogrithm in JS
    1
    const ARR = [5, 7, 9, 4, 2, 6, 3, 1, 8];
    2
    
                  
    3
    const merge = function (arr1, arr2) {
    4
      let output = [];
    5
      let target;
  3. binary-search-tree binary-search-tree Public

    This is a simple implementation of a balanced binary search tree with the constraint on the input dataset of being non-repetitive. This is done in accordance with The Odin Project curriculum.

    JavaScript

  4. calculator calculator Public

    This is a simple calculator, made using HTML, CSS and JS. This is made in accordance with The Odin Project curriculum.

    JavaScript

  5. library library Public

    This is a personal library management system, implemented using HTML, CSS and JS; made in accordance with The Odin Project curriculum.

    JavaScript

  6. tictactoe tictactoe Public

    This is simple tictactoe game implemented using HTML, CSS and JS, made in accordance with The Odin Project curriculum.

    JavaScript