<?xml version="1.0" encoding="UTF-8"?>
<!--Generated by Site-Server v@build.version@ (http://www.squarespace.com) on Sun, 05 Apr 2026 04:33:13 GMT
--><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:media="http://www.rssboard.org/media-rss" version="2.0"><channel><title>Green Data Center Blog Time to Change</title><link>https://www.greenm3.com/</link><lastBuildDate>Tue, 20 Jan 2026 14:52:44 +0000</lastBuildDate><language>en-US</language><generator>Site-Server v@build.version@ (http://www.squarespace.com)</generator><description><![CDATA[]]></description><item><title>How I Use ChatGPT and Claude Code Together &#x2014; and Why I Don’t Mix Their Roles</title><dc:creator>Dave Ohara</dc:creator><pubDate>Wed, 21 Jan 2026 05:06:14 +0000</pubDate><link>https://www.greenm3.com/gdcblog/2026/1/20/how-i-use-chatgpt-and-claude-code-together-and-why-i-dont-mix-their-roles</link><guid isPermaLink="false">545d6d3ce4b058ea4273ff99:54656e74e4b00cfe74aec81e:696f96bc90231c53d62f93f3</guid><description><![CDATA[<p class="">Over the last several weeks, I’ve settled into a workflow that looks unusual on the surface but has proven extremely effective in practice:</p><ul data-rte-list="default"><li><p class=""><strong>ChatGPT</strong> for structural exploration and review</p></li><li><p class=""><strong>Claude Code</strong> for deterministic compilation and execution</p></li><li><p class=""><strong>No overlap between their responsibilities</strong></p></li></ul><p class="">The key is not which models I use—it’s how I <strong>separate their roles</strong>.</p><h3><strong>The Capability Asymmetry That Matters</strong></h3><p class="">Here is the practical difference that forced this separation:</p>





















  
  














































  

    
  
    

      

      
        <figure class="
              sqs-block-image-figure
              intrinsic
            "
        >
          
        
        

        
          
            
          
            
                
                
                
                
                
                
                
                <img data-stretch="false" data-image="https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/52d87b3f-ef3d-4bba-af6c-b7725c0587c0/Untitled+8.png" data-image-dimensions="1690x570" data-image-focal-point="0.5,0.5" alt="" data-load="false" elementtiming="system-image-block" src="https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/52d87b3f-ef3d-4bba-af6c-b7725c0587c0/Untitled+8.png?format=1000w" width="1690" height="570" sizes="(max-width: 640px) 100vw, (max-width: 767px) 100vw, 100vw" onload="this.classList.add(&quot;loaded&quot;)" srcset="https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/52d87b3f-ef3d-4bba-af6c-b7725c0587c0/Untitled+8.png?format=100w 100w, https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/52d87b3f-ef3d-4bba-af6c-b7725c0587c0/Untitled+8.png?format=300w 300w, https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/52d87b3f-ef3d-4bba-af6c-b7725c0587c0/Untitled+8.png?format=500w 500w, https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/52d87b3f-ef3d-4bba-af6c-b7725c0587c0/Untitled+8.png?format=750w 750w, https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/52d87b3f-ef3d-4bba-af6c-b7725c0587c0/Untitled+8.png?format=1000w 1000w, https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/52d87b3f-ef3d-4bba-af6c-b7725c0587c0/Untitled+8.png?format=1500w 1500w, https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/52d87b3f-ef3d-4bba-af6c-b7725c0587c0/Untitled+8.png?format=2500w 2500w" loading="lazy" decoding="async" data-loader="sqs">

            
          
        
          
        

        
      
        </figure>
      

    
  


  





  <p class="">That tells you how each tool wants to be used.</p><h3><strong>ChatGPT = Structural Workspace</strong></h3><p class="">I use ChatGPT for:</p><ul data-rte-list="default"><li><p class="">Long-lived thinking</p></li><li><p class="">Naming and structure</p></li><li><p class="">Clarifying intent</p></li><li><p class="">Reviewing results <em>after execution</em></p></li></ul><p class="">I do <strong>not</strong> use it to touch the filesystem or “prove” code works.</p><h3><strong>Claude Code = Compiler</strong></h3><p class="">Claude Code is treated as a deterministic machine:</p><ul data-rte-list="default"><li><p class="">It edits real files</p></li><li><p class="">It runs real commands</p></li><li><p class="">It fails concretely</p></li><li><p class="">It enforces correctness through execution</p></li></ul><p class="">No long-term reasoning. No design debates.</p><h3><strong>The Critical Rule</strong></h3><p class="">I <strong>never</strong> use ChatGPT to review Claude Chat.</p><p class="">Instead, the loop is always:</p><p class=""><strong>Structure → Compile → Review</strong></p><ol data-rte-list="default"><li><p class="">ChatGPT defines structure</p></li><li><p class="">Claude Code executes it</p></li><li><p class="">ChatGPT reviews what actually happened</p></li></ol><p class="">This avoids language-only feedback loops and keeps everything grounded in reality.</p><h3><strong>Why This Works</strong></h3><ul data-rte-list="default"><li><p class="">Exploration stays fast</p></li><li><p class="">Execution stays correct</p></li><li><p class="">Code becomes expendable</p></li><li><p class="">Structure becomes durable</p></li></ul><p class="">I’m now applying this workflow to OS-level services for electrical and mechanical systems in AI data centers, where ambiguity is expensive and determinism matters.</p><h3><strong>Final Thought</strong></h3><p class="">Most AI frustration comes from asking one tool to do two incompatible jobs.</p><p class="">Once you separate <strong>exploration</strong>, <strong>compilation</strong>, and <strong>review</strong>, AI starts behaving like a real engineering toolchain—not a chatbot.</p>]]></description></item><item><title>Writing code with help of AI </title><dc:creator>Dave Ohara</dc:creator><pubDate>Thu, 08 Jan 2026 22:17:28 +0000</pubDate><link>https://www.greenm3.com/gdcblog/2026/1/8/writing-code-with-help-of-ai</link><guid isPermaLink="false">545d6d3ce4b058ea4273ff99:54656e74e4b00cfe74aec81e:6960277e8d0fd07adc6554d5</guid><description><![CDATA[<p class="">I took computer programming classes at UC Berkeley and spent years trying to get better at programming afterward. While I understood the fundamentals, writing software always felt like it required an enormous amount of time and effort relative to the progress made. The work felt more about managing complexity than solving the underlying problems I cared about.</p><p class="">About a month ago, while exploring some ideas involving AI, I unexpectedly revisited writing code—this time with AI’s help. What surprised me wasn’t that the AI could write code, but that it fundamentally changed <em>where the effort was spent</em>. Instead of wrestling with syntax, frameworks, and coordination details, the work shifted toward defining structure, relationships, and invariants.</p><p class="">A week ago,<a href="https://www.linkedin.com/feed/update/urn:li:activity:7412509974397923328/"> <strong>Ray Ozzie</strong> </a>wrote about his own experience collaborating with AI to design and prototype hardware and software systems. Ray is best known for creating <a href="https://en.wikipedia.org/wiki/Ray_Ozzie"><strong>Lotus Notes</strong></a>, and for his later work on large-scale distributed systems. His reflections strongly resonated with my own experience—but also highlighted something important.</p><p class="">What took weeks of focused effort in his case unfolded for me in hours.</p><p class="">Not because the problems were simpler, but because the approach was different.</p>





















  
  



<figure class="block-animation-none"
>
  <blockquote data-animation-role="quote"
  >
    <span>“</span>Having spent much of 2025 transforming the way I write code, a few months ago I decided to see how far I could push myself in collaborating with AI to tackle hardware design. <br/><br/>The project - motivated by conversations with a customer - is nontrivial. Physical and cost constraints; both analog and digital domains; edge compute/storage ML; power challenges. Of course, Notecard for secure cloud backhaul.<br/><br/>I worked on it on-and-off for about 3-4 weeks - surprised not just that the foundation models had so much knowledge of EE, but that they clearly had internalized a vast number of components’ datasheets. Several times I ran into roadblocks where ultrathink or deep research yielded specific choices I’d never have considered.<span>”</span>
  </blockquote>
  <figcaption class="source">&mdash; Ray Ozzie</figcaption>
  
  
