🔧 Main Projects
🏎️
Add photo
EV Go-Kart Fleet Maintenance System
RPM Raceway · Work Project · Feb 2025–Present
● Live
Summary

Hands-on EV systems work maintaining a fleet of 60+ electric go-karts at RPM Raceway. Day-to-day responsibilities include battery pack diagnostics, electrical fault isolation, drivetrain servicing, and developing a consistent pre/post-session inspection process.

EV Battery SystemsFault DiagnosisElectrical WiringDrivetrainBMSPreventive Maintenance
Full Details
Fleet Scale
60+ electric karts, 8–12 operational sessions daily. Each kart runs multiple back-to-back sessions — any downtime directly impacts revenue, so turnaround speed and accuracy matter.
Battery Systems
Cell voltage monitoring, charge cycle tracking, capacity degradation assessment, and connector/terminal maintenance on multi-cell lithium packs. Identify and swap degraded packs before they fail mid-session.
Fault Diagnosis
Electrical fault isolation across motor controllers, wiring harnesses, and battery management systems. Use multimeters, load testers, and visual inspection to diagnose under time pressure.
Process Improvement
Helped develop a standardized pre-session checklist covering brake feel, steering response, battery charge state, and electrical connections — reducing mid-session breakdowns.
📸 Photos
Battery diagnostics
DiagVCU motor controller
RPM kart fleet
Add photo
IoT Smart Energy Monitor
NYIT Senior Capstone · ETEC 495 · 2025–2026
Senior Capstone
Summary

Real-time IoT energy monitor built on an ESP32 DEVKITV1. The PZEM-004T v3.0 measures AC voltage, current, watts, and cumulative kWh over UART. A 20×4 I2C LCD refreshes every 500 ms, a DS1307 RTC timestamps all readings to a microSD card, and the ESP32 pushes data to ThingSpeak over WiFi every 15 seconds. Test results with a 60 W load: 118.3 V, 0.48 A, 56.7 W — all within 5%. Total build cost: $86.41.

ESP32PZEM-004T v3.0ACS712 30A20×4 LCD I2CThingSpeakC++ / Arduino
Full Details
The Problem
Most home energy monitors cost $80–$299+ (like the Sense) and still require subscriptions. Goal: a sub-$90 open-source build delivering real AC readings — voltage, current, watts, and kWh — with cloud logging and no recurring fees.
What I Built
ESP32 monitor using PZEM-004T v3.0 over UART, CT clamp for non-invasive current sensing, 20×4 I2C LCD at 500 ms refresh, DS1307 RTC for timestamps, microSD for local CSV logging, and ThingSpeak cloud push every 15 seconds over WiFi.
Issues I Solved
Fried an ESP32 by connecting the 5V ACS712 output directly to a 3.3V ADC pin — rebuilt with an inline fuse. CT clamp was on the neutral wire (reading 0A) — moved to live wire. LCD showed nothing — found a missing I2C jumper wire.
Results
60W test load: 118.3V · 0.48A · 56.7W — all within 5% of expected. LCD: 500ms refresh. ThingSpeak: 15s update. Total cost: $86.41. Build time: 88 hrs vs 57 planned — extra from troubleshooting the fried board.
📸 Photos
ESP32 Build
📟LCD Display
📡ThingSpeak
🖥️ CTEC 350 — Microcontroller Systems
🔢
8051 Assembly — Microcontroller Projects
NYIT CTEC 350 · Dr. Duke · Spring 2026
8051 Assembly
Summary

Five register-level 8051 Assembly programs written for CTEC 350 — Microcontroller Based Systems. Work covers timer modes, interrupt-driven routines, keypad scanning, 7-segment display multiplexing, and look-up table implementations. Final project: a 4-digit safe keypad system with combo lock logic, multiplexed display, and ISR-driven scanning.

8051 Assembly Timer 0 / Timer 1 Interrupts (ISR) 4x4 Matrix Keypad 7-Segment Display Look-Up Tables PSW Flags
Full Details — All 5 Programs
Final Project
Safe Keypad System

