you have arrived
at greenmiyagi.com

green miyagi

web designer • eco entrepreneur • aba strategist

based in north texas, i design digital experiences that fuse sustainability with human-centered tech.

as a unt graduate in applied behavior analysis, i leverage behavioral insights to elevate every interaction.

founder of eco drop car wash, i pioneer projects where clean code meets clean water — creating impact on-screen and off.

grounded, green, legendary — welcome to the future of eco-tech.

green miyagi manifestations

www.ecodropcarwash.com
mckinneymobilecarwash.com
texomawebdesign.space

reality is shaped by what we believe, but only when acted upon - green miyagi

August 15, 2025

TRENDING

shift 💚 a miyagi thought to feel
// Lazy loading implementation for images and iframes document.addEventListener("DOMContentLoaded", function() { const lazyElements = [].slice.call(document.querySelectorAll("img.lazy, iframe.lazy")); if ("IntersectionObserver" in window) { let lazyObserver = new IntersectionObserver(function(entries) { entries.forEach(function(entry) { if (entry.isIntersectionRatio > 0) { let lazyElement = entry.target; if (lazyElement.tagName === "IMG") { lazyElement.src = lazyElement.dataset.src; } else { lazyElement.src = lazyElement.dataset.src; } lazyElement.classList.remove("lazy"); lazyObserver.unobserve(lazyElement); } }); }); lazyElements.forEach(function(lazyElement) { lazyObserver.observe(lazyElement); }); } else { // Fallback for older browsers lazyElements.forEach(function(lazyElement) { if (lazyElement.tagName === "IMG") { lazyElement.src = lazyElement.dataset.src; } else { lazyElement.src = lazyElement.dataset.src; } }); } });