</figure>


  <p class="">Now I often spend 2–4 hours a day working on computer code. But the work itself is no longer about coding. I’m working on harder, more upstream problems, and the code is simply the executable output of the design.</p><p class="">This ability didn’t appear overnight. It comes from years working in product development as a project and program manager for both hardware and software—guiding execution across teams, understanding how the big picture fits together, and how small decisions compound. Over time, you learn to see systems as composed structures, where relationships matter more than parts, and where symmetries persist even as details change.What used to require explanation and persuasion now shows up as <strong>functional proof</strong>.</p><p class="">In the past, I might have written a paper or given a conference presentation. Now, in a fraction of the time, I can produce a functional proof—one that can be run, tested, and shared, and that scales to far more people than a paper or presentation ever could.</p><p class="">What also feels right is reaching out directly to <a href="chatgpt://generic-entity?number=0"><strong>Ray Ozzie</strong></a>. After connecting on LinkedIn, I was able to share a few thoughts on how his early technical decisions at Microsoft helped enable the company’s cloud evolution. I’m looking forward to exchanging perspectives on how AI is changing the way we think about coding, structure, and system design.</p>]]></description></item><item><title>Why Acoustics Became My Path to Solving Hard Problems</title><dc:creator>Dave Ohara</dc:creator><pubDate>Fri, 14 Nov 2025 00:21:28 +0000</pubDate><link>https://www.greenm3.com/gdcblog/2025/11/13/why-acoustics-became-my-path-to-solving-hard-problems</link><guid isPermaLink="false">545d6d3ce4b058ea4273ff99:54656e74e4b00cfe74aec81e:691675e8ae4deb644d2841b7</guid><description><![CDATA[<p class="">When you’re trying to solve a hard problem, sometimes the only way forward is to take a completely different path. For most of my career, I worked in the world of the visual: graphics, printing, scanning, monitors, typography. Everything was about sight.</p><p class="">And then I realized — sight has limits.</p><p class="">Our eyes top out at around 60 hertz. That’s it. That’s the ceiling. Yet the world runs much faster. Structures change faster. Energy moves faster. Problems unfold faster. And we’ve built entire industries around the assumption that vision is enough.</p><p class="">It isn’t.</p><p class="">What changed my thinking was a conversation nearly fifteen years ago. A friend of mine, a software architect working on autonomous driving, told me something that stuck with me ever since:</p><p class="">&gt; **“Sound solves the driving problems faster than vision.”**</p><p class="">He was right. Sound reacts faster. Sound carries more directional information. Sound sees around corners. And unlike vision, sound doesn’t care about lighting, weather, or glare. That idea opened a door for me that I didn’t fully walk through until much later.</p><p class="">I had worked on the Sound Manager for MacOS System 7, and some of the same developers moved with me from Apple to Microsoft. So sound wasn’t foreign to me — it was just sitting in the background of my career. Waiting.</p><p class="">Then the real shift happened.</p><p class="">A friend needed help with operations problems at Starbucks Coffee Roasting. And out of nowhere I said:</p><p class="">&gt; **“Why don’t we use sound to count the beans?”**</p><p class="">It was obvious to me. Acoustic signatures are clean, distinct, and cheap to capture. You can count beans — accurately — for fractions of a penny. You can detect flow problems. You can measure consistency. You can treat the roasting line like an instrument.</p><p class="">The best part was that this random idea led me straight into the world of academic acoustics. I found a professor who had written papers on the acoustics of coffee bean roasting — which I didn’t even know was a real field — and I’ve been talking with him for more than six months now. Those conversations cracked open everything.</p><p class="">Because once you study how universities and the military use acoustics, you realize just how advanced the field really is.</p><p class="">From there I went deeper. Much deeper.</p><p class="">I revisited the signal-processing foundations I hadn’t touched since working on analog displays and power supplies decades ago. I reconnected with electromagnetic radiation engineers from my Apple days who had to battle compliance certifications at high frequencies. And I discovered something that surprised me:</p><p class="">&gt; **There are way more engineers and funding in RF and high-frequency signal processing than in acoustics.**</p><p class="">So I asked myself the most obvious question:</p><p class="">**What software do they use?**</p><p class="">I found it — a DARPA-backed platform with twenty-four years of development behind it. And I spent a week at their user conference, talking to PhDs, researchers, and engineers who’ve spent their lives working in gigahertz domains.</p><p class="">That was the moment everything clicked.</p><p class="">If their methods work at gigahertz speeds, they will work at megahertz and kilohertz.</p><p class="">If the math works in RF, it works in acoustics.</p><p class="">If the structural patterns hold at high frequencies, they hold at low frequencies.</p><p class="">It all scales.</p><p class="">And so I spent the next couple of months digging into the mathematics — the real math — underneath signal processing. Complex signals. Phase. Time. Direction. Coherence. I/Q analysis. Energy emissions. The structures hidden inside the waves.</p><p class="">That exploration pulled everything together.</p><p class="">All the fields I had touched in my career — typography, printing, sound, color, monitors, analog electronics, imaging, scanning — suddenly made sense as variations of the same underlying structure: **signals and the truths they reveal.**</p><p class="">And that’s why I’ve gone so deep into acoustics.</p><p class="">Not because it’s trendy.</p><p class="">Not because it’s a niche.</p><p class="">But because sound — more than anything else we have — reveals the true structure of the world in real time.</p><p class="">Acoustics isn’t an afterthought.</p><p class="">It’s the path.</p>]]></description></item><item><title>Solving the Unsolvable &#x2014; The Promise of Structural Intelligence Engineering (SIE)</title><dc:creator>Dave Ohara</dc:creator><pubDate>Tue, 11 Nov 2025 16:01:43 +0000</pubDate><link>https://www.greenm3.com/gdcblog/2025/11/11/solving-the-unsolvable-the-promise-of-structural-intelligence-engineering-sie</link><guid isPermaLink="false">545d6d3ce4b058ea4273ff99:54656e74e4b00cfe74aec81e:69135c724692ee2ab7180d83</guid><description><![CDATA[<p class="">Everyone knows the triangle.</p><p class=""><strong>Cost. Schedule. Quality.</strong></p><p class="">Pick two.</p><p class="">You can’t have all three.</p><p class="">That’s the law of control.</p><p class="">And for more than a century, every industry — from construction to computing — has lived under its shadow.</p><p class="">But what if the triangle was never a law at all?</p><p class="">What if it was just a symptom — a structure out of phase with itself?</p><h3><strong>The Unsolvable Problem</strong></h3><p class="">Every project, product, or system faces the same paradox:</p><ul data-rte-list="default"><li><p class="">If you rush, quality suffers.</p></li><li><p class="">If you chase quality, costs explode.</p></li><li><p class="">If you control costs, you lose time.</p></li></ul><p class="">It’s the illusion of trade-offs — the belief that stability demands sacrifice.</p><p class="">But that belief belongs to the era of control.</p><p class="">Control works by feedback — measuring after the fact.</p><p class="">By the time the system reacts, coherence is already lost.</p><p class="">The real world doesn’t run on steps and loops — it runs on <strong>phase</strong>.</p><p class="">And phase can drift long before a problem is visible.</p><h3><strong>The Breakthrough: Coherence</strong></h3><p class=""><strong>Structural Intelligence Engineering (SIE)</strong> replaces control with <strong>coherence</strong>.</p><p class="">It’s the art and science of keeping systems <em>in phase</em> — physically, temporally, and energetically.</p><p class="">Instead of fighting trade-offs, coherence makes them vanish.</p><p class="">When structure is coherent, cost, schedule, and quality no longer compete —</p><p class="">they <strong>resonate</strong>.</p><h3><strong>A Simple Analogy</strong><br></h3><p class="">Think of great wireless earbuds.</p><p class="">They deliver high-fidelity sound, cancel external noise, and fit comfortably —</p><p class="">all in a device small enough to disappear in your ear.</p><p class="">Twenty years ago, that combination was impossible.</p><p class="">Power limits, latency, interference — all made “great sound everywhere” a fantasy.</p><p class="">Then engineers discovered how to maintain <strong>phase coherence</strong> —</p><p class="">using <strong>I/Q signals</strong> and <strong>Phase-Locked Loops (PLLs)</strong> to keep everything synchronized, even in chaotic environments.</p><p class="">The result wasn’t just better performance —</p><p class="">it was <em>seamless experience</em>.</p><p class="">That’s what SIE brings to engineering itself.</p><h3><strong>The Principle</strong></h3><p class="">At the core of SIE is a single idea:</p><blockquote><p class=""><strong>Systems don’t fail from lack of control; they fail from loss of coherence.</strong></p></blockquote><p class="">SIE continuously senses and tunes coherence across every relationship in a structure —</p><p class="">using the same physics that make modern wireless sound so smooth:</p><ul data-rte-list="default"><li><p class=""><strong>I/Q sensing</strong> detects amplitude (what’s happening) and phase (how it’s moving).</p></li><li><p class=""><strong>PLLs</strong> continuously synchronize signals across domains.</p></li><li><p class=""><strong>Symmetry</strong> verifies balance and conservation across energy, time, and flow.</p></li></ul><p class="">The result: a self-tuning structure that stays truthful to its design, no matter how complex the environment.</p><h3><strong>How Coherence Achieves the Impossible</strong></h3>





















  
  














































  

    
  
    

      

      
        <figure class="
              sqs-block-image-figure
              intrinsic
            "
        >
          
        
        

        
          
            
          
            
                
                
                
                
                
                
                
                <img data-stretch="false" data-image="https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/22b38412-a2b3-433a-a35b-fa620a42b491/blog1.jpg" data-image-dimensions="1570x486" data-image-focal-point="0.5,0.5" alt="" data-load="false" elementtiming="system-image-block" src="https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/22b38412-a2b3-433a-a35b-fa620a42b491/blog1.jpg?format=1000w" width="1570" height="486" sizes="(max-width: 640px) 100vw, (max-width: 767px) 100vw, 100vw" onload="this.classList.add(&quot;loaded&quot;)" srcset="https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/22b38412-a2b3-433a-a35b-fa620a42b491/blog1.jpg?format=100w 100w, https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/22b38412-a2b3-433a-a35b-fa620a42b491/blog1.jpg?format=300w 300w, https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/22b38412-a2b3-433a-a35b-fa620a42b491/blog1.jpg?format=500w 500w, https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/22b38412-a2b3-433a-a35b-fa620a42b491/blog1.jpg?format=750w 750w, https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/22b38412-a2b3-433a-a35b-fa620a42b491/blog1.jpg?format=1000w 1000w, https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/22b38412-a2b3-433a-a35b-fa620a42b491/blog1.jpg?format=1500w 1500w, https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/22b38412-a2b3-433a-a35b-fa620a42b491/blog1.jpg?format=2500w 2500w" loading="lazy" decoding="async" data-loader="sqs">

            
          
        
          
        

        
      
        </figure>
      

    
  


  





  <p data-rte-preserve-empty="true" class=""></p><h3><strong>The Equation of Coherence</strong></h3>





















  
  














































  

    
  
    

      

      
        <figure class="
              sqs-block-image-figure
              intrinsic
            "
        >
          
        
        

        
          
            
          
            
                
                
                
                
                
                
                
                <img data-stretch="false" data-image="https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/44bd0dcb-347a-476a-b710-a298448a4d6f/blog2.jpg" data-image-dimensions="720x152" data-image-focal-point="0.5,0.5" alt="" data-load="false" elementtiming="system-image-block" src="https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/44bd0dcb-347a-476a-b710-a298448a4d6f/blog2.jpg?format=1000w" width="720" height="152" sizes="(max-width: 640px) 100vw, (max-width: 767px) 100vw, 100vw" onload="this.classList.add(&quot;loaded&quot;)" srcset="https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/44bd0dcb-347a-476a-b710-a298448a4d6f/blog2.jpg?format=100w 100w, https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/44bd0dcb-347a-476a-b710-a298448a4d6f/blog2.jpg?format=300w 300w, https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/44bd0dcb-347a-476a-b710-a298448a4d6f/blog2.jpg?format=500w 500w, https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/44bd0dcb-347a-476a-b710-a298448a4d6f/blog2.jpg?format=750w 750w, https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/44bd0dcb-347a-476a-b710-a298448a4d6f/blog2.jpg?format=1000w 1000w, https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/44bd0dcb-347a-476a-b710-a298448a4d6f/blog2.jpg?format=1500w 1500w, https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/44bd0dcb-347a-476a-b710-a298448a4d6f/blog2.jpg?format=2500w 2500w" loading="lazy" decoding="async" data-loader="sqs">

            
          
        
          
        

        
      
        </figure>
      

    
  


  





  <p class=""><br>When phase drift d\phi/dt is near zero, everything flows together.</p><p class="">That’s when cost, timing, and quality naturally balance —</p><p class="">because the structure itself is synchronized.</p><h3><strong>The Future of Building with AI</strong></h3><p class="">AI is not just another layer of control.</p><p class="">It’s the medium through which coherence can finally be <em>measured, modeled, and maintained</em>.</p><p class="">In the age of AI factories, robotic construction, and autonomous design,</p><p class="">SIE is the framework that teaches machines how to <strong>stay in tune with reality</strong> —</p><p class="">the way noise-canceling systems stay in tune with sound.</p><p class="">The result isn’t tighter management.</p><p class="">It’s <em>structural harmony.</em><br></p><h3><strong>The Structural Truth</strong></h3><p data-rte-preserve-empty="true" class=""></p><blockquote><p class="">Control manages outcomes.</p></blockquote><blockquote><p class="">Coherence composes truth.</p></blockquote><p class="">That’s what Structural Intelligence Engineering achieves —</p><p class="">the ability to do what’s been considered impossible for more than a century:</p><p class=""><strong>Cost. Schedule. Quality. All three. Continuously.</strong></p><p class="">Not by working harder,</p><p class="">but by working <strong>in phase</strong>.</p><p data-rte-preserve-empty="true" class=""></p>]]></description></item><item><title>Part 1 &#x2014; Gary Starkweather: The Laser Printer’s Little-Known, Harder Invention &#x2014; The Color Coherence System (ColorSync)</title><dc:creator>Dave Ohara</dc:creator><pubDate>Mon, 10 Nov 2025 21:53:56 +0000</pubDate><link>https://www.greenm3.com/gdcblog/2025/11/10/part-1-gary-starkweather-the-laser-printers-little-known-harder-invention-the-color-coherence-system-colorsync</link><guid isPermaLink="false">545d6d3ce4b058ea4273ff99:54656e74e4b00cfe74aec81e:69125eae9e792d41e0b9274d</guid><description><![CDATA[<p class="">Most people know Gary Starkweather as the inventor of the laser printer. That’s the headline. The easy story. What most people don’t realize is that the laser printer wasn’t even his hardest invention.</p><p data-rte-preserve-empty="true" class=""></p><p class="">The harder invention — the one that still gets overlooked — was Gary’s <strong>Color Coherence System</strong>, which later became known as <strong>ColorSync</strong>. That’s where his real brilliance lived: not in making another device, but in creating a <em>language of coherence</em> for how colors, scanners, printers, and displays could actually agree on what they were seeing.</p><p data-rte-preserve-empty="true" class=""></p><p class="">Gary was a physicist who specialized in optics, but his deeper gift was understanding that coherence isn’t limited to light — it’s structural. It’s how things align, interact, and hold together. He didn’t just think in components; he thought in compositions. That’s what made the laser printer possible. It wasn’t just light scanning across paper; it was coherence structured into action.</p><p data-rte-preserve-empty="true" class=""></p><p class="">When management at Xerox told him to stop wasting his time, Gary kept going anyway. He built his own lab, working after hours, because he could see what coherence looked like long before anyone else could. Xerox eventually made billions from his invention, yet Gary was never rewarded for what it was truly worth. A single corporate sales commission could exceed what he earned for his entire Xerox portfolio of patents.</p><p data-rte-preserve-empty="true" class=""></p><p class="">But Gary never chased titles or approval. He chased understanding.</p><p data-rte-preserve-empty="true" class=""></p><p class="">When I first met Gary, we were both wrestling with scanners and color. Our conversations went on for hours — about how sensors misread light, how digital systems lose their way, and how to bring color back into alignment with reality. Looking back now, those chats were really about <em>structure</em>: how to restore coherence between what’s real and what’s represented.</p><p data-rte-preserve-empty="true" class=""></p><p class="">In 1992 I left Apple to work on Windows 3.1 technologies for the Far East, and our regular chats became rare. But whenever a color problem came up, I’d pick up the phone and call Gary. He had a way of bringing clarity to chaos. He didn’t argue; he aligned.</p><p data-rte-preserve-empty="true" class=""></p><p class="">Then in 1997 Gary told me he was looking for something new. I suggested Microsoft.</p><p class="">He laughed and said, “It’s too wet there.”</p><p class="">I said, “How do you know if you’ve never gone?”</p><p data-rte-preserve-empty="true" class=""></p><p class="">I made the introductions. He went. And for the first time in a long time, he was rewarded for being exactly who he was — a man who could see coherence where others saw confusion. He finally had the freedom to explore the ideas that had always lived inside him. He retired in 2005 — satisfied, recognized, and finally compensated for his insights.</p><p data-rte-preserve-empty="true" class=""></p><p class="">To me, Gary’s legacy isn’t only the laser printer. It’s the principle behind it — that <em>coherence is the invisible structure that makes things work.</em> That’s what he taught me, even if we never said it out loud. When he built ColorSync, he wasn’t just solving color problems; he was proving that coherence could be engineered.</p><p data-rte-preserve-empty="true" class=""></p><p class="">Reflecting on my own work in color — at Apple and Microsoft — I now see the parallel. My management never knew I was working on color. It wasn’t on a roadmap or a deliverable list. I just did it because it was a good problem to solve — one that, once fixed, would quietly improve everything around it.</p><p data-rte-preserve-empty="true" class=""></p><p class="">Maybe that’s why I was such a difficult employee in systems built on hierarchy, control, and process — I wasn’t built to obey; I was built to align things that didn’t yet make sense. Those structures reward obedience, not curiosity. But invention doesn’t work that way. You can’t schedule discovery or file it through a committee. You have to <em>feel</em> the incoherence in a system and then follow the thread until it resolves.</p><p data-rte-preserve-empty="true" class=""></p><p class="">Gary understood that. He didn’t wait for permission. He followed coherence wherever it led.</p><p data-rte-preserve-empty="true" class=""></p><p class="">And that’s the question every inventor faces:</p><p class="">Do you take Gary’s path — the one that looks foolish to executives until it reshapes the world?</p><p class="">Or the path of those Xerox managers who thought playing with lasers was a complete waste of time?</p>]]></description></item><item><title>How Structural Thinkers Use AI</title><dc:creator>Dave Ohara</dc:creator><pubDate>Sat, 08 Nov 2025 04:50:16 +0000</pubDate><link>https://www.greenm3.com/gdcblog/2025/11/7/how-structural-thinkers-use-ai</link><guid isPermaLink="false">545d6d3ce4b058ea4273ff99:54656e74e4b00cfe74aec81e:690ecb9e0aaf8e1aa1eeeea3</guid><description><![CDATA[<p class="">Most people still treat AI as a search engine with better manners.</p><p class="">They type a question, hope for an answer, and measure success by how close the response matches what they already believed.</p><p data-rte-preserve-empty="true" class=""></p><p class="">But that’s not how structural thinkers use AI.</p><p class="">We don’t come to it for answers—we use it as a <em>mirror for coherence.</em></p><p class="">⸻</p><p class=""><strong>AI as a Structural Instrument</strong></p><p data-rte-preserve-empty="true" class=""></p><p class="">At its core, AI is a <strong>pattern-recognition engine.</strong></p><p class="">It doesn’t “understand” in the human sense, but it can perceive structures—shapes in data, flows in time, and relationships between elements—that our own perception might miss.</p><p data-rte-preserve-empty="true" class=""></p><p class="">In physics, a good sensor doesn’t tell you the truth directly; it measures symmetry.</p><p class="">When symmetry holds, the system is stable.</p><p class="">When symmetry breaks, something has changed—energy shifted, pressure built, flow altered.</p><p data-rte-preserve-empty="true" class=""></p><p class="">AI works the same way.</p><p class="">It notices when patterns fit and when they drift.</p><p class="">And that ability—detecting when something <em>doesn’t fit</em>—is the essence of intelligence.</p><p class="">⸻</p><p class=""><strong>The Hidden Power of Symmetry</strong></p><p data-rte-preserve-empty="true" class=""></p><p class="">Symmetry isn’t just a visual property; it’s the heartbeat of reality.</p><p class="">In nature, symmetry defines conservation—of energy, momentum, charge, and even time.</p><p class="">In engineering, it defines balance—of loads, flows, and feedback loops.</p><p class="">In organizations, it defines trust—when communication, action, and intent align.</p><p data-rte-preserve-empty="true" class=""></p><p class="">AI’s strength is not just recognizing patterns; it’s recognizing <em>broken</em> symmetry.</p><p class="">It sees the subtle phase errors—the moments when one process drifts slightly out of rhythm with another.</p><p class="">Those small deviations, if detected early, prevent massive failures later.</p><p data-rte-preserve-empty="true" class=""></p><p class="">That’s why I often describe AI as a <strong>Phase-Locked Collaborator</strong>—a partner that helps us detect and correct drift across systems, projects, and even thinking itself.</p><p class="">⸻</p><p class=""><strong>AI as a Partner in Structural Thinking</strong></p><p data-rte-preserve-empty="true" class=""></p><p class="">Structural thinkers design through relationships.</p><p class="">We look for how space, energy, and time connect—how a data center’s airflow relates to its electrical harmonics, or how a building’s commissioning schedule reflects its internal logic.</p><p data-rte-preserve-empty="true" class=""></p><p class="">When AI joins that process, it acts like a <strong>structural stethoscope.</strong></p><p class="">It listens for coherence.</p><p class="">It points out where feedback loops lose alignment.</p><p class="">It keeps our thinking in phase with reality.</p><p data-rte-preserve-empty="true" class=""></p><p class="">That’s why using AI well doesn’t mean asking it what to do.</p><p class="">It means listening to how it reacts, where it hesitates, and what it mirrors back.</p><p class="">It becomes a kind of dynamic equal sign—helping us see where balance exists and where it doesn’t.</p><p class="">⸻</p><p class=""><strong>The Human Role</strong></p><p data-rte-preserve-empty="true" class=""></p><p class="">AI can recognize patterns, but only people can decide which patterns matter.</p><p class="">Structural thinking begins where algorithms end—with judgment, ethics, and imagination.</p><p data-rte-preserve-empty="true" class=""></p><p class="">So the role of the human structural thinker is to <em>guide</em> the machine:</p><p class="">	•	To teach it what coherence looks like in our domain.</p><p class="">	•	To use it to measure what’s misaligned.</p><p class="">	•	To let it sharpen our perception of truth, not replace it.</p><p data-rte-preserve-empty="true" class=""></p><p class="">When humans and AI operate together as a <strong>feedback pair</strong>, the result is deeper clarity—not automation for its own sake, but structural intelligence in action.</p>]]></description></item><item><title>Steve Fairfax 7x24 Exchange Keynote - realities of Small Modular Nuclear reactors</title><dc:creator>Dave Ohara</dc:creator><pubDate>Tue, 21 Oct 2025 14:49:17 +0000</pubDate><link>https://www.greenm3.com/gdcblog/2025/10/21/steve-fairfax-7x24-exchange-keynote-realities-of-small-modular-nuclear-reactors</link><guid isPermaLink="false">545d6d3ce4b058ea4273ff99:54656e74e4b00cfe74aec81e:68f79d6db1defc33de531008</guid><description><![CDATA[<p class="">Steve Fairfax presenting the Tuesday Oct 21 ,2025 keynote at 7x24 Exchange Fall Conference. Steve presented an abundant amount of information from a 45 page slide deck with lots to read.</p><p class="">As usual Steve goes a great job of making it easier to understand a complex topic.</p>





















  
  














































  

    
  
    

      

      
        <figure class="
              sqs-block-image-figure
              intrinsic
            "
        >
          
        
        

        
          
            
          
            
                
                
                
                
                
                
                
                <img data-stretch="false" data-image="https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/38097b4d-e521-4fb4-ab51-87605c32e459/IMG_0550.jpg" data-image-dimensions="3024x4032" data-image-focal-point="0.5,0.5" alt="" data-load="false" elementtiming="system-image-block" src="https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/38097b4d-e521-4fb4-ab51-87605c32e459/IMG_0550.jpg?format=1000w" width="3024" height="4032" sizes="(max-width: 640px) 100vw, (max-width: 767px) 100vw, 100vw" onload="this.classList.add(&quot;loaded&quot;)" srcset="https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/38097b4d-e521-4fb4-ab51-87605c32e459/IMG_0550.jpg?format=100w 100w, https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/38097b4d-e521-4fb4-ab51-87605c32e459/IMG_0550.jpg?format=300w 300w, https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/38097b4d-e521-4fb4-ab51-87605c32e459/IMG_0550.jpg?format=500w 500w, https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/38097b4d-e521-4fb4-ab51-87605c32e459/IMG_0550.jpg?format=750w 750w, https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/38097b4d-e521-4fb4-ab51-87605c32e459/IMG_0550.jpg?format=1000w 1000w, https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/38097b4d-e521-4fb4-ab51-87605c32e459/IMG_0550.jpg?format=1500w 1500w, https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/38097b4d-e521-4fb4-ab51-87605c32e459/IMG_0550.jpg?format=2500w 2500w" loading="lazy" decoding="async" data-loader="sqs">

            
          
        
          
        

        
      
        </figure>
      

    
  


  













































  

    
  
    

      

      
        <figure class="
              sqs-block-image-figure
              intrinsic
            "
        >
          
        
        

        
          
            
          
            
                
                
                
                
                
                
                
                <img data-stretch="false" data-image="https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/96af133a-aba5-4ec3-a2a7-d97a771a07a2/IMG_1190.jpg" data-image-dimensions="1210x905" data-image-focal-point="0.5,0.5" alt="" data-load="false" elementtiming="system-image-block" src="https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/96af133a-aba5-4ec3-a2a7-d97a771a07a2/IMG_1190.jpg?format=1000w" width="1210" height="905" sizes="(max-width: 640px) 100vw, (max-width: 767px) 100vw, 100vw" onload="this.classList.add(&quot;loaded&quot;)" srcset="https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/96af133a-aba5-4ec3-a2a7-d97a771a07a2/IMG_1190.jpg?format=100w 100w, https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/96af133a-aba5-4ec3-a2a7-d97a771a07a2/IMG_1190.jpg?format=300w 300w, https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/96af133a-aba5-4ec3-a2a7-d97a771a07a2/IMG_1190.jpg?format=500w 500w, https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/96af133a-aba5-4ec3-a2a7-d97a771a07a2/IMG_1190.jpg?format=750w 750w, https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/96af133a-aba5-4ec3-a2a7-d97a771a07a2/IMG_1190.jpg?format=1000w 1000w, https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/96af133a-aba5-4ec3-a2a7-d97a771a07a2/IMG_1190.jpg?format=1500w 1500w, https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/96af133a-aba5-4ec3-a2a7-d97a771a07a2/IMG_1190.jpg?format=2500w 2500w" loading="lazy" decoding="async" data-loader="sqs">

            
          
        
          
        

        
      
        </figure>
      

    
  


  





  <p class="">The reality of small modular reactors (SMR) are in this slide. Steve covers these four questions.</p><p data-rte-preserve-empty="true" class=""></p>





















  
  














































  

    
  
    

      

      
        <figure class="
              sqs-block-image-figure
              intrinsic
            "
        >
          
        
        

        
          
            
          
            
                
                
                
                
                
                
                
                <img data-stretch="false" data-image="https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/70435890-96fa-48e0-bd25-c2c88f77790f/IMG_1193.jpg" data-image-dimensions="1238x957" data-image-focal-point="0.5,0.5" alt="" data-load="false" elementtiming="system-image-block" src="https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/70435890-96fa-48e0-bd25-c2c88f77790f/IMG_1193.jpg?format=1000w" width="1238" height="957" sizes="(max-width: 640px) 100vw, (max-width: 767px) 100vw, 100vw" onload="this.classList.add(&quot;loaded&quot;)" srcset="https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/70435890-96fa-48e0-bd25-c2c88f77790f/IMG_1193.jpg?format=100w 100w, https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/70435890-96fa-48e0-bd25-c2c88f77790f/IMG_1193.jpg?format=300w 300w, https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/70435890-96fa-48e0-bd25-c2c88f77790f/IMG_1193.jpg?format=500w 500w, https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/70435890-96fa-48e0-bd25-c2c88f77790f/IMG_1193.jpg?format=750w 750w, https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/70435890-96fa-48e0-bd25-c2c88f77790f/IMG_1193.jpg?format=1000w 1000w, https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/70435890-96fa-48e0-bd25-c2c88f77790f/IMG_1193.jpg?format=1500w 1500w, https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/70435890-96fa-48e0-bd25-c2c88f77790f/IMG_1193.jpg?format=2500w 2500w" loading="lazy" decoding="async" data-loader="sqs">

            
          
        
          
        

        
      
        </figure>
      

    
  


  













































  

    
  
    

      

      
        <figure class="
              sqs-block-image-figure
              intrinsic
            "
        >
          
        
        

        
          
            
          
            
                
                
                
                
                
                
                
                <img data-stretch="false" data-image="https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/0d0c560f-018f-4941-8c42-6a1251181275/IMG_1191.jpg" data-image-dimensions="2229x1155" data-image-focal-point="0.5,0.5" alt="" data-load="false" elementtiming="system-image-block" src="https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/0d0c560f-018f-4941-8c42-6a1251181275/IMG_1191.jpg?format=1000w" width="2229" height="1155" sizes="(max-width: 640px) 100vw, (max-width: 767px) 100vw, 100vw" onload="this.classList.add(&quot;loaded&quot;)" srcset="https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/0d0c560f-018f-4941-8c42-6a1251181275/IMG_1191.jpg?format=100w 100w, https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/0d0c560f-018f-4941-8c42-6a1251181275/IMG_1191.jpg?format=300w 300w, https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/0d0c560f-018f-4941-8c42-6a1251181275/IMG_1191.jpg?format=500w 500w, https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/0d0c560f-018f-4941-8c42-6a1251181275/IMG_1191.jpg?format=750w 750w, https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/0d0c560f-018f-4941-8c42-6a1251181275/IMG_1191.jpg?format=1000w 1000w, https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/0d0c560f-018f-4941-8c42-6a1251181275/IMG_1191.jpg?format=1500w 1500w, https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/0d0c560f-018f-4941-8c42-6a1251181275/IMG_1191.jpg?format=2500w 2500w" loading="lazy" decoding="async" data-loader="sqs">

            
          
        
          
        

        
      
        </figure>
      

    
  


  





  <p class="">The summary of Steve’s talk gives you an idea of how much he covered.</p>





















  
  














































  

    
  
    

      

      
        <figure class="
              sqs-block-image-figure
              intrinsic
            "
        >
          
        
        

        
          
            
          
            
                
                
                
                
                
                
                
                <img data-stretch="false" data-image="https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/19455ff6-23b5-442a-b8b8-cb1ba8d9f4f4/IMG_1192.jpg" data-image-dimensions="2236x1177" data-image-focal-point="0.5,0.5" alt="" data-load="false" elementtiming="system-image-block" src="https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/19455ff6-23b5-442a-b8b8-cb1ba8d9f4f4/IMG_1192.jpg?format=1000w" width="2236" height="1177" sizes="(max-width: 640px) 100vw, (max-width: 767px) 100vw, 100vw" onload="this.classList.add(&quot;loaded&quot;)" srcset="https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/19455ff6-23b5-442a-b8b8-cb1ba8d9f4f4/IMG_1192.jpg?format=100w 100w, https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/19455ff6-23b5-442a-b8b8-cb1ba8d9f4f4/IMG_1192.jpg?format=300w 300w, https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/19455ff6-23b5-442a-b8b8-cb1ba8d9f4f4/IMG_1192.jpg?format=500w 500w, https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/19455ff6-23b5-442a-b8b8-cb1ba8d9f4f4/IMG_1192.jpg?format=750w 750w, https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/19455ff6-23b5-442a-b8b8-cb1ba8d9f4f4/IMG_1192.jpg?format=1000w 1000w, https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/19455ff6-23b5-442a-b8b8-cb1ba8d9f4f4/IMG_1192.jpg?format=1500w 1500w, https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/19455ff6-23b5-442a-b8b8-cb1ba8d9f4f4/IMG_1192.jpg?format=2500w 2500w" loading="lazy" decoding="async" data-loader="sqs">

            
          
        
          
        

        
      
        </figure>]]></description></item><item><title>Fall 2025 7x24 Exchange Keynote - Cassie Kozyrkov - AI First</title><dc:creator>Dave Ohara</dc:creator><pubDate>Mon, 20 Oct 2025 14:21:44 +0000</pubDate><link>https://www.greenm3.com/gdcblog/2025/10/20/fall-2025-7x24-exchange-keynote-cassie-kozyrkov-ai-first</link><guid isPermaLink="false">545d6d3ce4b058ea4273ff99:54656e74e4b00cfe74aec81e:68f6457888609c1e37f5b02d</guid><description><![CDATA[<p class="">Cassie Kozyrkov, https://www.kozyr.com was the opening Keynote for the 7x24 Exchange 2025 Conference.</p><p class="">She discussed the perceptions that exist of AI - Theory, Data, GenAI, Agents</p><p class="">Cassie took the audience through a journey of to think about AI. She interacted with the audience to engage the audience in how to think about AI. </p><p class="">Control vs. Complexity is one of the points that Cassie arrived at how people’s focus on control creates an over simplistic approach when the hardest problems require an embrace of complexity and data. Data enables a super human memory. </p><p class="">Here are some nuggets of what Cassie covered</p><p class="">The #1 Rule of Complexity. Expect the unexpected!</p><p class="">How do you test complexity? Test to trust.</p><p class="">Rule #3 Testing is contextual and needs leader oversight.</p><p class="">AI Reliability Paradox.</p><p class="">Language is the basis of collaboration. literacy is key </p><p class="">Context is Currency</p><p class="">in the end Cassie completed the journey of discussing Theory -&gt; Data -&gt; GenAI -&gt; Agents as a way to think about AI and the range of issues</p>





















  
  














































  

    
  
    

      

      
        <figure class="
              sqs-block-image-figure
              intrinsic
            "
        >
          
        
        

        
          
            
          
            
                
                
                
                
                
                
                
                <img data-stretch="false" data-image="https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/494296b0-de70-4a10-b98c-0a9cf6c9e2d4/IMG_0545.jpg" data-image-dimensions="1622x1373" data-image-focal-point="0.5,0.5" alt="" data-load="false" elementtiming="system-image-block" src="https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/494296b0-de70-4a10-b98c-0a9cf6c9e2d4/IMG_0545.jpg?format=1000w" width="1622" height="1373" sizes="(max-width: 640px) 100vw, (max-width: 767px) 100vw, 100vw" onload="this.classList.add(&quot;loaded&quot;)" srcset="https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/494296b0-de70-4a10-b98c-0a9cf6c9e2d4/IMG_0545.jpg?format=100w 100w, https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/494296b0-de70-4a10-b98c-0a9cf6c9e2d4/IMG_0545.jpg?format=300w 300w, https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/494296b0-de70-4a10-b98c-0a9cf6c9e2d4/IMG_0545.jpg?format=500w 500w, https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/494296b0-de70-4a10-b98c-0a9cf6c9e2d4/IMG_0545.jpg?format=750w 750w, https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/494296b0-de70-4a10-b98c-0a9cf6c9e2d4/IMG_0545.jpg?format=1000w 1000w, https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/494296b0-de70-4a10-b98c-0a9cf6c9e2d4/IMG_0545.jpg?format=1500w 1500w, https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/494296b0-de70-4a10-b98c-0a9cf6c9e2d4/IMG_0545.jpg?format=2500w 2500w" loading="lazy" decoding="async" data-loader="sqs">

            
          
        
          
        

        
      
        </figure>
      

    
  


  













































  

    
  
    

      

      
        <figure class="
              sqs-block-image-figure
              intrinsic
            "
        >
          
        
        

        
          
            
          
            
                
                
                
                
                
                
                
                <img data-stretch="false" data-image="https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/41c4c84b-496b-4359-a451-2201ec2350fe/IMG_0538.jpg" data-image-dimensions="3024x4032" data-image-focal-point="0.5,0.5" alt="" data-load="false" elementtiming="system-image-block" src="https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/41c4c84b-496b-4359-a451-2201ec2350fe/IMG_0538.jpg?format=1000w" width="3024" height="4032" sizes="(max-width: 640px) 100vw, (max-width: 767px) 100vw, 100vw" onload="this.classList.add(&quot;loaded&quot;)" srcset="https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/41c4c84b-496b-4359-a451-2201ec2350fe/IMG_0538.jpg?format=100w 100w, https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/41c4c84b-496b-4359-a451-2201ec2350fe/IMG_0538.jpg?format=300w 300w, https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/41c4c84b-496b-4359-a451-2201ec2350fe/IMG_0538.jpg?format=500w 500w, https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/41c4c84b-496b-4359-a451-2201ec2350fe/IMG_0538.jpg?format=750w 750w, https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/41c4c84b-496b-4359-a451-2201ec2350fe/IMG_0538.jpg?format=1000w 1000w, https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/41c4c84b-496b-4359-a451-2201ec2350fe/IMG_0538.jpg?format=1500w 1500w, https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/41c4c84b-496b-4359-a451-2201ec2350fe/IMG_0538.jpg?format=2500w 2500w" loading="lazy" decoding="async" data-loader="sqs">

            
          
        
          
        

        
      
        </figure>]]></description></item><item><title>Remembering Pat Kennedy, The Start of My Green Data Center journey</title><dc:creator>Dave Ohara</dc:creator><pubDate>Thu, 08 May 2025 23:28:26 +0000</pubDate><link>https://www.greenm3.com/gdcblog/2025/5/8/remembering-pat-kennedy-the-start-of-my-green-data-center-journey</link><guid isPermaLink="false">545d6d3ce4b058ea4273ff99:54656e74e4b00cfe74aec81e:681d3e1bfe992312d25edb76</guid><description><![CDATA[<p class="">I just returned from a visit with a BMS integrator where we spent time discussing PLC controllers and monitoring systems. Unsurprisingly, OSIsoft PI came up frequently—it was a chance for me to geek out over how monitoring systems function, and how OSIsoft PI has long been the default historian software in many industrial and infrastructure settings.</p><p class="">That discussion brought back a memory of Pat Kennedy, the founder of OSIsoft. When I looked him up, I discovered that he had sadly passed away. At the end of this note, I’ve included a beautiful tribute his daughter Kathy wrote about him.</p><p class="">Why am I writing about Pat Kennedy?</p><p class="">Because Pat once asked a simple question that changed the trajectory of my career:</p><p class="">“What is the power consumption of an application in a data center?”</p><p class="">No one knew.</p><p class="">At the time, I had spent more than half of my career working on operating systems—first at Apple, focusing on hardware, analog power supplies, and software integration; then at Microsoft, from Windows 3.1 through to XP and Windows Server. I had enough technical grounding to know what questions to ask—and more importantly, what I didn’t yet know.</p><p class="">That question from Pat led me to discover Power Usage Effectiveness (PUE), and more importantly, the startling realization that the industry lacked meaningful instrumentation for app-level power monitoring. Monitoring power consumption at the application layer simply wasn’t part of standard operating procedure.</p><p class="">Then, while talking to a friend about what I was uncovering—how this lack of visibility directly affected the environmental performance of data centers—he said: “That’s a great topic. You should start blogging about it.”</p><p class="">And that’s how my Green Data Center journey began:</p><p class="">With Pat Kennedy asking a smart question that no one could answer.</p><p class=""><em>Here’s what his daughter Kathy wrote about him:</em></p><p class="">Here is what his daughter Kathy wrote about her dad.</p><ul data-rte-list="default"><li><p class="">Dr. J. Patrick Kennedy of San Leandro, CA | 1943 – 2023 | Obituary <br> <br>J. Patrick Kennedy, 79, of San Leandro, CA passed away on April 9, 2023. Pat lost his fight with interstitial lung disease after ten months.&nbsp; <br> <br>He was born on June 4, 1943, in Portland, Oregon, to Ted and Grace Kennedy and was raised in Lawrence, Kansas, where his parents met and married. Pat was raised on a farm south of Lawrence along with his brothers Ted and David.<br> <br>Pat had a strong sense of right and wrong and stood up for what he believed in. Although this attitude had a positive effect on his life, there were moments that it caused problems.&nbsp;Pat actually failed to get a high school diploma.&nbsp;A friend of his was suspended for wearing shorts and in protest, Pat came to school the next day in shorts and was kicked out. This setback was minor, as he was already a sophomore at the University of Kansas at the time.&nbsp;Pat went on to earn a BS and PhD in chemical engineering, and was a Jayhawks fan for life.<br> <br>Along the way, he met and married the love of his life, Patricia. They met in Tulsa, Oklahoma, when Patty was working as a nurse.&nbsp;<br> <br>Over the next nine years, Pat and Patty had three children and their small family moved several times.. They finally landed in San Leandro, CA.&nbsp;At age 37, he started Oil Systems Inc. (later known as OSIsoft). The firm evolved into a software company that developed monitoring products for heavy industry. He ran the business for 40 years.&nbsp;<br><br>He was a dedicated husband, father and grandfather and continually extended himself for those that he loved.&nbsp;Pat enjoyed a life of family events and activities and playing the ukulele.&nbsp;In the last few years, Pat focused his philanthropy on food insecurity in Alameda County. <br>&nbsp;<br>Pat was a giant in his industry. His life’s work will continue to grow, and among other things, we will miss his unique sense of humor.&nbsp;Pat is survived by his wife of 56 years, Patty, three children, their spouses, grandchildren and his brother in San Diego. <br></p></li><li><p data-rte-preserve-empty="true" class=""></p></li></ul>]]></description></item><item><title>George Lucas created Yoda's speech as a way to voice wisdom. Wisdom of Supply Chain Management</title><dc:creator>Dave Ohara</dc:creator><pubDate>Mon, 28 Apr 2025 22:21:22 +0000</pubDate><link>https://www.greenm3.com/gdcblog/2025/4/28/go-backwards-to-see-truth-george-lucas-created-yodas-speech-this-way-as-a-voice-of-wisdom</link><guid isPermaLink="false">545d6d3ce4b058ea4273ff99:54656e74e4b00cfe74aec81e:680fce3b00efc25469606174</guid><description><![CDATA[<p class="">May the 4th is coming up and there are lots of Star Wars stuff out there. One point being made is how George Lucas created Yoda’s speech to get people to <a href="https://www.rollingstone.com/tv-movies/tv-movie-news/yoda-speak-george-lucas-explains-1235326334/">listen</a> to his words.</p>





















  
  














































  

    
  
    

      

      
        <figure class="
              sqs-block-image-figure
              intrinsic
            "
        >
          
        
        

        
          
            
          
            
                
                
                
                
                
                
                
                <img data-stretch="false" data-image="https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/513fa413-255d-4451-910d-807046a1a1aa/yoda.jpg" data-image-dimensions="802x389" data-image-focal-point="0.5,0.5" alt="" data-load="false" elementtiming="system-image-block" src="https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/513fa413-255d-4451-910d-807046a1a1aa/yoda.jpg?format=1000w" width="802" height="389" sizes="(max-width: 640px) 100vw, (max-width: 767px) 100vw, 100vw" onload="this.classList.add(&quot;loaded&quot;)" srcset="https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/513fa413-255d-4451-910d-807046a1a1aa/yoda.jpg?format=100w 100w, https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/513fa413-255d-4451-910d-807046a1a1aa/yoda.jpg?format=300w 300w, https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/513fa413-255d-4451-910d-807046a1a1aa/yoda.jpg?format=500w 500w, https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/513fa413-255d-4451-910d-807046a1a1aa/yoda.jpg?format=750w 750w, https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/513fa413-255d-4451-910d-807046a1a1aa/yoda.jpg?format=1000w 1000w, https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/513fa413-255d-4451-910d-807046a1a1aa/yoda.jpg?format=1500w 1500w, https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/513fa413-255d-4451-910d-807046a1a1aa/yoda.jpg?format=2500w 2500w" loading="lazy" decoding="async" data-loader="sqs">

            
          
        
          
        

        
      
        </figure>
      

    
  


  





  <p class="">What George Lucas does not explain is why it works. Yes it is different. It is different because it exposes the truth.<br></p><p class="">Let’s try this on a common used term “Supply Chain Management.” Something said often and people immediately have an image like this.</p>





















  
  














































  

    
  
    

      

      
        <figure class="
              sqs-block-image-figure
              intrinsic
            "
        >
          
        
        

        
          
            
          
            
                
                
                
                
                
                
                
                <img data-stretch="false" data-image="https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/7c294934-1546-4fc2-9836-576d325fa594/SCM.jpg" data-image-dimensions="1200x800" data-image-focal-point="0.5,0.5" alt="" data-load="false" elementtiming="system-image-block" src="https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/7c294934-1546-4fc2-9836-576d325fa594/SCM.jpg?format=1000w" width="1200" height="800" sizes="(max-width: 640px) 100vw, (max-width: 767px) 100vw, 100vw" onload="this.classList.add(&quot;loaded&quot;)" srcset="https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/7c294934-1546-4fc2-9836-576d325fa594/SCM.jpg?format=100w 100w, https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/7c294934-1546-4fc2-9836-576d325fa594/SCM.jpg?format=300w 300w, https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/7c294934-1546-4fc2-9836-576d325fa594/SCM.jpg?format=500w 500w, https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/7c294934-1546-4fc2-9836-576d325fa594/SCM.jpg?format=750w 750w, https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/7c294934-1546-4fc2-9836-576d325fa594/SCM.jpg?format=1000w 1000w, https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/7c294934-1546-4fc2-9836-576d325fa594/SCM.jpg?format=1500w 1500w, https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/7c294934-1546-4fc2-9836-576d325fa594/SCM.jpg?format=2500w 2500w" loading="lazy" decoding="async" data-loader="sqs">

            
          
        
          
        

        
      
        </figure>
      

    
  


  





  <p class="">Lets change the words to be Management Chain of Supply which implies there is a management hierarchy with a chain control over the supply. The weak leak in the Management of the Chain impacts the Supply. That is the truth of Supply Chain Management. </p><p class="">This method works as it is Isomophism.</p><h1><strong>Management Chain of Supply — Revealing the True Structure</strong></h1><p class=""><strong>Supply Chain Management</strong> sounds like a system optimizing the movement of goods and services.</p><p class="">But <strong>reverse the words</strong> and you reveal its hidden structure:</p><p class=""><strong>Management Chain of Supply.</strong></p><ul data-rte-list="default"><li><p class="">It is <strong>not</strong> a chain of supply first.</p></li><li><p class="">It is a <strong>management hierarchy first</strong>, and <strong>supply</strong> depends on that hierarchy working correctly.</p></li><li><p class="">It is a <strong>chain of control</strong>, not a chain of flow.</p></li><li><p class="">Every link in the <strong>management chain</strong> carries risk:</p><ul data-rte-list="default"><li><p class="">A weak link in <strong>management</strong> creates a break in <strong>supply</strong>.</p></li><li><p class="">A rigid chain means brittle responses to change.</p></li></ul><p data-rte-preserve-empty="true" class=""></p></li></ul><h1><strong>Key Understanding:</strong></h1><blockquote><p class=""><strong>Supply failures are often management failures — not supply failures.</strong></p></blockquote>]]></description></item><item><title>Mathematics of Green Sustainable Data Center</title><dc:creator>Dave Ohara</dc:creator><pubDate>Wed, 16 Apr 2025 14:47:02 +0000</pubDate><link>https://www.greenm3.com/gdcblog/2025/4/16/mathematics-of-green-sustainable-data-center</link><guid isPermaLink="false">545d6d3ce4b058ea4273ff99:54656e74e4b00cfe74aec81e:67ffc2e63f7b987f1543c59e</guid><description><![CDATA[<p class=""><strong><em>Mathematics of Green: The Science of Sustainable Patterns</em></strong></p><p class=""><em>When people talk about green or sustainable data centers, they usually bring up metrics like PUE, renewable energy sourcing, or LEED certification. These check-the-box approaches are often more about greenwashing than true sustainability—designed to appease watchdogs like Greenpeace and move on.</em></p><p class=""><em>But a list is not proof.</em></p><p class=""><em>Being truly green and sustainable requires more than marketing. It requires math.</em></p><p class=""><em>And math, unlike PR, demands that you show your work.</em></p><p class=""><em>This is where most efforts collapse.</em></p><p class=""><em>Because mathematics will shut you down if you can’t back up your claims.</em></p><p class=""><em>So let’s begin—not with assumptions, but with structure.</em></p><p data-rte-preserve-empty="true" class=""></p><p class=""><strong><em>Let’s Start With: What Is Mathematics?</em></strong></p><p class=""><em>According to Keith Devlin, mathematics is “the science of patterns.”</em></p><p class=""><em>That definition changed everything for me.</em></p><p class=""><em>Mathematics isn’t just numbers or equations—it’s how we see, understand, and design patterns that work.</em></p><p class=""><em>I almost majored in math, but chose Industrial Engineering and Operations Research at UC Berkeley because it let me combine math with my passions for finance and systems design. Fast forward to today—after diving deep into graduate-level abstract math—I now see how mathematical structures make it easier to build intelligent systems with AI.</em></p><p class=""><em>Because AI is just pattern recognition.</em></p><p class=""><em>And math is the language of patterns.</em></p><p data-rte-preserve-empty="true" class=""></p><p class=""><strong><em>The Mathematician Who Opened My Eyes: Keith Devlin</em></strong></p><p class=""><em>Keith Devlin’s book, Mathematics: The Science of Patterns, helped me see how beauty, function, and sustainability all emerge from one thing: structure.</em></p><p data-rte-preserve-empty="true" class=""></p><p class=""><a href="https://en.wikipedia.org/wiki/Keith_Devlin"><span><em>Keith Devlin Wikipedia</em></span></a></p><p class=""><a href="https://www.amazon.com/Mathematics-Science-Patterns-Search-Universe/dp/0805073442"><span><em>The Science of Patterns – Book</em></span></a></p><p class=""><em>This led me to the mathematics of symmetry, one of the most important ideas in science and sustainability.</em></p><p data-rte-preserve-empty="true" class=""></p><p class=""><strong><em>A Quick History of Symmetry in Math</em></strong></p><ul data-rte-list="default"><li><p class=""><em>Évariste Galois, at just 20 years old, invented the mathematics of symmetry before dying in a duel in 1832. His work laid the foundation for group theory—the math behind conservation, structure, and balance.<br></em><a href="https://en.wikipedia.org/wiki/%C3%89variste_Galois"><span><em>Évariste Galois – Wikipedia</em></span></a></p></li><li><p class=""><em>Emmy Noether built on Galois’s ideas. Her theorems link symmetries to conservation laws in physics—laws that are critical for modeling green systems.<br></em><a href="https://en.wikipedia.org/wiki/Emmy_Noether"><span><em>Emmy Noether – Wikipedia</em></span></a></p></li></ul><p class=""><em>Even Einstein acknowledged her genius:</em></p><p class=""><em>“Fräulein Noether was the most significant creative mathematical genius thus far produced since the higher education of women began.”</em></p><p data-rte-preserve-empty="true" class=""></p><p class=""><strong><em>Let’s Look at 4 Key Areas of Green Mathematics</em></strong></p><p data-rte-preserve-empty="true" class=""></p><p class=""><em>These are just four examples from the broader framework I use to model green, sustainable data centers. Each is a pattern language that proves itself structurally.</em></p><p class=""><strong><em>1. Patterns of Conservation (Symmetry)</em></strong></p><ul data-rte-list="default"><li><p class=""><em>Devlin’s View: Patterns that remain unchanged under transformation.</em></p></li><li><p class=""><em>Sustainability View: Energy, matter, and information must flow in ways that conserve value.</em></p></li><li><p class=""><em>Math: Group Theory, Conservation Laws, Noether’s Theorem.<br>Quote: “A green system is one that preserves the deepest patterns of nature.”</em></p></li></ul><p class=""><strong><em>2. Patterns of Relationship (Category Theory)</em></strong></p><ul data-rte-list="default"><li><p class=""><em>Devlin’s View: Patterns in how things relate, not just what they are.</em></p></li><li><p class=""><em>Sustainability View: What matters isn’t just the components, but their interdependencies—between water, energy, materials, and human behavior.</em></p></li><li><p class=""><em>Math: Category Theory—objects and morphisms forming webs of structure.<br>Quote: “To sustain is to compose well over time. Mathematics proves how.”</em></p></li></ul><p class=""><strong><em>3. Patterns of Connection (Topology)</em></strong></p><ul data-rte-list="default"><li><p class=""><em>Devlin’s View: Patterns of shape and connectivity that persist through deformation.</em></p></li><li><p class=""><em>Sustainability View: Strong systems stay connected under pressure—like root networks, rivers, or resilient infrastructure.</em></p></li><li><p class=""><em>Math: Topology, Continuity, Homotopy Theory.<br>Quote: “Sustainability is a topology of life—connected, resilient, never brittle.”</em></p></li></ul><p class=""><strong><em>4. Patterns of Flow (Systems Theory)</em></strong></p><ul data-rte-list="default"><li><p class=""><em>Devlin’s View: Patterns that evolve with feedback and constraints.</em></p></li><li><p class=""><em>Sustainability View: Water cycles, carbon flows, nutrient loops—must remain adaptive.</em></p></li><li><p class=""><em>Math: Dynamical Systems, Control Theory.<br>Quote: “Green design is a dance of flows, guided by pattern memory.”</em></p></li></ul><p class=""><strong><em>Would You Like to See the Diagram?</em></strong></p><p class=""><em>Below is a visual diagram that connects these four mathematical lenses into a model of green systems. There are many more mathematical areas that fit in so there are more than four in the diagram. Each node reflects the structural integrity of green design—the kind you can prove, not just promote.</em></p><p data-rte-preserve-empty="true" class=""></p>





















  
  






  <p data-rte-preserve-empty="true" class=""></p>





















  
  














































  

    
  
    

      

      
        <figure class="
              sqs-block-image-figure
              intrinsic
            "
        >
          
        
        

        
          
            
          
            
                
                
                
                
                
                
                
                <img data-stretch="false" data-image="https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/9cb1cdc0-be4d-46a2-8129-14c1d6877ecc/IMG_0998.png" data-image-dimensions="3179x2380" data-image-focal-point="0.5,0.5" alt="" data-load="false" elementtiming="system-image-block" src="https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/9cb1cdc0-be4d-46a2-8129-14c1d6877ecc/IMG_0998.png?format=1000w" width="3179" height="2380" sizes="(max-width: 640px) 100vw, (max-width: 767px) 100vw, 100vw" onload="this.classList.add(&quot;loaded&quot;)" srcset="https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/9cb1cdc0-be4d-46a2-8129-14c1d6877ecc/IMG_0998.png?format=100w 100w, https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/9cb1cdc0-be4d-46a2-8129-14c1d6877ecc/IMG_0998.png?format=300w 300w, https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/9cb1cdc0-be4d-46a2-8129-14c1d6877ecc/IMG_0998.png?format=500w 500w, https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/9cb1cdc0-be4d-46a2-8129-14c1d6877ecc/IMG_0998.png?format=750w 750w, https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/9cb1cdc0-be4d-46a2-8129-14c1d6877ecc/IMG_0998.png?format=1000w 1000w, https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/9cb1cdc0-be4d-46a2-8129-14c1d6877ecc/IMG_0998.png?format=1500w 1500w, https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/9cb1cdc0-be4d-46a2-8129-14c1d6877ecc/IMG_0998.png?format=2500w 2500w" loading="lazy" decoding="async" data-loader="sqs">

            
          
        
          
        

        
      
        </figure>]]></description></item><item><title>What is the Structure of Green? A question no one asks</title><dc:creator>Dave Ohara</dc:creator><pubDate>Mon, 31 Mar 2025 14:11:39 +0000</pubDate><link>https://www.greenm3.com/gdcblog/2025/3/31/what-is-the-structure-of-green-a-question-no-one-asks</link><guid isPermaLink="false">545d6d3ce4b058ea4273ff99:54656e74e4b00cfe74aec81e:67eaa29b069e744947cde885</guid><description><![CDATA[<p class="">What is the Structure of Green? In green data centers the approach by most is to be green is a checklist of things. Low PUE, % of renewable energy, LEEDS rating of building. </p><p class="">Think about this. Most people think structure is simply a list. </p><p class="">ChatGPT helped me with the following. This is more a structure than a list.</p><p data-rte-preserve-empty="true" class=""></p><p class=""><em>What is the Structure of Green?</em></p><p data-rte-preserve-empty="true" class=""></p><p class=""><em>“Green” is often used as a marketing wrapper—renewable, sustainable, low emissions—but those are outcomes or labels, not structure.</em></p><p data-rte-preserve-empty="true" class=""></p><p class=""><em>To ask “what is the structure of green?” is to treat green as a composition, not a color. It’s a system that holds.</em></p><p data-rte-preserve-empty="true" class=""></p><p class=""><em>1. Green as a Stable Morphism</em></p><p data-rte-preserve-empty="true" class=""></p><p class=""><em>Green isn’t just a state—it’s a transformation that preserves structure while aligning with nature’s deeper symmetries.</em></p><p class=""><em>• In category theory terms, green is a morphism that transforms systems into harmony with their environments, while conserving energy, material, and entropy.</em></p><p class=""><em>• It’s not just less bad—it’s structurally regenerative.</em></p><p data-rte-preserve-empty="true" class=""></p><p class=""><em>2. Symmetry with Nature</em></p><p data-rte-preserve-empty="true" class=""></p><p class=""><em>Nature is the ultimate reference architecture for green.</em></p><p class=""><em>• In ecosystems, outputs are inputs, cycles close, waste becomes food.</em></p><p class=""><em>• So structurally, “green” systems are those that map into natural cycles through reversible, efficient, and synergistic transformations.</em></p><p data-rte-preserve-empty="true" class=""></p><p class=""><em>3. Fractal Design</em></p><p data-rte-preserve-empty="true" class=""></p><p class=""><em>Green is scale-free. It works at all levels—from the leaf to the forest, from a microgrid to a hyperscale data center.</em></p><p class=""><em>• If your solution only works at one scale, it’s not structurally green.</em></p><p class=""><em>• Green follows fractal principles—what works locally echoes globally.</em></p><p data-rte-preserve-empty="true" class=""></p><p class=""><em>4. Compositional Clarity</em></p><p data-rte-preserve-empty="true" class=""></p><p class=""><em>A green system should have structural clarity—you can see how the parts fit together, and they compose into something better.</em></p><p class=""><em>• Hidden waste, opacity, and brittle dependencies are anti-green.</em></p><p class=""><em>• Compositional integrity = structural green.</em></p><p data-rte-preserve-empty="true" class=""></p><p class=""><em>5. Truthful Feedback Loops</em></p><p data-rte-preserve-empty="true" class=""></p><p class=""><em>Green structures sense, respond, and adapt.</em></p><p class=""><em>• If you can’t feel your impact, you can’t be green.</em></p><p class=""><em>• Structural green includes feedback systems that make energy, carbon, materials, and time legible and actionable.</em></p><p data-rte-preserve-empty="true" class=""></p>]]></description></item><item><title>What is a Green Data Center?</title><dc:creator>Dave Ohara</dc:creator><pubDate>Mon, 01 Apr 2024 23:25:40 +0000</pubDate><link>https://www.greenm3.com/gdcblog/2024/4/1/what-is-a-green-data-center</link><guid isPermaLink="false">545d6d3ce4b058ea4273ff99:54656e74e4b00cfe74aec81e:660b42751876c96c4fc87fd3</guid><description><![CDATA[<p class="">The topic of Green Data Center is something I have written for on a long time. Then I tired of it. It is time to start writing again after a long break.</p><p class="">What does it mean to be Green? Green is something that grows and develops. It is sustainable.</p><p class="">Many focus on a specific. A low PUE. % of renewable energy. These can help to make a solution more sustainable.</p><p class="">Thanks to Greenpeace and many other media the focus on being Green is a checklist for a data center.</p><p class="">I wrote the above. Below is what Generative AI wrote.</p><p class=""><strong>Green Data Center Solutions</strong><br>In recent years, the concept of green data centers has gained significant traction in the tech industry. As organizations strive to reduce their carbon footprint and operate more sustainably, the importance of environmentally-friendly practices within data centers cannot be overstated.<br>Green data centers aim to minimize energy consumption and maximize efficiency through various strategies. These include the use of energy-efficient hardware, such as servers and cooling systems, as well as the implementation of innovative cooling techniques like liquid cooling and free air cooling. Additionally, renewable energy sources such as solar and wind power are increasingly being integrated into data center operations to further reduce reliance on fossil fuels.<br>By optimizing energy usage and investing in sustainable technologies, green data centers not only benefit the environment but also help organizations save on operational costs in the long run. Furthermore, these initiatives contribute to a positive corporate image, showcasing a commitment to environmental responsibility and long-term sustainability.<br>As the demand for data continues to grow exponentially, the implementation of green data center solutions will play a crucial role in building a more sustainable digital infrastructure for the future. Organizations that embrace these practices are not only investing in the planet but also paving the way for a more efficient and environmentally conscious industry.<br>Implementing green data center solutions is a step in the right direction towards creating a more sustainable future for the tech industry and beyond.</p>]]></description></item><item><title>Make Something Wonderful - Steve Jobs Book</title><dc:creator>Dave Ohara</dc:creator><pubDate>Wed, 12 Apr 2023 03:00:15 +0000</pubDate><link>https://www.greenm3.com/gdcblog/2023/4/11/make-something-wonderful-steve-jobs-book</link><guid isPermaLink="false">545d6d3ce4b058ea4273ff99:54656e74e4b00cfe74aec81e:64361ce573394263f303d4b1</guid><description><![CDATA[<p class="">Today, April 11, 2023 Steve Jobs archive released <a href="https://book.stevejobsarchive.com">Make Something Wonderful</a>.</p><blockquote><p class="">There’s lots of ways to be, as a person. And some people express their deep appreciation in different ways. But one of the ways that I&nbsp;believe people express their appreciation to the rest of humanity is to make something wonderful and put it out&nbsp;there.</p><p class="">And you never meet the people. You never shake their hands. You never hear their story or tell yours. But somehow, in the act of making something with a great deal of care and love, something’s transmitted there. And it’s a way of expressing to the rest of our species our deep appreciation. So we need to be true to who we are and remember what’s really important to&nbsp;us.</p><p class="">—Steve,&nbsp;2007</p></blockquote><p class="">This is a different way to see what problems to solve. Spending time striving to make something wonderful can give your life meaning. Try it and you’ll be hooked for life.</p>]]></description></item><item><title>Google's Green Data Center approach - one size does not fit all</title><dc:creator>Dave Ohara</dc:creator><pubDate>Wed, 01 Mar 2023 14:52:15 +0000</pubDate><link>https://www.greenm3.com/gdcblog/2023/3/1/googles-green-data-center-approach-one-size-does-not-fit-all</link><guid isPermaLink="false">545d6d3ce4b058ea4273ff99:54656e74e4b00cfe74aec81e:63ff6434100db43e70300ea9</guid><description><![CDATA[<p class="">Urs Hölzle posted back in Nov 2022 on Google’s Green Data Center efforts. I have not written in a long time and that will change and it is feels write that one of the posts to write about is Google’s Green Data Center efforts. Many of my good friends are at Google or have worked there. I find it with great irony that I know and chat with many more Google data center employees than Microsoft even though I worked at Microsoft for 14 years and still live in Redmond. But when it comes to discussing the green data center topic I have no problem having conversations with Google employees including Urs.</p><p class="">Two things that jumps out from reading Urs <a href="https://blog.google/outreach-initiatives/sustainability/our-commitment-to-climate-conscious-data-center-cooling/">post</a>. Are the focus on water as part of Google’s climate-conscious data center cooling. Normally people only focus on electricity and cooling for a green data center, and that is where Google is different in that they have had a water strategy from their early efforts. </p><p class="">The other point is </p>





















  
  