A 4-digit combination lock using a 4×4 matrix keypad and 4-digit multiplexed 7-segment display. Timer 0 Mode 1 ISR drives the display multiplex at ~1 ms per digit. The keypad scanner reads rows/columns on P1 and maps presses through a look-up table. When digits 3-5-7-9 are entered in sequence, the display flashes OPEn. The * key clears entry at any time.

ISR MultiplexingKeypad ScannerLook-Up TableTimer 0 Mode 1Combo Lock Logic
Project 2A
Binary Down Counter — Timer 0 Mode 1

16-bit timer (Mode 1) generates a 200-cycle delay between counts. Counter starts at 15 and counts down to 0 on Port 1 connected to a 7-segment display. Values translated through a look-up table at address 300H for 7-seg encoding.

Timer 0 Mode 116-bit TimerMOVC Look-UpPort 1 Output
Project 2B
Binary Down Counter — Timer 1 Mode 2

Same countdown logic but using Timer 1 in Mode 2 (8-bit auto-reload). Reload value stored in TH1 for automatic restart on overflow — no software reload needed between counts. Demonstrates the difference between manual 16-bit and auto-reload timer modes.

Timer 1 Mode 28-bit Auto-ReloadTH1 Reload
Project 3
Binary Countdown Timer with Interrupt

Interrupt-driven countdown using Timer 0 ISR (ORG 000BH). IE register set to 82H to enable Timer 0 interrupt globally. Counter display updates in the main loop while the ISR handles timing — demonstrates the event-driven interrupt model versus polling.

Timer ISRIE RegisterInterrupt VectorsEvent-Driven
Project 4
Additional Assembly Project (Project 3)

Further register-level 8051 programming covering PSW flag manipulation, conditional branching, and additional I/O port interfacing techniques developed throughout the CTEC 350 course.

PSW FlagsConditional BranchPort I/O
⚡ Side Projects & Scripts
🔋
EV Battery Checker Script
Python · Personal Tool

Quick Python script to log cell voltages from a CSV export, flag cells below threshold, and output a plain-text service report. Built to speed up pre-session battery checks at RPM.

PythonCSVEV
BeachB4ll/ev-battery-checker
🌐
LAN Device Scanner
Python · Networking Util

Scans a local subnet with socket pings, pulls hostnames via nslookup, and prints a tidy table of active devices. Used it during lab setups at NYIT to confirm switch ports before imaging.

PythonNetworkingSocket
BeachB4ll/lan-scanner
💡
Arduino LED Reaction Timer
C++ · Arduino Uno · ECE Lab

Random-delay LED lights up, user presses a button — reaction time prints to Serial Monitor in ms. Built as a warm-up project learning interrupt handling and millis() timing in embedded C++.

C++ArduinoInterrupts
BeachB4ll/arduino-reaction-timer
☀️
Solar Savings Estimator
Python · Built Well Solar

Script that takes system size (kW), avg daily sun hours, and local utility rate — outputs estimated annual production and savings. Used to sanity-check Aurora Solar reports before client delivery.

PythonSolarMath
BeachB4ll/solar-savings-estimator
🖥️
PC Build Checklist App
HTML · CSS · JS · Freelance IT

Single-page browser app with a step-by-step checklist for assembling and configuring a PC — POST test, driver installs, network join. Keeps a completion log saved to localStorage. Used for client builds.

HTML/CSSJSlocalStorage
BeachB4ll/pc-build-checklist
📟
OLED System Stats Display
C++ · ESP32 · SSD1306

ESP32 pulls CPU load and temperature from a local PC via a tiny Python socket server, displays live stats on a 128×64 OLED. Born from wanting a physical readout on my desk during lab sessions.

ESP32C++OLEDSocket
BeachB4ll/oled-system-stats
🎨
Portfolio Design Showcase
Web Design · 4 Visual Concepts · 2025–2026
Design

Four distinct portfolio design concepts built from scratch — Editorial Amber, Plumeria Pink, Tropical Pill Nav, and Coastal Turtle. Each has its own color system, typography, canvas animation, and layout.

