South of 6 Project
Over summer of 2023, I interned at the Univeristy of Iowa, working with non-profit organizations to collect, analyze and visualize their data. I chose to work with the South of 6 Business District in Iowa City, IA. View the recording! See the dashboards I created! Survey Dashboard Click the image to open the dashboard. Call for Service Dashboard Click the image to open the dashboard. Main (Combined) Dashboard See the tools I wrote to help me throughout this project!...
NFL Data Project
As a final project for my Database Management class, my group and I decided to analyze NFL statistics and front offices from 2009-2019 using SQL. The project site is linked here, where you can find our analysis, visualizations, and tables. SQL Queries Q1: Team Success SELECT TEAMNAME, WINS, CASE WHEN WINS >= 14 THEN 'Great' WHEN WINS >= 10 THEN 'Good' WHEN WINS >= 7 THEN 'Okay' ELSE 'Poor' END AS SeasonPerformance FROM TEAM JOIN STATS ON TEAM....
Fedora Post-Installation Tweaks
Below is a list of post-installation tasks and tweaks I perform after installing Fedora Linux. System Basics Set DNF Flags vim /etc/dnf/dnf.conf I add the following: max_parallel_downloads=10 deltarpm=True defaultyes=True max_parallel_downloads=10 allows DNF to download 10 packages at a time rather than 3 (the default). deltarpm=True enables deltarpms defaultyes=True makes the yes/no prompt default to yes (similar to apt and pacman) Update Fedora sudo dnf upgrade Should do this before doing anything else on your system....
Installing Fedora Asahi Remix on Apple M-series Devices
Before you begin The website for Fedora Asahi Remix can be found here. Fedora Asahi Remix is based on Fedora Linux. More information about Fedora Linux can be found here. See currently supported features here. I. Installation Script Copy curl https://fedora-asahi-remix.org/install | sh and paste into terminal. Enter N when asked to enter expert mode. Enter r to resize your current macOS partion. Enter your desired partition sizes. Allow the installer to complete the installation process....