// 04_SOFTWARE_ENGINEERING BUILD STATUS · SHIPPING

Ship secure systems.
Production over portfolio.

Full-stack engineer with a security-first posture. React on the front, PHP and .NET on the back, Python where the data lives, WordPress where the clients want it. Every system designed assuming someone will try to break it.

~/vee/production · main
01$ git log --oneline --recent
02a1f4e9c feat: KARE PharmTech corporate site · solo build · PHP+AWS
033d2b18a feat: KARE Rx Card · React.js · dynamic data pipeline
048e7c0d2 feat: KARE Pillbox · React + Netlify · co-developed
055f1a3b4 feat: KARE internal apps · .NET · hardened SharePoint alternative
06b9d6c11 feat: RecruiterDave.com · WordPress + Elementor · client build
07$
0Production deploys
0Languages used
0Years building
0Full-time roles
/** philosophy */

Engineering is communication.

Code is read more than it's written. Systems are operated more than they're designed. The best engineers I've worked with don't write clever code — they write clear code, and clarity scales.

My approach: assume hostile inputs, design for failure modes, optimize for the next engineer to read this, ship under real constraints instead of waiting for perfect ones. Security isn't a feature bolted on at the end — it's the posture you start from.

I'd rather have a boring system that runs at 3am than a beautiful one that doesn't.

// TOOLCHAIN

What I reach for.

Honest tiering. No progress bars. Languages and frameworks I actually ship with — daily drivers, active tools, things in rotation.

DAILY · DRIVERS

What I open VS Code to first.

JS

JavaScript

Production React, vanilla JS, Node-side scripting. The default for anything interactive.

React.js

Built KARE Rx Card with thousands of dynamic rows. Component-driven, hooks-first.

Py

Python

ML pipelines, data preprocessing, KARE internal tooling. pandas, scikit-learn, NumPy.

HC

HTML / CSS

Computer Coach certified. Modern CSS, responsive systems, animation, grid mastery.

WP

WordPress / Elementor

Five+ production client sites. Theme Builder, custom CSS, ACF, performance tuning.

Git

Git

Branch-per-feature, conventional commits, code review hygiene, rollback discipline.

ACTIVE · TOOLS

Used in production. Reach for them often.

PHP

PHP

Built KARE PharmTech end-to-end. AWS-deployed, dynamic content, MySQL-backed.

SQL

SQL · MySQL

Schema design, query optimization, transaction handling. Oracle SQL via MSCS.

Bs

Bootstrap

Rapid responsive scaffolding. Production grid systems for KARE corporate site.

AWS

AWS

PHP deployments, static hosting, basic infrastructure ops. Production exposure.

Fg

Figma

Wireframes, prototypes, design systems. Used for KARE UX work + portfolio design.

Nt

Netlify

JAMstack deploys, CI/CD, KARE Pillbox launch. Preview branches, redirects, env vars.

IN · ROTATION

Competent. Pulled in when needed.

Jv

Java

OOP foundation from TCC + FAU coursework. Backend reasoning, algorithms.

.NET

.NET / C#

KARE internal apps — security-hardened SharePoint alternative for sensitive data.

cP

cPanel

Hosting operations, MySQL via phpMyAdmin, .htaccess, file management. AC4S ops.

// FEATURED_BUILD

KARE PharmTech · solo build

The corporate face of an 11-brand generative AI healthcare ecosystem. Owned end-to-end.

The brief

KARE PharmTech is the parent brand of an ecosystem spanning Clinicals, Digital Health, GPO, HUB, Lifestyle, Pillbox, PMS, Provider Strategies, Rx Card, Rx Portal, and Specialty. The corporate site needed to communicate that ecosystem clearly without flattening any individual brand, feel premium and AI-forward, and serve as the public anchor of investor and client conversations.

The build

  • Bootstrap for rapid responsive scaffolding across breakpoints
  • PHP for server-rendered dynamic content sections and contact flows
  • Custom CSS for the brand-specific divider system, gradient hierarchy, and 11-brand logo grid
  • AWS for production hosting and PHP-only server deployment
  • MySQL for form submissions and dynamic content

What it taught me

  • Production AWS deployment under real client stakes — not localhost
  • Multi-brand visual hierarchy without losing parent-brand authority
  • Stakeholder communication when you're the sole engineer on a high-visibility build
  • PHP is unfashionable but it ships, and that's what mattered