HTML/CSSJavaScriptCanvas APIUI Design
🎨 View Showcase →
⚠️
Live Race Telemetry Dashboard
F1 · IndyCar · NASCAR · FastF1 · Python
⚠ In Progress

Qualifying data, 3-driver telemetry overlays, sector comparisons, standings, and live 2026 timing via OpenF1 API. Currently being reworked — FastF1 Python backend, real lap-by-lap telemetry, two-column desktop layout.

FastF1FastAPICanvas APIOpenF1WebSocket
📋 Site Patch Notes
v0.5 New Projects — ETEC 495 Update & CTEC 350 Assembly May 2026
+ Updated IoT Smart Energy Monitor — corrected hardware to match actual build (PZEM-004T v3.0, 20×4 LCD, ThingSpeak, SD card logging, DS1307 RTC)
+ Added Wiring Diagram link directly on the capstone project card
+ Added CTEC 350 section with 5 x 8051 Assembly programs
+ Safe Keypad Final Project: 4-digit combo lock (3-5-7-9), multiplexed 7-seg display, ISR keypad scanning, OPEn flash on success
+ Binary Down Counter programs: Timer 0 Mode 1 (16-bit) and Timer 1 Mode 2 (8-bit auto-reload)
+ Binary Countdown Timer with Interrupt: ISR at ORG 000BH, IE=82H, event-driven timing
v0.4 Skills, Achievements & Job Updates Apr 2026
+ Added A+ Track section — 450hr BOCES program skills listed
+ Added Industry Knowledge pill tags (Basic Electricity, Linux OS, CMD, etc.)
+ Added 6 new skill cards: Cable Tester, Hand Tools, OS Software, Backup, Drivers, Diagnostics
+ Added Achievements section to About page (Honor Roll, Creative Writing Award, BOCES 450hrs, A+ In Progress)
+ Updated RPM Raceway description — fleet corrected to 80+ karts, expanded to 3 sentences
+ Updated Built Well Solar description — 3-sentence format with PSEG detail
v0.3 Nav Bar Standardized Across All Pages Apr 2026
+ TopBar CSS unified across all 6 pages — same links, toggle, hamburger, mobile nav
+ Hamburger moved to right side of nav, restyled as pill button with MENU label
+ Fixed broken CSS that was hiding the nav links on the home page
+ Scroll progress bar added to all pages
+ Dark/light theme toggle now persists across page navigation
v0.25 Mobile Update Mar 2026
+ Bottom mobile nav bar added — Home, About, Skills, Projects, Jobs
+ Hamburger menu added for tablet breakpoint with slide-up dropdown
+ All pages tested and adjusted for small screen layouts
+ Tap targets enlarged, font sizes adjusted for readability on mobile
+ Safe area inset support added for notched phones
v0.2 Experience & Skills Pages Expanded Mar 2026
+ Page Added — Jobs / Experience with expandable job panels
+ Page Added — Skills with filterable card grid, expandable detail panels, level badges
+ Added RPM Raceway — Junior Mechanic (EV battery systems, 80+ karts)
+ Added Built Well Solar Corp — Solar Intern (PSEG interconnection, Aurora Solar)
+ Added NYIT Computer Lab Technician and Minerva A/V positions
+ Radar chart and career timeline added to About page
v0.1 Site Launch Feb 2026
+ Website is up — dustinbloss.com live for the first time
+ Page Added — Portfolio / Home with canvas particle animation and hero section
+ Page Added — About with personal bio, interests, and fun facts
+ Page Added — Projects with expandable project cards and photo upload
+ Page Added — 404 custom error page
+ Dark / Light mode toggle with localStorage persistence
+ Zero frameworks, zero dependencies — 100% vanilla HTML, CSS, JS
🛠 Technical Skills
Embedded & HardwareESP32 · Arduino · ACS712 · PCB · Multimeter
ProgrammingC++ · Python · HTML/CSS/JS · MATLAB · Assembly
IT & NetworkingCAT6 · Cisco CLI · Active Directory · System Imaging
Solar & EnergyAurora Solar · PSEG · One-Line Diagrams · NEC 690
Audio / VisualA/V Install · Video Walls · Live Events · Structured Cabling
EV Battery Systems
Strong
Cell voltage monitoring, charge cycle tracking, capacity testing, and pack replacement on lithium EV kart batteries.
RPM Raceway

