├── CITATION.cff
├── CODE_OF_CONDUCT.md
└── README.md
/CITATION.cff:
--------------------------------------------------------------------------------
1 | cff-version: 1.2.0
2 | title: OODA loop
3 | message: >-
4 | If you use this work and you want to cite it,
5 | then you can use the metadata from this file.
6 | type: software
7 | authors:
8 | - given-names: Joel Parker
9 | family-names: Henderson
10 | email: joel@joelparkerhenderson.com
11 | affiliation: joelparkerhenderson.com
12 | orcid: 'https://orcid.org/0009-0000-4681-282X'
13 | identifiers:
14 | - type: url
15 | value: 'https://github.com/joelparkerhenderson/ooda-loop/'
16 | description: OODA loop
17 | repository-code: 'https://github.com/joelparkerhenderson/ooda-loop/'
18 | abstract: >-
19 | OODA loop
20 | license: See license file
21 |
--------------------------------------------------------------------------------
/CODE_OF_CONDUCT.md:
--------------------------------------------------------------------------------
1 |
2 | # Contributor Covenant Code of Conduct
3 |
4 | ## Our Pledge
5 |
6 | We as members, contributors, and leaders pledge to make participation in our
7 | community a harassment-free experience for everyone, regardless of age, body
8 | size, visible or invisible disability, ethnicity, sex characteristics, gender
9 | identity and expression, level of experience, education, socio-economic status,
10 | nationality, personal appearance, race, caste, color, religion, or sexual
11 | identity and orientation.
12 |
13 | We pledge to act and interact in ways that contribute to an open, welcoming,
14 | diverse, inclusive, and healthy community.
15 |
16 | ## Our Standards
17 |
18 | Examples of behavior that contributes to a positive environment for our
19 | community include:
20 |
21 | * Demonstrating empathy and kindness toward other people
22 | * Being respectful of differing opinions, viewpoints, and experiences
23 | * Giving and gracefully accepting constructive feedback
24 | * Accepting responsibility and apologizing to those affected by our mistakes,
25 | and learning from the experience
26 | * Focusing on what is best not just for us as individuals, but for the overall
27 | community
28 |
29 | Examples of unacceptable behavior include:
30 |
31 | * The use of sexualized language or imagery, and sexual attention or advances of
32 | any kind
33 | * Trolling, insulting or derogatory comments, and personal or political attacks
34 | * Public or private harassment
35 | * Publishing others' private information, such as a physical or email address,
36 | without their explicit permission
37 | * Other conduct which could reasonably be considered inappropriate in a
38 | professional setting
39 |
40 | ## Enforcement Responsibilities
41 |
42 | Community leaders are responsible for clarifying and enforcing our standards of
43 | acceptable behavior and will take appropriate and fair corrective action in
44 | response to any behavior that they deem inappropriate, threatening, offensive,
45 | or harmful.
46 |
47 | Community leaders have the right and responsibility to remove, edit, or reject
48 | comments, commits, code, wiki edits, issues, and other contributions that are
49 | not aligned to this Code of Conduct, and will communicate reasons for moderation
50 | decisions when appropriate.
51 |
52 | ## Scope
53 |
54 | This Code of Conduct applies within all community spaces, and also applies when
55 | an individual is officially representing the community in public spaces.
56 | Examples of representing our community include using an official e-mail address,
57 | posting via an official social media account, or acting as an appointed
58 | representative at an online or offline event.
59 |
60 | ## Enforcement
61 |
62 | Instances of abusive, harassing, or otherwise unacceptable behavior may be
63 | reported to the community leaders responsible for enforcement at
64 | [INSERT CONTACT METHOD].
65 | All complaints will be reviewed and investigated promptly and fairly.
66 |
67 | All community leaders are obligated to respect the privacy and security of the
68 | reporter of any incident.
69 |
70 | ## Enforcement Guidelines
71 |
72 | Community leaders will follow these Community Impact Guidelines in determining
73 | the consequences for any action they deem in violation of this Code of Conduct:
74 |
75 | ### 1. Correction
76 |
77 | **Community Impact**: Use of inappropriate language or other behavior deemed
78 | unprofessional or unwelcome in the community.
79 |
80 | **Consequence**: A private, written warning from community leaders, providing
81 | clarity around the nature of the violation and an explanation of why the
82 | behavior was inappropriate. A public apology may be requested.
83 |
84 | ### 2. Warning
85 |
86 | **Community Impact**: A violation through a single incident or series of
87 | actions.
88 |
89 | **Consequence**: A warning with consequences for continued behavior. No
90 | interaction with the people involved, including unsolicited interaction with
91 | those enforcing the Code of Conduct, for a specified period of time. This
92 | includes avoiding interactions in community spaces as well as external channels
93 | like social media. Violating these terms may lead to a temporary or permanent
94 | ban.
95 |
96 | ### 3. Temporary Ban
97 |
98 | **Community Impact**: A serious violation of community standards, including
99 | sustained inappropriate behavior.
100 |
101 | **Consequence**: A temporary ban from any sort of interaction or public
102 | communication with the community for a specified period of time. No public or
103 | private interaction with the people involved, including unsolicited interaction
104 | with those enforcing the Code of Conduct, is allowed during this period.
105 | Violating these terms may lead to a permanent ban.
106 |
107 | ### 4. Permanent Ban
108 |
109 | **Community Impact**: Demonstrating a pattern of violation of community
110 | standards, including sustained inappropriate behavior, harassment of an
111 | individual, or aggression toward or disparagement of classes of individuals.
112 |
113 | **Consequence**: A permanent ban from any sort of public interaction within the
114 | community.
115 |
116 | ## Attribution
117 |
118 | This Code of Conduct is adapted from the [Contributor Covenant][homepage],
119 | version 2.1, available at
120 | [https://www.contributor-covenant.org/version/2/1/code_of_conduct.html][v2.1].
121 |
122 | Community Impact Guidelines were inspired by
123 | [Mozilla's code of conduct enforcement ladder][Mozilla CoC].
124 |
125 | For answers to common questions about this code of conduct, see the FAQ at
126 | [https://www.contributor-covenant.org/faq][FAQ]. Translations are available at
127 | [https://www.contributor-covenant.org/translations][translations].
128 |
129 | [homepage]: https://www.contributor-covenant.org
130 | [v2.1]: https://www.contributor-covenant.org/version/2/1/code_of_conduct.html
131 | [Mozilla CoC]: https://github.com/mozilla/diversity
132 | [FAQ]: https://www.contributor-covenant.org/faq
133 | [translations]: https://www.contributor-covenant.org/translations
134 |
135 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # OODA loop
2 |
3 | The "OODA loop" is the cycle of "Observe, Orient, Decide, Act" developed by
4 | military strategist John Boyd. This page is our notes about the OODA loop, the
5 | book "Science, Strategy and War", and related ideas.
6 |
7 | Contents:
8 |
9 | * [OODA loop: observe, orient, decide, act](#ooda-loop-observe-orient-decide-act)
10 | * [OODA loop: more than meets the eye](#ooda-loop-more-than-meets-the-eye)
11 | * [OODA loop: the strategic theory](#ooda-loop-the-strategic-theory)
12 | * [OODA loop for business](#ooda-loop-for-business)
13 | * [Three spheres: physical, mental, moral](#three-spheres-physical-mental-moral)
14 | * [Process to evolve](#process-to-evolve)
15 | * [Quotations by Boyd](#quotations-by-boyd)
16 | * [Traditional worldview vs. emerging worldview](#traditional-worldview-vs-emerging-worldview)
17 | * [Planning paradigm as defined by the new sciences](#planning-paradigm-as-defined-by-the-new-sciences)
18 | * [Applying Boyd's principles to business organizations](#applying-boyds-principles-to-business-organizations)
19 | * [Maneuver-based organizations](#maneuver-based-organizations)
20 | * [Adaptive synthesis](#adaptive-synthesis)
21 | * [Trust and how to thrive on chaos](#trust-and-how-to-thrive-on-chaos)
22 | * [EBFAS organizational climate](#ebfas-organizational-climate)
23 | * [Einheit (oneness)](#einheit-oneness)
24 | * [Behendigkeit (agility)](#behendigkeit-agility)
25 | * [Fingerspitzengefühl (fingertip feeling)](#fingerspitzengef-hl-fingertip-feeling)
26 | * [Auftragstaktik (task tactic)](#auftragstaktik-task-tactic)
27 | * [Schwerpunkt (main point)](#schwerpunkt-main-point)
28 | * [Resources](#resources)
29 |
30 |
31 | ## OODA loop: observe, orient, decide, act
32 |
33 |
34 | The OODA loop is the cycle of observe, orient, decide, act. The approach
35 | explains how agility can overcome raw power.
36 |
37 | Observe: gather information about the environment, the adversary, the
38 | decision-maker, the context, etc.
39 |
40 | Orient: evaluate the threat, make logical connections, decide on focus,
41 | and get inside the mind of the adversary so strategies can be oriented against
42 | the adversary's capabilties.
43 |
44 | Decide: choose a course of action to pursue, balancing the need to make
45 | rapid decisions and the need to make careful choices.
46 |
47 | Act: Execute quickly and immediately, then return to the Observe step, in
48 | order to analyze the changes, including the adversary's reactions.
49 |
50 |
51 | ## OODA loop: the recurring cycle of interacting loops
52 |
53 |
54 | The OODA loop states that decision-making occurs in a recurring cycle of
55 | observe–orient–decide–act. An entity (whether an individual or an organization)
56 | that can process this cycle quickly, observing and reacting to unfolding events
57 | more rapidly than an opponent, can thereby "get inside" the opponent's decision
58 | cycle and thus gain advantages.
59 |
60 | The OODA loop explains how to direct one's energies to defeat an adversary and
61 | survive. Boyd emphasized that "the loop" is actually a set of interacting loops
62 | that are to be kept in continuous operation during combat. Boyd also indicated
63 | that the phase of the battle has an important bearing on the ideal allocation of
64 | one's energies.
65 |
66 | Boyd's views on the OODA loop are much deeper, richer, and more comprehensive
67 | than the common interpretation of the "rapid OODA loop" idea. Boyd's ideas
68 | feature in the literature on Network Centric Warfare, a key element of the US
69 | and NATO’s so-called ‘military transformation’ programmes, as well as in the
70 | debate on Fourth Generation Warfare.
71 |
72 |
73 | ## OODA loop: the strategic theory
74 |
75 |
76 | In any conflict all combatants go through repeated cycles of observation,
77 | orientation, decision, action. The potentially victorious combatant is the one
78 | with the cycles which are consistently quicker than his opponent, including the
79 | time required to transition from one cycle to the next.
80 |
81 | In order to generate the tempo of operations that we desire, and to best cope
82 | with the uncertainty, disorder, and fluidity of combat, command and control must
83 | be decentralized.
84 |
85 | The aim of a strategist is not so much to seek battle as to seek a strategic
86 | situation so advantageous that if it does not of itself product the decision,
87 | its continuation by a battle is sure to achive this.
88 |
89 |
90 | ## OODA loop for business
91 |
92 |
93 | The same OODA loop operates in a competitive business landscape, and the same
94 | logic applies.
95 |
96 | Decision makers gather information (observe).
97 |
98 | Decision makers then form hypotheses about markets, customers, products,
99 | activities, and the intentions of competitors (orient).
100 |
101 | Decision makers then make decisions, and act on them.
102 |
103 | The cycle is repeated continuously, and favors business agility over raw power.
104 | The aggressive and conscious application of the process gives a business
105 | advantage over a competitor who is merely reacting to conditions as they occur
106 | or has poor awareness of the situation.
107 |
108 |
109 | ## OODA loop v DMAIC cycle v PDCA iteration
110 |
111 | The OODA loop of military strategy is sometimes compared to the DMAIC cycle of project management, and also to the PDCA spiral of iterative planning.
112 |
113 | [OODA: Observe, Orient, Decide, Act](https://en.wikipedia.org/wiki/OODA_loop): a framework for how to direct one's energies to defeat an adversary. The OODA loop is a core tool used for U.S. military planning. OODA can also be useful for business strategy planing.
114 |
115 | [DMAIC: Define, Measure, Analyze, Improve, Control](https://en.wikipedia.org/wiki/DMAIC): a data-driven improvement cycle for optimizing and stabilizing business processes and designs. The DMAIC improvement cycle is the core tool used to drive Six Sigma projects. DMAIC can be used as the framework for other improvement applications.
116 |
117 | [PDCA: Plan, Do, Check, Act](https://en.wikipedia.org/wiki/PDCA): a data-driven improvement cycle for iterating towards an improved system, implemented in spirals of increasing knowledge of the system that converge on the ultimate goal, each cycle closer than the previous. It is also known as the Deming circle/cycle/wheel, the Shewhart cycle, the control circle/cycle, or plan–do–study–act (PDSA).
118 |
119 |
120 |
121 | | OODA | DMAIC | PDCA |
122 | Identify the problem | Observe | Define | Plan |
123 | Measure the problem | Measure |
124 | Analyze the problem | Orient | Analyze |
125 | Create action plans | Decide | Improve |
126 | Execute action plans | Act | Do |
127 | Verify the results | Observe | Control | Check a.k.a. Study |
128 | Measure the results |
129 | Analyze the results | Orient |
130 | Create improvement plans | Decide | Act a.k.a. Adjust |
131 | Execute improvement plans | Act |
132 |
133 |
134 |
135 |
136 | Root causes of such issues are investigated, found, and eliminated by modifying the process. Risk is re-evaluated.
137 |
138 | ## Three spheres: physical, mental, moral
139 |
140 |
141 | Boyd used a concept of three spheres of war: the physical, the mental, and the
142 | moral dimension, using this idea of to structure his argument and develop three
143 | modes of conflict.
144 |
145 | Respectively, these spheres dealt with destruction of the enemy's physical
146 | strength (fighting power), disorganization of his mental processes (thinking
147 | power), and disintigraion of his moral will to resist (staying power). The
148 | forces operating within these spheres did so in synergistic ways, not isolated
149 | ways.
150 |
151 | Boyd emphasized speed, tempo, variety, surprise, trust, initiative, movement,
152 | and his view that the moral and mental dimensions came before technology,
153 | superiority in numbers, and massed firepower.
154 |
155 |
156 | ## Process to evolve
157 |
158 |
159 | An important feature of Boyd's book of air maneuvers was that Boyd did not
160 | advocate one maneuver over another, but presented the options available to the
161 | pilot and his opponent in relation to each other. He wanted to show people a
162 | variety of moves and countermoves, and the logic of its dynamic.
163 |
164 | His aim was not to convince people about the validity of this or that doctrine,
165 | but instead to create among his audience a way of thinking, a thought process.
166 |
167 | The process not only creates the output but also represents the key to evolve
168 | the tactics, strategies, goals, unifying themes, etc. that permit us to actively
169 | shape and adapt to the unfolding world.
170 |
171 |
172 | ## Network Centric Warfare
173 |
174 |
175 | The OODA loop is a precursor of what was later described as "Network Centric
176 | Warfare" both in its limited meaning as a Command, Control, Computer,
177 | Communications, Intelligence, Reconnaissance, and Surveillance (C4ISR) system
178 | and its broader strategic implications as a strategic concept.
179 |
180 | Boyd emphasized the importance of communications as the foundation of the loop
181 | and information management as essential to the Orientation portion of the loop.
182 | The OODA strategic applications were related to creating greater flexibility by
183 | moving decision making down to the lowest level while creating situational
184 | awareness on the highest level.
185 |
186 | [Source](https://www.amazon.com/gp/profile/amzn1.account.AG37RQGYWU3Y7LIYF6YTUFWOREYA/ref=cm_cr_dp_d_gw_tr?ie=UTF8)
187 |
188 |
189 | ## Quotations by Boyd
190 |
191 |
192 | "Strategy is a mental tapestry of changing intentions for harmonizing and
193 | focusing our efforts as a basis for realizing some aim or purpose in an
194 | unfolding and often unforeseen world of many bewildering events and many
195 | contending interests."
196 |
197 | "The key idea is to emphasize implicit over explicit in order to gain a
198 | favorable mismatch in friction and time (i.e, ours lower than any adversary’s)
199 | for superiority in shaping and adapting to circumstances."
200 |
201 | "Arrange the setting and circumstances so that leaders and subordinates alike
202 | are given the opportunity to continuously interact with the external world, and
203 | with each other, in order to more quickly make many-sided implicit
204 | cross-referencing projections, empathies, correlations, and rejections as well
205 | as create the similar images or impressions, hence a similar implicit
206 | orientation, needed to form an organic whole."
207 |
208 |
209 | ## Traditional worldview vs. emerging worldview
210 |
211 |
212 |
213 | Traditional worldview | Emerging worldview |
214 | Reductionism | Holism |
215 | Linear causality | Mutual causality |
216 | Objective reality | Perspective reality |
217 | Determinism | Indeterminism |
218 | Survival of the fittest | Adaptive self-organization |
219 | Focus on discrete entities | Focus on relationships between entities |
220 | Linear relationships | Non-linear relationships |
221 | Newtonian physics perspectives | Quantum physics perspectives |
222 | World is predictable | World is novel and probabilistic |
223 | Modern | Postmodern |
224 | Focus on hierarchy | Focus on heterarchy (within levels) |
225 | Prediction | Understanding |
226 | Based on 19th-century physics | Based on biology |
227 | Equilibrium, stability, deterministic dynamics | Structure, pattern, self-organization, life cycles |
228 | Focus on averages | Focus on variation |
229 |
230 |
231 |
232 | ## Planning paradigm as defined by the new sciences
233 |
234 |
235 |
236 | From | To |
237 | Linear | Non-linear |
238 | Static, cause-effect view of individual factors | Dynamic, constantly changing field of interactions |
239 | Microscopic, local | Wide angle, global |
240 | Separateness | Relatedness |
241 | Marketplace | Environment |
242 | Reductionist | Non-reductionist |
243 | Component thinking | Seeing and thinking in wholes |
244 | Time cards, task analysis | Complex Adaptive Systems |
245 | Problem solving | Butterfly Effect, system feedback |
246 | Brainstorming | Self-organization, adaptation |
247 | Polarization | Environmental scanning plus mapping |
248 | Structure creates process | Underlying processes and interactions of a system's variables create self-organizing patterns, shapes and structures |
249 | Pays attention to policies and procedures that are usually fixed and inflexible | Pays attention to initial conditions, perking information, emerging events, and strange attractors |
250 | Standing committees | Ad hoc working groups, networks |
251 | Politics | Learning |
252 | Planning as discrete event | Planning as continuous process |
253 | Planning by elite specialist group | Planning requires whole system input |
254 | Implementation of plan | Implementation flexible and constantly evolving in response to emerging conditions |
255 | Forecasting through data analysis | Foresight through synthesis |
256 | Quantitative | Qualitative |
257 | Controlling, stabilizing or managing change | Responding to and influencing change as it emerges |
258 | Dinosaur behavior | Entrepreneurial behavior |
259 | Change as threat | Change as opportunity |
260 | Leads to stagnation and extinction | Leads to renewal and growth |
261 |
262 |
263 |
264 | ## Applying Boyd's principles to business organizations
265 |
266 |
267 | Source: [Boyd and Beyond 2014](https://fasttransients.files.wordpress.com/2010/03/lenaneboydforbusiness.pdf)
268 |
269 |
270 | ### Maneuver-based organizations
271 |
272 |
273 | Characteristics of maneuver-based organizations:
274 |
275 | * Rapidity of decision-making
276 |
277 | * Rapidity of action
278 |
279 | * Decentralized decision-making
280 |
281 | * Significant license to execute
282 |
283 |
284 | Features of maneuver-based organizations:
285 |
286 | * Unit cohesion and common values
287 |
288 | * High skill levels and training
289 |
290 | * New or adaptive reuse of technology
291 |
292 | * Tradecraft
293 |
294 |
295 | ### Adaptive synthesis
296 |
297 |
298 | Thought experiment:
299 |
300 | * Break down complex systems into "building blocks". Adaptively reuse and
301 | reconfigure into new systems. Be quicker and more effective at coming up with
302 | new solutions.
303 |
304 | * Look at things from a number of perspectives. Utilize the tools of analysis
305 | and synthesis. Come up with novel approaches that integrate
306 | seemingly-unrelated concepts or elements.
307 |
308 |
309 | Finding unique solutions via synthesis:
310 |
311 | * Synthesis is what happens when you are forced to draw a conclusion from an incomplete data set.
312 |
313 | * You have to think and plan in ways that are different. You have to adapt. You have to try things that are not “normal”.
314 |
315 | * Develop a non-standard mindset, and keep it churning.
316 |
317 |
318 | ### Trust and how to thrive on chaos
319 |
320 |
321 | Trust among teammates:
322 |
323 | * Trust is an essential trait among teammates.
324 |
325 | * Trust is a product of confidence and familiarity.
326 |
327 | * Confidence among colleagues results from demonstrated professional skill.
328 |
329 | * Familiarity results from shared experience and a common professional philosophy.
330 |
331 |
332 | Strategy and chaos:
333 |
334 | * The strategic roadmap should produce operations and tactics sufficient to design an organization which will truly thrive on chaos.
335 |
336 | * The organization must be built to respond in an elegant manner to constant environmental changes.
337 |
338 | * The organization must be be designed in a manner which will allow it to take as much advantage of these changes as possible, quickly, while losing as little energy as possible.
339 |
340 |
341 | ## EBFAS organizational climate
342 |
343 |
344 | "EBFAS" is Boyd’s German acronym from the elements of his organizational
345 | climate: Einheit (oneness), Behendigkeit (agility), Fingerspitzengefühl
346 | (fingertip feeling), Auftragstaktik (task tactic), Schwerpunkt (main point).
347 |
348 |
349 | ### Einheit (oneness)
350 |
351 |
352 | Einheit: Literally "one-ness" or "unity". Can mean "a military detachment or
353 | unit". A common outlook possessed by "a body of officers" represents a unifying
354 | theme that can be used to simultaneously encourage subordinate initiative yet
355 | realize superior intent. TODO: Create Wikipedia entry.
356 |
357 |
358 | ### Behendigkeit (agility)
359 |
360 |
361 | Behendigkeit: Literally "agility", nimbleness, quickness, swiftness. Behendigkeit, the way Boyd used it, is the ability to break out of longstanding patterns, even if they have been successful.
362 |
363 |
364 | ### Fingerspitzengefühl (fingertip feeling)
365 |
366 |
367 | [Fingerspitzengefühl](https://www.wikipedia.org/wiki/Fingerspitzengef%C3%BChl): literally "fingertip feeling". Means intuitive flair or instinct, which has been adopted by the English language as a loanword. It describes a great situational awareness, and the ability to respond most appropriately and tactfully. It can also be applied to diplomats, bearers of bad news, sports players, or to describe a superior ability to respond to an escalated situation.
368 |
369 |
370 | ### Auftragstaktik (task tactic)
371 |
372 |
373 | [Auftragstaktik](https://www.wikipedia.org/wiki/Auftragstaktik): a form of military tactics where the emphasis is on the outcome of a mission rather than the specific means of achieving it. Mission-type tactics have been a central component of military tactics since the 19th century. The term Auftragstaktik was coined by opponents of the development of mission-type tactics. Opponents of the implementation of mission-type tactics were called Normaltaktiker.
374 |
375 |
376 | ### Schwerpunkt (main point)
377 |
378 |
379 | [Schwerpunkt](https://www.wikipedia.org/wiki/Schwerpunkt): literally "hard, difficult, heavy" point. Usually: center of gravity, focus of main effort, focus and direction. heuristic device (conceptual tool or thinking formula) to make decisions from tactics to strategy about priority. None of these forms is sufficient to describe the universal importance of the term and the concept of Schwerpunktprinzip. Every unit in the army, from the company to the supreme command, decided on a Schwerpunkt through schwerpunktbildung, as did the support services, which meant that commanders always knew what was most important and why.
380 |
381 |
382 | ## A Discourse on Winning and Losing
383 |
384 |
385 | A Discourse on Winning and Losing - By John R. Boyd.
386 |
387 | Abstract: To flourish and grow in a many-sided, uncertain and ever-changing world that surrounds us,
388 | suggests that we have to make intuitive within ourselves those many practices we need to meet
389 | the exigencies of that world. The contents, hence the five sections that comprise this Discourse,
390 | unfold observations and ideas that contribute toward achieving or thwarting such an aim or
391 | purpose. Specifically:
392 |
393 | * "Patterns of Conflict" represents a compendium of idea and actions for winning and losing
394 | in a highly competitive world;
395 |
396 | * "Organic Design for Command and Control" surfaces the implicit arrangements that permit
397 | cooperation in complex, competitive, fast moving situations;
398 |
399 | * "The Strategic Game of ? and ?" emphasizes the mental twists and turns we undertake to
400 | surface schemes or designs for realizing our aims or purposes;
401 |
402 | * “Destruction and Creation” lays out in abstract but graphic fashion the ways by which
403 | we evolve mental concepts to comprehend and cope with our environment;
404 |
405 | * “Revelation” makes visible the metaphorical message that flows from this Discourse
406 |
407 |
408 | ## Resources
409 |
410 |
411 | [Wikipedia: OODA loop](https://en.wikipedia.org/wiki/OODA_loop)
412 |
413 | [John Boyd Compendium; by Project on Government Oversight](http://dnipogo.org/john-r-boyd/)
414 |
415 | [A Discourse on Winning and Losing; by John Boyd](https://www.airuniversity.af.edu/Portals/10/AUPress/Books/B_0151_Boyd_Discourse_Winning_Losing.PDF)
416 |
417 | [The personal papers of Col. John Boyd - part II](https://fasttransients.files.wordpress.com/2018/06/the-personal-papers-of-col-john-boyd-part-ii.pdf)
418 |
419 | [Slightly East of New; a page of links about OODA and Boyd](https://slightlyeastofnew.com/439-2/)
420 |
--------------------------------------------------------------------------------