Seneca Polytechnic Programming graduate specializing in Python, SQL, and database algorithms. Creating streamlined technical answers to bridge the gap between software development and complex operational systems.
Combining computer science logic with front-line high-throughput fulfillment, client account escalations, and store operations.
With a Computer Programming Diploma from Seneca Polytechnic, I developed a strong foundation in algorithmic reasoning, database structures, and object-oriented architectures. Unlike traditional developers, I spent years leading operations at Complete Mart, managing high-volume sorting at Amazon, and coordinating courier accounts (UPS, FedEx, DHL) for Sunshine Corporation. I thrive where operational workflows meet technological automation.
A breakdown of technical engineering capabilities paired with physical operations and customer service expertises.
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.
Explore specialized projects built to bridge digital algorithms with physical operational systems.
A Python-based compiler that dynamically aggregates raw JSON profile schemas and parses them into perfectly formatted, ATS-compliant HTML/CSS templates, compiling them into vector PDFs using headless Chrome layers.
An algorithmic routing pipeline designed to optimize package delivery flows. Implements custom sorting algorithms to classify shipments by courier weight-threshold levels and automatically rids delivery discrepancies.
A responsive, high-performance logistics dashboard interface. Connects simulated API logs of delivery accounts and visualizes real-time courier fulfillment performance, tracking dispute claims dynamically.
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.