Fleet maintenance on 60+ electric go-karts at RPM Raceway — 8 to 12 live sessions daily, zero tolerance for downtime.

📍 Where I Used This
RPM Raceway
Farmingdale, NY
Feb 2025 – Present
🔧 What I Did
Cell voltage testing, charge state checks, capacity assessments, connector inspections, and full pack swaps on lithium battery systems.
Lithium Battery PacksCell DiagnosticsCharge Cycle TrackingHigh-Current WiringBMSMultimeter
Arduino (Mega / Uno)
Strong
Core embedded platform for labs — SPI/I2C display interfacing, sensor integration, timer routines, interrupt handling.
NYIT ECE LabsNYIT Senior Capstone

Primary embedded platform across multiple ECE lab courses and senior capstone project.

📍 Where I Used This
NYIT ECE Labs — CTEC 350
NYIT Senior Capstone — IoT Energy Monitor
🔧 What I Did
SPI/I2C display interfacing (LCD, 7-seg, dot matrix, OLED), interrupt-driven timers, look-up tables, sensor integration.
Arduino MegaSPII2CInterruptsTimersC++
ESP32
Solid
WiFi-enabled microcontroller used in senior capstone Smart Energy Monitor.
NYIT Senior Capstone

Used in senior capstone IoT energy monitoring system — WiFi data push, OLED output, 1kHz ADC current sampling.

📍 Where I Used This
NYIT ETEC 495
Senior Capstone Project
2025–2026
🔧 What I Did
Built complete IoT energy monitor. Fixed time-delta bug in energy accumulation, corrected ACS712 sensitivity constant for accurate RMS readings.
ESP32WiFiI2CADC SamplingIoTC++
Raspberry Pi
Linux-based SBC used for embedded projects and lab experiments.
NYIT ECE LabsPersonal Projects
PCB Design / Fritzing
Solid
Schematic capture and PCB layout for lab circuit designs and project documentation.
NYIT ECE Labs

Used for circuit design and documentation across ECE lab coursework.

📍 Where I Used This
NYIT ECE Labs
Circuit Design Coursework
🔧 What I Did
Schematic capture, PCB layout, component placement, trace routing, and design documentation for lab builds.
FritzingPCB LayoutSchematic CaptureCircuit Design
ACS712 Current Sensor
Solid
Hall-effect current sensor — calibrated and integrated for senior capstone IoT project.
NYIT Senior Capstone

Integrated into senior capstone IoT energy monitor as the primary current sensing element.

📍 Where I Used This
NYIT ETEC 495
Senior Capstone
🔧 What I Did
Calibrated sensitivity from wrong 185mV/A → correct 66mV/A for 30A module. Added ADC oversampling + offset correction for clean readings.
ACS712ADC CalibrationCurrent SensingOversamplingC++
SSD1306 OLED Display
I2C OLED display driver — live data output in senior capstone and ECE lab projects.
NYIT Senior CapstoneNYIT ECE Labs
Multimeter / Oscilloscope
Strong
Daily diagnostic tool at RPM for EV fault isolation; used in lab circuits and field IT work.
RPM RacewayNYIT ECE LabsFreelance IT

Daily use at RPM Raceway for EV fault isolation. Used in ECE labs for circuit analysis and field IT work.

📍 Where I Used This
RPM Raceway — daily
NYIT ECE Labs
Freelance IT
🔧 What I Did
Voltage testing on battery packs, continuity checks, resistance measurement, oscilloscope waveform capture on embedded circuits.
MultimeterOscilloscopeEV DiagnosticsCircuit AnalysisContinuity Testing
Soldering
Through-hole and SMD soldering for circuit builds and lab projects.
NYIT ECE LabsBOCES
HTML / CSS / JavaScript
Strong
Built this entire 5-page portfolio site from scratch — zero frameworks, zero dependencies.
Personal Project

Built this entire 5-page portfolio site from scratch — the page you are on right now.

