Skip to content
View trashw1n's full-sized avatar

Highlights

  • Pro

Block or report trashw1n

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
trashw1n/README.md
  • 👋 Hi, I’m @trashw1n
  • 👀 I’m interested in anything STEM
  • email: [email protected]

Pinned Loading

  1. booksearch booksearch Public

    JavaScript

  2. foodapp-server foodapp-server Public

    Express backend for food app

    JavaScript

  3. summer_training summer_training Public

    learnt about eeg signals and worked with a dataset of eeg signals from patients of parkinson's disease.

    Jupyter Notebook

  4. typer typer Public

    a typeracer inspired game allowing multiple users to check their typing speeds against each other.

    JavaScript

  5. Encoding general trees as binary tre... Encoding general trees as binary trees. There is a one-to-one mapping between general ordered trees and binary trees, which in particular is used by Lisp to represent general ordered trees as binary trees.
    1
    class TreeNode:
    2
        def __init__(self, label):
    3
            self.label = label
    4
            self.childrens = []
    5
            self.sibling = None
  6. jlox jlox Public

    Java