Skip to content
View cyphercrit's full-sized avatar
πŸ“–
Studying, probably.
πŸ“–
Studying, probably.

Highlights

  • Pro

Block or report cyphercrit

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

Hey, you! πŸ‘‹

I'm Caden, currently a Junior at the University of Minnesota studying Computer Science and Mathematics. I love combining CS & Math to create interesting solutions to computational problems and explore new ideas β€” to me, CS feels like a specialized extension of Math with endless potential!

Stats Picture

I’m always eager to connect and hear new perspectives! Feel free to reach out if you’d like to chat about projects, ideas, or potential collaborations.

Why isn't this program quitting?

[1]+ Stopped      nano README.md

Pinned Loading

  1. url-shortener-api url-shortener-api Public

    A URL Shortener REST API made with Flask and PostgreSQL, designed to be used with my personal website and deployed on Azure

    Python 1

  2. eval-bot eval-bot Public

    A Discord bot designed to safely execute arbitrary Python code snippets directly from Discord messages.

    Python 1

  3. graphing-derivatives graphing-derivatives Public

    A web application for graphing derivatives built using React, the Desmos graphing libary, and MathQuill for mathematical input.

    JavaScript 1

  4. my-website my-website Public

    My personal website, utilizing a React frontend and a Express backend.

    JavaScript 1

  5. neetcode-150 neetcode-150 Public

    The purpose of this repo is to track my progress along the neetcode 150, while also writing unit tests and explaining my code. Feel free to check it out!

    Python 1

  6. Utility Class for Linked List Operat... Utility Class for Linked List Operations with Array Input
    1
    from typing import Optional, Callable
    2
    from list_node import ListNode
    3
    
                  
    4
    ''' (for reference)
    5
    class ListNode: