Jana2

Collaborated on the C++ particle reconstruction software JANA2 PR #401 PR #410 Lessons Learned: Utilizing templating in C++ Used size_t and creating custom types Some standard C++ functions and string utilities GitHub’s CI-CD pipeline for development and catching errors Using/configuring CMake and creating tests under CTest for testing new features

February 9, 2025

Slurm Runner

Developed automated python script to submit multiple slurm jobs This project was created to run simulations of a detector design (specifically B0 tracker) and send each output into their own, iterated folder. The script made sure to keep track of each job ID and would prompt if the user wanted to resubmit any failed job IDs. Lessons Learned Utilized Python with Linux shell commands (designed to be run on Linux servers) - commit 7de8fe1 Implemented methods to catch almost all errors and utilized an argument parser - commit a19bfe4

December 29, 2024

C Programming Book Solutions

A small project to complete most (if not all) exercises contained within K&R’s C Programming book. Source Lessons Learned: Almost anything can be written in C if you’re creative enough! 😃 Particular example files I am proud of: Exercise 1-21 Exercise 1-22 Exercise 1-23

September 16, 2024

Linux

Various contributions (financial and others) to open-source and free software projects. Organizations: Linux Mint (website) 1 PR #12218 commit 6420262 PR #6272 commit d6bedb1 PR #432 commit e744ee4 XFCE (website) 1 XeroLinux (website) 1 Lessons Learned: In open source and free software desktop projects, translations for UI apps are extremely important and utilize makepot files Make sure to read the full README file in every repository Administer a Linux system the entreprise way through my job as well as setting up a small home data center at my house Use containers and LXCs for serving applications Use distrobox to create containers for working on various projects For example, in grep-ibnet, I used an Arch Linux container with a custom home directory Ansible for one-off deployments Kubernetes and Openshift Provided donations for this project. ↩︎ ↩︎ ↩︎ ...

September 15, 2024

Beeapp Gtk

Create a hive inspection GUI tool. Tools used: GTKMM GTK Glade (Program to create UI layout) C++ Debugger (GDB) Valgrind (Program to find memory leaks in C++ code) Source

September 15, 2024

Daceri

This project was focused on creating a robot for the purpose of inspecting areas around Jefferson Lab. Its main focus is the data center at Jefferson Lab which hosts small corridors (about 4 ft in width) for the robot to traverse. Also, the robot has an extendable, controllable elevator with a camera at the end point; so the viewer can adjust the height of the camera as well as the camera angle. ...

September 15, 2024

Checkout System

Created a checkout system from scratch using such tools like: Blazor Server ASP.net Visual Studio Git CI/CD dotnet tools Functionality: Ability to add future reservations ontop of current reservation This required some brain power Automatic color changes depending on status of item Send an automated email to a specific address about the status of an item Search through Active Directoy (or LDAP) for users at the organization Lessons Learned: Making a usable and effective UI is achieved by getting advice from many testers of your application It is preferred to at least pair program with one other individual or use the “Rubber Ducky debugger” where you talk design problems out to understand them better C# is a very diverse language with many features Visual Studio is not my preferred IDE ASP.net framework feels a little clunky, but dotnet tools are easy to use ASP.net libraries can be a burden to use with version mis-matching errors Learned how to publish a .NET app through IIS Server on Windows Server with an Microsoft SQL database Learned how to build a .NET app in a container and use MySQL instead and connect two or more containers together

September 15, 2024

Jefi Toolkit

A complete UEFI toolkit with some nice EFI applications. Tools used: EDK2 EDK2-libc EDK-platforms docker (podman) edkrepo utility Lessons Learned: EDK2 toolkit has many repos associated with it and using the edkrepo tool and a container is essential Make sure you are building an EFI file for the correct architecture UEFI is pretty much its own operating system - similar to DOS

September 15, 2024

Grep-ibnet

Project created to filter and output under JSON infiniband switches and nodes. Tools used: Rust cargo cargo unit tests cargo-llvm-cov clippy Git GitLab CI/CD Partial source code can be found here Full source code can be found here Lessons Learned: Cargo clippy is a really great way to clean your code and put it up to the standards recommended by the rust book - commit 21cf79e3 cargo llvm-cov is a great way to ensure code coverage cargo fmt: easily format a rust file cargo install [package]: easy way to add libraries Rust is entirely different from C or C++ in how it handles returns where the language revolves around Option<> and/or Result<> Sort of a hybrid between C and C#? CI/CD is basically where you run build, test, deploy steps to your app - commit 21cf79e3 This is achieved by the system through regular container images and running commands inside of them for each step For example, in the build step, I can download a container specific to rust and run cargo build and, if there are any warnings/errors, CI/CD will let me know

September 15, 2024