📍 Where I Used This
Personal Project
2025–2026
100% from scratch
🔧 What I Did
Canvas particle animation, CSS Grid layouts, dark/light mode, IntersectionObserver scroll reveals, Formspree API, custom 404 page — zero frameworks.
HTML5CSS3JavaScript ES6+Canvas APICSS GridCSS Custom PropertiesPWAFormspree
C / C++
Embedded C/C++ for microcontrollers — Arduino labs, sensor drivers, and IoT senior capstone project.
NYIT ECE LabsNYIT Senior Capstone
8051 Assembly
Solid
Register-level programming for 8051 architecture — timers, PSW flags, look-up tables, conditional logic.
NYIT ECE Labs

Low-level microcontroller programming in CTEC 350 — Microcontroller Systems with Dr. Duke.

📍 Where I Used This
NYIT CTEC 350
Microcontroller Systems
🔧 What I Did
PSW flag manipulation, timer/counter routines, conditional branching, look-up table implementations at register level.
8051 AssemblyPSW FlagsTimer RoutinesLook-Up TablesRegister Programming
MATLAB
Solid
Signal processing, control systems analysis, steady-state error and step response plots.
NYIT ECE Labs

Control systems and signal processing coursework at NYIT.

📍 Where I Used This
NYIT ECE Labs
Control Systems & Signal Processing
🔧 What I Did
System modeling, step response plots, steady-state error vs gain sweeps, damping parameter analysis.
MATLABControl SystemsSignal ProcessingStep ResponseBode Plots
Python
Scripting for data processing, automation, and lab tasks.
NYIT ECE LabsPersonal Projects
Java
Object-oriented programming fundamentals from ECE coursework.
NYIT ECE Labs
CAT6 / Structured Cabling
Strong
Terminated, patched, and managed structured cabling at 100+ venues and campus infrastructure.
BOCESNYIT ITMinerva A/V

Structured cabling across three environments — BOCES training, NYIT campus, and 100+ Minerva venue installs.

📍 Where I Used This
BOCES — server room builds
NYIT IT — campus upgrades
Minerva A/V — 100+ venues
🔧 What I Did
CAT5e/CAT6 termination, punch-down blocks, Ethernet backbone runs, rack cable management.
CAT6CAT5eRJ45 TerminationPunch-DownCable Management
Patch Panels & Rack Wiring
Strong
Built, labeled, and maintained patch panels in server racks across campus and field environments.
BOCESNYIT ITMinerva A/V

Built and maintained patch panels in server racks across school labs, campus IT, and venue field work.

📍 Where I Used This
BOCES — full rack builds
NYIT IT — campus maintenance
Minerva A/V — venue racks
🔧 What I Did
Panel install, port labeling, cable routing, rack layout planning, documentation.
Patch PanelsRack Wiring1U/2U PanelsCable ManagementServer Racks
Cisco CLI
Solid
Switch and router configuration via CLI — VLANs, port config, routing, and diagnostics.
BOCESNYIT IT

Cisco CLI configuration in BOCES vocational lab and NYIT campus switch/router maintenance.

📍 Where I Used This
BOCES — networking lab
NYIT IT — campus infrastructure
🔧 What I Did
VLAN setup, port access/trunk assignment, DHCP config, show commands, ping/traceroute diagnostics.
Cisco IOSCLIVLANsTrunk/Access PortsDHCPTroubleshooting
VLAN Configuration
Created and managed VLANs on Cisco switches for network segmentation in lab and campus environments.
BOCESNYIT IT
DNS / DHCP Setup
Configured DNS and DHCP services on Windows Server and Cisco infrastructure.
BOCESNYIT IT
Wireless AP Configuration
Configured and deployed wireless access points for campus and lab network environments.
BOCESNYIT IT
System Imaging / Cloning
Strong
Imaged and deployed 50+ workstations at NYIT using Clonezilla and Windows imaging tools.
NYIT ITBOCES

Imaged and deployed 50+ workstations at NYIT and learned deployment at BOCES.

