Skip to content
View taxborn's full-sized avatar
🛠️
Building
🛠️
Building

Organizations

@compiler-directory
Block or Report

Block or report taxborn

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

👋 Hi, I'm Braxton! - taxborn.com

I'm a 22-year-old computer science student at Minnesota State University, Mankato, interested in compilers and API development. I enjoy creating tools that make computer interaction more user-friendly for developers and the rest of the world. I believe it's important to make it easy to innovate. Currently, I'm working on research in continuous mouse authentication using machine learning. Outside of school, I like to hike the bluffs of southern Minnesota!

class Human:
	name = "Braxton Fair"
	age = getAge("10-18-2001") # 22!
	hobbies = [
		"Working on my compiler",
		"Spending too much time configuring my editor (neovim)",
	]

	def getAge(birthdate: str):
		birthdate = datetime.strptime(birthdate, "%m-%d-%Y")
		today = datetime.today()
		age = today.year - birthdate.year - ((today.month, today.day) < (birthdate.month, birthdate.day))
		return age

	def goals():
		CreateAProgrammingLanguage() # Currently being worked on!
		Graduate() # May 2024
		GetMyFirstJob()

Current Projects

My Github Stats!

taxborn's Github Stats

Pinned

  1. mauth-research-project mauth-research-project Public archive

    Code repository for mAuth

    Python 3 3

  2. scf scf Public

    Student Capacity Forecaster (scf). A student project made during Winter 2022 for Minnesota State University, Mankato to a simulate number of students, courses, and sections through a given course s…

    Python 2

  3. u8read u8read Public

    UTF-8 file reader to emit utf-8 codepoints

    C 2

  4. playfair playfair Public

    A Playfair Cipher implementation in Rust

    Rust 1