From e03f50fb3a5d0969ee2890db1922b0388de74dd7 Mon Sep 17 00:00:00 2001
From: Damian Myrda In my free time, I work on MOS, my minimal operating system. This project has deepened my understanding of OS internals, and I'm planning to rewrite it for the RISC-V architecture. While it's currently quite simple, I have plans to expand its feature set in the future. My goal is to create a simple yet modern operating system without the years of technical debt. Users interact with the terminal through command line and terminal user interfaces designed for ease of use and speed. During my summer internship at Amplifier Health, I developed a service that sorts audio files into three categories: speech, music, and noise. It started as a Python project using PyTorch and FastAPI, but I later ported it to Rust with tch-rs and Axum for better performance. I also created a command line interface that makes it easy for users to access and make use of the results. The service is designed to be fast, using efficient multithreading on the CPU and taking advantage of the GPU for highly parallel processing. An experiment using a microservice architecture that transcribes and summarizes audio into text using OpenAI's API. One service acts as the frontend, allowing users to upload their audio files. Another service transcribes the audio using OpenAI's Whisper model. Finally, the last service summarizes it using GPT-4-Turbo. These services communicate through Kafka, where jobs are requested and results are received. The entire system is managed with a Docker Compose file. For HSHacks 2024, my friends and I developed a website to help students find tutors. Recognizing that not every school has a dedicated portal for peer tutoring, we created a district-wide, easily accessible platform. We used ReactJS for the user interface and Firebase for storage and authentication. In the end, we won 3rd place! I built a website for the Computer Science Club (CSC) at Prospect High School during a mini-hackathon. The site displays the date and time of the next meeting, recent announcements, a roster of members, and ongoing discussionsâall updated every hour using the Schoology API. Members can also share their projects by signing in with their Google accounts and uploading their work to a SQLite database. You can see it in action at csc.prime8.dev For HSHacks 2023, my very first hackathon, I created a website for an organization that helps veterans manage donations. Donors can enter their Venmo username and specify the amount they would like to contribute. They receive a notification on their phone for confirmation, and each donor gets a thank-you email as a gesture of appreciation.MOS
- Janitor
- Summarizer
- D214 Tutor Connect
- CSC Website
- Veterans Donation Website
-
_ _ (_) | | @@ -21,5 +10,74 @@ |_| |__/-{{ page.content | safe }} -{% endblock %} +
+ In my free time, I work on MOS, my minimal operating system. This project + has deepened my understanding of OS internals, and I'm planning to rewrite + it for the RISC-V architecture. Users interact with the terminal through + command line and terminal user interfaces designed for ease of use and + efficiency. +
+ src ++ During my summer internship at Amplifier Health, I developed a service + that sorts audio files into three categories: speech, music, and noise. I + wrote it in Rust with tch-rs and Axum aiming for better performance. The + service is designed to be fast, using efficient multithreading on the CPU + and taking advantage of the GPU for highly parallel processing. +
+ src ++ An experiment using a microservice architecture that transcribes and + summarizes audio into text using OpenAI's API. Each service has its own + function that it performs, and the services communicate with each other + through Kafka, where jobs are requested and results are received. The + entire system can be easily deployed with a Docker Compose file. +
+ src ++ For HSHacks 2024, my friends and I developed a website to help students + find tutors. Recognizing that not every school has a dedicated portal for + peer tutoring, we created a district-wide, easily accessible platform. We + used ReactJS for the user interface and Firebase for storage and + authentication. In the end, we won 3rd place! +
+ src ++ I built a website for the Computer Science Club (CSC) at Prospect High + School during a mini-hackathon. The site displays important information it + fetches from the Schoology API. Members can share their projects using + their Google account and uploading their work to a SQLite database. +
+ src + live ++ For HSHacks 2023, my very first hackathon, I created a website for an + organization that helps veterans manage donations. Donors can use their + Venmo account to donate to the organization. They receive a notification + on their phone for confirmation, and each donor gets a thank-you email as + a gesture of appreciation. +
+ src +