📍 Where I Used This
NYIT IT — 50+ lab workstations
BOCES — deployment training
🔧 What I Did
OS image creation, Clonezilla deployments, post-image config including domain join, driver install, and software setup.
ClonezillaWindows ImagingOS DeploymentDomain JoinDriver Management
PC Builds / Hardware Repair
Strong
50+ custom PC builds and hardware repairs for private clients and institutional environments.
Freelance ITNYIT ITBOCES

50+ custom builds and repairs for private clients since 2019. Hardware support at NYIT and BOCES.

📍 Where I Used This
Freelance IT — private clients since 2019
NYIT IT
BOCES
🔧 What I Did
Component selection, assembly, BIOS configuration, OS install, post-build testing, and hardware troubleshooting.
PC AssemblyBIOS ConfigWindows InstallComponent SourcingHardware RepairPOST Diagnostics
Active Directory / Windows Server
User account management, group policy, domain joining, file shares, and server administration.
NYIT ITBOCES
Network Diagnostics
Wireshark, ping, traceroute, nslookup — troubleshooting connectivity issues across labs and client setups.
NYIT ITBOCESFreelance IT
Remote IT Support
Strong
Remote desktop and phone-guided troubleshooting for private clients since 2019.
Freelance ITNYIT IT

Remote IT support for private clients since 2019 and remote faculty support at NYIT.

📍 Where I Used This
Freelance IT — clients since 2019
NYIT IT — faculty support
🔧 What I Did
Remote desktop sessions, phone-guided troubleshooting, diagnosing hardware/software/network issues remotely. Built repeat client base through clear communication and documented fixes.
Remote DesktopTeamViewerAnyDeskPhone SupportIT Helpdesk
Aurora Solar
Strong
PV system modeling — roof layouts, shading analysis, string sizing, and production reports.
Built Well Solar

Primary design tool at Built Well Solar — used on every residential and commercial project.

📍 Where I Used This
Built Well Solar Corp.
Bayville, NY
2025 – Present
🔧 What I Did
Roof array layouts, irradiance and shading analysis, string sizing, inverter selection, production/savings reports for 30+ PSEG packages.
Aurora SolarPV ModelingShading AnalysisString SizingProduction ReportsIrradiance
PSEG Interconnection
Strong
Processed 30+ complete PSEG interconnection packages — zero rejections.
Built Well Solar

30+ complete PSEG Long Island interconnection packages submitted — zero rejections.

📍 Where I Used This
Built Well Solar Corp.
PSEG Long Island Submissions
2025 – Present
🔧 What I Did
Preparing appendices A/B/C, equipment specs, site surveys, NEC compliance docs, and managing full submission lifecycle.
PSEG LIInterconnectionUtility SubmissionNEC 690AppendicesSite Survey
One-Line Diagrams
Strong
Created single-line diagrams for solar PV systems per PSEG and NEC requirements.
Built Well SolarNYIT ECE Labs

Created one-line diagrams for every solar system submitted through Built Well Solar.

📍 Where I Used This
Built Well Solar Corp. — all PV designs
NYIT ECE Labs — circuit docs
🔧 What I Did
Single-line diagrams covering PV source circuits, combiners, inverters, AC disconnect, utility meter, and grid tie points per PSEG standards.
One-Line DiagramsNEC Article 690PSEG StandardsSystem Documentation
NEC Article 690 (Solar)
Applied NEC solar code requirements to system designs and interconnection documentation.
Built Well Solar
PV System Design
Residential and commercial solar system design — array sizing, shading analysis, roof layout.
Built Well Solar
A/V System Installation
Strong
Installed professional A/V systems at 100+ venues across NYC and Long Island.
Minerva A/V

Professional A/V system installs across 100+ venues for Minerva Audio Visual.

📍 Where I Used This
Minerva Audio Visual
NYC, Tristate & Long Island
May 2024 – May 2025
🔧 What I Did
Deployed and configured video walls, PA systems, projection systems, commercial display mounts, and control system integration.
Video WallsPA SystemsProjectionAV Control SystemsCommercial Displays
Live Event A/V
Audio and lighting rig operation for live corporate and private events — zero-downtime troubleshooting.
Minerva A/V
Display Mounting / Video Walls
Commercial TV mounts, multi-display video walls, and tiled display configurations.
Minerva A/V
A/V Structured Cabling
HDMI, SDI, audio snake, and Ethernet backbone runs for A/V installations.
Minerva A/VBOCES
Technical Documentation
Strong
Utility-grade interconnection packages, system reports, and client-facing technical summaries.
Built Well SolarNYIT ITFreelance IT