SPEC_SHEET
Role
Lead SDE · solo build
Stack
Bootstrap · PHP · MySQL · AWS
Scope
End-to-end · solo
Audience
B2B healthcare + investors
Brands
11+ portfolio brands
Status
SHIPPED
// PRODUCTION_DEPLOYS

Other shipped systems.

Each is real, public, and used in production. Click through to see them live.

// 01 SHIPPED

KARE Rx Card

Discount card platform rendering thousands of pharmaceutical pricing rows as a dynamically styled web application. Led the React.js build end-to-end.

React.js JSON CSS-in-JS
SOLO · LEAD DEVELOPER
// 02 SHIPPED

KARE Pillbox

Adherence-focused pharmaceutical product launch site. Co-developed with one other engineer for fast-turnaround marketing launch. Netlify-deployed.

React Netlify JAMstack
CO-DEVELOPED View live ↗
// 03 SHIPPED

KARE Internal Apps

.NET-based internal applications built as a security-hardened alternative to SharePoint for sensitive pharma data. Compliance-aware architecture from day one.

.NET C# Security
CONTRIBUTOR
// 04 SHIPPED

RecruiterDave.com

Executive search platform with three-track service architecture (clients / candidates / students), Calendly integration, Sherpa LMS setup, Activity Journal blog.

WordPress Elementor Pro Calendly
SOLO · CLIENT BUILD View live ↗
// 05 SHIPPED

Disrupt the Bay

Multi-event healthcare-tech conference site. Speaker management, Eventbrite integration, sponsorship tier system, Tampa Tank pitch competition section.

WordPress Eventbrite CPTs
CLIENT BUILD View live ↗
// 06 SHIPPED

Save the Kids Foundation

501(c)(3) pediatric cancer research nonprofit site. Stripe donation flow, gala marketing, board management, embedded press coverage.

WordPress Stripe Eventbrite
CLIENT BUILD View live ↗
// HOW_I_BUILD

Four principles I write by.

01

Assume hostile inputs.

Every form, every URL parameter, every API response is a potential attack surface. I validate at the edge, sanitize before storage, and never trust client-side enforcement alone. The security mindset isn't paranoia — it's just respect for what users (and attackers) actually do.

02

Design for failure modes.

What happens when the database is down? When the third-party API rate-limits us? When the file upload is 10x bigger than expected? Production code has to gracefully degrade, surface errors clearly, and never silently lose user data. Happy paths are the easy half.

03

Optimize for readability.

The next engineer reading this code might be me in six months, or someone else with no context. Clear naming, explicit logic over clever tricks, comments where the "why" isn't obvious. Clever code feels great to write. Clear code is the only kind that scales.

04

Ship under real constraints.

Hosting limitations, client deadlines, stakeholder revisions — real engineering happens inside boxes you didn't draw. The skill isn't waiting for the perfect environment; it's making the constraints work. AC4S taught me this. KARE proved it.

// CURRENTLY_BUILDING

MSCS coursework in flight.

Graduate work at Florida Atlantic University. The depth behind the breadth.

COP 6731

Theory & Implementation of Database Systems

Relational algebra, transaction systems, concurrency control, deadlock analysis, execution plans, indexing strategy. Hands-on labs running Oracle SQL via SSH into bastion hosts, simulating concurrency, analyzing execution paths with DBMS_XPLAN.

Oracle SQL SQL*Plus Transactions Concurrency
GRAPH ANALYTICS

Network Science & Community Detection

Graph theory, centrality analysis, social network analysis, large-scale graph processing. Built a Twitch social network analysis project using PySpark + NetworkX + Louvain community detection to map influence structures.

PySpark NetworkX Louvain Python
AI / ML

Statistical Models from First Principles

Implemented linear regression, logistic regression, and Gibbs sampling from scratch — not from abstraction libraries. The point: understand the underlying math, then earn the right to use the shortcuts.

Python NumPy Probability Optimization
// ENGINEERING_CHANNEL

Want to ship something together?

Full-stack roles, security-conscious engineering work, freelance builds, consulting on existing systems — all welcome. I work best with teams that take both production quality and shipping speed seriously.