Compare commits
No commits in common. "0430dbfd1eaa97400e31003b8ab0dce385affe74" and "97ffce86782c3223c23830507e0d6285a6630d00" have entirely different histories.
0430dbfd1e
...
97ffce8678
33
CLAUDE.md
33
CLAUDE.md
@ -1,33 +0,0 @@
|
|||||||
# CLAUDE.md
|
|
||||||
|
|
||||||
This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.
|
|
||||||
|
|
||||||
## Build
|
|
||||||
|
|
||||||
The resume is authored in Markdown and compiled to HTML with pandoc:
|
|
||||||
|
|
||||||
```bash
|
|
||||||
bash build.sh
|
|
||||||
```
|
|
||||||
|
|
||||||
Which runs:
|
|
||||||
|
|
||||||
```bash
|
|
||||||
pandoc paul_trowbridge.md -o pt.html --css styles.css --standalone
|
|
||||||
```
|
|
||||||
|
|
||||||
`pt.html` is the output — do not edit it directly. All content changes go in `paul_trowbridge.md`.
|
|
||||||
|
|
||||||
## Architecture
|
|
||||||
|
|
||||||
This is a single-page resume with three source files:
|
|
||||||
|
|
||||||
- **`paul_trowbridge.md`** — source of truth for all resume content. Uses YAML front matter for the `<title>` tag. Section structure: Professional Summary → Professional Experience (reverse chronological) → Education → Infrastructure & Tools.
|
|
||||||
- **`styles.css`** — custom stylesheet. CSS variables at `:root` control the color palette (blues + grays). Sections use `h1`/`h2`/`h3` hierarchy generated by pandoc. Includes print media query (`@media print`) tuned for clean PDF output.
|
|
||||||
- **`pt.html`** — pandoc-generated output. The stylesheet is embedded as a `<link>` tag; pandoc injects its own minimal inline styles alongside it.
|
|
||||||
|
|
||||||
The `css/` directory contains older stylesheets (markdown.css, highlight.css, etc.) from a prior pandoc approach — these are no longer used. `flavor.css` is also unused.
|
|
||||||
|
|
||||||
## Workflow
|
|
||||||
|
|
||||||
Edit `paul_trowbridge.md`, then run `bash build.sh` to regenerate `pt.html`. The HTML renders in a browser; print or export to PDF directly from the browser using the print styles in `styles.css`.
|
|
||||||
@ -7,14 +7,15 @@ Finance & Pricing Leader | Strategic Costing | Data & Analytics
|
|||||||
---
|
---
|
||||||
|
|
||||||
## Professional Summary
|
## Professional Summary
|
||||||
I Partner with executives and business functions to model and forecast the business - surfacing opportunities and giving leaders a clear line of sight between their decisions and results. With 18 years in manufacturing, I've built this infrastructure from scratch at every level: people, pricing functions, cost environments, consolidation frameworks, and analytics platforms that became the primary financial data source for the organizations I served.
|
|
||||||
|
I build financial models of the business — integrated structures that connect pricing, cost, and operational drivers to financial outcomes across the P&L. My work gives executives and business unit leaders a clear line of sight between their decisions and results. Over 15 years in manufacturing, I've built this infrastructure from scratch at every level: pricing functions, cost environments, consolidation frameworks, and analytics platforms that became the primary financial data source for the organizations I served.
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
## Professional Experience
|
## Professional Experience
|
||||||
|
|
||||||
### Growscape
|
### Growscape
|
||||||
*Twinsburg, OH | $250M Plastic Container Manufacturing | Platinum Equity Portfolio Company*
|
*Twinsburg, OH*
|
||||||
|
|
||||||
**Director of Financial Planning and Analysis** — Dec 2025 – Present
|
**Director of Financial Planning and Analysis** — Dec 2025 – Present
|
||||||
|
|
||||||
|
|||||||
4
pt.html
4
pt.html
@ -22,11 +22,11 @@
|
|||||||
<p>Finance & Pricing Leader | Strategic Costing | Data & Analytics</p>
|
<p>Finance & Pricing Leader | Strategic Costing | Data & Analytics</p>
|
||||||
<hr />
|
<hr />
|
||||||
<h2 id="professional-summary">Professional Summary</h2>
|
<h2 id="professional-summary">Professional Summary</h2>
|
||||||
<p>I Partner with executives and business functions to model and forecast the business - surfacing opportunities and giving leaders a clear line of sight between their decisions and results. With 18 years in manufacturing, I’ve built this infrastructure from scratch at every level: people, pricing functions, cost environments, consolidation frameworks, and analytics platforms that became the primary financial data source for the organizations I served.</p>
|
<p>I build financial models of the business — integrated structures that connect pricing, cost, and operational drivers to financial outcomes across the P&L. My work gives executives and business unit leaders a clear line of sight between their decisions and results. Over 15 years in manufacturing, I’ve built this infrastructure from scratch at every level: pricing functions, cost environments, consolidation frameworks, and analytics platforms that became the primary financial data source for the organizations I served.</p>
|
||||||
<hr />
|
<hr />
|
||||||
<h2 id="professional-experience">Professional Experience</h2>
|
<h2 id="professional-experience">Professional Experience</h2>
|
||||||
<h3 id="growscape">Growscape</h3>
|
<h3 id="growscape">Growscape</h3>
|
||||||
<p><em>Twinsburg, OH | $250M Plastic Container Manufacturing | Platinum Equity Portfolio Company</em></p>
|
<p><em>Twinsburg, OH</em></p>
|
||||||
<p><strong>Director of Financial Planning and Analysis</strong> — Dec 2025 – Present</p>
|
<p><strong>Director of Financial Planning and Analysis</strong> — Dec 2025 – Present</p>
|
||||||
<ul>
|
<ul>
|
||||||
<li>Own Platinum Operating Company Reporting Package for private equity stakeholders</li>
|
<li>Own Platinum Operating Company Reporting Package for private equity stakeholders</li>
|
||||||
|
|||||||
12
styles.css
12
styles.css
@ -57,10 +57,6 @@ hr {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* --- Section Headers (H2) --- */
|
/* --- Section Headers (H2) --- */
|
||||||
hr + h2 {
|
|
||||||
margin-top: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
h2 {
|
h2 {
|
||||||
font-size: 0.78em;
|
font-size: 0.78em;
|
||||||
font-weight: 700;
|
font-weight: 700;
|
||||||
@ -153,14 +149,6 @@ code {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* --- Print Styles --- */
|
/* --- Print Styles --- */
|
||||||
@page {
|
|
||||||
margin: 0.7in 0.4in 0.4in 0.4in;
|
|
||||||
}
|
|
||||||
|
|
||||||
@page :first {
|
|
||||||
margin-top: 0.4in;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media print {
|
@media print {
|
||||||
body {
|
body {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user