Technical documentation across solar, IT, and freelance contexts.

📍 Where I Used This
Built Well Solar — PSEG packages
NYIT IT — ticket logs
Freelance IT — client reports
🔧 What I Did
Regulatory compliance docs, client-facing solar production reports, IT ticket writeups, hardware build logs.
Technical WritingPSEG PackagesClient ReportsIT TicketsDocumentation
Fault Diagnosis (Electrical)
Strong
Systematic electrical fault isolation across EV battery systems, campus IT hardware, and client machines.
RPM RacewayNYIT ITFreelance IT

Fault diagnosis across EV systems, campus IT hardware, and private client machines.

📍 Where I Used This
RPM Raceway — EV systems daily
NYIT IT — campus hardware
Freelance IT — client machines
🔧 What I Did
Voltage testing, connector checks, motor controller faults, POST failures, network connectivity, software conflicts — all diagnosed systematically under time pressure.
Fault IsolationEV DiagnosticsHardware DebuggingSoftware TroubleshootingSystematic Diagnosis
Time-Critical Operations
Strong
Diagnose and fix faults between live sessions — 8-12 sessions daily at RPM, zero downtime tolerance.
RPM RacewayMinerva A/V

High-pressure environments at RPM Raceway (between live sessions) and Minerva A/V live events.

📍 Where I Used This
RPM Raceway — between sessions
Minerva A/V — live event deadlines
🔧 What I Did
Built standardized pre-session checklists. Diagnose and resolve faults in minutes. Systems must be live on hard deadlines — no excuses.
Time ManagementUnder PressureChecklist DisciplineZero DowntimeLive Operations
Cable Tester
Verified Ethernet and A/V cable integrity using cable testers across IT and venue installs.
NYIT ITMinerva A/VBOCES
Hand Tools — Screwdrivers, Pliers, Wire Crimp
Daily use across PC builds, EV kart maintenance, and A/V installs — wire crimping, connector work, chassis access.
RPM RacewayNYIT ITMinerva A/VFreelance IT
Operating System Software
Windows 10/11, Linux (Ubuntu), macOS — install, configure, troubleshoot, and maintain across lab and client environments.
NYIT ITBOCESFreelance IT
Backup & Archival Software
Clonezilla, Windows Backup, and imaging tools for workstation backups and OS deployment at scale.
NYIT ITBOCES
Driver Software
Device driver installation, updates, and rollback for hardware components across Windows and Linux systems.
NYIT ITFreelance ITBOCES
Diagnostic Software
HWiNFO, CrystalDiskInfo, MemTest86, Windows Event Viewer — systematic hardware and software fault identification.
NYIT ITFreelance ITBOCES
🎯
A+ Track — Skills in Progress
Working towards CompTIA A+ · 450hrs at BOCES Joseph M. Barry CTE Center
In Progress
⚡ Measure voltage, current & resistance
🖥️ Identify & describe basic computer components
🔧 Identify necessary computer tools & hardware
🛠️ Basic computer maintenance & diagnostics
🔩 Remove & replace computer parts
🔍 Troubleshoot computer-related errors
💿 Install, upgrade & troubleshoot Operating Systems
🖱️ Install, upgrade & troubleshoot I/O devices
📖 Read technical manuals for information
🔢 Convert various numbering systems
🌐 Identify basic networking components
📡
Industry Knowledge
Basic ElectricityComputer ElectronicsPC Theory & FeaturesComputer Maintenance PracticesOperating SystemsPrinter TechnologyNumbering Systems & CodesMonitors & DisplaysIT NetworksMicrosoft CMD & Troubleshoot SoftwareLinux OS
Dustin Bloss
B.S. Electrical & Computer Engineering · NYIT · Westbury, NY
[email protected] · LinkedIn · GitHub · ©