<!DOCTYPE html> <html> <head> <meta charset="utf-8"/> <title>Trianta</title> <link rel="stylesheet" href="default.css" /> </head> <body> <div class="first" id="introduction"> <div class="inside"> <div id="navigation"> <p id="navBarLeft">Trianta</p> <a class="navItem" href="https://www.github.com/trimutex">GitHub</a> <a class="navItem" href="https://lab.trianta.dev/Trianta">Projects</a> </div> <h1>An engineer creating solutions on current problems that enhance the future.</h1> </div> </div> <div class="second"> <div class="inside"> <h2>Completed Projects</h2> <div class="card"> <h3 class="cardTop">Pong</h3> <div class="canvas"> <canvas width="750" height="585" id="pong"></canvas> <script src="public/pong.js"></script> <div id="gameover" hidden="true"> <h3>Game Over</h3> </div> <div id="restart" hidden="true"> <button class="button" type="button" onclick = "restartGame()">Restart Game</a> </div> </div> <p class="cardStats">Left Paddle Height: <span id="leftPaddle"></span></p> <p class="cardStats">Right Paddle Height: <span id="rightPaddle"></span></p> <a class="navItem" href="https://lab.trianta.dev/Trianta/trianta.dev/src/branch/main/src/pong.js">View Code</a> </div> <div class="card"> <h3 class="cardTop">Snake</h3> <div class="canvas"> <canvas width="625" height="375" id="snake"></canvas> <script src="public/snake.js"></script> </div> <p class="cardStats"> Adjust game size -- Width: <input class="cardStats" id="snakeWidth" type="number" min="2" max="31" value="31"> Height: <input class="cardStats" id="snakeHeight" type="number" min="2" max="24" value="24"> </p> <p class="cardStats">Snake Head Location: <span id="snakeHead"></span></p> <p class="cardStats">Food Location: <span id="snakeFood"></span></p> <a class="navItem" href="https://lab.trianta.dev/Trianta/trianta.dev/src/branch/main/src/snake.ts">View Code</a> </div> </div> </div> <div class="first"> <div class="inside"> <h2>Current Personal Projects</h2> <div class="card"> <h3 class="cardTop">Wrench</h3> <p class="cardStats">Description: A simple application to handle all of your Linux configuration needs.</p> <p class="cardStats">Language: C++26</p> <p class="cardStats">Tools: CMake</p> <p class="cardStats">Frameworks: Qt6</p> <a class="navItem" href="https://github.com/Trimutex/wrench">View Repository</a> </div> <div class="card"> <h3 class="cardTop">Synopsis</h3> <p class="cardStats">Description: A markdown repository containing details and changes of servers I maintain.</p> <a class="navItem" href="https://github.com/Trimutex/synopsis">View Repository</a> </div> </div> </div> <div class="second"> <div class="inside"> <h2>Other Projects</h2> <div class="card"> <h3 class="cardTop">Hyprland</h3> <p class="cardStats">Description: An independent, highly customizable, dynamic tiling Wayland compositor that doesn't sacrifice on its looks. </p> <a class="navItem" href="https://github.com/hyprwm/Hyprland">View Repository</a> <p class="cardStats">Language: C++26</p> <p class="cardStats">Tools: CMake</p> <p class="cardStats">and various libraries.</p> <p class="cardStats">Contributions (newest first)</p> <a class="navItem" href="https://github.com/hyprwm/Hyprland/pull/8323">hyprwm/Hyprland#8323</a> <a class="navItem" href="https://github.com/hyprwm/Hyprland/pull/8044">hyprwm/Hyprland#8044</a> <a class="navItem" href="https://github.com/hyprwm/Hyprland/pull/7959">hyprwm/Hyprland#7959</a> <a class="navItem" href="https://github.com/hyprwm/Hyprland/pull/7755">hyprwm/Hyprland#7755</a> <a class="navItem" href="https://github.com/hyprwm/Hyprland/pull/7683">hyprwm/Hyprland#7683</a> <a class="navItem" href="https://github.com/hyprwm/Hyprland/pull/7633">hyprwm/Hyprland#7633</a> <a class="navItem" href="https://github.com/hyprwm/Hyprland/pull/7575">hyprwm/Hyprland#7575</a> <a class="navItem" href="https://github.com/hyprwm/Hyprland/pull/7458">hyprwm/Hyprland#7458</a> <a class="navItem" href="https://github.com/hyprwm/Hyprland/pull/6652">hyprwm/Hyprland#6652</a> </div> <div class="card"> <h3 class="cardTop">Proxy</h3> <p class="cardStats">Description: A program written in C++ to act as a proxy for another server.</p> <a class="navItem" href="https://lab.trianta.dev/Trianta/proxy-network">View Repository</a> <p class="cardStats">Language: C++11</p> <p class="cardStats">Tools: CMake</p> <p class="cardStats">Testing Frameworks: <a href="https://github.com/ThrowTheSwitch/Unity">Unity Test (ThrowTheSwitch)</a></p> </div> <div class="card"> <h3 class="cardTop">Cloudcare</h3> <p class="cardStats">Description: A sample repository that uses downloaded .bed files to train a model on DNA using PyTorch.</p> <a class="navItem" href="https://github.com/Trimutex/cloudcare">View Repository</a> <p class="cardStats">Languages: Python, Bash</p> <p class="cardStats">Libraries: PyTorch</p> <p class="cardStats">Tools: Conda</p> </div> <div class="card"> <h3 class="cardTop">N-Queens</h3> <p class="cardStats">Description: The N-Queens problem recreated in C++ which gets solved using a Genetic Algorithm.</p> <a class="navItem" href="https://lab.trianta.dev/Trianta/n-queens">View Repository</a> <p class="cardStats">Language: C++11</p> <p class="cardStats">Tools: CMake</p> </div> </div> </div> </body> </html>