Seneca Polytechnic Computer Programming graduate specializing in Python automation, relational databases, and data structures. Building clean technical solutions that bridge the gap between software systems and real-world logistics workflows.
Applying computer programming principles to streamline inventory, logistics accounts, and retail operations.
I graduated from Seneca Polytechnic with a Computer Programming diploma, gaining a solid foundation in database design, data structures, and Python automation scripting. Outside of programming, I have managed retail centers and shipping hubs across the GTA, handling courier accounts (UPS, FedEx, DHL), coordinating fleet logistics, and sorting high-volume shipments under strict operational timelines. I write clean, logical code to solve practical logistics and workflow problems.
A breakdown of programming languages, tools, and operational experience.
A timeline mapping out academic success along with operations positions in Canada.
Directing customer service operations in a high-volume drive-thru. Consistently meets strict 45-second service metrics, reconciles thousands in POS transactions daily, and trains new members on front-end software systems.
Executed warehouse operations, sorting and routing up to 400+ units per hour using scanner guns and warehouse management software. Maintained a 99.8% audit accuracy score and coordinated team freight handling in safety-critical sectors.
Completed intensive programming curriculum. Specialized in database designs, advanced data structures, algorithmic scripting, OOP concepts, and building robust, clean code architectures in Python and C++.
Spearheaded operational leadership for a retail shipping node handling DHL, FedEx, and UPS accounts. Resolved over 500 carrier disputes, negotiated custom shipping solutions, tracked a 500+ SKU database, and optimized U-Haul fleet coordination to increase lease turnovers by 15%.
Managed front-desk client experiences, operating Point-of-Sale structures and OLG terminals. Conducted strict age-restricted auditing and inventory stocking under active shifts.
A collection of programs and tools built to bridge digital logic with hands-on operational systems.
A Python CLI tool that parses custom JSON resume data and compiles it into clean, ATS-friendly HTML/CSS and PDF layouts using headless Chrome.
A Python-based logistics tool that automates package routing. It classifies shipments by weight thresholds, validates delivery rules, and outputs optimized courier dispatches.
A real-time logistics dashboard that visualizes carrier performance, tracks delivery logs, and manages courier dispute records.
An interactive outbound sortation game mimicking high-throughput Amazon hub conveyor flows. Sort parcels arriving in the scan zone under strict precision constraints.
Maintain strict outbound delivery SLAs. Route arriving packages immediately into the correct transport lanes. Desktop players can use Left / Right Keyboard Arrow Keys!
Verify the queue-based sorting logic executing in Python. Automatically directs parcels into appropriate shipping buffers according to weight and urgency tags.
import queue
class PackageRouter:
def __init__(self):
self.air_express_bin = []
self.heavy_ground_bin = []
self.processed = 0
self.errors = 0
def route_package(self, package):
# 1. Extract packaging telemetry parameters
weight = package.get("weight", 0.0)
service = package.get("service", "Ground")
is_priority = (service == "Priority Express")
# 2. Strict Amazon Outbound SLA Routing Decision rules
should_be_air = (weight < 5.0) and is_priority
if should_be_air:
destination = "Air Express"
self.air_express_bin.append(package)
else:
destination = "Heavy Ground"
self.heavy_ground_bin.append(package)
self.processed += 1
return destination
Whether you're looking for a Transportation Logistics Coordinator or a Software Programmer with operational depth, reach out below.
I am currently located in Toronto, ON, Canada, and am eligible to work full-time on implied status with an active PGWP application pending. Open to roles in the GTA or remote.