Hello, world!

I have used a variety of programming languages from low-level to high-level.

Python is a high-level indent based interpeted programming language. I personally use it for anything from building games with Pygame to writing data processing applications for local computers and manipulating API data from sources such as the hypixel API. Furthermore, I have written several network applications with python for a file transfer protocol and a messaging app. It is also my language of choice for computer vision applications with OpenCV2 and tensorflow.

C# is a high-level programming language running on the .NET framework. I have used C# primarily for Unity game developement.

C++ is a low-level extremely performant programming language that compiles directly to a binary. I have used C++ primarily with OpenGL for game development, but also to solve programming problems such as the advent of code when performance is critical. I have used C++ for a much faster file transfer protocol than was possible with python.

OpenGL is a cross-language, cross-platform application programming interface for rendering 2D and 3D vector graphics. It works well in conjunction with C++, and I have used OpenGL to build a variety of game develelopment projects, including my current project Abyssal Zone.

Rust is a high-level programming language with low-level performance, with a unique ownership system and lack of garbage collector that make it the most loved programming language according to stackoverflow several years running. I use Rust for anything that does not involve a GUI due to its many packages and speed. Examples of this include multi-client game servers, utility programs such as a search program, and algorithms such as a wordle solver.

Java is a high-level language that runs on the JVM. I have used java extensively for Minecraft modding and primarily for robotics applications for the First Tech Challenge.

HTLM stands for Hyper Text Markup Language. It is used to structure documents used for websites, which is what this website is made with.

CSS stands for Cascade Style Sheet. It is used to style HTML documents. It is used extensively for this website.