151 lines
4.2 KiB
HTML
151 lines
4.2 KiB
HTML
|
|
<!DOCTYPE html>
|
|||
|
|
<html lang="en">
|
|||
|
|
<head>
|
|||
|
|
<meta charset="UTF-8" />
|
|||
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
|
|||
|
|
<title>The Continuous Improvement Cycle | Bryan Takahashi</title>
|
|||
|
|
<style>
|
|||
|
|
:root {
|
|||
|
|
--bg: #121212;
|
|||
|
|
--text: #f0f0f0;
|
|||
|
|
--accent: #4a90e2;
|
|||
|
|
--card-bg: #1e1e1e;
|
|||
|
|
}
|
|||
|
|
body {
|
|||
|
|
font-family: 'Helvetica Neue', Arial, sans-serif;
|
|||
|
|
background: var(--bg);
|
|||
|
|
color: var(--text);
|
|||
|
|
margin: 0;
|
|||
|
|
padding: 0;
|
|||
|
|
line-height: 1.6;
|
|||
|
|
}
|
|||
|
|
.container {
|
|||
|
|
max-width: 800px;
|
|||
|
|
margin: 40px auto;
|
|||
|
|
padding: 0 20px;
|
|||
|
|
}
|
|||
|
|
h1 {
|
|||
|
|
font-size: 2.4rem;
|
|||
|
|
margin-bottom: 0.5rem;
|
|||
|
|
}
|
|||
|
|
.subtitle {
|
|||
|
|
font-size: 1.1rem;
|
|||
|
|
color: #aaa;
|
|||
|
|
margin-bottom: 2rem;
|
|||
|
|
}
|
|||
|
|
.section {
|
|||
|
|
background: var(--card-bg);
|
|||
|
|
padding: 24px;
|
|||
|
|
border-radius: 10px;
|
|||
|
|
margin-bottom: 24px;
|
|||
|
|
box-shadow: 0 4px 12px rgba(0,0,0,0.3);
|
|||
|
|
}
|
|||
|
|
h2 {
|
|||
|
|
color: var(--accent);
|
|||
|
|
font-size: 1.6rem;
|
|||
|
|
margin-top: 0;
|
|||
|
|
}
|
|||
|
|
p {
|
|||
|
|
margin-bottom: 1rem;
|
|||
|
|
}
|
|||
|
|
ul {
|
|||
|
|
padding-left: 1.2rem;
|
|||
|
|
}
|
|||
|
|
li {
|
|||
|
|
margin-bottom: 0.5rem;
|
|||
|
|
}
|
|||
|
|
.cycle {
|
|||
|
|
display: grid;
|
|||
|
|
grid-template-columns: repeat(2, 1fr);
|
|||
|
|
gap: 20px;
|
|||
|
|
margin: 30px 0;
|
|||
|
|
}
|
|||
|
|
.step {
|
|||
|
|
background: #2a2a2a;
|
|||
|
|
padding: 20px;
|
|||
|
|
border-radius: 8px;
|
|||
|
|
text-align: center;
|
|||
|
|
border: 1px solid #444;
|
|||
|
|
}
|
|||
|
|
.step h3 {
|
|||
|
|
margin: 0;
|
|||
|
|
font-size: 1.4rem;
|
|||
|
|
color: var(--accent);
|
|||
|
|
}
|
|||
|
|
.step p {
|
|||
|
|
font-size: 0.95rem;
|
|||
|
|
color: #ccc;
|
|||
|
|
}
|
|||
|
|
footer {
|
|||
|
|
text-align: center;
|
|||
|
|
font-size: 0.85rem;
|
|||
|
|
color: #777;
|
|||
|
|
margin-top: 60px;
|
|||
|
|
}
|
|||
|
|
a {
|
|||
|
|
color: var(--accent);
|
|||
|
|
text-decoration: none;
|
|||
|
|
}
|
|||
|
|
a:hover {
|
|||
|
|
text-decoration: underline;
|
|||
|
|
}
|
|||
|
|
</style>
|
|||
|
|
<script defer src="https://analytics.4ort.xyz/script.js" data-website-id="d3ed927c-888a-4a6c-ae5f-0b1c613ddf5b"></script>
|
|||
|
|
</head>
|
|||
|
|
<body>
|
|||
|
|
<div class="container">
|
|||
|
|
<h1>The Continuous Improvement Cycle</h1>
|
|||
|
|
<p class="subtitle">How small steps lead to big wins — without burning out the team.</p>
|
|||
|
|
|
|||
|
|
<div class="section">
|
|||
|
|
<h2>Why Process Improvement Matters</h2>
|
|||
|
|
<p>In logistics, retail, or even community theater, the smallest inefficiency can snowball. But instead of panic, we can use a steady rhythm of <strong>Plan → Do → Check → Act</strong> to keep things moving smoothly.</p>
|
|||
|
|
<p>This isn’t about perfection. It’s about progress — and making sure everyone feels heard along the way.</p>
|
|||
|
|
</div>
|
|||
|
|
|
|||
|
|
<div class="section">
|
|||
|
|
<h2>The Cycle, Simplified</h2>
|
|||
|
|
<div class="cycle">
|
|||
|
|
<div class="step">
|
|||
|
|
<h3>Plan</h3>
|
|||
|
|
<p>Define the problem. Gather data. Ask the team what’s really going on.</p>
|
|||
|
|
</div>
|
|||
|
|
<div class="step">
|
|||
|
|
<h3>Do</h3>
|
|||
|
|
<p>Try a small change. Keep it simple. Measure what happens.</p>
|
|||
|
|
</div>
|
|||
|
|
<div class="step">
|
|||
|
|
<h3>Check</h3>
|
|||
|
|
<p>Did it work? If not, what did you learn?</p>
|
|||
|
|
</div>
|
|||
|
|
<div class="step">
|
|||
|
|
<h3>Act</h3>
|
|||
|
|
<p>Standardize what works. Toss what doesn’t. Then start again.</p>
|
|||
|
|
</div>
|
|||
|
|
</div>
|
|||
|
|
</div>
|
|||
|
|
|
|||
|
|
<div class="section">
|
|||
|
|
<h2>How to Start Tomorrow</h2>
|
|||
|
|
<ul>
|
|||
|
|
<li><strong>Start small.</strong> One process, one team, one week.</li>
|
|||
|
|
<li><strong>Ask questions.</strong> “What slows you down?” “What would make your day easier?”</li>
|
|||
|
|
<li><strong>Celebrate wins.</strong> Even a 5-minute time saved is a win.</li>
|
|||
|
|
<li><strong>Don’t blame.</strong> Mistakes are data. Use them to improve, not to punish.</li>
|
|||
|
|
</ul>
|
|||
|
|
</div>
|
|||
|
|
|
|||
|
|
<div class="section">
|
|||
|
|
<h2>From the Bay to the Boardroom</h2>
|
|||
|
|
<p>Whether you’re managing a local bakery or a nonprofit food bank, the same principles apply: listen, test, learn, and keep the team in the loop.</p>
|
|||
|
|
<p>Because the best processes aren’t just efficient — they’re kind.</p>
|
|||
|
|
</div>
|
|||
|
|
|
|||
|
|
<footer>
|
|||
|
|
<p>Made with care in Atlantic Highlands, NJ — where community comes first.</p>
|
|||
|
|
<p><a href="/">Back to Bryan’s site</a></p>
|
|||
|
|
</footer>
|
|||
|
|
</div>
|
|||
|
|
</body>
|
|||
|
|
</html>
|