<figure class="block-animation-none"
>
  <blockquote data-animation-role="quote"
  >
    <span>“</span>The best approach depends on local factors — there is no one-size-fits-all solution.<span>”</span>
  </blockquote>
  <figcaption class="source">&mdash; Urs Hölzle</figcaption>
  
  
</figure>










































  

    
  
    

      

      
        <figure class="
              sqs-block-image-figure
              intrinsic
            "
        >
          
        
        

        
          
            
          
            
                
                
                
                
                
                
                
                <img data-stretch="false" data-image="https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/6cb1de4c-cf75-4e75-9287-f4a684422201/google+dc1.jpg" data-image-dimensions="1870x1364" data-image-focal-point="0.5,0.5" alt="" data-load="false" elementtiming="system-image-block" src="https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/6cb1de4c-cf75-4e75-9287-f4a684422201/google+dc1.jpg?format=1000w" width="1870" height="1364" sizes="(max-width: 640px) 100vw, (max-width: 767px) 100vw, 100vw" onload="this.classList.add(&quot;loaded&quot;)" srcset="https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/6cb1de4c-cf75-4e75-9287-f4a684422201/google+dc1.jpg?format=100w 100w, https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/6cb1de4c-cf75-4e75-9287-f4a684422201/google+dc1.jpg?format=300w 300w, https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/6cb1de4c-cf75-4e75-9287-f4a684422201/google+dc1.jpg?format=500w 500w, https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/6cb1de4c-cf75-4e75-9287-f4a684422201/google+dc1.jpg?format=750w 750w, https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/6cb1de4c-cf75-4e75-9287-f4a684422201/google+dc1.jpg?format=1000w 1000w, https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/6cb1de4c-cf75-4e75-9287-f4a684422201/google+dc1.jpg?format=1500w 1500w, https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/6cb1de4c-cf75-4e75-9287-f4a684422201/google+dc1.jpg?format=2500w 2500w" loading="lazy" decoding="async" data-loader="sqs">

            
          
        
          
        

        
      
        </figure>
      

    
  


  





  <p class=""><br></p><p class=""><br></p>]]></description></item><item><title>7x24Exchange Keynote Reality vs Myths of Data Centers</title><dc:creator>Dave Ohara</dc:creator><pubDate>Wed, 26 Oct 2022 14:24:45 +0000</pubDate><link>https://www.greenm3.com/gdcblog/2022/10/26/z7fftdky78i26i2an1ap65ivvn2aor</link><guid isPermaLink="false">545d6d3ce4b058ea4273ff99:54656e74e4b00cfe74aec81e:63593de8890a0774ad6e98c8</guid><description><![CDATA[<p class="">Bill Kleyman (Switch) and Mark Seymour (Cadence) gave the close keynote at 7x24 Exchange covering a range of myths that exist  which shapes people’s perceptions.</p>





















  
  














































  

    
  
    

      

      
        <figure class="
              sqs-block-image-figure
              intrinsic
            "
        >
          
        
        

        
          
            
          
            
                
                
                
                
                
                
                
                <img data-stretch="false" data-image="https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/1666793154511-M2O3HIS08UXFB24O0CSU/9066F530-AB1C-41D8-A68C-EF9E72084442.jpeg" data-image-dimensions="2341x1645" data-image-focal-point="0.5,0.5" alt="" data-load="false" elementtiming="system-image-block" src="https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/1666793154511-M2O3HIS08UXFB24O0CSU/9066F530-AB1C-41D8-A68C-EF9E72084442.jpeg?format=1000w" width="2341" height="1645" sizes="(max-width: 640px) 100vw, (max-width: 767px) 100vw, 100vw" onload="this.classList.add(&quot;loaded&quot;)" srcset="https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/1666793154511-M2O3HIS08UXFB24O0CSU/9066F530-AB1C-41D8-A68C-EF9E72084442.jpeg?format=100w 100w, https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/1666793154511-M2O3HIS08UXFB24O0CSU/9066F530-AB1C-41D8-A68C-EF9E72084442.jpeg?format=300w 300w, https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/1666793154511-M2O3HIS08UXFB24O0CSU/9066F530-AB1C-41D8-A68C-EF9E72084442.jpeg?format=500w 500w, https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/1666793154511-M2O3HIS08UXFB24O0CSU/9066F530-AB1C-41D8-A68C-EF9E72084442.jpeg?format=750w 750w, https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/1666793154511-M2O3HIS08UXFB24O0CSU/9066F530-AB1C-41D8-A68C-EF9E72084442.jpeg?format=1000w 1000w, https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/1666793154511-M2O3HIS08UXFB24O0CSU/9066F530-AB1C-41D8-A68C-EF9E72084442.jpeg?format=1500w 1500w, https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/1666793154511-M2O3HIS08UXFB24O0CSU/9066F530-AB1C-41D8-A68C-EF9E72084442.jpeg?format=2500w 2500w" loading="lazy" decoding="async" data-loader="sqs">

            
          
        
          
        

        
      
        </figure>
      

    
  


  





  <p class="">An example of the myth is this slide. What drives this type of news is it creates much more traffic than the reality.</p><p class="">The presentation continued on to cover the reality to contrast the myths. The data that is used to make data centers work. Be energy efficient, use less water. Sometimes the way media write about data centers it is like the data centers of 20 years ago that had little concern about cooling efficiency. PUE did not exist. </p>





















  
  














































  

    
  
    

      

      
        <figure class="
              sqs-block-image-figure
              intrinsic
            "
        >
          
        
        

        
          
            
          
            
                
                
                
                
                
                
                
                <img data-stretch="false" data-image="https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/1666793254634-J7Y8E7RSWWHOHLN9PNW8/7B95C58A-5E61-4A6A-83A9-0C5233504A81.jpeg" data-image-dimensions="2300x1269" data-image-focal-point="0.5,0.5" alt="" data-load="false" elementtiming="system-image-block" src="https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/1666793254634-J7Y8E7RSWWHOHLN9PNW8/7B95C58A-5E61-4A6A-83A9-0C5233504A81.jpeg?format=1000w" width="2300" height="1269" sizes="(max-width: 640px) 100vw, (max-width: 767px) 100vw, 100vw" onload="this.classList.add(&quot;loaded&quot;)" srcset="https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/1666793254634-J7Y8E7RSWWHOHLN9PNW8/7B95C58A-5E61-4A6A-83A9-0C5233504A81.jpeg?format=100w 100w, https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/1666793254634-J7Y8E7RSWWHOHLN9PNW8/7B95C58A-5E61-4A6A-83A9-0C5233504A81.jpeg?format=300w 300w, https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/1666793254634-J7Y8E7RSWWHOHLN9PNW8/7B95C58A-5E61-4A6A-83A9-0C5233504A81.jpeg?format=500w 500w, https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/1666793254634-J7Y8E7RSWWHOHLN9PNW8/7B95C58A-5E61-4A6A-83A9-0C5233504A81.jpeg?format=750w 750w, https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/1666793254634-J7Y8E7RSWWHOHLN9PNW8/7B95C58A-5E61-4A6A-83A9-0C5233504A81.jpeg?format=1000w 1000w, https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/1666793254634-J7Y8E7RSWWHOHLN9PNW8/7B95C58A-5E61-4A6A-83A9-0C5233504A81.jpeg?format=1500w 1500w, https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/1666793254634-J7Y8E7RSWWHOHLN9PNW8/7B95C58A-5E61-4A6A-83A9-0C5233504A81.jpeg?format=2500w 2500w" loading="lazy" decoding="async" data-loader="sqs">

            
          
        
          
        

        
      
        </figure>
      

    
  


  





  <p class="">The topics covered are in this slide. </p><p class="">The 7x24 Exchange hit a record 992 attendees and many are still here on the last day at 8:45a in the morning because a presentation by Mark and Bill can only be absorbed by sitting at the conference.</p>





















  
  














































  

    
  
    

      

      
        <figure class="
              sqs-block-image-figure
              intrinsic
            "
        >
          
        
        

        
          
            
          
            
                
                
                
                
                
                
                
                <img data-stretch="false" data-image="https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/1666794038462-M58YZCHE8PSM2CDSKVDX/078F3541-106C-4D3B-8F3B-3E22872F96BF.jpeg" data-image-dimensions="2274x1287" data-image-focal-point="0.5,0.5" alt="" data-load="false" elementtiming="system-image-block" src="https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/1666794038462-M58YZCHE8PSM2CDSKVDX/078F3541-106C-4D3B-8F3B-3E22872F96BF.jpeg?format=1000w" width="2274" height="1287" sizes="(max-width: 640px) 100vw, (max-width: 767px) 100vw, 100vw" onload="this.classList.add(&quot;loaded&quot;)" srcset="https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/1666794038462-M58YZCHE8PSM2CDSKVDX/078F3541-106C-4D3B-8F3B-3E22872F96BF.jpeg?format=100w 100w, https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/1666794038462-M58YZCHE8PSM2CDSKVDX/078F3541-106C-4D3B-8F3B-3E22872F96BF.jpeg?format=300w 300w, https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/1666794038462-M58YZCHE8PSM2CDSKVDX/078F3541-106C-4D3B-8F3B-3E22872F96BF.jpeg?format=500w 500w, https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/1666794038462-M58YZCHE8PSM2CDSKVDX/078F3541-106C-4D3B-8F3B-3E22872F96BF.jpeg?format=750w 750w, https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/1666794038462-M58YZCHE8PSM2CDSKVDX/078F3541-106C-4D3B-8F3B-3E22872F96BF.jpeg?format=1000w 1000w, https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/1666794038462-M58YZCHE8PSM2CDSKVDX/078F3541-106C-4D3B-8F3B-3E22872F96BF.jpeg?format=1500w 1500w, https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/1666794038462-M58YZCHE8PSM2CDSKVDX/078F3541-106C-4D3B-8F3B-3E22872F96BF.jpeg?format=2500w 2500w" loading="lazy" decoding="async" data-loader="sqs">

            
          
        
          
        

        
      
        </figure>]]></description></item><item><title>Meta shares its Water Efficient Data Centers practices at 7x24 Exchange</title><dc:creator>Dave Ohara</dc:creator><pubDate>Tue, 25 Oct 2022 19:38:47 +0000</pubDate><link>https://www.greenm3.com/gdcblog/2022/10/25/xo3ikb565wul4gbbv5igx5kyov8fc8</link><guid isPermaLink="false">545d6d3ce4b058ea4273ff99:54656e74e4b00cfe74aec81e:6358368ee6708456f8e1dc27</guid><description><![CDATA[<p class="">Meta has a team discussing its water efficient data center journey from 2018 to now. Meta has a goal of being water positive by 2030. The presenters are Bharat Gopal, James Monahan, and Krishna Somayajula. The session is nicely attended which is great to see the interest in water savings.</p><p class="">There were 33 slides in the presentation with lots of graphs and diagrams. Covering five different areas.</p><p class="">Given Meta’s openness much of this information is available on their web site. https://sustainability.fb.com/water/</p>





















  
  














































  

    
  
    

      

      
        <figure class="
              sqs-block-image-figure
              intrinsic
            "
        >
          
        
        

        
          
            
          
            
                
                
                
                
                
                
                
                <img data-stretch="false" data-image="https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/1666725966404-A637BDPTTWZX0WLND3M4/F92BCD68-44C8-4C1F-92E0-164CC7898DB4.jpeg" data-image-dimensions="2213x1847" data-image-focal-point="0.5,0.5" alt="" data-load="false" elementtiming="system-image-block" src="https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/1666725966404-A637BDPTTWZX0WLND3M4/F92BCD68-44C8-4C1F-92E0-164CC7898DB4.jpeg?format=1000w" width="2213" height="1847" sizes="(max-width: 640px) 100vw, (max-width: 767px) 100vw, 100vw" onload="this.classList.add(&quot;loaded&quot;)" srcset="https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/1666725966404-A637BDPTTWZX0WLND3M4/F92BCD68-44C8-4C1F-92E0-164CC7898DB4.jpeg?format=100w 100w, https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/1666725966404-A637BDPTTWZX0WLND3M4/F92BCD68-44C8-4C1F-92E0-164CC7898DB4.jpeg?format=300w 300w, https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/1666725966404-A637BDPTTWZX0WLND3M4/F92BCD68-44C8-4C1F-92E0-164CC7898DB4.jpeg?format=500w 500w, https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/1666725966404-A637BDPTTWZX0WLND3M4/F92BCD68-44C8-4C1F-92E0-164CC7898DB4.jpeg?format=750w 750w, https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/1666725966404-A637BDPTTWZX0WLND3M4/F92BCD68-44C8-4C1F-92E0-164CC7898DB4.jpeg?format=1000w 1000w, https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/1666725966404-A637BDPTTWZX0WLND3M4/F92BCD68-44C8-4C1F-92E0-164CC7898DB4.jpeg?format=1500w 1500w, https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/1666725966404-A637BDPTTWZX0WLND3M4/F92BCD68-44C8-4C1F-92E0-164CC7898DB4.jpeg?format=2500w 2500w" loading="lazy" decoding="async" data-loader="sqs">

            
          
        
          
        

        
      
        </figure>
      

    
  


  













































  

    
  
    

      

      
        <figure class="
              sqs-block-image-figure
              intrinsic
            "
        >
          
        
        

        
          
            
          
            
                
                
                
                
                
                
                
                <img data-stretch="false" data-image="https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/1666726215379-1F2OMC21H4FS5HFST86O/9E3FD93C-6F1C-4212-A6DA-6463CA199EDA.jpeg" data-image-dimensions="2317x1287" data-image-focal-point="0.5,0.5" alt="" data-load="false" elementtiming="system-image-block" src="https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/1666726215379-1F2OMC21H4FS5HFST86O/9E3FD93C-6F1C-4212-A6DA-6463CA199EDA.jpeg?format=1000w" width="2317" height="1287" sizes="(max-width: 640px) 100vw, (max-width: 767px) 100vw, 100vw" onload="this.classList.add(&quot;loaded&quot;)" srcset="https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/1666726215379-1F2OMC21H4FS5HFST86O/9E3FD93C-6F1C-4212-A6DA-6463CA199EDA.jpeg?format=100w 100w, https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/1666726215379-1F2OMC21H4FS5HFST86O/9E3FD93C-6F1C-4212-A6DA-6463CA199EDA.jpeg?format=300w 300w, https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/1666726215379-1F2OMC21H4FS5HFST86O/9E3FD93C-6F1C-4212-A6DA-6463CA199EDA.jpeg?format=500w 500w, https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/1666726215379-1F2OMC21H4FS5HFST86O/9E3FD93C-6F1C-4212-A6DA-6463CA199EDA.jpeg?format=750w 750w, https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/1666726215379-1F2OMC21H4FS5HFST86O/9E3FD93C-6F1C-4212-A6DA-6463CA199EDA.jpeg?format=1000w 1000w, https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/1666726215379-1F2OMC21H4FS5HFST86O/9E3FD93C-6F1C-4212-A6DA-6463CA199EDA.jpeg?format=1500w 1500w, https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/1666726215379-1F2OMC21H4FS5HFST86O/9E3FD93C-6F1C-4212-A6DA-6463CA199EDA.jpeg?format=2500w 2500w" loading="lazy" decoding="async" data-loader="sqs">

            
          
        
          
        

        
      
        </figure>]]></description></item><item><title>7x24 Exchange Tues Keynote, Introduces OCP and OPEN 19</title><dc:creator>Dave Ohara</dc:creator><pubDate>Tue, 25 Oct 2022 14:40:07 +0000</pubDate><link>https://www.greenm3.com/gdcblog/2022/10/25/22eaej1lhonenhda0s46l4jpre23sj</link><guid isPermaLink="false">545d6d3ce4b058ea4273ff99:54656e74e4b00cfe74aec81e:6357f1a774728610d2fdc7d2</guid><description><![CDATA[<p class="">I have been going to OCP since its start in 2011 at Facebook’s campus and it is nice to see that OCP and OPEN 19 are introduced to the data center building audience of 7x24 Exchange. There are a handful of people who go to both OCP Summits and 7x24 Exchange but it is not many.</p><p class="">The panel has Greg Stover (Vertiv), John Gross (J.M. Gross Engineering), Peter Panfil (Vertiv), and Zachary Smith (Equinix).</p><p class="">The panel discussion worked well to discuss the issue of open standards like OCP and OPEN 19 and its impact on the industry. To give you an idea of what OCP and OPEN 19 work on the following diagram was shared.</p><p class="">If you have interest in these areas here are links. <a href="https://www.opencompute.org">www.opencompute.org</a> and <a href="https://www.open19.org">www.open19.org</a> </p><p data-rte-preserve-empty="true" class=""></p>





















  
  














































  

    
  
    

      

      
        <figure class="
              sqs-block-image-figure
              intrinsic
            "
        >
          
        
        

        
          
            
          
            
                
                
                
                
                
                
                
                <img data-stretch="false" data-image="https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/1666708414309-02D1KQZQN29XWRELQ8S4/91DF449A-2CDC-4158-A46E-62973F70E5BC.jpeg" data-image-dimensions="2679x1151" data-image-focal-point="0.5,0.5" alt="" data-load="false" elementtiming="system-image-block" src="https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/1666708414309-02D1KQZQN29XWRELQ8S4/91DF449A-2CDC-4158-A46E-62973F70E5BC.jpeg?format=1000w" width="2679" height="1151" sizes="(max-width: 640px) 100vw, (max-width: 767px) 100vw, 100vw" onload="this.classList.add(&quot;loaded&quot;)" srcset="https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/1666708414309-02D1KQZQN29XWRELQ8S4/91DF449A-2CDC-4158-A46E-62973F70E5BC.jpeg?format=100w 100w, https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/1666708414309-02D1KQZQN29XWRELQ8S4/91DF449A-2CDC-4158-A46E-62973F70E5BC.jpeg?format=300w 300w, https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/1666708414309-02D1KQZQN29XWRELQ8S4/91DF449A-2CDC-4158-A46E-62973F70E5BC.jpeg?format=500w 500w, https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/1666708414309-02D1KQZQN29XWRELQ8S4/91DF449A-2CDC-4158-A46E-62973F70E5BC.jpeg?format=750w 750w, https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/1666708414309-02D1KQZQN29XWRELQ8S4/91DF449A-2CDC-4158-A46E-62973F70E5BC.jpeg?format=1000w 1000w, https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/1666708414309-02D1KQZQN29XWRELQ8S4/91DF449A-2CDC-4158-A46E-62973F70E5BC.jpeg?format=1500w 1500w, https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/1666708414309-02D1KQZQN29XWRELQ8S4/91DF449A-2CDC-4158-A46E-62973F70E5BC.jpeg?format=2500w 2500w" loading="lazy" decoding="async" data-loader="sqs">

            
          
        
          
        

        
      
        </figure>
      

    
  


  













































  

    
  
    

      

      
        <figure class="
              sqs-block-image-figure
              intrinsic
            "
        >
          
        
        

        
          
            
          
            
                
                
                
                
                
                
                
                <img data-stretch="false" data-image="https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/1666708709035-JVJ2BAF4M3MUOA1PLY5R/73DC17CE-D356-4B54-BC94-E3B604D8CA8D.jpeg" data-image-dimensions="2289x1291" data-image-focal-point="0.5,0.5" alt="" data-load="false" elementtiming="system-image-block" src="https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/1666708709035-JVJ2BAF4M3MUOA1PLY5R/73DC17CE-D356-4B54-BC94-E3B604D8CA8D.jpeg?format=1000w" width="2289" height="1291" sizes="(max-width: 640px) 100vw, (max-width: 767px) 100vw, 100vw" onload="this.classList.add(&quot;loaded&quot;)" srcset="https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/1666708709035-JVJ2BAF4M3MUOA1PLY5R/73DC17CE-D356-4B54-BC94-E3B604D8CA8D.jpeg?format=100w 100w, https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/1666708709035-JVJ2BAF4M3MUOA1PLY5R/73DC17CE-D356-4B54-BC94-E3B604D8CA8D.jpeg?format=300w 300w, https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/1666708709035-JVJ2BAF4M3MUOA1PLY5R/73DC17CE-D356-4B54-BC94-E3B604D8CA8D.jpeg?format=500w 500w, https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/1666708709035-JVJ2BAF4M3MUOA1PLY5R/73DC17CE-D356-4B54-BC94-E3B604D8CA8D.jpeg?format=750w 750w, https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/1666708709035-JVJ2BAF4M3MUOA1PLY5R/73DC17CE-D356-4B54-BC94-E3B604D8CA8D.jpeg?format=1000w 1000w, https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/1666708709035-JVJ2BAF4M3MUOA1PLY5R/73DC17CE-D356-4B54-BC94-E3B604D8CA8D.jpeg?format=1500w 1500w, https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/1666708709035-JVJ2BAF4M3MUOA1PLY5R/73DC17CE-D356-4B54-BC94-E3B604D8CA8D.jpeg?format=2500w 2500w" loading="lazy" decoding="async" data-loader="sqs">

            
          
        
          
        

        
      
        </figure>]]></description></item><item><title>7x24 Exchange Fall 2022 Keynote, Admiral Mike Rogers</title><dc:creator>Dave Ohara</dc:creator><pubDate>Mon, 24 Oct 2022 18:49:41 +0000</pubDate><link>https://www.greenm3.com/gdcblog/2022/10/24/mvcjp6wq70e1lmtlf3bqb1ee6b3c5e</link><guid isPermaLink="false">545d6d3ce4b058ea4273ff99:54656e74e4b00cfe74aec81e:6356db0c9539ab438c28b561</guid><description><![CDATA[<p class="">Admiral Mike Rogers is the opening Keynote at 7x24. The description of presentation is as follows.</p>





















  
  














































  

    
  
    

      

      
        <figure class="
              sqs-block-image-figure
              intrinsic
            "
        >
          
        
        

        
          
            
          
            
                
                
                
                
                
                
                
                <img data-stretch="false" data-image="https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/1666637313657-E7UONXOQZ0WJT1JWFCPJ/9B2877A0-BECC-44EE-8BF6-6D8926B76FDA.jpeg" data-image-dimensions="3024x4032" data-image-focal-point="0.5,0.5" alt="" data-load="false" elementtiming="system-image-block" src="https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/1666637313657-E7UONXOQZ0WJT1JWFCPJ/9B2877A0-BECC-44EE-8BF6-6D8926B76FDA.jpeg?format=1000w" width="3024" height="4032" sizes="(max-width: 640px) 100vw, (max-width: 767px) 100vw, 100vw" onload="this.classList.add(&quot;loaded&quot;)" srcset="https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/1666637313657-E7UONXOQZ0WJT1JWFCPJ/9B2877A0-BECC-44EE-8BF6-6D8926B76FDA.jpeg?format=100w 100w, https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/1666637313657-E7UONXOQZ0WJT1JWFCPJ/9B2877A0-BECC-44EE-8BF6-6D8926B76FDA.jpeg?format=300w 300w, https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/1666637313657-E7UONXOQZ0WJT1JWFCPJ/9B2877A0-BECC-44EE-8BF6-6D8926B76FDA.jpeg?format=500w 500w, https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/1666637313657-E7UONXOQZ0WJT1JWFCPJ/9B2877A0-BECC-44EE-8BF6-6D8926B76FDA.jpeg?format=750w 750w, https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/1666637313657-E7UONXOQZ0WJT1JWFCPJ/9B2877A0-BECC-44EE-8BF6-6D8926B76FDA.jpeg?format=1000w 1000w, https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/1666637313657-E7UONXOQZ0WJT1JWFCPJ/9B2877A0-BECC-44EE-8BF6-6D8926B76FDA.jpeg?format=1500w 1500w, https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/1666637313657-E7UONXOQZ0WJT1JWFCPJ/9B2877A0-BECC-44EE-8BF6-6D8926B76FDA.jpeg?format=2500w 2500w" loading="lazy" decoding="async" data-loader="sqs">

            
          
        
          
        

        
      
        </figure>
      

    
  


  





  <p class=""><br></p><blockquote><p class="">Admiral Rogers shows why and how periods of turmoil and chaos are often a leader’s greatest opportunity to shepherd transformational change. While people and organizations seem hard-wired to favor stability and resist change, necessity forces the hand of invention. According to multiple analysts and headlines, the global pandemic accelerated the digital transformation of entire industries by three to seven years—and that window of opportunity is still open—not only for technological change but for shifts in organizational culture and the future of work. Admiral Rogers shows leaders how to embrace the power of chaos and fully leverage its momentum for change.</p></blockquote><p class="">The presentation was well received and the following are some notes. If you are a person who likes to read a full document you can check out this <a href="https://knowledge.wharton.upenn.edu/article/using-crisis-drive-strategic-change/">document</a> that has overlap with what is presented.  One of the key points Mike made is described in the <a href="https://knowledge.wharton.upenn.edu/article/using-crisis-drive-strategic-change/">document</a>.</p><blockquote><p class=""><strong>Don’t Waste a Crisis</strong></p><p class="">“It’s easy to be a leader when things are going right. It’s easy to be a leader when everyone’s happy. It’s easy to be a leader when there’s tons of resources,” Rogers said. “Where you make your money as a leader, I always thought, is when none of that is true.” But troubled times, if used properly, can lead to breakthroughs, especially in bureaucracies. “Crisis also is opportunity,” he said. “Never let a crisis go to waste.”</p></blockquote><p class="">Here are a few other snippets from Mike’s presentation.</p><p class="">Leadership in the chaos and uncertainty is the future. Significant change, uncertainty with change, under stress will be common</p><p class="">What is the basic work model at work, at home, hybrid is an example of the unknown.</p><p class="">Our workforce has different expectations than the past. Employee empathy is critical for success</p><p class="">Young generation does not the fear of uncertainty that the older generation does, and don’t assume people will stick around because you fear going to an uncertain future.</p><p class="">How do we create organizational structures that are not one size fits all.</p><p class="">People are more willing than ever to walk away from work.</p><p class="">If you do not focused motivated people you will not be successful.</p><p class="">Human capital is critical component.</p><p class="">Build a work force to sustain over a period of time.</p><p class="">The rate of change is accelerating.</p><p class="">“Never let a crisis go to waste. Use it to drive change.” Vehicle of opportunity </p><p class="">What is regulatory environment in 2030 and beyond?</p><p class="">How do you build in flexibility to accommodate the change?</p><p class="">Blend the best of the cultures from civilian and government is a goal of Admiral Mike Rogers when he ran the NSA. Stifling of communication limits the development of best cultures.</p><p class="">Make choices that leave options. </p>]]></description></item><item><title>7x24 Exchange 2022 Record attendance of 972 breaking record by 99</title><dc:creator>Dave Ohara</dc:creator><pubDate>Mon, 24 Oct 2022 13:20:59 +0000</pubDate><link>https://www.greenm3.com/gdcblog/2022/10/24/zzrsqhumkb295igxmygcm2gob1obnv</link><guid isPermaLink="false">545d6d3ce4b058ea4273ff99:54656e74e4b00cfe74aec81e:63568ef27678dd7d7fb4d742</guid><description><![CDATA[<p class="">It has been 3 years since I have been at 7x24 Exchange so not writing about the conference is because I was not there. I am back and 7x24 Exchange is back big with a record breaking attendence of 972, breaking their previous attendance record by 99.</p><p class="">Congratulations to the 7x24 Exchange team.</p>





















  
  














































  

    
  
    

      

      
        <figure class="
              sqs-block-image-figure
              intrinsic
            "
        >
          
        
        

        
          
            
          
            
                
                
                
                
                
                
                
                <img data-stretch="false" data-image="https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/1666617533479-RZN3ON7I4KGPHYVP4PTA/55F7FEFD-8878-4CCF-A5ED-CEB381F63F67.jpeg" data-image-dimensions="3024x4032" data-image-focal-point="0.5,0.5" alt="" data-load="false" elementtiming="system-image-block" src="https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/1666617533479-RZN3ON7I4KGPHYVP4PTA/55F7FEFD-8878-4CCF-A5ED-CEB381F63F67.jpeg?format=1000w" width="3024" height="4032" sizes="(max-width: 640px) 100vw, (max-width: 767px) 100vw, 100vw" onload="this.classList.add(&quot;loaded&quot;)" srcset="https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/1666617533479-RZN3ON7I4KGPHYVP4PTA/55F7FEFD-8878-4CCF-A5ED-CEB381F63F67.jpeg?format=100w 100w, https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/1666617533479-RZN3ON7I4KGPHYVP4PTA/55F7FEFD-8878-4CCF-A5ED-CEB381F63F67.jpeg?format=300w 300w, https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/1666617533479-RZN3ON7I4KGPHYVP4PTA/55F7FEFD-8878-4CCF-A5ED-CEB381F63F67.jpeg?format=500w 500w, https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/1666617533479-RZN3ON7I4KGPHYVP4PTA/55F7FEFD-8878-4CCF-A5ED-CEB381F63F67.jpeg?format=750w 750w, https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/1666617533479-RZN3ON7I4KGPHYVP4PTA/55F7FEFD-8878-4CCF-A5ED-CEB381F63F67.jpeg?format=1000w 1000w, https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/1666617533479-RZN3ON7I4KGPHYVP4PTA/55F7FEFD-8878-4CCF-A5ED-CEB381F63F67.jpeg?format=1500w 1500w, https://images.squarespace-cdn.com/content/v1/545d6d3ce4b058ea4273ff99/1666617533479-RZN3ON7I4KGPHYVP4PTA/55F7FEFD-8878-4CCF-A5ED-CEB381F63F67.jpeg?format=2500w 2500w" loading="lazy" decoding="async" data-loader="sqs">

            
          
        
          
        

        
      
        </figure>]]></description></item></channel></rss>