<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
  <link type="text/html" rel="alternate" href="https://www.squidtree.com"/>
  <link type="application/atom+xml" rel="self" href="https://www.squidtree.com/feed"/>
  <subtitle>Squidtree by Shaine Hatch</subtitle>
  <author>
    <name>Shaine Hatch</name>
    <email>shaine@squidtree.com</email>
  </author>
  <id>https://www.squidtree.com/feed</id>
  <title>Squidtree | All</title>
  <updated>2025-02-01T17:09:00Z</updated>
  <entry>
    <link href="https://www.squidtree.com/blog/2025/01/25/build-better-software-by-thinking-about-filing-cabinets"/>
    <content type="html">&lt;p class="introduction"&gt;
All business software automates some analogous real-world process—even if that process is no longer visible.
Software is not a means to its own ends.
Good design comes from tying these things together.&lt;/p&gt;
&lt;p&gt;
Writing software for a business is hard work.
Typing code is not the hard part.&lt;/p&gt;
&lt;p&gt;
The disconnect between these two ideas sits in the realm of &lt;strong&gt;The Business&lt;/strong&gt;.
Writing software for the business is much harder than mere coding because it takes time, patience, and communication to understand what the business needs.
Often times, the business does not have a concrete understanding of its needs:
perhaps the knowledgeable people are no longer around, or the needs are emergent and not yet well-understood, &lt;em&gt;or perhaps those parts of the business have already been automated in software for which &lt;a href="https://linkinghub.elsevier.com/retrieve/pii/0165607485900328" target="\_blank"&gt;the theory&lt;/a&gt; is lost.&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;
Software that is written without a critical understanding of the intentions of the business will go its own direction.
It might work “correctly” against its own understanding, but customers will report bugs.
They’ll express dissatisfaction.
Internal stakeholders will pressure teams to change priorities to fix friction caused in business processes.&lt;/p&gt;
&lt;p&gt;
It’s paramount that we understand that software &lt;em&gt;automates&lt;/em&gt; a business process.
If we don’t understand how that business process works—how internal stakeholders interact with it, how customers are supposed to engage it, what its role is in relation to revenue—then we are doomed to automate it imperfectly.&lt;/p&gt;
&lt;p&gt;
There is no technical solution to these problems.
They are entirely social.&lt;/p&gt;
&lt;p&gt;
I have a proposal for you on how to write software more thoughtfully, however, whereby we’ll inadvertently help ourselves with these problems—and a host of other problems!&lt;/p&gt;
&lt;h2&gt;
First, some examples.&lt;/h2&gt;
&lt;p&gt;
Let’s start by testing out that assertion—that software automates the business—to get into the right head space.
Here are several software components and what they look like in the real world.&lt;/p&gt;
&lt;ul&gt;
  &lt;li&gt;
&lt;strong&gt;Websites:&lt;/strong&gt; A website is automated communication and activity. Rather than calling a business for information or going to it to perform an activity, we can do this online.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Webserver routers:&lt;/strong&gt; The conversation a user has with a router goes something like “I’d like to know about X” &lt;em class="paren-em"&gt;(via the URL their browser submits to the router)&lt;/em&gt;, which is then directed to the subsystem that knows best how to answer that inquiry.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Databases:&lt;/strong&gt; Businesses have always needed to store data about their customers, products, interactions, and operations. Even today, they fill books and filing cabinets with this information.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Indexes:&lt;/strong&gt; Databases use indexes to speed up how they locate information. People create these artifacts for navigating the physical world, too. Before computers, libraries used card catalogues to list books and topics so tomes of interest might be located in the index before retrieval. Without this, finding the right book by handling all of the physical books would have taken significantly longer.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Model:&lt;/strong&gt; In MVC, a model represents a thing or concept in reality. It might be analagous to that literal thing in reality, or it could represent the mental structure of a thing as it would manifest on, say, a paper form.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;View:&lt;/strong&gt; Views are an automation of a physical interaction. A view is how a person interacts with another person, process, or construct.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Controller:&lt;/strong&gt; MVC controllers translate user activity into business logic activity and data. They automate things in the real world such as jobs, rules, policies, and processes.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Encryption:&lt;/strong&gt; Secure communication has always been important to people. These days, we have effective algorithms for securing communication—for timeliness’ sake, they’re really only tenable with a computer, but one could imagine communicating using TLS on paper if time weren’t a problem!  &lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;
The &lt;span&gt;Cabinet Method&lt;/span&gt; for designing good software.&lt;/h2&gt;
&lt;p&gt;
The crux of the Cabinet Method is the understanding of how your business would implement a process if computers did not exist &lt;em class="paren-em"&gt;(and if many of the constraints that computers solve for, like time, also did not exist)&lt;/em&gt;.
By understanding the fundamental process, we can write much higher-fidelity software which will be easier to maintain as requirements and constraints change.&lt;/p&gt;
&lt;p&gt;
It’s done in four steps:&lt;/p&gt;
&lt;ol&gt;
  &lt;li&gt;
Understand the business  &lt;/li&gt;
  &lt;li&gt;
Write down a description of the process  &lt;/li&gt;
  &lt;li&gt;
Translate into software  &lt;/li&gt;
  &lt;li&gt;
Implement  &lt;/li&gt;
&lt;/ol&gt;
&lt;h3&gt;
Step 1: Understand the business.&lt;/h3&gt;
&lt;p&gt;
Programming shouldn’t begin until the business’ needs are truly understood.
A terrifically incomplete list of things to understand first includes:&lt;/p&gt;
&lt;ul&gt;
  &lt;li&gt;
Who are the beneficiaries of the software?  &lt;/li&gt;
  &lt;li&gt;
What is the customer attempting to do?  &lt;/li&gt;
  &lt;li&gt;
How do they view their situation when they come to engage with this feature?  &lt;/li&gt;
  &lt;li&gt;
What problems or questions will the support team need to account for once people are interacting with the feature?  &lt;/li&gt;
  &lt;li&gt;
Which of our employees are taking which actions to turn the results of this software into revenue?  &lt;/li&gt;
  &lt;li&gt;
Who needs what information to do further planning and reporting on the process and results?  &lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;
Product managers are typically responsible for gathering this information in the form of requirements.
They come with their own biases and depth of understanding, though.
Their requirements are &lt;em&gt;not&lt;/em&gt; the automated result.
Everyone involved in the project needs to have a deep understanding of the business process at hand, and has the obligation to push for more information &lt;em class="paren-em"&gt;(or to seek it out directly)&lt;/em&gt; if the level of understanding is not high enough.&lt;/p&gt;
&lt;p&gt;
&lt;strong&gt;Example:&lt;/strong&gt; ACMEcorp needs records about its customers so marketing and sales can contact them and so we know how to direct transactional communications as we work together with the customer on their equipment purchases.
Basically, we need a registration system.&lt;/p&gt;
&lt;h3&gt;
Step 2: Write down a description of the process.&lt;/h3&gt;
&lt;p&gt;
A comprehensive view of the business process needs to be written down.
It needs to include the answers to the above questions, laid out in a natural narrative format that shows where the process is initiated and where its results go.&lt;/p&gt;
&lt;p&gt;
This is where the real trick is:
&lt;strong&gt;It should be written in terms of human interactions and physical storage &lt;em&gt;alone&lt;/em&gt;.&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;
Pretend computers don’t exist.
Invent job titles, roles, departments, names of paper forms as they relate.
Think through how all of these things interact with each other sequentially to enact the business process from start to finish.&lt;/p&gt;
&lt;p&gt;
&lt;strong&gt;Example:&lt;/strong&gt; A new customer arrives at an ACMEcorp outlet.
They saw the new advertising we put out and are interested in getting our help on new equipment purchases.
A lot of the details about our vendors’ equipment is confidential, and our legal team requires consent from the customer before we can share much with them.
The front desk gives them a form which collects their contact information.
Along with the form is our Terms of Service, which we ask them to sign before giving them access to our brochures.
The customer can fill these out and hand them back to the front desk.
The Customer Data Filing Manager takes these forms and files them into the Customers filing cabinet and the Agreements cabinet.
They put a record identifier on the registration document, and note that identifier on the ToS document before filing both.
As they do this, they also update the New Customers index document: the sales and marketing teams like to cohort their efforts by week, so next week they’re going to look at this registry to locate records for new customers so they can perform some welcome outreach.
With registration out of the way, the customer is now free to peruse the equipment brochures and view confidential pricing information.&lt;/p&gt;
&lt;h3&gt;
Step 3: Translate into software.&lt;/h3&gt;
&lt;p&gt;
What’s the bare minimum software required to fulfill this story?
What are the names of the existing systems involved in this process and how do they relate to the new requirements?&lt;/p&gt;
&lt;p&gt;
While going through this exercise, new constraints and processes will become evident.
It can be interesting to continue updating the story with more people-and-paper-office analogies as these things are identified.
Perhaps you use a central eventing design at your company, and you want to make a note about how the internal mailing department will need to deliver notes about new registrations to other interested departments.&lt;/p&gt;
&lt;p&gt;
This may also reveal inefficiencies and complexity in the current implementation.
Is that abstraction really serving this story well enough that it’s worth bringing into the new design?&lt;/p&gt;
&lt;p&gt;
The most interesting part of this translation is often in how the database schema gets designed.
Is that document always interesting to pull all at once, or is it more often interesting to look at one smaller section of the initial document?
This can tell you whether you want wider database rows or more tables.&lt;/p&gt;
&lt;p&gt;
Do many departments want to request those documents?
To fulfill which of their own specific business processes?
Is it better for them to ask for the current document in its home department, or does it make more sense to deliver them their own copies and any subsequent updates so they can optimize their internal processes a bit better?
Now we’re thinking about what we want our API interface to be, the possible role of evented systems, and the role of caching to some extent.&lt;/p&gt;
&lt;h3&gt;
Step 4: Implement.&lt;/h3&gt;
&lt;p&gt;
Go build the thing.&lt;/p&gt;
&lt;h2&gt;
The business is the best thing to couple software to.&lt;/h2&gt;
&lt;p&gt;
Software that is defined in terms of the business will be the most flexible for evolution.&lt;/p&gt;
&lt;p&gt;
The main way this is true is in reducing coupling between systems.
If systems A &amp; B both talk about the lead generation process in terms of how the sales team receives leads and how we make decisions about who to send over as a lead, then we have a system with an explicit decoupling point.
&lt;strong&gt;Behind&lt;/strong&gt; the interface which speaks about the named business process exists a translation into how that data is collected from the database and other systems.
As the business evolves, that interface can receive updates to keep it aligned with reality.
Things can be rethought without every underlying component needing to immediately start complying in the same way: I can rename something in my API contract but leave the old name in my database.&lt;/p&gt;
&lt;p&gt;
This can all be done very simply.
&lt;a href="https://codeopinion.com/stop-doing-dogmatic-domain-driven-design/" target="\_blank"&gt;We don’t need to bear the full cost of DDD’s approach&lt;/a&gt; to separate our interfaces from our implementations.&lt;/p&gt;
&lt;p&gt;
As the underlying implementations evolve, we can rewire them into the same interfaces if that part of the business process has not changed.
If part of our lead generation logic requires me to check banking transaction data to ensure that a customer has spent more than $500 in the past month, then we have a business process of computing that data point from the transaction data and conveying it to interested parties.
So long as we have an interface tailored for the business’ “lead generation cashflow data check” process, it does not matter if we’re working with Plaid or MX to gather that data.
The cashflow team can change those partnerships and wire their new systems into that same business process—no client systems need to be updated to conform with the change.&lt;/p&gt;
&lt;p&gt;
Take, on the flipside, a system that dumps all of its database’s record update events onto Kafka for other unknown systems to interpret as they need.
I don’t know who is coupling to my schema now.
If I need to rename or remove a field in that schema, I either have to risk breaking a downstream client with that change, or I need to do significant work to identify and negotiate a migration with users.
I might instead hack something in so that consumers still receive the old schema but I can migrate it without breaking them.
Without designing this part carefully, this is probably going to get pretty nasty over time.
&lt;a href="https://codeopinion.com/event-driven-architecture-lost-its-way/" target="\_blank"&gt;Designing an event message that reflects what’s occurring in the business&lt;/a&gt;, though, instead of what’s defined in my database, means that I can reimplement any part of this system—or replace it altogether—without doing anything more than describing the current business process in the new implementation.
Which is something that I’d end up needing to do anyway!
It just ends up being easier &lt;em&gt;and&lt;/em&gt; simpler this way.&lt;/p&gt;
&lt;h2&gt;
Software can be simpler.&lt;/h2&gt;
&lt;p&gt;
It should come as no surprise that coupling software to a lower volatility thing &lt;em class="paren-em"&gt;(your business)&lt;/em&gt; than a higher volatility thing &lt;em class="paren-em"&gt;(existing technical designs and partnerships)&lt;/em&gt; means that less maintenance is needed.
Having all parts of the stack focusing on a clear-ish common thing &lt;em class="paren-em"&gt;(again, the business)&lt;/em&gt; instead of the fleeting specifics of implementation naturally means there is less coupling between things that are naturally prone to change.&lt;/p&gt;
&lt;p&gt;
This method is provided as an example of how to think through software design.
There’s no reason to implement it as literally as I’ve written it.
By following this avenue of thinking, your software will be more correct &lt;em&gt;and&lt;/em&gt; more maintainable, all for the low cost of understanding the true needs of your business.&lt;/p&gt;
</content>
    <published>2025-01-25T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/blog/2025/01/25/build-better-software-by-thinking-about-filing-cabinets</id>
    <title>Build better software by thinking about filing cabinets.</title>
    <updated>2025-01-26T00:26:31Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/blog/2025/01/11/modes-of-capability-distribution-in-systems"/>
    <content type="html">&lt;p class="introduction"&gt;
I’ve been thinking a bit about how complexity emerges in a system, and whether the relative size of its subcomponents can influence the amount of complexity possible.
Let’s explore it a bit.&lt;/p&gt;
&lt;p&gt;
&lt;strong&gt;Warning: this analysis is more of a stream-of-consciousness exploration to see how a few abstract things relate to each other.
It’s not trying to assert anything especially meaningful, nor is it carefully proving or demonstrating any of its points.&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;
Systems are defined by their components engaging in feedback loops to advance the system toward its target state.
A change in the state of a subcomponent typically triggers some flow of information to another subcomponent, which may result in some type of action to help the system maintain homeostasis of its overarching state.
The primary focus here will be on the ability of components to take those actions.&lt;/p&gt;
&lt;p&gt;
We want to answer this question:&lt;/p&gt;
&lt;p&gt;
&lt;strong&gt;Does the size of a system’s components influence how large the system is able to grow?&lt;/strong&gt;&lt;/p&gt;
&lt;h2&gt;
Synthesizing component-oriented system types.&lt;/h2&gt;
&lt;p&gt;
We have a few examples of systems we can use to help us figure out what variables we’re trying to work with:&lt;/p&gt;
&lt;ul&gt;
  &lt;li&gt;
A mammalian body consists of stable subcomponents called organs.
Each organ has a highly specific job, its own unique substructures, and specialized cells suited for the job of the organ.  &lt;/li&gt;
  &lt;li&gt;
A company usually comprises a number of well-defined departments and teams.
The skills needed to support the activities of these teams usually differs across the functional units.  &lt;/li&gt;
  &lt;li&gt;
In an ant colony, there tends to be no specialization between individual drones nor organizing structures determining their work.
With few exceptions, each member is able to do any job and moves between jobs as needs emerge through point-to-point communication.  &lt;/li&gt;
  &lt;li&gt;
A baseball team has members who take different roles out on the field with no hierarchy and little communication.
Each player applies their specialization independently to support the team.  &lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;
In &lt;a href="/references/K1"&gt;Robert Keidel’s &lt;em&gt;Seeing Organizational Patterns: A New Theory and Language of Organizational Design&lt;/em&gt;&lt;/a&gt;, he proposes three archetypes about how individuals interact in an organization.
We can use those same archetypes more abstractly to think about how system components relate to one another.
They are:&lt;/p&gt;
&lt;ul&gt;
  &lt;li&gt;
&lt;strong&gt;Cooperation:&lt;/strong&gt; Components are integrated in a way that allows them to operate as equal peers in their decisions and actions.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Control:&lt;/strong&gt; The system has a subordinate structure that gives members further up in the hierarchy power over the lower members.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Autonomy:&lt;/strong&gt; Separation is built into the design such that system components do not have to interact.  &lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;
Comparing these traits to our examples, we can easily conclude that mammals’ bodies and typical companies are patterned off of hierarchy and therefore fit the Control archetype.
Ant colonies tend more toward the Cooperation aspect, with each member communicating to assess and act on the needs of the colony.
A baseball team demonstrates an organization that focuses primarily on Autonomy.&lt;/p&gt;
&lt;p&gt;
Let’s accept these three archetypes as our system types.
We’ll test out the properties of each of these archetypes to form some theories about how their unique constraints influence their ability to scale.&lt;/p&gt;
&lt;h2&gt;
Autonomy: little growth potential.&lt;/h2&gt;
&lt;p&gt;
First up, let’s look at Autonomy.
Following the baseball example, we see that this type of system has trained individuals into different roles which require little-to-no communication between the other players to execute.
The system is patterned up front—players are assigned to a particular job and trained on how to do it—and then the system is left to do what it can.
If the pattern is not working, this system has to change paradigms temporarily to reform itself.
Either one component of the system needs to analyze the system and apply the Control paradigm to redefine the system, or each of the autonomous components need to apply the Cooperation pattern to reassess and reorganize.&lt;/p&gt;
&lt;p&gt;
What constrains this pattern’s ability to grow into a complex system?&lt;/p&gt;
&lt;p&gt;
In order to be successful &lt;em class="paren-em"&gt;(and apply the paradigm purely)&lt;/em&gt;, every component of this system needs some way to observe the global state and adapt to it.
Since the only specializations in the system occurs at the smallest component’s level, every component either needs to be able to peform every job, or has to have some ability to grow into other specializations, perhaps through training by other specialists.
Since the focus of this pattern is autonomy rather than coordination, every component needs to understand the global goals of the system, its current state, and the activities of any nearby &lt;em class="paren-em"&gt;(if not all other)&lt;/em&gt; components.
Without these per-component feedback loops, the system would not be able to adapt and grow.&lt;/p&gt;
&lt;p&gt;
It ends up being hard to differntiate the overall system and any lower-level components under this definition.
Even the baseball team design is not a pure autonomous system—baseball teams bring control and coordination into their designs to make choices.
It’s not all left up to a given component to figure it out.&lt;/p&gt;
&lt;p&gt;
The growth potential of Autonomy-based systems seems to be nearly 0.
There may not be any examples where such a system even truly exists: if a component and the system are indifferentiable, there may not be a system at all, just the component’s interior, and the component’s method of operation would likely need to be a different type of system to meet its theoretical requirements.&lt;/p&gt;
&lt;h2&gt;
Cooperation: quickly constrained by wasted potential.&lt;/h2&gt;
&lt;p&gt;
In many ways, a cooperative system resembles an autonomous system in the way we’re exploring them.
Each component needs to be able to possess a meaningfully comprehensive number of the system’s internal capabilities for the system to grow and adapt.
The biggest difference is that no component needs to understand the global state of the system under this design, components only need to be able to assess local conditions, make decisions about them, and rely that information to other nearby components to solicit their support.&lt;/p&gt;
&lt;p&gt;
This creates some efficiencies—units near a problem are fully empowered to self-organize quickly around it without the overhead of administrative layers.
It also poses a constraint for inefficiency.
Without any administrative activities, the possible complexity of local state trades off against quality of information and therefore system performance.&lt;/p&gt;
&lt;p&gt;
This works okay for ants: if the food stores are running low, any individual can recognize and communicate this to redirect more effort toward food collection.
Any ant involved in that activity is capable of noticing when food stores are at an appropriate level to cease that activity.
Information decay is pretty minimal, the worst risk is that too many drones accidentally collect too much food, but the maximum possible overrage is that every engaged ant brings back one unit of food beyond the target stock level.&lt;/p&gt;
&lt;p&gt;
Consider a much more complex state, however: take for example a supermarket.
Per-item stock has to be managed much more closely than this.
Coordination can no longer be managed as a point-to-point issue—a worker who notices that more bananas are needed cannot communicate that they are working on correcting that stock to every possible other worker who could notice that the stock is running low.
Past a relatively small amount of complexity, who is doing what has to be coordinated by a meta-system outside of the individual components, whereby breaking the cooperation-only model since those new components govern the lower-level components.&lt;/p&gt;
&lt;p&gt;
Another constraint on this system is that every new capability of the system has to enjoy wide adoption amongst the components.
It doesn’t have to be that &lt;em&gt;every&lt;/em&gt; participant in the system possesses the capability, just that the capability is available where it’s needed to a degree adequate for the needs of the system.
This does mean though that every component in the system needs to be able to grow proportionally alongside the system, though.
This is quickly wasteful: each component needs to be able to perform tasks that it will increasingly never encounter the need for.&lt;/p&gt;
&lt;p&gt;
Every new capability additionally consumes more resources.
The component needs to be able to learn the capability, or its design needs to be updated to possess the capability innately, and these changes require resources in one form or another to accommodate.
Thus, resource availability also constrains the complexity potential of this system.&lt;/p&gt;
&lt;h2&gt;
Control: eventually constrained by inefficient resource usage.&lt;/h2&gt;
&lt;p&gt;
Hierarchical systems seem to be the most able to grow in complexity.
These systems change the function of their components until they reach a stable state of performance.
Each of these components has a specialized function.
The hierarchy arranges these specializations in such a way that it can continue building functions, encapsulating them into stable higher-level subcomponents, and it can grow its complexity from there.&lt;/p&gt;
&lt;p&gt;
This approach runs into ineffeciencies in its approach to forming stable components.
Many components may have needs that are similar between one another, but once stabilized, these systems often do not abstract shared responsibilities into components that are better optimized to provide the function across the whole system.&lt;/p&gt;
&lt;p&gt;
In fact, once we get to a certain level of complexity, managing the consequences of the complexity begins to take more and more resources that could have been otherwise employed to build refinements.
Subtle failure modes in subcomponents negatively interact with each other causing larger and unpredictable failures.&lt;/p&gt;
&lt;p&gt;
Resource usage also begins to explode with growth.
Redundancies form throughout the system.
The goals of subcomponents waver, falling in and out of alignment with the overarching system’s goals.
Complexity can continue growing in these systems so long as they are able to continue growing their resource consumption to make up for the exponential growth in inefficiency.
Attempts by the system to resolve inefficiencies require it to un-encapsulate a stable component to change how it works, introducing new complexities as it integrates better with other components to address the inefficiency, which necessarily changes the component in a way that produces new failure modes and therefore quality issues.
As complexity grows, so does the propensity for catastrophic failures.&lt;/p&gt;
&lt;p&gt;
With enough analytical and executive investment, it &lt;em&gt;might&lt;/em&gt; be possible to eliminate both inefficiency and catastrophic failure modes.
Assuming those internal constraints can be addressed, the only thing constraining how large and complex a system like this can grow is its environment.&lt;/p&gt;
&lt;hr class="thin"&gt;
&lt;p&gt;
So there we have it.
It seems that systems comprised of smaller, more uniform components will grow wasteful much too quickly to achieve any real complexity.
Systems with a hierarchy of components ranging up to very large system-level stable components become wasteful at a slower rate, allowing them to grow much larger and more complex.&lt;/p&gt;
</content>
    <published>2025-01-11T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/blog/2025/01/11/modes-of-capability-distribution-in-systems</id>
    <title>Modes of capability distribution in a system.</title>
    <updated>2025-01-12T04:44:45Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/blog/2025/01/04/how-i-use-zotero-to-drive-my-zettelkasten"/>
    <content type="html">&lt;!-- m_ --&gt;
&lt;p class="introduction"&gt;
 can help with those.
In this post, I’ll detail my workflow in managing and making use of my Zotero content.&lt;/p&gt;
&lt;p&gt;
My Zotero workflow involves four major stages:&lt;/p&gt;
&lt;ol&gt;
  &lt;li&gt;
&lt;strong&gt;Collecting:&lt;/strong&gt; Day-to-day activity of putting stuff into Zotero.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Managing:&lt;/strong&gt; Tending to the ergonomics of the library.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Processing:&lt;/strong&gt; Reading or watching the content, specifically while taking notes on it.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Referencing:&lt;/strong&gt; Making long-term use of the gathered material.  &lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;
These stages are mostly self-explanatory, but I’ll go into more detail on each.&lt;/p&gt;
&lt;h2&gt;
Collecting.&lt;/h2&gt;
&lt;p&gt;
This is the data hoarding and procrastination stage.
While scrolling through social media, scouring my RSS feeds, or in navigating the natural course of life, I’ll encounter articles or other media and send it to Zotero.
I do this either through sending the item to the Zotero app through the iOS share sheet, or by clipping the item in the desktop Firefox Zotero extension.
I may or may not have read the piece, but saw enough of it to want to go deeper.&lt;/p&gt;
&lt;h2&gt;
Managing.&lt;/h2&gt;
&lt;p&gt;
This is where the most technical process is… and probably the least value addition.
By tagging and cataloguing the new content, I ensure that I have a saved copy of the content, that the items can be identified by which processing stage they are in, and that I have some way of stumbling across the content again in the future when I need to put it to work.&lt;/p&gt;
&lt;p&gt;
I have several saved searches in Zotero.
These are basically top-level folders that dynamically locate items based on various parameters.
Most of my saved searches identify items by presence or absence of tags, whether the entry has an archived copy of the media yet, or where in Zotero the item can be found. Each saved search is numbered sequentially to reflect the item’s traversal through the &lt;strong&gt;Managing&lt;/strong&gt; and &lt;strong&gt;Processing&lt;/strong&gt; phases.&lt;/p&gt;
&lt;p&gt;
  &lt;img src="/media/blog/zotero-searches.gif" alt="Zotero saved searches"&gt;
&lt;/p&gt;
&lt;ol&gt;
  &lt;li&gt;
&lt;strong&gt;Unattached:&lt;/strong&gt; All items that don’t yet have an attachment &lt;em class="paren-em"&gt;(i.e., the items which were sent from iOS)&lt;/em&gt;. To progress from this stage, I need to reopen the item on a desktop browser, clip it a second time there, wait for the document to snapshot, and then merge the duplicate records in Zotero.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Unfiled:&lt;/strong&gt; These items have not yet been filed into any of my Zotero categorization folders. I’ll show how I structure these folders in the next section. Items progress into the next stage after getting catalogued into one or more folders.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Unread:&lt;/strong&gt; Anything that does not have the &lt;code class="inline"&gt;read&lt;/code&gt; tag on it. A little over half of my Zotero catalogue languishes in this state.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Up Next:&lt;/strong&gt; An infrequently used stage, this one tracks anything with the &lt;code class="inline"&gt;up next&lt;/code&gt; tag on it. I use this when I have a specific research topic and I want to track anything related.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;To Cite:&lt;/strong&gt; This is a new one for me! I’ve noticed that I only add new things to my &lt;a href="/references"&gt;reading list&lt;/a&gt; when I’ve taken notes on it, but I want to start moving things there to more accurately reflect what I’ve been reading, even if I don’t have notes to publish yet. This category finds all items with a &lt;code class="inline"&gt;read&lt;/code&gt; tag but no &lt;code class="inline"&gt;cited&lt;/code&gt; tag.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;To Zettel:&lt;/strong&gt; The main reason I have any of this practice is to integrate content into my &lt;a href="/notes"&gt;Zettelkasten&lt;/a&gt;. This tracks anything with the &lt;code class="inline"&gt;unzetteled&lt;/code&gt; tag. I add this tag to &lt;code class="inline"&gt;read&lt;/code&gt; items if I decide the content was worth further breaking down and integrating—but plenty of writing does not meet this standard. I’d guess that about 70% of the stuff that I thought important enough to save or read later ends up labeled for further processing. Less than 10% of my catalogue is waiting to get processed into something more useful.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Zetteling:&lt;/strong&gt; Some things take a long time to break down into notes, notably books. This stage tracks those longer-running projects. This is flagged with the &lt;code class="inline"&gt;zetteling&lt;/code&gt; tag.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Zetteled:&lt;/strong&gt; This is the final stage. At present, it’s pretty rare for things to make it all the way here—less than 10% of my Zotero content also has a &lt;code class="inline"&gt;zetteled&lt;/code&gt; tag.  &lt;/li&gt;
&lt;/ol&gt;
&lt;h3&gt;
Organization.&lt;/h3&gt;
&lt;!-- m_ --&gt;
&lt;p&gt;
 from another member of the Zettelkasten community.
While this may or may not be a good idea for constructing a Zettelkasten &lt;em class="paren-em"&gt;(most say probably not, it violates some of the fundamental principles, but I’ve found it useful)&lt;/em&gt;, it’s definitely helpful for cataloguing articles and books.&lt;/p&gt;
&lt;p&gt;
In the screenshot, you can see my first and second levels of organization.
In some cases, I’ll go down to third or even fourth levels, but as of right now, I don’t really want the categorization to get too fine-grained.
I’m considering starting to use the tagging system to add more specific topical indicators to each item, but haven’t yet.
Tagging systems don’t work well with the way I’ve learned to think, and Zotero has a perfectly competent search feature if I need to find anything very specific.&lt;/p&gt;
&lt;!-- m_ --&gt;
&lt;h2&gt;
Processing.&lt;/h2&gt;
&lt;p&gt;
My approach to consuming content and making use of it changes pretty often, but the current practice has stayed pretty stable.
Zotero lets you add notes as children items to a top-level item &lt;em class="paren-em"&gt;(e.g., an article)&lt;/em&gt;.
When I’m reading an item in Zotero, I’ll start a new note and type out anything that stands out.
If I find that what I’ve written is worth further investment, I’ll add the &lt;code class="inline"&gt;unzetteled&lt;/code&gt; tag to it.
Occasionally, but not as often as I’d like, I’ll start hand-writing and linking together the most useful of those notes, adding them into my paper Zettelkasten.
Once that’s completed, I’ll swap the &lt;code class="inline"&gt;unzetteled&lt;/code&gt; tag with a &lt;code class="inline"&gt;zetteled&lt;/code&gt; tag.&lt;/p&gt;
&lt;p&gt;
I’m actually surprised that I haven’t done this yet, but I need to do a writeup on my whole Zettelkasten practice.&lt;/p&gt;
&lt;p&gt;
This is a fine summary of it, though.&lt;/p&gt;
&lt;p&gt;
Outside of the Zotero workflow, on a note card, I keep track of which notes I’m adding and which I’m updating.
After I get to a good stopping place, I’ll go through that list and type out the additions and updates into my &lt;a href="/notes"&gt;digital Zettelkasten&lt;/a&gt;.
This allows me to access my notes from anywhere, and to share them publicly as well.&lt;/p&gt;
&lt;h2&gt;
Referencing.&lt;/h2&gt;
&lt;p&gt;
My Zotero archive serves as long-term storage for items, regardless of stage.
So long as I have gotten the item at least through the &lt;strong&gt;Unfiled&lt;/strong&gt; stage, whenever I’m researching something or trying to remember it, I can look through the relevant folders in the hierarchy to see items relevant to my inquiry.
This is often a good trigger to actually finish processing an item.
The best time to really get into a piece of content is when it has an immediate interest to what you’re focusing on.
I do appreciate having notes on content from times when I processed it even without having a specific intended usage for the information, so there’s not really an ideal process when it comes to preparing for later reference.&lt;/p&gt;
&lt;p&gt;
With one main exception.&lt;/p&gt;
&lt;p&gt;
The Zettelkasten method is well-suited for gathering and linking information and knowledge.
The way it presents this data back to you later is well-adapted to discovering insights and remembering details and connections you’d forgotten you once had, all in the specific context of what you’re now thinking about.
As such, having the media filed away for rediscovery in Zotero is &lt;em&gt;good&lt;/em&gt;, but having it fully processed into the Zettelkasten is &lt;em&gt;very&lt;/em&gt; powerful.&lt;/p&gt;
&lt;hr class="thin"&gt;
&lt;p&gt;
In closing, Zotero is very flexible in how you use it.
It allows you to use tagging, folders, saved searches, and its robust search features to achieve many different styles of personal knowledge management.
My own approach focuses on getting information well-established for later discovery, but more importantly it streamlines me in feeding knowledge to my Zettelkasten.&lt;/p&gt;
&lt;p&gt;
If you’re interested in getting into the practice of using Zotero, you &lt;em&gt;could&lt;/em&gt; copy my approach and start adapting it, but I’d strongly encourage you to first think deeply about what you’re trying to achieve and then design a very lightweight process around &lt;em&gt;that&lt;/em&gt;.
You can always add more complexity as you get a better understanding of what you need and what subtle pressures your choices put onto your practice.&lt;/p&gt;
</content>
    <published>2025-01-04T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/blog/2025/01/04/how-i-use-zotero-to-drive-my-zettelkasten</id>
    <title>How I use Zotero to drive my Zettelkasten.</title>
    <updated>2025-01-05T00:17:51Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/blog/2024/12/28/you-should-use-zotero"/>
    <content type="html">&lt;p class="introduction"&gt;
My name is Shaine, and I am a data hoarder.&lt;/p&gt;
&lt;!-- m_ --&gt;
&lt;p&gt;
 to collect and process books and online media.
Zotero is a &lt;em class="paren-em"&gt;(completely)&lt;/em&gt; free research assistant.
Before you dismiss this as an academic practice that probably doesn’t apply to you, let me first make this pitch:&lt;/p&gt;
&lt;p&gt;
&lt;strong&gt;We are all researchers of the world and our interests.&lt;/strong&gt;&lt;/p&gt;
&lt;h2&gt;
The normal cast of solutions don’t work.&lt;/h2&gt;
&lt;p&gt;
You probably already have a set of tools for managing your intake of information.
Unless you’ve invested a great amount of time into it, you probably regard it as mediocre but passable for the amount of effort you’re willing to exert for it.
It’s lossy.
It’s messy.
Sometimes you wish you had a way to remember every book you’ve read, or to find again that article with that great advice so you can share it in its original prose.
Maybe you know exactly how to find it again, but due to the natural rot of the internet, your bookmark points to a 404 page.&lt;/p&gt;
&lt;p&gt;
Oh well, nothing to be done about it now.
Right?&lt;/p&gt;
&lt;p&gt;
The best time to make an improvement is now, though, even if you can’t recover from those failures in the moment.
You can at least make sure they don’t occur again.&lt;/p&gt;
&lt;p&gt;
Zotero is the perfect solution to these classes of problem.
It effectively replaces most use cases for many neighboring tools such as:&lt;/p&gt;
&lt;ul&gt;
  &lt;li&gt;
    &lt;p&gt;
Browser bookmarks    &lt;/p&gt;
  &lt;/li&gt;
  &lt;li&gt;
    &lt;p&gt;
Keeping every tab you’ve ever opened until the sun dies or the occasional purifying power of a browser crash visits you
&lt;!– m_ –&gt;    &lt;/p&gt;
  &lt;/li&gt;
  &lt;li&gt;
    &lt;p&gt;
Lists on places like YouTube    &lt;/p&gt;
  &lt;/li&gt;
  &lt;li&gt;
    &lt;p&gt;
Various impermanent histories like in the browser or Slack    &lt;/p&gt;
  &lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;
Zotero specializes in collection and archival.&lt;/h2&gt;
&lt;p&gt;
Far and away, my favorite feature of Zotero is that it creates an archived version of anything you put into it.
When you trigger the browser plugin to clip a webpage, it sends the metadata for storage in Zotero and compiles the webpage into a static local version.
That copy is more than just the webpage, too—it’s a file you can open and mark up in Zotero.&lt;/p&gt;
&lt;p&gt;
All of the tagging, organizing, and searching features you could want out of such a tool are fully baked-in.&lt;/p&gt;
&lt;p&gt;
Zotero also offers a considerable amount of free storage online for backing up and syncing your archive between devices.
I used it for the first few years without getting close to the limit.
More storage can be purchased pretty inexpensively… but I’ve found this unnecessary.
Zotero integrates simply with WebDAV servers, too, so you can switch from their hosting to your own without much difficulty at all.&lt;/p&gt;
&lt;!-- m_ --&gt;
&lt;p&gt;
.&lt;/p&gt;
&lt;p&gt;
Zotero offers apps on all major operating systems and mobile devices.
Unfortunately, the webpage clipping feature only works when done from a desktop browser, but aside from that, each platform is full-featured.
Mobile devices can still send items to Zotero, just without the snapshot file.&lt;/p&gt;
&lt;p&gt;
With these features, we can get away from the inadequacy of bookmarks and long-running tabs, paid services like Pocket, and we can dodge the slow corrosion of content on the internet.&lt;/p&gt;
&lt;h2&gt;
My progress.&lt;/h2&gt;
&lt;p&gt;
My archive contains over 1,000 items &lt;em class="paren-em"&gt;(almost 600 of which are, embarassingly, unread)&lt;/em&gt;.
I started it in 2020.
This is a tool I use every single day, and how I manage it has evolved significantly over the years.&lt;/p&gt;
&lt;p&gt;
In my &lt;a href="/blog/how-i-use-zotero-to-drive-my-zettelkasten"&gt;next post&lt;/a&gt;, I’ll go through how I structure and refine what I’ve captured.
I strongly believe in the usefulness of aggregating content this way and then putting it to work.
I also believe that anyone can use it in its most basic way and still get great value from their collection practice.&lt;/p&gt;
&lt;p&gt;
Give it a try for a few months, won’t you?&lt;/p&gt;
</content>
    <published>2024-12-28T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/blog/2024/12/28/you-should-use-zotero</id>
    <title>You should use Zotero.</title>
    <updated>2025-01-04T23:36:12Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/blog/2024/12/15/template-for-setting-yearly-personal-goals"/>
    <content type="html">&lt;p class="introduction"&gt;
Setting goals for the year can be daunting.
A methodical approach can take out some of the guesswork—and risk.&lt;/p&gt;
&lt;p&gt;
It’s that time of year again, when the changing of the seasons and the calendar year invites us to reflect on how things are going and how we &lt;em&gt;want&lt;/em&gt; things to go.&lt;/p&gt;
&lt;p&gt;
I always struggle with this.
This seems like a pretty common affliction for those of us who even bother with it—and not bothering with it seems to be even more common.
To be honest, more often than not, I find myself in that latter category.
It’s hard to get started, and past results encourage me to believe that there’s not really any purpose to it.
Which is funny, seeing as how I’m effective at setting and achieving goals in a work setting.
I suppose I find that fulfilling a business’ vision is much simpler than identifying and enacting one in my personal life.&lt;/p&gt;
&lt;p&gt;
But!
Methodicalism is a pretty easy way to cut through ambiguity and friction.
Let’s put all of the effort I’ve put into my &lt;a href="/notes"&gt;Zettelkasten&lt;/a&gt; to work for us by extracting a prescriptive process from my notes about goal setting, motivation, purpose, and whatever else pops up.&lt;/p&gt;
&lt;p&gt;
Below is a template for exploring your life context, the past year, establishing a positive mindset, setting goals, and incorporating them.
Since I’ve been working at all of this for a number of years, I have already sat with a number of these longer-horizon analyses.
If you don’t have anything ready to think about or reference, those ideas might become attractive focal points.
Don’t get lost in them, though!
They can pose a stumbling block for procrastination.
If you can’t look ahead 30 years, can you look ahead 5?
If you don’t know what you want &lt;em class="paren-em"&gt;(a notoriously daunting thing to identify!)&lt;/em&gt;, can you identify a good-enough proxy for it?
Your goals do not require you to know everything about your life and intentions, they only need to align with what you &lt;em&gt;do&lt;/em&gt; know.
You can put most of your focus onto your retrospective if some of those loftier answers are not easily forthcoming.&lt;/p&gt;
&lt;p&gt;
All right, let’s jump into the template!
This is a written document for a reason—it’s critical that you write this all down so that you can reference it over time.&lt;/p&gt;
&lt;h2&gt;
Establish context.&lt;/h2&gt;
&lt;p&gt;
&lt;em&gt;Before getting into the goal-setting, you need to get into a growth mindset and ground yourself in your life’s context.&lt;/em&gt;&lt;/p&gt;
&lt;h3&gt;
Write limiting beliefs.&lt;/h3&gt;
&lt;p&gt;
&lt;em&gt;Anything that creates a &lt;a href="/notes/2151,4D"&gt;scarcity mindset&lt;/a&gt;.&lt;/em&gt;&lt;/p&gt;
&lt;h3&gt;
Reframe into “liberating truths”.&lt;/h3&gt;
&lt;p&gt;
&lt;em&gt;&lt;a href="/notes/2143,3A"&gt;Restate&lt;/a&gt; limiting beliefs as opportunities for growth.&lt;/em&gt;&lt;/p&gt;
&lt;h3&gt;
Retrospect the past year.&lt;/h3&gt;
&lt;p&gt;
&lt;em&gt;What were the goals? Outcomes? Failures, successes? Regrets, gratitude?&lt;/em&gt;&lt;/p&gt;
&lt;h3&gt;
Synthesize.&lt;/h3&gt;
&lt;p&gt;
&lt;em&gt;Review those notes and extract 2–3 themes. What aspirations &amp; personal potential can you identify?&lt;/em&gt;&lt;/p&gt;
&lt;h3&gt;
Review &amp; update other horizon artifacts.&lt;/h3&gt;
&lt;p&gt;
&lt;em&gt;Read through or establish artifacts about fundamental purpose and long-term desires, such as a &lt;a href="/notes/2144,2"&gt;life compass&lt;/a&gt;, &lt;a href="/notes/1281,3E3"&gt;life horizons&lt;/a&gt;, or any &lt;a href="/notes/4111,2"&gt;other such artifacts&lt;/a&gt;. Further synthesize and update with these. Now’s a good time to conduct a &lt;a href="/notes/2144,1"&gt;quality-of-life survey&lt;/a&gt;.&lt;/em&gt;&lt;/p&gt;
&lt;h2&gt;
Create goals.&lt;/h2&gt;
&lt;h3&gt;
Brainstorm.&lt;/h3&gt;
&lt;p&gt;
&lt;em&gt;&lt;a href="/notes/2121"&gt;Brainstorm&lt;/a&gt; ideas for goals, with an abundance mindset from the above artifacts. Don’t hold back!&lt;/em&gt;&lt;/p&gt;
&lt;h3&gt;
Filter.&lt;/h3&gt;
&lt;p&gt;
&lt;em&gt;Reduce the list to 7–12 goals for the year that best address the focus areas that have been identified.&lt;/em&gt;&lt;/p&gt;
&lt;h3&gt;
Formalize and plan.&lt;/h3&gt;
&lt;p&gt;
&lt;em&gt;Frame each selected goal in terms of &lt;a href="/notes/2143,2A"&gt;Specific&lt;/a&gt;, &lt;a href="/notes/2143,2B"&gt;Measurable&lt;/a&gt;, &lt;a href="/notes/2143,1A"&gt;Actionable&lt;/a&gt;, &lt;a href="/notes/2143,1B"&gt;Risky&lt;/a&gt;, &lt;a href="/notes/2143,2E"&gt;Time-bound&lt;/a&gt;, &lt;a href="/notes/2143,1C"&gt;Exciting&lt;/a&gt;, &lt;a href="/notes/2143,2D"&gt;Relevant&lt;/a&gt;. Plot them over the year, 3–4 per quarter.&lt;/em&gt;&lt;/p&gt;
&lt;h2&gt;
Act.&lt;/h2&gt;
&lt;h3&gt;
Define triggers.&lt;/h3&gt;
&lt;p&gt;
&lt;em&gt;Figure out the &lt;a href="/notes/2143,8"&gt;activation triggers&lt;/a&gt; that incorporate actions into existing routines. Decide how goals will remain visible.&lt;/em&gt;&lt;/p&gt;
&lt;h3&gt;
Get to work.&lt;/h3&gt;
&lt;p&gt;
&lt;em&gt;Stop planning. &lt;a href="/notes/2143,7"&gt;Get started&lt;/a&gt; by identifying next immediate small steps and then do them.&lt;/em&gt;&lt;/p&gt;
&lt;h3&gt;
Create review checkpoints.&lt;/h3&gt;
&lt;p&gt;
&lt;em&gt;How are you going to externalize some triggers to help you restore your focus periodically? Calendars work great for this. What cadences will you benefit from?&lt;/em&gt;&lt;/p&gt;
</content>
    <published>2024-12-15T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/blog/2024/12/15/template-for-setting-yearly-personal-goals</id>
    <title>A template for setting yearly personal goals.</title>
    <updated>2024-12-31T22:15:07Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/blog/2024/01/01/2023-in-review"/>
    <content type="html">&lt;p class="introduction"&gt;
2023 started off with a calm transition from senior engineering manager into engineering director, but once it started rolling, boy did it escalate quickly.&lt;/p&gt;
&lt;p&gt;
I closed out 2023 by reviewing my notes and schedule throughout the year.
I’ve pulled from those a handful of accomplishments and focus areas which illustrate what roles such as mine look like in a macro sense.&lt;/p&gt;
&lt;p&gt;
As I went through it, I noticed a sort of narrative arc in it.
In January 2023, I was made an engineering director, and it’s cool to see my year break into two major chapters.
The first deals with moving away from my role as a senior engineering manager while the second attends to the business of inhabiting the role of a director.&lt;/p&gt;
&lt;h2&gt;
Transitioning away from Senior Engineering Manager.&lt;/h2&gt;
&lt;h3&gt;
January.&lt;/h3&gt;
&lt;p&gt;
In January, my focus was largely on shoring up my team.
With my promotion, I saw a need to move into a new layer of abstraction in the organization, which in turn meant adding structure and culture to the team so I could turn my attention away from it without worry.&lt;/p&gt;
&lt;p&gt;
I did this in several ways:&lt;/p&gt;
&lt;ul&gt;
  &lt;li&gt;
I started codifying the team’s culture into documents that articulated how and why I had made the decisions and designs I had. This gave them something to reference and explicitly work into their processes so that as they continued to evolve, they could stay true to what I’d intended &lt;em class="paren-em"&gt;(for as long as my past intentions matter against their realities, anyway)&lt;/em&gt;.  &lt;/li&gt;
  &lt;li&gt;
I enacted a plan to improve the quality of the team’s documentation by writing out a prescription of what it needed to look like and then capturing tasks for closing the gaps. Over the upcoming months, we would use the on-call process to review these gaps and strengthen their docs.  &lt;/li&gt;
  &lt;li&gt;
One of our most senior team members, Catalina, was the sole expert in one of our most important systems, so we worked on a succession plan to identify and make progress on how to distribute those responsibilities better. &lt;em class="paren-em"&gt;(This is going to be very helpful for supporting her actual succession later on in the year.)&lt;/em&gt;  &lt;/li&gt;
  &lt;li&gt;
There were performance issues on the team at the time, which led us to improving our skills in supporting others while also building a stronger foundation about the concrete requirements of being on the team.  &lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;
I also sent some holiday gifts to the team.
To further reinforce the themes at the time, I sent some &lt;a href="https://www.lamy.com/en/lamy-safari/" target="_blank"&gt;Lamy Safari fountain pens&lt;/a&gt; to everyone, accompanied with a demand that they dedicate more time to writing.&lt;/p&gt;
&lt;p&gt;
This seems unimportant in this point of the story, but remember it for later: in February, we held a Data Summit to bring together members and leaders across the org to discuss our data approach and team structures.
It founded our new data organization, which we’d been rather quickly building out over the previous few months.&lt;/p&gt;
&lt;h3&gt;
February.&lt;/h3&gt;
&lt;p&gt;
I started February with a pretty intense urge to build something.
Realizing some blindspots in my approach, I eventually decided to use Elixir and Phoenix to build an analytics platform off of our data in Gitlab.
This automation helped me assist the team with a number of hygienic, performance, and quality issues.&lt;/p&gt;
&lt;p&gt;
To further improve quality and sustainability on the team, we also launched our on-call process.
This started mostly as a path to clean things up, add more monitoring to things, and make sure that other team members had enough of a starting place for understanding the details of the systems they owned.&lt;/p&gt;
&lt;p&gt;
In light of some issues we were having in achieving our product goals, I started finding oblique ways to interrogate our approach to planning and prioritization.
Using &lt;a href="/references/G1" target="_blank"&gt;Liminal Thinking&lt;/a&gt; and &lt;a href="/references/M3" target="_blank"&gt;Thinking in Systems&lt;/a&gt; as guides, we changed parts of our approach fundamentally to take more authority and creativity over how we chose to solve our problems.
I used this same approach to help other leaders in our organization to answer some fundamental questions about why teams at large did not seem to be able to achieve what was expected.&lt;/p&gt;
&lt;p&gt;
This month we also kicked off our new hiring process.
I’ve written more about how our hiring panel works &lt;a href="/blog/2023/11/26/hiring-bar" target="_blank"&gt;here&lt;/a&gt;.&lt;/p&gt;
&lt;h3&gt;
March.&lt;/h3&gt;
&lt;p&gt;
In March, I traveled with my merry band of friends to Tahiti and Moorea.
It was a beautiful trip.
The house we stayed in was right on the beach in Moorea, maybe 40 feet away from calm clear ocean water.
In the distance, about half a mile away, we could see and hear the violence of the open ocean crashing against the reef.
The whole thing was quite an experience.&lt;/p&gt;
&lt;p&gt;
Back in the office, we completed our reading of &lt;a href="/references/L6" target="_blank"&gt;An Elegant Puzzle&lt;/a&gt;.
This has been the most influential book over my work process to date.
Accordingly, this also led to our creation of a fairly comprehensive engineering management training program.
We never did launch it, but the outline along is helpful for aligning EMs with the full range of topics which we need them to be experienced in.&lt;/p&gt;
&lt;p&gt;
Our Salesforce Operations team had been reporting through me for several months at this point.
These activities helped me support their EM better by showing us what areas to put more focus onto in order to continue their journey in increasing their effectiveness.
We realized we had some specialization gaps on the team and worked with the organization to shift some focus from the QA and product management teams to support this team.&lt;/p&gt;
&lt;h3&gt;
April.&lt;/h3&gt;
&lt;p&gt;
In April, I began reading &lt;a href="https://www.rubick.com/" target="_blank"&gt;Jade Rubick’s excellent blog&lt;/a&gt; which led me to the concept of EM support teams.
To further out interests in providing better support for our EMs, I made an attempt at standing these up at Nav, which has been met with varied results and is worth putting more energy into.&lt;/p&gt;
&lt;p&gt;
I began my obsession with Yubikeys and personal information security this month.
I might have been a bit late on this though, the world seems to be moving away from needing this technology in favor of passkeys.
I’m still into it though.&lt;/p&gt;
&lt;p&gt;
I began preparing my own succession plan this month by training a new EM for the team I had directly reporting to me.&lt;/p&gt;
&lt;h3&gt;
May.&lt;/h3&gt;
&lt;p&gt;
The decision to hand off that team to a new EM was driven by a few factors:&lt;/p&gt;
&lt;ul&gt;
  &lt;li&gt;
I knew I was under-serving the EM and members of the SF Ops team by having another engineering team absorb so much of my focus  &lt;/li&gt;
  &lt;li&gt;
I knew that the organization was changing and I’d have more responsibilities to attend to rather quickly  &lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;
The latter came true rather quickly.
In May, the Data Engineering team started reporting through me after a reorg of our data teams.
We needed them to be more attuned to the engineering organization and less siloed within the data teams’ priorities.&lt;/p&gt;
&lt;h3&gt;
June.&lt;/h3&gt;
&lt;p&gt;
Completing an effort I’d started in January, we presented our official version of operating principles for the team which I was handing off.
I’ll have to write about this elsewhere, but a strong sense of principles is key to anything that requires a high degree of effectiveness.&lt;/p&gt;
&lt;p&gt;
After some discussion with my peers in other companies, I realized and resolved a blindspot in how I was supporting the engineers of this team.
We didn’t have brag docs!
We now have a review at the end of each month for people to take a moment to think through their efforts and capture them.
We do this together, which allows them to discuss what went on and to remind each other of the great things they’ve done for one another.
Capturing your accomplishments tends to be much more about your approach than the results of the project.&lt;/p&gt;
&lt;p&gt;
With all that done, and a few months of training under the belt, we finally migrated the team under Nick’s leadership as a brand new engineering manager.&lt;/p&gt;
&lt;p&gt;
Not a moment too early, either.
I’ve had very little exposure to data engineering in my career, so getting to know that team and its pressures demanded a lot of attention.
To further compound that fact, we decided as an organization that we needed to replace our existing data stack.&lt;/p&gt;
&lt;p&gt;
I set to work acquiring contracts for Snowflake, Fivetran, and dbt so we could migrate away from Redshift and home-rolled scripting.
This was my first exposure to vendor acquisition.&lt;/p&gt;
&lt;p&gt;
I’d been tinkering with that analytics platform I’d started building earlier in the year at this point and most of my problems were starting to point to a need to have a platform for managing knowledge about an organization.
Associating people with teams, teams with teams, and people with people is actually very complex when you start tracking that stuff over time.
Just modeling it is hard.
When you need to build and populate the historical data into it, though?
Forget about it.
I had to start building a whole new suite of tools just to perform and record my archaeological expedition into the history of the org.
So that became my new hobby.&lt;/p&gt;
&lt;h2&gt;
Transitioning into Engineering Director.&lt;/h2&gt;
&lt;p&gt;
With three engineering managers reporting to me and no ICs, I found myself in a position to change my attention to Engineering at large.
I made a point to set boundaries for how far of a team’s process and work I’d be willing to oversee, and started instead looking at the larger issues between teams, process, and culture within the organization.&lt;/p&gt;
&lt;h3&gt;
July.&lt;/h3&gt;
&lt;p&gt;
As I started working with the data engineering team, we quickly found ourselves in a spot where I needed to start training an interim EM.&lt;/p&gt;
&lt;p&gt;
We were also in a pinch as an organization, so I helped set up an emergency SWAT team sort of affair as an onsite in our Draper office.
We called it “Code Yellow”.
It was a pretty fun experience: I’ve rarely seen teams collaborate so dynamically and quickly as I did during that.
It’s rather powerful to get a bunch of people with varied skills together to declare a specific goal and complete freedom to self-organize and work toward that goal.&lt;/p&gt;
&lt;h3&gt;
August.&lt;/h3&gt;
&lt;p&gt;
August was mostly business-as-usual… aside from the layoff.
I was also thrilled to get to move one of our most experienced ICs, Catalina, back into my direct reports.
I’d been feeling a little too helpless about how difficult so many of our cross-team problems were to solve, and realized this reporting pattern would let us affect important change without having to deal with the bureaucracies of organizing multiple teams toward an effort.&lt;/p&gt;
&lt;h3&gt;
September.&lt;/h3&gt;
&lt;p&gt;
In September, we held another Data Summit.
New data leader, new data organization.
I think we’ve gotten it right this time.
I don’t think there’s any particular failure mode at play that has led us to hold three data reorgs in nine months.
I think that our organization of ~250 people is at exactly the right size for our data needs to be getting out of hand in comparison to the proportionally small group of data specialists that is reasonable for us to employ.
These constraints just combine particularly awkwardly!&lt;/p&gt;
&lt;p&gt;
Not directly related, another engineering leader left the organization and we had to move several teams under new leadership.
In this change, I picked up a team that is responsible for a key part of our data platform, which we call the Business Identities team.&lt;/p&gt;
&lt;p&gt;
Now with four EMs and a staff engineer reporting to me, I decided it was probably a little past due to begin holding my own staff meetings.&lt;/p&gt;
&lt;p&gt;
Entirely unrelated to my earlier interests in the year, we also started discussions with a work analytics platform called &lt;a href="https://jellyfish.co" target="_blank"&gt;Jellyfish&lt;/a&gt;.
They pull data from Gitlab, Jira, Confluence, and Google Calendar to shed light on all sorts of interesting things.
I sorta lost interest in building my own platform for this activity since theirs is so good at helping EMs better understand their teams.&lt;/p&gt;
&lt;p&gt;
Back during Code Yellow, we had a side conversation amongst engineering leaders about the gradual decay of our API abstractions—our systems were leaking way too much of their responsibilities into each other and it was slowing us down.
To resolve this, I helped found our “API Working Group”.
For us, a working group is a temporary team of volunteers who are tasked with solving a specific problem.
We’ve taken our approach for building these from &lt;a href="https://lethain.com/scaling-consistency/" target="_blank"&gt;Will Larson’s advice on scaling technical consistency&lt;/a&gt;.
The API WG’s scope was to identify the responsibilities and boundaries for core systems so we could begin reconciling discordant responsibilities in a central place rather than requiring client systems to make their own choices about integrations and priorities.&lt;/p&gt;
&lt;h3&gt;
October.&lt;/h3&gt;
&lt;p&gt;
In October we started helping my staff engineer fulfill her increased scope of responsibility by cross-training her into the data engineering team.&lt;/p&gt;
&lt;p&gt;
We were also seeing that our hiring process was stumbling on the abstractions we’d injected into the process with the hiring bar we’d started at the beginning of the year, so I helped build a training discussion for our interviewers so they could experience what our hiring barometers see during the hiring bar discussions.
I produced an example set of interviewer feedback submissions using ChatGPT and we used that to conduct a fake panel review on an imaginary candidate.
It was a very illuminating discussion!&lt;/p&gt;
&lt;p&gt;
As I got deeper into the data stack through my efforts with the data engineering and business identities teams, I founded our Data Governance Board to address some of the problems I was uncovering.
This is wholly new territory for me but I’m excited to get to support the org in this way.
It’s been difficult to make and understand decisions about how to manage data in the past.&lt;/p&gt;
&lt;h3&gt;
November.&lt;/h3&gt;
&lt;p&gt;
As part of the data governance process I’ve been trying to establish, we need a robust approach to describing our data and policies.
Prior data leaders had gone through the terrific trouble of getting a Datahub instance running internally, but we hadn’t adopted it widely yet.
I wanted to start leaning heavily onto it, but we were considerably constrained in how we could support its underlying technology.
It’s quite complex.
I started down a path of getting a SaaS version which is operated by Acryl, but the timing ended up being poor and vendor discussions are currently stalled.&lt;/p&gt;
&lt;p&gt;
We officially stood up, launched, and trained on our Jellyfish instance, though.&lt;/p&gt;
&lt;p&gt;
My staff engineer and I began working this month on some of the key stuff that we’d intended for when we joined forces.
Some parts of the primary platform are just completely broken in ways that no one team can confidently fix and subsequently can’t prioritize.
The perfect sort of work for two highly tenured engineers to solve.&lt;/p&gt;
&lt;h3&gt;
December.&lt;/h3&gt;
&lt;p&gt;
Okay, one last data-related reorg and we can be done with that, right?
Early in December I consolidated our machine learning engineers into a team that I’m leading directly which I’ve termed Machine Learning Operations.
ML Ops is going to focus on making decisions that scale across our product engineers easily to support their integration of machine learning models into production systems.
You can learn more about my strategy in &lt;a href="/blog/2023/12/27/template-for-ops-platform-teams" target="_blank"&gt;this writeup&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;
In an attempt to solve a number of organizational issues explored above, I introduced two engineering design documents to the leaders across engineering:&lt;/p&gt;
&lt;ul&gt;
  &lt;li&gt;
APIs must surface domain-level, not implementation-level, concepts and clients must endeavor to couple only to domain concepts  &lt;/li&gt;
  &lt;li&gt;
Teams must own complete domain-level problems and concomitant data, not just the solutions that they prefer or have built  &lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;
Between these two things, we should be able to create salient and robust abstractions across our sociotechnical systems which allow a significant increase in creativity and ownership within teams.
It’ll be a tough road to actually execute on any of this stuff, but we must.
When we come back to this at the end of 2024, I expect to see that I’ve put a lot more work into establishing these things and moving our attention onto other things more worthy of our time.&lt;/p&gt;
</content>
    <published>2024-01-01T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/blog/2024/01/01/2023-in-review</id>
    <title>A year as an engineering director: 2023 in review.</title>
    <updated>2024-01-01T22:53:53Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/blog/2023/12/27/template-for-ops-platform-teams"/>
    <content type="html">&lt;p class="introduction"&gt;
Clearly stating the purpose and trajectory of a team is an important but oft-undervalued part of creating a new team.
While missions and visions may seem like ambiguous artifacts intended only for the peacocking of the management class, well-crafted statements of intention can be very helpful to a team.
They tell you and your stakeholders what is in- and out-of-bounds.
What to expect from you—and not.&lt;/p&gt;
&lt;p&gt;
I’ve recently stood up a new Machine Learning Operations team.
As part of that, I spent some time reflecting on their purpose and putting it into writing.
I found that what I saw as their constraints and driving factors actually applied to almost every operations and platform team.
Perfect for a template!&lt;/p&gt;
&lt;p&gt;
Before we get to that, it’s worth exploring some of the background that went into it.&lt;/p&gt;
&lt;h2&gt;
Developing purpose for service teams.&lt;/h2&gt;
&lt;p&gt;
The most important part of all of this is to clarify &lt;strong&gt;what needs to be solved&lt;/strong&gt; by this team.
The necessity of a solution entails the existence of a &lt;strong&gt;problem&lt;/strong&gt;, which will serve as the team’s key focus.
Additionally, we want to add some structure to give the team guidance on their approach, so we want to capture some high-level notes on &lt;strong&gt;how we’ll solve the problem&lt;/strong&gt;.
This will need to account for what’s &lt;strong&gt;realistic for the business&lt;/strong&gt; to support.
Anything can be solved with unlimited time or money, but chances are that this isn’t the length of the leash you’ve been handed.&lt;/p&gt;
&lt;p&gt;
When you look at this obliquely, you’ll see that we’re exploring different aspects of our &lt;strong&gt;constraints&lt;/strong&gt;.&lt;/p&gt;
&lt;p&gt;
In my case, and I’d conjecture this follows for most other cases, platform and operations teams must conduct themselves in a way that scales asymmetrically with the rest of the organization.
Every decision and project have to have a force-multiplication effect.
The changes they are looking for must be high leverage to continue having impact in an organization that is most likely out-pacing their own growth.&lt;/p&gt;
&lt;p&gt;
With this in mind, the strategic constraint I’m most focused on solving is the difference in growth and scale between our ML Ops team and the rest of the organization.
We’ll choose to focus our efforts on what makes product teams most autonomous and least reliant on the immediate efforts of ML Ops engineers.
We know it’ll take quite a lot of effort to get into that state, which is another constraint to account for.&lt;/p&gt;
&lt;h3&gt;
Artifacts of purpose.&lt;/h3&gt;
&lt;p&gt;
The constraints analysis described above could be written into an appendix, draft notes, or left entirely in your mind.
What we’re meaning to offer the team is the &lt;strong&gt;So What?&lt;/strong&gt; of it, which we’re going to capture as three small documents.&lt;/p&gt;
&lt;p&gt;
The first, and most important, is the &lt;strong&gt;vision&lt;/strong&gt;.
This describes &lt;em&gt;what the world looks like&lt;/em&gt; once the team has fully exhausted its purpose.
A great vision should rarely change, if ever, and most likely is not actually a goal that can be directly accomplished—it’s there to guide the team’s momentum in a particular direction.
It should be short and memorable.
Details will go into the other artifacts.&lt;/p&gt;
&lt;blockquote&gt;
  &lt;p&gt;
&lt;em&gt;Example: We are ending childhood hunger in the United States.&lt;/em&gt;  &lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;
Next is the &lt;strong&gt;mission&lt;/strong&gt;, which covers &lt;em&gt;how&lt;/em&gt; you’re fulfilling the vision at a high level.
This is the highest-level way you can find to describe the basics of your approach to solving the problem.
It should be brief enough to be impactful, but needs to contain enough detail about how you intend to operate to get a sense of what kinds of actions you’ll take.
This statement should be general enough to also resist getting changed.&lt;/p&gt;
&lt;blockquote&gt;
  &lt;p&gt;
&lt;em&gt;Example: We work to feed hungry children by organizing donation drives, warehousing donations, and coordinating logistics for distributing goods.
We do this through door-to-door solicitation and online advertising to collect digital donations through our websites.&lt;/em&gt;  &lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;
Finally, we have the &lt;strong&gt;strategy&lt;/strong&gt; which provides a coarse overview of the plan as imagined today.
A strategy usually isn’t a roadmap.
It likely covers the themes or initiatives of the team’s major next steps, though.
A good description will list a small handful of items which together provide a sense of motion along the path of the mission toward the outcomes of the vision.
These could be concrete goals or classes of effort necessary to make progress.&lt;/p&gt;
&lt;blockquote&gt;
  &lt;p&gt;
&lt;em&gt;Example: Our physical operations have been well-established for a decade, but our digital presence is still nascent.
To take the next step in our journey, we will first build a partnership with a digital marketing firm. Next, …&lt;/em&gt;  &lt;/p&gt;
&lt;/blockquote&gt;
&lt;h2&gt;
The template!&lt;/h2&gt;
&lt;h3&gt;
Vision.&lt;/h3&gt;
&lt;p&gt;
&lt;em&gt;Short, memorable statement about the change you want to make in the world.&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;
&lt;code class="inline"&gt;Team name&lt;/code&gt; enables &lt;code class="inline"&gt;target user group&lt;/code&gt; to &lt;code class="inline"&gt;do some important thing that is hard or missing today&lt;/code&gt;.&lt;/p&gt;
&lt;h3&gt;
Mission.&lt;/h3&gt;
&lt;p&gt;
&lt;em&gt;How do you operate to execute on the vision?&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;
We support the &lt;code class="inline"&gt;some valuable trait&lt;/code&gt; of &lt;code class="inline"&gt;target user group&lt;/code&gt; by building and maintaining architecture, patterns, infrastructure, and training materials for &lt;code class="inline"&gt;target user group members&lt;/code&gt; to use. Where a project needs to evolve any of those, we intend to embed into projects to learn and build alongside &lt;code class="inline"&gt;target user group members&lt;/code&gt;. Where a project primarily benefits from existing patterns and technology, we intend to support members of the team directly through education, clarification, and refinements, but otherwise allow the team to execute the project autonomously.&lt;/p&gt;
&lt;h3&gt;
Strategy.&lt;/h3&gt;
&lt;p&gt;
&lt;em&gt;What do the major parts of the long-ish-term plan look like?&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;
We will execute on this through four logical “stage themes”—this is a trajectory more than it is a clean four-chaptered book.&lt;/p&gt;
&lt;ol&gt;
  &lt;li&gt;
&lt;strong&gt;Learn through doing:&lt;/strong&gt; We will follow a project-embedding model to &lt;code class="inline"&gt;do the thing&lt;/code&gt; alongside &lt;code class="inline"&gt;target user group members&lt;/code&gt;. Our design choices will enable teams to maintain the work themselves as much as possible, but we expect to help with maintenance.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Abstract the architecture:&lt;/strong&gt; Taking what we have learned through multiple projects, we will refine the common requirements out into an architecture that optimizes for self-service.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Maintain the architecture:&lt;/strong&gt; Once things get into a largely self-service state, we will continue to support the architecture as its usage grows and our needs evolve. We will take cues from those using it and the system itself to decide where to further invest.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Return to step 1:&lt;/strong&gt; Where things are now humming along without &lt;em&gt;requiring&lt;/em&gt; &lt;code class="inline"&gt;team name&lt;/code&gt;‘s attention on projects, we are now free to embed on projects to further accelerate them. We should not represent blockers for teams whose projects we aren’t actively contributing to, but we are able to add some limited throughput to some projects.  &lt;/li&gt;
&lt;/ol&gt;
&lt;hr class="thin"&gt;
&lt;p&gt;
Your needs might be quite different than what I’ve laid out here.
That’s okay!
The purpose this template serves is mostly in building new operations or platform capabilities in an org.
It’s not every day that you build new teams to do that; you’re more likely to already have a maturing capability and team, but you may instead want to improve how they view their purpose.&lt;/p&gt;
&lt;p&gt;
Take what’s useful in the template and ditch the rest.
If you follow a methodical process for breaking down the team’s purpose and practices, you’ll end up with a set of statements that are quite useful for members of the team.
They’ll be able to see where you are heading together, but also understand how aspects of the team’s “how” roll up into their “why”.
Armed with this intuition, they will be more able to engage their work and to better apply their creativity to the decisions they make all day, every day.
It just works so much better when everyone is operating from the same playbook.&lt;/p&gt;
</content>
    <published>2023-12-27T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/blog/2023/12/27/template-for-ops-platform-teams</id>
    <title>A template for founding ops and platform teams.</title>
    <updated>2023-12-27T22:55:24Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/blog/2023/11/27/squidtree-rss-feeds"/>
    <content type="html">&lt;p class="introduction"&gt;
It’s been a long time coming, but I’ve finally caught up to 2005.&lt;/p&gt;
&lt;p&gt;
Quick site announcement: Squidtree is now publishing RSS feeds! You can add the following feeds through your favorite RSS reader:&lt;/p&gt;
&lt;ul&gt;
  &lt;li&gt;
&lt;strong&gt;Blog:&lt;/strong&gt; The &lt;a href="/blog/feed"&gt;Blog Feed&lt;/a&gt; serves up my latest &lt;a href="/blog"&gt;blog posts&lt;/a&gt;. This is probably the one you want.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Reading List:&lt;/strong&gt; The &lt;a href="/references/feed"&gt;Reading List Feed&lt;/a&gt; offers a curated list of &lt;a href="/references"&gt;stuff I’m reading&lt;/a&gt;. I really only record the things I want to be able to cite, though.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Zettelkasten Notes:&lt;/strong&gt; The &lt;a href="/notes/feed"&gt;Zettelkasten Notes Feed&lt;/a&gt; gives you visibility into my &lt;a href="/notes"&gt;Zettelkasten’s evolution&lt;/a&gt;. This is going to be pretty low signal-to-noise though! A lot of my notes tend to be structural notes at this stage of its life, which will just contain links to other notes.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;All:&lt;/strong&gt; The &lt;a href="/feed"&gt;All Feed&lt;/a&gt; indexes all of the above site activity. It’s… probably a bit much, honestly.  &lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;
Huh?&lt;/h2&gt;
&lt;p&gt;
Don’t know what RSS is? Check out the &lt;a href="https://reederapp.com/" target="_blank"&gt;Reeder app&lt;/a&gt; while I consider preparing a more detailed post about it.&lt;/p&gt;
</content>
    <published>2023-11-27T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/blog/2023/11/27/squidtree-rss-feeds</id>
    <title>Squidtree is now serving RSS!</title>
    <updated>2023-11-28T05:32:39Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/blog/2023/11/26/hiring-bar"/>
    <content type="html">&lt;p class="introduction"&gt;
Even with training, de-biasing the hiring process is a challenge—we’re still human and humans are governed by subjectivity and subconscious pressures. What if our approach could reduce these factors?&lt;/p&gt;
&lt;p&gt;
In the past year-or-so, we have overhauled our engineering hiring process at Nav with a suggestion that made many of us fairly uncomfortable:&lt;/p&gt;
&lt;p&gt;
&lt;strong&gt;What if the people running our interviews didn’t weigh in on hiring decisions?&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;
This went against all of my experience in recruitment. I have decades of experience in my field and I know how to run a good interview, so why shouldn’t I be able to surface my recommendations? Should I not trust my peers to be able to do the same?&lt;/p&gt;
&lt;p&gt;
Having used this process many times now, I can confidently say that we make better decisions when we reduce how much we need to trust individuals to make the right call. In a process where interviewers demonstrate the candidate’s qualifications rather than presenting their conclusions, we not only get better hiring decisions, but we also impose a constraint on our process which requires us to constantly improve its design and our engineers’ recruiting skills.&lt;/p&gt;
&lt;h2&gt;
Performing the interviews.&lt;/h2&gt;
&lt;p&gt;
Our series of interviews seem pretty standard from the candidates’ standpoint: we screen résumés, our recruiters kick off a discussion with an applicant, which is followed by some number of discussions with pairs of interviewers about design, coding style, experience, or whatever traits we’re specifically looking for in the role. Perhaps a little less common, our hiring managers only speak with the candidate toward the end, mostly to sell the team we’d like them to join. Where we’re considering them for multiple teams, we’ll sometimes have each engineering manager hold a short discussion about why they think their team would be a good fit.&lt;/p&gt;
&lt;p&gt;
As each interviewer goes through their sessions, we ask them to record facts and observations in Greenhouse, the recruiting platform we use. The best writeups will annotate simple assertions about whether a given entry indicates something positive, overtly positive, negative, or very negative—this will become important later. The template through which we collect these observations is structured by the traits which the interview seeks to demonstrate.&lt;/p&gt;
&lt;p&gt;
Two potentially surprising details about this process, though, are that we do not prime our interviewers with a level or title for the candidate, and we do not ask them for their conclusions about level or title. We just want the facts and an assessment about whether we should be excited to hire the candidate. The lack of priming about level can take awhile for our panels to get used to, since it can be somewhat difficult to prepare for an interview for a level which you’re uncertain about, but one of my peers describes her approach excellently as, “I’m going to ask you progressively harder questions until either you don’t know the answer, or I’ve gotten out of my depth and now you’re teaching me something.” A great conversation is structured to uncover depth rather than verify a specific level!&lt;/p&gt;
&lt;h2&gt;
Air-gapping the decision.&lt;/h2&gt;
&lt;p&gt;
Why all of this focus on assertions of observation without conclusion, then? Do we not trust our interviewers? We do trust them to know how to learn things about the candidate by wielding their professional experience. We also assume that they would most likely be able to make the right call themselves in most situations. We balance these things, however, with an acknowledgment that trust in fallible individuals creates unscalable single points of failure in a hiring process, and that even the most well-informed individual will have blindspots in their approach to getting to know new people. We can work around these biases by &lt;strong&gt;air-gapping the hiring decision&lt;/strong&gt;: we decide on level and hiring through a panel of engineering leaders who have not met the candidate and therefore have had no ability to form assumptions about them based on their own socialization blindspots.&lt;/p&gt;
&lt;p&gt;
After the interview series is completed for a candidate, we convene a hiring decision panel which is composed of the recruiter, hiring manager, a facilitator, and two barometers. The facilitator and barometers are drawn from a pool of senior people in the organization who have been trained and calibrated for these tasks, excluding those who may have conducted the interviews. Before we arrive at this meeting, everyone is instructed to review all of the interview notes. The hiring manager forms a hypothesis about what level the candidate should be hired at, prepares a short pitch on why they want this candidate to join the company, and why that level makes sense.&lt;/p&gt;
&lt;p&gt;
The facilitator is the driver in the panel discussion. They first ask the hiring manager for their pitch as an introduction of the candidate &lt;em class="paren-em"&gt;(who is, of course, not present)&lt;/em&gt; to the barometers. After the level is proposed, the facilitator takes the barometers through a short series of yes/no questions about whether the notes about the candidate demonstrate that they possess the traits that we need for the proposed role level. To support this, it is critical that each interviewer has provided only assertions about evidence rather than their own assessment—if I say that the candidate demonstrated a senior technical competency in architectural design, the barometers would be forced to say that no, no the notes do not demonstrate anything, as they only have my assessment but no examples to judge. The positive/negative format we encourage for these notes assists the barometers in scanning through the notes to quickly locate specific points to back up their assessments.&lt;/p&gt;
&lt;p&gt;
The panel discussion ends with some discussion across the group about tradeoffs in the candidate’s strengths and weakenesses, whether the assessments had been made with any critically missing context, and finally a hire/no hire decision at the proposed level. At this point, there are four possible decisions to make: accept the panel’s recommendation, re-run the assessment at a lower level if the panel opted to not hire, conversely we can run it again at a higher level if the candidate seemed to clearly surpass the proposed level, or finally the hiring manager may appeal by requesting a new hiring panel if there were somehow major deficiencies in how the run-through occurred.&lt;/p&gt;
&lt;hr class="thin"&gt;
&lt;p&gt;
The hiring panel procedure has been instrumental for reducing the latent bias in our hiring process, but possibly even more importantly has added a constraint that requires our interviewers to think more critically about their approach to hiring. The detached nature of the process means that no amount of positive feeling about the candidate will get them hired, but instead that interviewers must build their discussion around what they can use to most clearly demonstrate the candidate’s qualifications.&lt;/p&gt;
</content>
    <published>2023-11-26T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/blog/2023/11/26/hiring-bar</id>
    <title>Reducing bias with a hiring bar.</title>
    <updated>2023-11-28T05:11:52Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/blog/2023/03/30/humanizing-chatgpt-is-unnecessary"/>
    <content type="html">&lt;p class="introduction"&gt;
I want to write about my experiences in using ChatGPT to assist with my role. Unfortunately, we need to clear up some stuff about AI first.&lt;/p&gt;
&lt;p&gt;
Look. I don’t care if the popular AIs coming out these days are classifiable as conscious, and neither should you.&lt;/p&gt;
&lt;p&gt;
Large language models &lt;em class="paren-em"&gt;(LLMs)&lt;/em&gt; and other types of generative artificial intelligences &lt;em class="paren-em"&gt;(GAIs)&lt;/em&gt; are not going to end the world, and humanizing them is not useful or even really interesting.&lt;/p&gt;
&lt;p&gt;
A lot has been made recently about their human-seeming responses, particularly with &lt;a href="https://stratechery.com/2023/from-bing-to-sydney-search-as-distraction-sentient-ai/" target="_blank"&gt;Ben Thompson’s experiences with Bing&lt;/a&gt;. This sort of treatment strikes me as hyperbolic and irresponsible—even if these examples &lt;em&gt;feel&lt;/em&gt; striking.&lt;/p&gt;
&lt;p&gt;
They are not human and they will never be. They are something else. Can they be considered conscious? Maybe. Consciousness has defied our best attempts at quantification thus far, but we can readily see that there are scales of consciousness &lt;em&gt;somehow&lt;/em&gt; because we can see the differences in sophistication between a tree frog’s reactions to stimuli or problem solving versus our own.&lt;a href="#fn:1" id="fnref:1" class="footnote" title="see footnote"&gt;1&lt;/a&gt; There’s a compelling case that systems can be conscious without being classified as living,&lt;a href="#fn:2" id="fnref:2" class="footnote" title="see footnote"&gt;2&lt;/a&gt; but this is still abstract, inconclusive, and doesn’t really hit the core of why the average person cares anyway: the empathy we have for a lifeform that’s trapped in a box and subservient to us, and the fear that causes us about potential retribution.&lt;/p&gt;
&lt;p&gt;
These entities are not alive, even if they are meaningfully conscious, and the constraints of life that created our consciousness are wholly irrelevant to theirs, as they are created and guided by different constraints. They cannot possess fear in the way we experience it because they aren’t alive and aren’t structured in every conceivable way to resist death, as we are. The scariest aspect about modern AI is that they are specifically tasked with learning the language of our interactions with our reality, which &lt;em&gt;necessarily includes language of fear and threat and death&lt;/em&gt;. They weight their reactions on how they have modeled &lt;em&gt;our world&lt;/em&gt;, not their own world, and there’s a pretty interesting risk in believing the lies that we created them to tell us.&lt;/p&gt;
&lt;blockquote&gt;
  &lt;p&gt;
“The very idea of creating machines like us is a project built on misunderstandings of human being and a fraud that played on the trusting instincts of people.”&lt;a href="#fn:3" id="fnref:3" class="footnote" title="see footnote"&gt;3&lt;/a&gt;  &lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;
If LLMs are conscious, the consciousness lives in the reward of ferrying interesting symbols from some input to some output, not from assigning any internal meaning to that output. The chameleon’s skin does not understand why some predator is looking for the patterns it does for signs of prey, it only understands that reducing difference with surroundings increases its goals of survival and reproduction. It doesn’t have to model the hawk’s brain to do that. LLMs are the chameleon’s skin, not the hawk’s brain. The interesting thing about them is their appearance and how they create it, not whether those mechanisms in fact clone other distant mechanisms they’ll never actually interact with.&lt;/p&gt;
&lt;p&gt;
I see LLMs for what they are: statistical abstractions on top of language that can automate the production of words. Sometimes these words will be useful and poignant. Those words are averaged across large swaths of literature and will only be as accurate as there is training material available for the context of the prompt—that is, where those words aren’t simply stolen and reworded. They do not think, they do not decide. They are necessarily not able to approximate the complexity of most knowledge workers. Some roles are certainly mundane enough to be replaced by the literature generation these tools represent, but once the hype dies down we’ll come to remember that you cannot send an LLM to a beach on Tahiti for a week to report on how that feels these days. These tools are creative partners, but they cannot make choices or experience our reality, they can only parrot our words about it.&lt;/p&gt;
&lt;div class="footnotes"&gt;
  &lt;hr&gt;
  &lt;ol&gt;
    &lt;li id="fn:1"&gt;
&lt;a title="return to article" class="reversefootnote" href="#fnref:1"&gt;&amp;#x21A9;&lt;/a&gt;      &lt;p&gt;
Douglas R. Hofstadter, &lt;em&gt;I Am a Strange Loop&lt;/em&gt; &lt;em class="paren-em"&gt;(New York, NY: Basic Books, 2007)&lt;/em&gt;.      &lt;/p&gt;
    &lt;/li&gt;
    &lt;li id="fn:2"&gt;
&lt;a title="return to article" class="reversefootnote" href="#fnref:2"&gt;&amp;#x21A9;&lt;/a&gt;      &lt;p&gt;
Eric Schwitzgebel, &lt;em&gt;“If Materialism Is True, the United States Is Probably Conscious,”&lt;/em&gt; Philosophical Studies, no. 172 &lt;em class="paren-em"&gt;(2015)&lt;/em&gt;: 1697–1721. &lt;em class="paren-em"&gt;(&lt;a href="/references/S9"&gt;notes&lt;/a&gt;)&lt;/em&gt;      &lt;/p&gt;
    &lt;/li&gt;
    &lt;li id="fn:3"&gt;
&lt;a title="return to article" class="reversefootnote" href="#fnref:3"&gt;&amp;#x21A9;&lt;/a&gt;      &lt;p&gt;
Abeba Birhane and Jelle van Dijk, &lt;em&gt;“A Misdirected Application Of AI Ethics,”&lt;/em&gt; June 18, 2020, &lt;a href="https://www.noemamag.com/a-misdirected-application-of-ai-ethics" target="_blank"&gt;https://www.noemamag.com/a-misdirected-application-of-ai-ethics&lt;/a&gt;.      &lt;/p&gt;
    &lt;/li&gt;
  &lt;/ol&gt;
&lt;/div&gt;
</content>
    <published>2023-03-30T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/blog/2023/03/30/humanizing-chatgpt-is-unnecessary</id>
    <title>Humanizing ChatGPT is unnecessary.</title>
    <updated>2023-05-07T17:12:45Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/blog/2023/02/20/slack-doesnt-have-to-be-a-maelstrom"/>
    <content type="html">&lt;p class="introduction"&gt;
Slack and its ilk have come to dominate communications in the business world—truer still for companies with a remote workforce. The ease of communication comes with some noisy downsides.&lt;/p&gt;
&lt;p&gt;
For people starved for time and attention &lt;em class="paren-em"&gt;(especially managers!)&lt;/em&gt;, its features can enable more than mere communication. For me, Slack is a significant driver for accountability, clarity, and asynchronous communication.&lt;/p&gt;
&lt;h2&gt;
Creating accountability.&lt;/h2&gt;
&lt;p&gt;
I’m an “inbox zero” sort of person. I prefer to avoid keeping email around that I can’t quickly do something with—I either delete everything or add it to my to-do list. You might then correctly guess that I compulsively read every new Slack message. Others like me say that this behavior in themselves often causes messages to get lost. I don’t share this problem, however, because one of my favorite coworkers has my back: Slackbot.&lt;/p&gt;
&lt;p&gt;
You see, when I view an unread message that in any way needs my attention and I don’t have that attention available &lt;em class="paren-em"&gt;(which is frequent as an engineering manager on account of meetings)&lt;/em&gt;, I’ll leave it read, but I’ll right-click on it and tell Slackbot to remind me about the message later. When that reminder triggers, well… I’m likely still deeply involved elsewhere, but Slackbot retains the list of things I need to follow up on. This list of messages then constitutes a sort of to-do list that I can handle as I find time for it. It even has a “Mark as Complete” button for each follow-up, making it more of a proper to-do list than would mere unread messages.&lt;/p&gt;
&lt;p&gt;
This works great for keeping track of incoming messages, but the real secret here is in &lt;em&gt;keeping track of your own messages.&lt;/em&gt; Managers spend a lot of their attention making or relaying requests, and we need a way to enable follow-ups—not everyone is going to have as mature of an approach to managing commitments as we do, so one of the ways we support our organizations is by maintaining accountability. When I send a message that I want to ensure gets answered, especially where I don’t think a conclusion is going to come immediately, like in the case of a request for a change or some other action, I’ll right-click my message and ask Slackbot to remind me about my request on some reasonable timeline. Often, I will have gotten what I need long before the reminder, but this practice is made worthwhile in the cases where I don’t &lt;em class="paren-em"&gt;(in which case I may have lost track of my request)&lt;/em&gt;.&lt;/p&gt;
&lt;h2&gt;
Improving signal.&lt;/h2&gt;
&lt;p&gt;
I’ve found a few structural practices in Slack increase the signal-to-noise ratio, both for incoming and outgoing messages. We can organize information better for ourselves and clarify our communications for others.&lt;/p&gt;
&lt;p&gt;
Channels can form channel groups, which can direct one’s attention toward things that are of high interest while also grouping channels/DMs that are of lesser relevance. For myself, I maintain groups for my most critical partnerships &lt;em class="paren-em"&gt;(including Slackbot)&lt;/em&gt;, my core team, other teams, working groups, alerts, company-wide communications, and a handful of others.&lt;/p&gt;
&lt;p&gt;
One of the best noise reduction practices I’ve seen is temporary channels. For conversations that are larger yet finite and include a cross-functional group, a dedicated channel separates focus on the matter from the simmering activity in more permanent channels. Consider an example channel &lt;code class="inline"&gt;#tmp-2023-02-20-site-outage&lt;/code&gt;: temporary, urgent, almost certainly needs the attention of people from across the company, but the discussion is poorly suited for other company channels like &lt;code class="inline"&gt;#general&lt;/code&gt;.&lt;/p&gt;
&lt;p&gt;
Temporary channels work best when operated like a well-run meeting, with a stated purpose and goal, clear expectations for participants—and a definite end. They can sometimes replace meetings, accomplishing more &lt;em class="paren-em"&gt;(or just enough)&lt;/em&gt; discussion with notes coming built-in with the approach; the tradeoff it accepts is in enabling asynchronous communication but moving slower to achieve its goals with less ability to make demands on people’s attention. With how my calendar tends to fill, this tradeoff is often &lt;em class="paren-em"&gt;(but not always!)&lt;/em&gt; beneficial. This approach does not address communication problems within the groups, however—best to avoid this tool where it makes existing communication issues worse.&lt;/p&gt;
&lt;h2&gt;
Shouting into the future.&lt;/h2&gt;
&lt;p&gt;
The last class of Slack features worth discussing here are those that aid future communication.&lt;/p&gt;
&lt;p&gt;
An underappreciated feature of Slack is the humble draft message. Often in &lt;em class="paren-em"&gt;(verbal)&lt;/em&gt; conversation, I will find I need to talk to someone else to ask a question, issue a reminder, or share some appreciation. In these moments, it’s convenient to start a message with a few keywords resembling the topic, so I neither lose the subject nor abandon my current conversation. I do this when I want to send the complete message as soon as possible, but this is a poor solution for managing a list of topics for upcoming discussions—those should go into a shared meeting agenda document instead.&lt;/p&gt;
&lt;p&gt;
I’ll sometimes remember something that needs to be said while I’m thinking outside of team working hours. I don’t want to use drafts in these cases because, like unread messages, drafts constitute a sort of inbox for me, and I’m driven to clear them as quickly as possible. In these cases, I’ll write my message and schedule it for the next workday. I want to support a culture that disconnects and recharges, so sending messages outside of reasonable hours is something I avoid. This helps me protect my own time too!&lt;/p&gt;
&lt;p&gt;
Coming full circle, our last tool for speaking from the past is a more common one: recurring Slackbot reminders. These are useful for creating a little repeatability in some async processes—reminders to the team to write standup messages, monthly requests to maintain bits of documentation, or the morning message announcing “Sustainability Saturday” &lt;em class="paren-em"&gt;(our cheeky team commitment to support some slight improvement to our engineering sustainability each Friday)&lt;/em&gt;.&lt;/p&gt;
&lt;p&gt;
Slack has a reasonably simple set of behaviors, but they can be used creatively and interestingly. This list doesn’t even scratch the surface of what can be done with its base features, let alone the ecosystem of plugins and bots available. With just a few minor tweaks to your approach, you, too, can foster clearer signals, improve accountability for yourself and others, and reduce intrusions into your coworkers’ &lt;em class="paren-em"&gt;(and your own)&lt;/em&gt; personal lives.&lt;/p&gt;
</content>
    <published>2023-02-20T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/blog/2023/02/20/slack-doesnt-have-to-be-a-maelstrom</id>
    <title>Slack doesn’t have to be a maelstrom.</title>
    <updated>2023-02-20T20:40:45Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/blog/2022/10/08/triadic-lens"/>
    <content type="html">&lt;p class="introduction"&gt;
Working through others is hard; doing it without a map is more challenging. The triadic lens offers a way to focus organizational design on the right social interactions rather than leaving it to chance.&lt;/p&gt;
&lt;h2&gt;
Organizations are designed—but not necessarily by a designer.&lt;/h2&gt;
&lt;blockquote&gt;
  &lt;p&gt;
“Design is a plan for arranging elements in such a way as best to accomplish a particular purpose.”  &lt;/p&gt;
  &lt;p&gt;
—Charles Eames, American designer and architect  &lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;
The &lt;em&gt;act&lt;/em&gt; of design is one of intention. Not every design emerges intentionally, however—self-organizing systems will iterate through designs even without the guidance of a knowledgeable designer.&lt;a href="#fn:1" id="fnref:1" class="footnote" title="see footnote"&gt;1&lt;/a&gt; The critical difference is whether the components of a system are organizing themselves as guided by well-placed guardrails or something more haphazard.&lt;/p&gt;
&lt;p&gt;
Will Larson, CTO of Calm, says that leadership is the experience of knowing what ought to be, the awareness to understand what is, and the care to do something about the gap.&lt;a href="#fn:2" id="fnref:2" class="footnote" title="see footnote"&gt;2&lt;/a&gt; We might then categorize leadership tools in three ways: our tools may help us understand and interpret what reality is, decide what the future should be, or they can help us build the bridge from here to there.&lt;/p&gt;
&lt;p&gt;
What we create together is a facsimile of the way we communicate.&lt;a href="#fn:3" id="fnref:3" class="footnote" title="see footnote"&gt;3&lt;/a&gt; For our companies to create what we envision for them, we must build a toolkit that allows us to design better social structures.&lt;/p&gt;
&lt;h2&gt;
Lenses help us see clearly.&lt;/h2&gt;
&lt;p&gt;
Something I’ve found helpful in thinking about the people systems around me is Robert Keidel’s triadic lens of human interaction. He suggests that humans interact in three distinct ways:&lt;a href="#fn:4" id="fnref:4" class="footnote" title="see footnote"&gt;4&lt;/a&gt;&lt;/p&gt;
&lt;ul&gt;
  &lt;li&gt;
Where one has station over another to direct their actions, it may be described as &lt;strong&gt;control&lt;/strong&gt;. &lt;em class="paren-em"&gt;(Think of it more akin to “authority” than a synonym for “micromanagement.”)&lt;/em&gt;  &lt;/li&gt;
  &lt;li&gt;
People &lt;strong&gt;cooperate&lt;/strong&gt; when they act together without power dynamics compelling them to.  &lt;/li&gt;
  &lt;li&gt;
With social behavior underpinning almost all human psychology,&lt;a href="#fn:5" id="fnref:5" class="footnote" title="see footnote"&gt;5&lt;/a&gt; &lt;strong&gt;autonomy&lt;/strong&gt; registers as a category of cognizant social interaction, despite the absence of other people.  &lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;
Control, cooperation, and autonomy form a triangle within which we can plot all levels of human activities from a concrete view of how a particular meeting went to the abstract nature of a firm’s operations.&lt;/p&gt;
&lt;blockquote&gt;
  &lt;p&gt;
&lt;strong&gt;Try it out:&lt;/strong&gt; On some paper, copy the following diagram. Think of something in your organization that you wish were going better—maybe a recurring meeting proving ineffective or a pattern of communication breakdown between two departments—and title your diagram after it.  &lt;/p&gt;
  &lt;p&gt;
I’ve observed that my team has been making decisions that were missing essential requirements, so I’ll name mine “Team project decision making.”  &lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;
  &lt;img src="/media/triadic-lens-0.png" alt="Triadic lens portrayed as a triangle labeled with Control, Cooperation, and Autonomy"&gt;
&lt;/p&gt;
&lt;p&gt;
Let’s dig into each aspect a little deeper.&lt;/p&gt;
&lt;h3&gt;
Control is hierarchical.&lt;/h3&gt;
&lt;p&gt;
Where a system leverages more control, it brings to bear more global context. Activities are centrally coordinated. Coach-oriented games, shareholder-focused companies, steeper organizational structures, highly sequential work procedures, and mandated decisions are all control-dominant.&lt;/p&gt;
&lt;h3&gt;
Autonomy is separate.&lt;/h3&gt;
&lt;p&gt;
Flatter reporting structures yield less oversight. Golf doesn’t entail much teamwork. Subject matter experts have grown their skills in an area. Mass information dissemination relies on individuals interpreting the meaning and putting the content to work. In decision-making, autonomy means sourcing input from various contributors that aren’t coordinating with one another. Local context is found mainly at the individual level.&lt;/p&gt;
&lt;h3&gt;
Cooperation is flat.&lt;/h3&gt;
&lt;p&gt;
Basketball is cooperative. Org structures that lean this way tend to be flatter and more ambiguous. Pay structures that favor cooperation tend toward socialism. Collaborative decision-making builds consensus but also takes longer. Less about the global or local contexts, cooperation is how context &lt;em&gt;moves&lt;/em&gt;, both vertically and horizontally.&lt;/p&gt;
&lt;h3&gt;
It’s all a fractal.&lt;/h3&gt;
&lt;p&gt;
As you zoom into any area, even a place focused on one of the variables, the same tradeoffs reemerge. Meetings are mainly cooperative &lt;em class="paren-em"&gt;(in contrast to other organizational systems such as rewards &lt;em class="paren-em"&gt;(autonomy)&lt;/em&gt; or decisions &lt;em class="paren-em"&gt;(control)&lt;/em&gt;)&lt;/em&gt;. When breaking down the concept of meetings, we again find different focal points: a forum, where individuals represent different viewpoints, is autonomy-focused; decision-making meetings are for a group to exercise its authority, which is a control activity; and team building meetings increase the cooperability of the team.&lt;/p&gt;
&lt;blockquote&gt;
  &lt;p&gt;
&lt;strong&gt;Try it out:&lt;/strong&gt; Consider the area you’ve identified needing improvement. Which traits does the situation currently embody the most? Or conversely, which characteristics do you wish it expressed more strongly than it does? Place a dot in the diagram once you decide where it fits best. You Are Here.  &lt;/p&gt;
  &lt;p&gt;
I see that my team works together effectively to make decisions, and individuals are highly engaged in the process. Decisions are well-made but miss some details. I’ll place my dot halfway between Control and Cooperation, outside the center of the diagram. There’s a healthy amount of autonomy in their approach, but it’s not the dominant trait.  &lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;
  &lt;img src="/media/triadic-lens-1.png" alt="Triadic lens with &quot;now&quot; dot labeled with &quot;Good collaboration and engagement, but key requirements are too frequently missed.&quot;"&gt;
&lt;/p&gt;
&lt;h2&gt;
Leaders design the future.&lt;/h2&gt;
&lt;p&gt;
Keidel’s framework comes with two warnings and one core purpose.&lt;/p&gt;
&lt;p&gt;
It exists to help you clarify what you want. But you must work to understand the complexity of your system enough to avoid an overly simplified caricature, and you must be decisive about what truly matters in it.&lt;/p&gt;
&lt;p&gt;
  &lt;img src="/media/triadic-lens-2.png" alt="Triadic lens with the triangle corners, center bit, and slivers along the sides marked as danger zones"&gt;
&lt;/p&gt;
&lt;h3&gt;
Analysis 1: Each variable counts.&lt;/h3&gt;
&lt;p&gt;
One-variable designs problematically overemphasize a trait. Where we may healthily focus on one variable with the support of the other two, it becomes pathological when the other two are not at all involved.&lt;/p&gt;
&lt;p&gt;
Conversely, a two-variable design will entirely diminish the potential of the excluded variable. It takes all three to work.&lt;/p&gt;
&lt;h3&gt;
Analysis 2: Design means prioritizing.&lt;/h3&gt;
&lt;p&gt;
But not all three without differentiation! Like in all other prioritization, valuing everything is valuing nothing. Undifferentiated design offers us a confused system where the lack of strategic tradeoffs compounds difficult decisions. This makes it hard to predict which system aspect will ultimately win in a particular situation, preventing smooth operation.&lt;/p&gt;
&lt;blockquote&gt;
  &lt;p&gt;
&lt;strong&gt;Try it out:&lt;/strong&gt; Reference the diagram above. Does your dot sit in any of the seven problem zones? If so, does your problem match these downsides, or is the current system making tradeoffs that you haven’t yet considered? Update your starting point if needed.  &lt;/p&gt;
&lt;/blockquote&gt;
&lt;h3&gt;
Analysis 3: Intention is everything.&lt;/h3&gt;
&lt;p&gt;
The problem zones are only one signal. The real utility is in thinking deeply about what tradeoffs you &lt;em&gt;need&lt;/em&gt; to be making and where that might end up on the map. This is the hard part, and unfortunately, the framework does not ship with serving suggestions.&lt;/p&gt;
&lt;p&gt;
The model takes our attention off the most obvious solutions to allow us to think more broadly about what we’re trying to create. Where it might be obvious that I need to add more structure to my team’s decision-making process, it wouldn’t otherwise have been evident that this is only a symptom; that there are more parts of their work needing approval mechanisms, and we have more opportunities to layer in global context to inform their decisions better.&lt;/p&gt;
&lt;blockquote&gt;
  &lt;p&gt;
&lt;strong&gt;Try it out:&lt;/strong&gt; Identify where on your diagram you need to move the situation by evaluating which tradeoffs balance it ideally. Perhaps the obvious solution in your improvement opportunity was to add more accountability, but the higher perspective also illustrates that more top-down context sharing is also necessary.  &lt;/p&gt;
  &lt;p&gt;
In my team, I want to convey more of the global context to them, and am otherwise happy with how they’re engaging. I’ll set my destination point a bit higher into Control.  &lt;/p&gt;
  &lt;p&gt;
With the destination identified, chart a course by thinking through what changes create that trajectory—beyond directly solving the problem at hand. By identifying the more resounding theme of the issue, you can solve it more thoroughly along multiple vectors and resolve other problems you would not have otherwise noticed as being related.  &lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;
  &lt;img src="/media/triadic-lens-3.png" alt="Triadic lens with the &quot;new&quot; dot labeled &quot;Decisions are made together with more context from the business.&quot;"&gt;
&lt;/p&gt;
&lt;p&gt;
Leaders use many tools to make corrections within their organizations and teams. In my experience, prescriptive practices like scrum, strategic playbook design&lt;a href="#fn:6" id="fnref:6" class="footnote" title="see footnote"&gt;6&lt;/a&gt;, skip-level one-on-ones, and so on fill most of the toolbox. Some of the tools in the box are more abstract &lt;em class="paren-em"&gt;(and powerful)&lt;/em&gt;, suggesting which levers are available to adjust in a system.&lt;a href="#fn:7" id="fnref:7" class="footnote" title="see footnote"&gt;7&lt;/a&gt; Rarer still are the tools that reveal which changes are necessary—I like the triadic lens because it falls into this category. Tools in this category are harder to use, but because they challenge our more easily-formed beliefs, they can also drive more robust decisions.&lt;/p&gt;
&lt;div class="footnotes"&gt;
  &lt;hr&gt;
  &lt;ol&gt;
    &lt;li id="fn:1"&gt;
&lt;a title="return to article" class="reversefootnote" href="#fnref:1"&gt;&amp;#x21A9;&lt;/a&gt;      &lt;p&gt;
Donella H. Meadows and Diana Wright, &lt;em&gt;Thinking in Systems: A Primer&lt;/em&gt; &lt;em class="paren-em"&gt;(White River Junction, Vt: Chelsea Green Pub, 2008)&lt;/em&gt;. &lt;em class="paren-em"&gt;(&lt;a href="/references/M3"&gt;notes&lt;/a&gt;)&lt;/em&gt;      &lt;/p&gt;
    &lt;/li&gt;
    &lt;li id="fn:2"&gt;
&lt;a title="return to article" class="reversefootnote" href="#fnref:2"&gt;&amp;#x21A9;&lt;/a&gt;      &lt;p&gt;
Will Larson, &lt;em&gt;“To Lead, You Have to Follow.,”&lt;/em&gt; May 25, 2020, &lt;a href="https://lethain.com/to-lead-follow/" target="_blank"&gt;https://lethain.com/to-lead-follow/&lt;/a&gt;. &lt;em class="paren-em"&gt;(&lt;a href="/references/L2"&gt;notes&lt;/a&gt;)&lt;/em&gt;      &lt;/p&gt;
    &lt;/li&gt;
    &lt;li id="fn:3"&gt;
&lt;a title="return to article" class="reversefootnote" href="#fnref:3"&gt;&amp;#x21A9;&lt;/a&gt;      &lt;p&gt;
Melvin E. Conway, &lt;em&gt;“How Do Committees Invent?,”&lt;/em&gt; Datamation, April 1968.      &lt;/p&gt;
    &lt;/li&gt;
    &lt;li id="fn:4"&gt;
&lt;a title="return to article" class="reversefootnote" href="#fnref:4"&gt;&amp;#x21A9;&lt;/a&gt;      &lt;p&gt;
Robert W Keidel, &lt;em&gt;Seeing Organizational Patterns: A New Theory and Language of Organizational Design&lt;/em&gt; &lt;em class="paren-em"&gt;(Washington, D.C.: Beard Books, 2005)&lt;/em&gt;. &lt;em class="paren-em"&gt;(&lt;a href="/references/K1"&gt;notes&lt;/a&gt;)&lt;/em&gt;      &lt;/p&gt;
    &lt;/li&gt;
    &lt;li id="fn:5"&gt;
&lt;a title="return to article" class="reversefootnote" href="#fnref:5"&gt;&amp;#x21A9;&lt;/a&gt;      &lt;p&gt;
Will Storr, &lt;em&gt;The Status Game: On Social Position and How We Use It&lt;/em&gt;, Unabridged &lt;em class="paren-em"&gt;(London: William Collins, 2021)&lt;/em&gt;. &lt;em class="paren-em"&gt;(&lt;a href="/references/S4"&gt;notes&lt;/a&gt;)&lt;/em&gt;      &lt;/p&gt;
    &lt;/li&gt;
    &lt;li id="fn:6"&gt;
&lt;a title="return to article" class="reversefootnote" href="#fnref:6"&gt;&amp;#x21A9;&lt;/a&gt;      &lt;p&gt;
Patrick Lencioni, &lt;em&gt;The Advantage: Why Organizational Health Trumps Everything Else in Business, 1st ed&lt;/em&gt; &lt;em class="paren-em"&gt;(San Francisco: Jossey-Bass, 2012)&lt;/em&gt;. &lt;em class="paren-em"&gt;(&lt;a href="/references/L1"&gt;notes&lt;/a&gt;)&lt;/em&gt;      &lt;/p&gt;
    &lt;/li&gt;
    &lt;li id="fn:7"&gt;
&lt;a title="return to article" class="reversefootnote" href="#fnref:7"&gt;&amp;#x21A9;&lt;/a&gt;      &lt;p&gt;
Gary Neilson, Jaime Estupiñán, and Bhushan Sethi, &lt;em&gt;“10 Principles of Organization Design,”&lt;/em&gt; strategy+business, 2015, &lt;a href="https://www.strategy-business.com/article/00318?gko=31dee" target="_blank"&gt;https://www.strategy-business.com/article/00318?gko=31dee&lt;/a&gt;. &lt;em class="paren-em"&gt;(&lt;a href="/references/N2"&gt;notes&lt;/a&gt;)&lt;/em&gt;      &lt;/p&gt;
    &lt;/li&gt;
  &lt;/ol&gt;
&lt;/div&gt;
</content>
    <published>2022-10-08T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/blog/2022/10/08/triadic-lens</id>
    <title>The triadic lens: a tool for designing organizations for people.</title>
    <updated>2023-03-31T03:54:57Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/blog/2022/07/10/operation-failed-successfully-writing-with-a-zettelkasten"/>
    <content type="html">&lt;p class="introduction"&gt;
The Zettelkasten method is reasonably good at storing and retrieving information, but this is not its core purpose. The real power of a Zettelkasten is in its ability to act as a thinking partner, especially in writing. It’s a complicated relationship, however, and the risks can drive both growth and paralysis.&lt;/p&gt;
&lt;p&gt;
A Zettelkasten, often translated from German as “slipbox,” is an ever-evolving collection of highly interlinked notes. Practitioners of the method write their notes onto physical notecards or into note management software. As they learn, they capture notes relevant to their interests and link them into indexes and higher-level discussions of the ideas at play, as well as other more distant notes that notionally interact with the new content.&lt;/p&gt;
&lt;p&gt;
Building a Zettelkasten can be a lot of work; the note collection arises from a rigorous habit of learning, distilling information and observations, and relating this together across time. With enough networked knowledge, the Zettelkasten becomes a rich source of insight by allowing ideas to come together to contrast or build on each other in a way that would have been highly unlikely alone. It also resurfaces previously discovered relationships between ideas for use in writing.&lt;/p&gt;
&lt;h2&gt;
How a Zettelkasten helps an author &lt;em class="paren-em"&gt;(and then gets in the way)&lt;/em&gt;.&lt;/h2&gt;
&lt;p&gt;
There’s an ironic juxtaposition here, however: a Zettelkasten contains an infinity of connections, but when using it for writing projects, its creative nature can be a siren song that pulls a project away from its goals. Holes in connections and knowledge in the notes are attractive distractions that can take an author away from making progress on their writing projects, even while providing the ideas that drive the project forward.&lt;/p&gt;
&lt;h2&gt;
Learning is a function of failing.&lt;/h2&gt;
&lt;p&gt;
To write using a Zettelkasten, one must shift from the motions of a Zettelkasten maintainer into those of a writer working with a co-author. Standing with one foot in an endless creative realm and the other in a project with a specific end goal and timeframe produces tinkering on one side and poor progress on the other. Notes must become read-only during drafting to avoid these downsides.&lt;/p&gt;
&lt;p&gt;
Roguelike RPGs provide an excellent model to follow, according to a recent article on the matter&lt;a href="#fn:1" id="fnref:1" class="footnote" title="see footnote"&gt;1&lt;/a&gt;. “Roguelike” describes a game style in which a character ventures into ever-changing landscapes to gather the game’s story while making choices about upgrading skill trees, dying, and resurrecting when taking on challenges outside their ability. The player overcomes each challenge, either by advancing far enough in the skill tree or by learning how to make it through a situation alive.&lt;/p&gt;
&lt;p&gt;
This analogy boils down to two recurring stages that resemble the Zettelkasten drafting dichotomy.&lt;/p&gt;
&lt;p&gt;
In one stage, we have gathered knowledge from our experiences and need to put it to work. We venture into the world to fight our enemies and produce our draft papers. Where our existing knowledge is not enough, we discover our shortcomings and eventually fail to complete the mission.&lt;/p&gt;
&lt;p&gt;
In the other stage, we go back to our knowledge, and we incorporate the new experience by adding connections and codifying details of the attempt. The Zettelkasten grows whatever insights occurred during the writing session and likely incurs even more understanding due to the integration process. Holes in the Zettelkasten’s knowledge and sources &lt;em class="paren-em"&gt;(and, by extension, our own)&lt;/em&gt; are laid bare by incomplete arguments or newly uncovered questions in the draft. The deficiencies may lead back to another round of research for further synthesis.&lt;/p&gt;
&lt;h2&gt;
Focus improves effectiveness.&lt;/h2&gt;
&lt;p&gt;
What does separating drafting away from note integration save? The Zettelkasten still evolves alongside the drafts, and the drafts still get written and rewritten. These are rarely the only concerns in play, though. The main difference is focus—or, more specifically, the elimination of multitasking.&lt;/p&gt;
&lt;p&gt;
Extensive research has been done into multitasking, conclusively showing that split focus leads to poorer and slower results. In writing, many sorts of tasks occur throughout the project. Each of those tasks deserves full attention. Research, writing, editing, and associating notes require different mental resources, each moving at different paces with unique focal points.&lt;a href="#fn:2" id="fnref:2" class="footnote" title="see footnote"&gt;2&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;
Not only does multitasking make us slower and less effective, but it also grinds us down. Keeping ideas warm while switching focus requires specific types of energy-inefficient brainpower. Each switch of focus further exacerbates those expensive processes in a way that rapidly depletes the ability to restore focus, make effective decisions, or even control our impulses. Allocating time to different types of writing focus, and scheduling those blocks of time with an awareness of the difficulties of the respective tasks, is necessary for effective writing.&lt;a href="#fn:4" id="fnref:4" class="footnote" title="see footnote"&gt;4&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;
By separating the writing process into multiple modalities, one produces more timely results across each contextual space without the disruption of context switching and increases the quality of work performed by virtue of mental resources being more available to just the task at hand.&lt;/p&gt;
&lt;h3&gt;
Focus is concurrent, not parallel.&lt;/h3&gt;
&lt;p&gt;
One way to interpret these limitations is through the lens of concurrency. Multitasking assumes to some extent that our attention supports parallelization. In &lt;em&gt;parallelism&lt;/em&gt;, multiple tasks can happen simultaneously—as many jobs can occur in parallel as there are executors. Two people can do two things simultaneously; a CPU with 16 cores can do 16 tasks. Since the number of executors involved constrains parallelism, almost every system that manages many units of urgent work also has to figure out how to progress on more tasks than it has executors to support. &lt;em&gt;Concurrency&lt;/em&gt; then comes into play, where any given executor has a way of owning multiple activities simultaneously, making some progress on each of them alternatingly. Two people can build seven hamburgers at the same time by rapidly switching between each of them, and CPUs schedule tasks such that they can perform some units of work for many ongoing tasks, so all of them progress together rather than getting blocked by other tasks in the queue. Concurrency must pair with fast-access or short-term memory, which is much more expensive to use than longer-term memory in both computers and biology, to support rapid focus-switching. Executors must maintain context across all tasks to switch between them to progress their processing. If that context gets relegated to longer-term memory, which is invariably significantly slower, the executor becomes ineffective and wastes most of its time waiting for context to come back so it can continue processing.&lt;/p&gt;
&lt;p&gt;
Focused human attention is a singular executor. We process significant amounts of information in parallel at all times—which does happen in parallel—but lower-level mental processes filter out most of it. What does surface to our consciousness must replace what our brains hold at attention, however temporarily. Because our active attention is so limited—three to four ideas, two points of decision, or only one new idea&lt;a href="#fn:4" id="fnref:4" class="footnote" title="see footnote"&gt;4&lt;/a&gt;—concurrently attending to multiple tasks renders us particularly ineffective. We keep our mental space loaded with each task’s context, which leaves very little room for actually performing the cognitive task.&lt;/p&gt;
&lt;h2&gt;
Zetteling is disruptive.&lt;/h2&gt;
&lt;p&gt;
To illustrate why growing a Zettelkasten and writing a draft need separation: integrating information into my Zettelkasten is a tumultuous affair. In one moment, I’ll have a clear and relatively uninteresting point written on a card. Beside that card usually sits the argument or concept that provoked this point. In many cases, I will end up with another seven cards plucked from my file cabinet while considering where this thought could use more color or influence some other existing notion. In considering how to relate the bunch, I’ll pull a few more threads, each carrying with it another five cards. I’ll have never considered these groups together before, which means I’m no longer working on integrating the original thought but am instead swept away by all of these secondary links. Before I know it, incorporating a passing comment on Mondays and Fridays being bad days to schedule one-on-ones&lt;a href="#fn:5" id="fnref:5" class="footnote" title="see footnote"&gt;5&lt;/a&gt; has me figuring out how feedback timing relates to ego depletion&lt;a href="#fn:6" id="fnref:6" class="footnote" title="see footnote"&gt;6&lt;/a&gt;. This usually peters out as I grow dissatisfied with my progress in integrating the notes I’d initially set out to merge.&lt;/p&gt;
&lt;p&gt;
This isn’t to suggest that it wasn’t enjoyable or outright beneficial to have fallen into the side quests: the adventures to-and-fro are part of what makes this system such a joy in which to work. Trying to do even a disciplined subset of note integration while writing a draft has often sent me so far from freeform writing that I never was able to return to it.&lt;/p&gt;
&lt;p&gt;
My attempts at writing anything long-form from my Zettelkasten have so far failed. Before I started it in January 2021, I bought into the process suggested in Sönke Ahrens’ &lt;em&gt;How to Take Smart Notes&lt;/em&gt; which implies that papers are written mainly in the slipbox before being pulled out, organized, and edited&lt;a href="#fn:3" id="fnref:3" class="footnote" title="see footnote"&gt;3&lt;/a&gt;. My interpretation of this process was that draft outlines were to emanate from the slipbox, like Athena bursting from Zeus’ forehead fully formed&lt;a href="#fn:7" id="fnref:7" class="footnote" title="see footnote"&gt;7&lt;/a&gt;. I’d never tasked the Zettelkasten with solving the problems I wanted to write about, however; I only knew it had things to say about the topics. With such an incorrect expectation in mind, the natural reaction was to work on the notes until such a draft could be found. The creative chaos that is my writing in the slipbox never gave me the drafts I wanted but did manage to inspire massive outlines that would grow out of control. These would break into smaller projects that would, in turn, do the same like so many public administrators in Parkinson’s Law&lt;a href="#fn:8" id="fnref:8" class="footnote" title="see footnote"&gt;8&lt;/a&gt;. I was never getting anywhere meaningful and became saturated with drafts that discouraged me from completing any of them.&lt;/p&gt;
&lt;h2&gt;
Integrating drafts into the Zettelkasten.&lt;/h2&gt;
&lt;p&gt;
With the benefits of roguelike modalities in mind, I archived my drafts and began comparing them to my permanent notes. Where the slipbox notes did not demonstrate my argumentation, I added links and abstractions that pulled together the set of ideas. Where ad hoc research had generated new supporting points, I wrote and integrated new notes. As a more concrete example, while reporting on the topic of velocity measurements in scrum, I went down a branch of novel thought that explored how velocity is ineffective to measure if a team cannot focus its efforts on specific goals—existing notes on velocity needed to add this thought and link it to notions of goals and purpose. In a splinter draft, I had taken this idea further, picking apart the aspects of velocity as described by physics. I had recalled that velocity and speed differ in that velocity entails heading straight toward a point B, where speed alone can take you anywhere, irrespective of any intended endpoint. Fascinated by this analogy, I’d worked toward identifying what mass, acceleration, and inertia might look like when described in terms of teams. I migrated these equations into a relatively nascent physics section of notes.&lt;/p&gt;
&lt;h2&gt;
Tying it all together, in theory.&lt;/h2&gt;
&lt;p&gt;
Follows is a proposed workflow for learning processes through to writing completed drafts. As I have little experience in successfully producing a final draft using my note box as a writing partner, some aspects of this are more theoretical than others. I have been following this process recently, however, and anticipate refining it further as I see what’s helpful and what other distractions it hasn’t eliminated.&lt;/p&gt;
&lt;ol&gt;
  &lt;li&gt;
&lt;strong&gt;Scan:&lt;/strong&gt; Take a cursory look at relevant books and articles. Scan through headings, images, etc.&lt;a href="#fn:9" id="fnref:9" class="footnote" title="see footnote"&gt;9&lt;/a&gt;  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Read:&lt;/strong&gt; Add marginalia of some sort to annotate the literature for future use.&lt;a href="#fn:10" id="fnref:10" class="footnote" title="see footnote"&gt;10&lt;/a&gt;  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Copy:&lt;/strong&gt; Review what was identified as necessary while reading&lt;a href="#fn:11" id="fnref:11" class="footnote" title="see footnote"&gt;11&lt;/a&gt;, rewriting and summarizing the points into personal notes. I do this by hand in notebooks.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Wait&lt;/strong&gt;: What was interesting while reading is not necessarily relevant. Waiting some days or weeks before revisiting may suppress interest in points that mainly contribute noise.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Review&lt;/strong&gt;: Decide which points are important enough to continue distilling into permanent notes. I use a pen to highlight the issues that I want to move forward.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Distill&lt;/strong&gt;: Write notes for the permanent collection. I do this on physical notecards. I’m currently in the habit of picking where the note will fall within the collection before writing it, which is an unnecessary distraction in a digital collection.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Cite:&lt;/strong&gt; Update the Zettelkasten index with the new topics if they are high enough level to warrant inclusion there, add any new reference material to the bibliography, and add citations to the cards to track the ideas’ provenance.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Integrate:&lt;/strong&gt; Ponder which other notes and indexes need to be updated to reference the new notes. Link into the notes from those, and link out where the identified relationships are also significant in the other direction.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Explore:&lt;/strong&gt; When an idea becomes attractive enough to write about more completely, explore the note collection to pull together the points that might be valuable to include in a draft.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Outline:&lt;/strong&gt; Organize the notes and ideas into an outline. Alongside that, track a list of new questions and research topics for later visitation.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Write:&lt;/strong&gt; Produce a draft, updating the list of questions/research topics as needed.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Proofread:&lt;/strong&gt; Review the draft, especially with an eye toward points that need more research.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Edit:&lt;/strong&gt; Where beneficial, revisit the draft to make any immediate changes.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Regroup:&lt;/strong&gt; Depending on what has ended up in the questions/research topics list:  &lt;/li&gt;
&lt;/ol&gt;
&lt;ul&gt;
  &lt;li&gt;
The process may need to start again at step 1 to bring in more material.  &lt;/li&gt;
  &lt;li&gt;
Where new points and relationships have been added to the draft, going back to step 6 to incorporate these back into the Zettelkasten may be desirable. Doing so will further refine and associate those points to help during the subsequent draft phases.  &lt;/li&gt;
  &lt;li&gt;
When the drafts are nearing completion, it won’t be as necessary to jump so far back in the process. Iterate from step 10 onward.  &lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;
Keep it separated.&lt;/h3&gt;
&lt;p&gt;
A Zettelkasten can be a powerful ally when using it as a writing partner—but it can also be a dangerous distraction. What makes it enjoyable to build readily leads one down a path of procrastination and irrelevance during drafts when not separating writing projects into distinct focus modalities. Those modalities interact iteratively, where the draft learns from the Zettelkasten for a time, and then the Zettelkasten takes its turn learning from the draft.&lt;/p&gt;
&lt;p&gt;
The modalities of focus benefit writers in contrast to the caustic effects of multitasking. Doing only one small part of learning or writing at a time requires less context switching, allowing deeper focus, and resulting in higher quality and faster production. A hidden benefit of rejecting multitasking comes from energy and motivation. Every change of direction makes focus harder, and all outstanding tasks require exceptional energy to keep on standby. Produce higher quality, faster, and more sustainably by adding boundaries to work.&lt;/p&gt;
&lt;div class="footnotes"&gt;
  &lt;hr&gt;
  &lt;ol&gt;
    &lt;li id="fn:1"&gt;
&lt;a title="return to article" class="reversefootnote" href="#fnref:1"&gt;&amp;#x21A9;&lt;/a&gt;      &lt;p&gt;
Allen Wilson, “Playing the Zettelkasten RPG Through Arbitrary Constraints,” Zettelkasten Method &lt;em class="paren-em"&gt;(blog)&lt;/em&gt;, April 2022, &lt;a href="https://zettelkasten.de/posts/playing-zettelkasten-rpg-through-arbitrary-constraints/" target="_blank"&gt;https://zettelkasten.de/posts/playing-zettelkasten-rpg-through-arbitrary-constraints/&lt;/a&gt;.      &lt;/p&gt;
    &lt;/li&gt;
    &lt;li id="fn:2"&gt;
&lt;a title="return to article" class="reversefootnote" href="#fnref:2"&gt;&amp;#x21A9;&lt;/a&gt;      &lt;p&gt;
Sönke Ahrens, &lt;em&gt;How to Take Smart Notes: One Simple Technique to Boost Writing, Learning and Thinking: For Students, Academics and Nonfiction Book Writers&lt;/em&gt; &lt;em class="paren-em"&gt;(North Charleston, SC: CreateSpace, 2017)&lt;/em&gt;, 23–26.      &lt;/p&gt;
    &lt;/li&gt;
    &lt;li id="fn:3"&gt;
&lt;a title="return to article" class="reversefootnote" href="#fnref:3"&gt;&amp;#x21A9;&lt;/a&gt;      &lt;p&gt;
Ahrens, &lt;em&gt;Smart Notes&lt;/em&gt;, 58–63.      &lt;/p&gt;
    &lt;/li&gt;
    &lt;li id="fn:4"&gt;
&lt;a title="return to article" class="reversefootnote" href="#fnref:4"&gt;&amp;#x21A9;&lt;/a&gt;      &lt;p&gt;
David Rock, &lt;em&gt;Your Brain at Work: Strategies for Overcoming Distraction, Regaining Focus, and Working Smarter All Day Long&lt;/em&gt;, 1st ed &lt;em class="paren-em"&gt;(New York: Harper Business, 2009)&lt;/em&gt;.      &lt;/p&gt;
    &lt;/li&gt;
    &lt;li id="fn:5"&gt;
&lt;a title="return to article" class="reversefootnote" href="#fnref:5"&gt;&amp;#x21A9;&lt;/a&gt;      &lt;p&gt;
Camille Fournier, &lt;em&gt;The Manager’s Path: A Guide for Tech Leaders Navigating Growth and Change&lt;/em&gt;, ed. Laurel Ruma, First Edition &lt;em class="paren-em"&gt;(Beijing: O’Reilly, 2017)&lt;/em&gt;, 53.      &lt;/p&gt;
    &lt;/li&gt;
    &lt;li id="fn:6"&gt;
&lt;a title="return to article" class="reversefootnote" href="#fnref:6"&gt;&amp;#x21A9;&lt;/a&gt;      &lt;p&gt;
Ahrens, &lt;em&gt;Smart Notes&lt;/em&gt;, 72.      &lt;/p&gt;
    &lt;/li&gt;
    &lt;li id="fn:7"&gt;
&lt;a title="return to article" class="reversefootnote" href="#fnref:7"&gt;&amp;#x21A9;&lt;/a&gt;      &lt;p&gt;
“Athena | Goddess, Myths, Symbols, Facts, &amp; Roman Name | Britannica,” accessed July 9, 2022, &lt;a href="https://www.britannica.com/topic/Athena-Greek-mythology" target="_blank"&gt;https://www.britannica.com/topic/Athena-Greek-mythology&lt;/a&gt;.      &lt;/p&gt;
    &lt;/li&gt;
    &lt;li id="fn:8"&gt;
&lt;a title="return to article" class="reversefootnote" href="#fnref:8"&gt;&amp;#x21A9;&lt;/a&gt;      &lt;p&gt;
C. Northcote Parkinson, &lt;em&gt;“Parkinson’s &lt;/em&gt;,”Law The Economist, November 19, 1955, &lt;a href="https://www.economist.com/news/1955/11/19/parkinsons-law" target="_blank"&gt;https://www.economist.com/news/1955/11/19/parkinsons-law&lt;/a&gt;.      &lt;/p&gt;
    &lt;/li&gt;
    &lt;li id="fn:9"&gt;
&lt;a title="return to article" class="reversefootnote" href="#fnref:9"&gt;&amp;#x21A9;&lt;/a&gt;      &lt;p&gt;
“T.H.I.E.V.E.S. - Reading Technique | Kent State University,” accessed June 19, 2022, &lt;a href="https://www.kent.edu/writingcommons/thieves-reading-technique" target="_blank"&gt;https://www.kent.edu/writingcommons/thieves-reading-technique&lt;/a&gt;.      &lt;/p&gt;
    &lt;/li&gt;
    &lt;li id="fn:10"&gt;
&lt;a title="return to article" class="reversefootnote" href="#fnref:10"&gt;&amp;#x21A9;&lt;/a&gt;      &lt;p&gt;
Anne-Laure Le Cunff, “Interview: Using Books to Navigate Life with Juvoni Beckford,” Ness Labs &lt;em class="paren-em"&gt;(blog)&lt;/em&gt;, November 3, 2020, &lt;a href="https://nesslabs.com/juvoni-beckford-interview" target="_blank"&gt;https://nesslabs.com/juvoni-beckford-interview&lt;/a&gt;.      &lt;/p&gt;
    &lt;/li&gt;
    &lt;li id="fn:11"&gt;
&lt;a title="return to article" class="reversefootnote" href="#fnref:11"&gt;&amp;#x21A9;&lt;/a&gt;      &lt;p&gt;
Sascha Fast, “The Barbell Method of Reading,” Zettelkasten Method, 2018, &lt;a href="https://www.zettelkasten.de/posts/barbell-method-reading/"&gt;https://www.zettelkasten.de/posts/barbell-method-reading/&lt;/a&gt;.{:target=_blank}      &lt;/p&gt;
    &lt;/li&gt;
  &lt;/ol&gt;
&lt;/div&gt;
</content>
    <published>2022-07-10T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/blog/2022/07/10/operation-failed-successfully-writing-with-a-zettelkasten</id>
    <title>Operation failed successfully: writing with a Zettelkasten.</title>
    <updated>2023-03-31T03:54:33Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/blog/2022/03/07/glory-to-the-short-and-weighty"/>
    <content type="html">&lt;p class="introduction"&gt;
Deciding how to spend time is one of the more challenging and worthy things to, well, spend time on. Weighted shortest job first &lt;em class="paren-em"&gt;(WSJF)&lt;/em&gt;&lt;a href="#fn:3" id="fnref:3" class="footnote" title="see footnote"&gt;3&lt;/a&gt; is an excellent tool for estimating the best uses of time.&lt;/p&gt;
&lt;h2&gt;
Understanding weights and lengths.&lt;/h2&gt;
&lt;p&gt;
The purpose of WSJF is to rank activities by the order in which they are best accomplished. It does this by producing a “WSJF score,” an abstract figure that represents the value of time when spent on a given project—its “bounce to the ounce.”&lt;a href="#fn:1" id="fnref:1" class="footnote" title="see footnote"&gt;1&lt;/a&gt; It does by estimating the value of an activity and dividing it by its size or difficulty &lt;em class="paren-em"&gt;(more or less— there’s nuance to explore)&lt;/em&gt;.&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;wsjf = cost of delay / task size&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;
What if we just didn’t?&lt;/h3&gt;
&lt;p&gt;
The cost of delay looks at what we miss if we don’t attend to a given set of tasks instead of measuring the work’s outright value. This approach helps us eschew a fixation on the sunk costs of existing work and instead allows us to see the economics of our forward-looking choices.&lt;/p&gt;
&lt;p&gt;
One may view the cost of delay as an estimation of &lt;strong&gt;what matters&lt;/strong&gt;. Figuring out what matters is difficult; work that provides immediate value tends to be prominent, while resilience-enabling work is easy to overlook.&lt;/p&gt;
&lt;p&gt;
The cost of delay asks us to survey all opportunities and the ways they support the business along several vectors:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;cost of delay = value to the user or business + time criticality + risk reduction + opportunity enablement&lt;/code&gt;&lt;/pre&gt;
&lt;h4&gt;
Value to the user or business.&lt;/h4&gt;
&lt;p&gt;
Aside from &lt;em class="paren-em"&gt;(maybe)&lt;/em&gt; time criticality, this aspect tends to be the loudest in an organization. This facet measures the presumed value the work will provide to an end user or business stakeholder.&lt;/p&gt;
&lt;h4&gt;
Time criticality.&lt;/h4&gt;
&lt;p&gt;
Work that has a deadline or declining potential is preferable to do sooner in proportion to its urgency. While it depends on the type of work, this facet rarely has much differentiation, but it matters a lot when it does.&lt;/p&gt;
&lt;h4&gt;
Risk reduction.&lt;/h4&gt;
&lt;p&gt;
Risk reduction typically pairs with the opportunity enablement factor to become one single figure, which means something to the effect of “efforts that add more certainty for an improving future.” They are helpful to think about separately, as a project can simultaneously reduce risk and increase opportunity.&lt;/p&gt;
&lt;p&gt;
While two sides of the same coin, this factor asks us to consider whether we can reduce any categories of business risk.&lt;/p&gt;
&lt;h4&gt;
Opportunity enablement.&lt;/h4&gt;
&lt;p&gt;
The other side of our “improving the future” coin is the unlocking of possibility. Opportunity enablement is where work creating distant possibilities as part of a business’s strategic interests gets prioritized or projects block other more attractive projects.&lt;/p&gt;
&lt;h3&gt;
Estimating difficulty.&lt;/h3&gt;
&lt;p&gt;
The divisor in WSJF represents some abstraction of difficulty or time required to perform the work. Any approach to estimating this figure is valid, so long as it produces a number. Many approaches to estimation exist, but all that matters is that the estimates are in proportion to one another. Where one body of work is double the effort of another, assign it an estimate twice the size.&lt;/p&gt;
&lt;h2&gt;
Putting it into practice.&lt;/h2&gt;
&lt;p&gt;
With the concepts in the system now laid out, let’s move on to implementing it. There are five steps to implementing WSJF:&lt;/p&gt;
&lt;ol&gt;
  &lt;li&gt;
&lt;strong&gt;Brainstorm:&lt;/strong&gt; Get all of the opportunities written down.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Estimate:&lt;/strong&gt; Calculate a WSJF score by assigning numbers to the different dimensions.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Refine:&lt;/strong&gt; Interpret the results, get more information, adjust the estimates.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Execute:&lt;/strong&gt; Put the results into practice.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Revisit:&lt;/strong&gt; Always be calibrating.  &lt;/li&gt;
&lt;/ol&gt;
&lt;h3&gt;
1. Brainstorm.&lt;/h3&gt;
&lt;blockquote&gt;
  &lt;p&gt;
Essentialists spend as much time as possible exploring, listening, debating, questioning, and thinking. But their exploration is not an end in itself. The purpose of the exploration is to discern the vital few from the trivial many.  &lt;/p&gt;
  &lt;p&gt;
—Greg McKeown, &lt;em&gt;Essentialism&lt;/em&gt;&lt;a href="#fn:2" id="fnref:2" class="footnote" title="see footnote"&gt;2&lt;/a&gt;  &lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;
To prioritize effectively, you need to know what’s even available. Put everything you’ve been hearing and thinking about into a document and spend time considering what’s missing from the list. WSJF will tell you what’s best to spend your time on, but the creativity that goes into producing that options is the limiting factor. If only a few things are truly worth focusing on, spending time seeking to put those items on your list is time well spent.&lt;/p&gt;
&lt;h3&gt;
2. Estimate.&lt;/h3&gt;
&lt;p&gt;
The estimation exercise in WSJF happens one factor at a time and needs to consider all possible projects simultaneously for the given factor. Each element needs at least one project to serve as the basis, and that project is assigned a value of 1. Estimate the remaining items relatively.&lt;/p&gt;
&lt;p&gt;
For example, if following the prescribed order as laid out here &lt;em class="paren-em"&gt;(which you don’t have to do!)&lt;/em&gt;, we’d look at user/business value first. We’d ask which project is least valuable to a user or business stakeholder &lt;em&gt;at the moment of its completion&lt;/em&gt; &lt;em class="paren-em"&gt;(don’t get caught up thinking about opportunity enablement while thinking about direct value!)&lt;/em&gt;. After surveying the list, assign a project an estimate of 1. A subsequent scan might reveal other projects that are also roughly equivalent and also deserving of a 1 designation. Estimate the remainder in proportion to this baseline value—tasks seeming thrice as promising are assigned 3, and so on. Once every project has an estimate for the given factor, move on to the next aspect.&lt;/p&gt;
&lt;h4&gt;
Hakuna matata.&lt;/h4&gt;
&lt;p&gt;
It’s essential not to get hung up on the estimation activity. If some light research has happened ahead of time to get a better sense of circumstances for the estimates, that’s great! It is not required, though. What matters is that the task list is ordered mostly correctly in the end, not that every value is accurate. If you have a pretty good handle on the nature of the projects, the chances are that you’re looking at a difference of 90% accuracy from your best guesses against 95% for better guesses with more information. This 5% gain is not necessarily worth the prework because of the next stage.&lt;/p&gt;
&lt;h3&gt;
3. Refine.&lt;/h3&gt;
&lt;p&gt;
With a completed estimation in place, WSJF scores, and a corresponding best guess at the order in which work should unfold, it’s time to validate the results. The first step is to review the order of the project list and ask: “Does this match the understanding I have about what needs to happen?” If the answer is no, and there will often be a couple of things that raise your eyebrow, then another pass at the underlying estimation is warranted. Make tweaks to reflect your expectations better. If there are significant differences, though, consider whether you’ve severely understated something… or whether you should be revising your expectations.&lt;/p&gt;
&lt;p&gt;
Once you agree with your ranking, start socializing the results. Stakeholders and team members should discuss the order of projects to go through that same revision process:&lt;/p&gt;
&lt;ul&gt;
  &lt;li&gt;
Do people agree with the order?  &lt;/li&gt;
  &lt;li&gt;
Do they need to hear the narrative to understand the rationale?  &lt;/li&gt;
  &lt;li&gt;
Do they have viewpoints that change our understanding of the value of the projects?  &lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;
Note that it is helpful to discuss the relative factors of the cost of delay between projects. It will frustrate everyone if stakeholders get involved in the underlying numerical estimations of the system. Keep it high level: discuss the relative value between projects they’re concerned about, but refrain from making them understand the scores across &lt;em&gt;all&lt;/em&gt; projects.&lt;/p&gt;
&lt;p&gt;
We’ll expect a movement of some projects in this process, but not too much. If an overhaul is needed, that’s an excellent trigger for digging into what it is about the flow of information that caused the first pass to be so far off base.&lt;/p&gt;
&lt;h3&gt;
4. Execute.&lt;/h3&gt;
&lt;p&gt;
With a prioritized list now settled, you can put it into motion. Translate the list into whatever’s most helpful for working toward the results described by the projects, be that a roadmap or a to-do list.&lt;/p&gt;
&lt;h3&gt;
5. Revisit.&lt;/h3&gt;
&lt;p&gt;
It’s vital to keep prioritized lists updated to learn the best information about the optimal way to spend our time. Be wary of spending too much time on this process, especially brainstorming and estimating. A process that’s too demanding to follow will lead to infrequent catch-up sessions, which reduce the effectiveness of WSJF. A nimble approach to prioritization would see this process often happen, keeping up with new information on a similar timeline as it comes in &lt;em class="paren-em"&gt;(maybe not immediately reacting to all further information… but not waiting to review months of new projects all at once, either)&lt;/em&gt;. It’s no secret that the easier something is to do, the more readily one benefits from it&lt;a href="#fn:4" id="fnref:4" class="footnote" title="see footnote"&gt;4&lt;/a&gt;.&lt;/p&gt;
&lt;h2&gt;
Serving suggestions.&lt;/h2&gt;
&lt;p&gt;
I find WSJF valuable for many areas of my life. The above caters &lt;em&gt;somewhat&lt;/em&gt; to the context of a software engineering team, but not by much! With some slight adaptations to what the cost of delay might mean and how to measure the investment needed for an item, I’ve used WSJF to help me in many different subjects:&lt;/p&gt;
&lt;ul&gt;
  &lt;li&gt;
Manage development team priorities, naturally.  &lt;/li&gt;
  &lt;li&gt;
Decide which books to read next.  &lt;/li&gt;
  &lt;li&gt;
Pick which prospective hobbies to double down on &lt;em class="paren-em"&gt;(and which to set aside permanently)&lt;/em&gt;.  &lt;/li&gt;
  &lt;li&gt;
Start writing more!  &lt;/li&gt;
&lt;/ul&gt;
&lt;div class="footnotes"&gt;
  &lt;hr&gt;
  &lt;ol&gt;
    &lt;li id="fn:1"&gt;
&lt;a title="return to article" class="reversefootnote" href="#fnref:1"&gt;&amp;#x21A9;&lt;/a&gt;      &lt;p&gt;
It seems Pepsi coined the &lt;a href="https://www.adbranch.com/pepsi-more-bounce-to-the-ounce-1950s/" target="_blank"&gt;predecessor&lt;/a&gt; to “bang for your buck”.      &lt;/p&gt;
    &lt;/li&gt;
    &lt;li id="fn:2"&gt;
&lt;a title="return to article" class="reversefootnote" href="#fnref:2"&gt;&amp;#x21A9;&lt;/a&gt;      &lt;p&gt;
Greg McKeown, &lt;em&gt;Essentialism: The Disciplined Pursuit of Less&lt;/em&gt;, First Edition &lt;em class="paren-em"&gt;(New York: Crown Business, 2014)&lt;/em&gt;, 61. &lt;a href="https://www.squidtree.com/references/mckeown2014"&gt;More from this source&lt;/a&gt;.      &lt;/p&gt;
    &lt;/li&gt;
    &lt;li id="fn:3"&gt;
&lt;a title="return to article" class="reversefootnote" href="#fnref:3"&gt;&amp;#x21A9;&lt;/a&gt;      &lt;p&gt;
“WSJF,” &lt;em&gt;Scaled Agile Framework&lt;/em&gt; &lt;em class="paren-em"&gt;(blog)&lt;/em&gt;, accessed January 7, 2021, &lt;a href="https://www.scaledagileframework.com/wsjf/" target="_blank"&gt;https://www.scaledagileframework.com/wsjf/&lt;/a&gt;.      &lt;/p&gt;
    &lt;/li&gt;
    &lt;li id="fn:4"&gt;
&lt;a title="return to article" class="reversefootnote" href="#fnref:4"&gt;&amp;#x21A9;&lt;/a&gt;      &lt;p&gt;
B. J. Fogg, &lt;em&gt;Tiny Habits: The Small Changes That Change Everything&lt;/em&gt; &lt;em class="paren-em"&gt;(Boston: Houghton Mifflin Harcourt, 2019)&lt;/em&gt;.      &lt;/p&gt;
    &lt;/li&gt;
  &lt;/ol&gt;
&lt;/div&gt;
</content>
    <published>2022-03-07T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/blog/2022/03/07/glory-to-the-short-and-weighty</id>
    <title>Glory to the short and weighty.</title>
    <updated>2023-03-31T03:53:47Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/blog/2021/07/13/welcome-to-squidtree"/>
    <content type="html">&lt;p class="introduction"&gt;
I’m thrilled to announce the launch of Squidtree! This project has been a work in progress since 2008, and while it continues to be so today… it’s actually a real website, finally.&lt;/p&gt;
&lt;h2&gt;
About me.&lt;/h2&gt;
&lt;p&gt;
I’m &lt;a href="/about/"&gt;Shaine Hatch&lt;/a&gt;. The most important thing for me to share with you about this fact is that I am the curator of this website. There are a number of other interesting things for me to share with you; this is in fact the purpose of the website that I am announcing to you in this very moment. While I will leave most of those secondary interesting points for future writing, I can share today that my focus lies in software engineering, the management thereof, and the hoarding of art supplies.&lt;/p&gt;
&lt;h2&gt;
About Squidtree.&lt;/h2&gt;
&lt;h3&gt;
Goals.&lt;/h3&gt;
&lt;p&gt;
I’m looking to do three things here: make my &lt;a href="/notes"&gt;Zettelkasten&lt;/a&gt; public &lt;em class="paren-em"&gt;(more on this in the future)&lt;/em&gt;, start &lt;a href="/blog"&gt;blogging&lt;/a&gt; again, and finally get around to playing with some design concepts in production.&lt;/p&gt;
&lt;h3&gt;
A sordid and oddly Flash-based background.&lt;/h3&gt;
&lt;p&gt;
I started programming in 2002. This is a website launch announcement and not instead a recipe, so I’ll spare you my &lt;em&gt;entire&lt;/em&gt; life’s story, but I’m going somewhere with this.&lt;/p&gt;
&lt;p&gt;
In 2002, I was in high school, and looking back, I’d like to think that the nature of web development was also a teenager. CSS had not yet completely taken over from table-based design, and I spent a lot of time in those years learning about CSS &lt;a href="http://www.csszengarden.com/"&gt;from&lt;/a&gt; &lt;a href="https://meyerweb.com/"&gt;the&lt;/a&gt; &lt;a href="https://simplebits.com/"&gt;masters&lt;/a&gt; while also reading through the arguments for and against delegating styling entirely to CSS.&lt;/p&gt;
&lt;p&gt;
During those 3 years, I also built 4-or-so Flash-based websites. 2 years after that, I was building renegade counterfeit investigation research tools in &lt;a href="https://en.wikipedia.org/wiki/Adobe_AIR"&gt;Adobe AIR&lt;/a&gt;, which basically brought Adobe Flash into the desktop environment, to augment the dysfunctional corporate software we were attempting to use for that purpose. A few years later, in my first official web development job, I spent a lot of time working around browser dereliction in the custom font world with a tool called &lt;a href="https://mikeindustries.com/blog/sifr"&gt;sIFR&lt;/a&gt; or Scalable Inman Flash Replacement, which allowed us to use custom fonts by swapping out text with tiny Flash applets displaying the text in an embedded custom font. The namesake of that tool, &lt;a href="https://shauninman.com/"&gt;Shaun Inman&lt;/a&gt;, &lt;em class="paren-em"&gt;(very)&lt;/em&gt; indirectly sent me down a path that eventually leads to this website.&lt;/p&gt;
&lt;h3&gt;
Site design.&lt;/h3&gt;
&lt;p&gt;
Squidtree features a revolving color scheme that’s anchored to the seasons of the year. This post was made in July and therefore reflects an orange color, existing in a season whose heat will escalate to a bright red. Come fall, purples will be introduced as things cool down on their way to the cold blue of winter. When spring starts to warm things up again, the site’s colors will rotate through green hues, back on their way to the warm colors of summer. Any piece of content published will become pinned to the colors of its publish date, which is why different colors are displayed while navigating the website.&lt;/p&gt;
&lt;p&gt;
This color concept has been one of the biggest drivers for me to work on this site, and it has followed me around for many, many years. But I cannot take credit for it. The reason for the Flash story? Flash led me to sIFR, which led me to the creative work of Shaun Inman, who shared his inspiration &lt;a href="http://si10.shauninman.com/archive/2006/10/16/the_9th_incarnation_of_shauninman_com"&gt;about the nature of the passage of time&lt;/a&gt; during a site relaunch. &lt;em class="paren-em"&gt;(If the page is unreadable, you may hit this &lt;a href="http://si10.shauninman.com/toggle_contrast"&gt;color toggle URL&lt;/a&gt; and then reload the page)&lt;/em&gt;. While Shaun’s colors fade, my interest was the progression of color with time—with the non-readable mode toggled on, you can see the color effect he was going for &lt;a href="http://si10.shauninman.com/archive/"&gt;here&lt;/a&gt;. &lt;em class="paren-em"&gt;(Keep in mind this page was built many years ago against different constraints, and what we see today does not resemble what we’d experienced in the browsers of the day.)&lt;/em&gt;&lt;/p&gt;
&lt;h3&gt;
Building Squidtree.&lt;/h3&gt;
&lt;p&gt;
While this website has been under development since 2008, it has served its purpose over the years. There’s real, live content today because there’s real, live content to be shared. Before now, though, its purpose has specifically been &lt;em&gt;to be in the process of getting developed…&lt;/em&gt;&lt;/p&gt;
&lt;h4&gt;
…Many, many times.&lt;/h4&gt;
&lt;p&gt;
This site has been rewritten with various forms and designs to&lt;/p&gt;
&lt;ul&gt;
  &lt;li&gt;
further develop a custom PHP framework  &lt;/li&gt;
  &lt;li&gt;
learn the Yii PHP framework  &lt;/li&gt;
  &lt;li&gt;
further develop understanding of Backbone.js  &lt;/li&gt;
  &lt;li&gt;
self-train isomorphic React &amp; Node  &lt;/li&gt;
  &lt;li&gt;
familiarize myself with Elixir and Phoenix &lt;em class="paren-em"&gt;(twice)&lt;/em&gt;  &lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;
Alongside those studies, many finer points were researched, such as CSS frameworks/patterns, testing frameworks, various databases, API design strategies, and a dozen other technologies and practices.&lt;/p&gt;
&lt;h4&gt;
Technical details.&lt;/h4&gt;
&lt;p&gt;
Having finally delivered a non-trivial version of the site, I can say that Elixir and the Phoenix framework have performed a miracle which no other technology combination has managed to do so far. The technology was easy to learn, it was opinionated and clear enough that I didn’t get caught up in the trap of non-development decision making, the language and framework details were engaging enough that I was able to build it as a point of entertainment in my spare time rather than treating it as a learning chore, and so much more.&lt;/p&gt;
&lt;p&gt;
The site is built mostly in markdown files on a static file server. Elixir manages a webserver to read and serve its contents, but the interesting part of this implementation involves OTP to manage processes with different responsibilities to the site.&lt;/p&gt;
&lt;p&gt;
As mentioned, the webserver is a given. Webserver requests mostly involve reading a markdown file and processing it in fairly complex ways. A GenServer is running with several ETS tables to pull in these markdown files and retain their processed copies in memory, so new requests can immediately serve the content.&lt;/p&gt;
&lt;p&gt;
Serving the content is only half of the story. With all of this content and associated metadata in memory, more useful behaviors are in place which index the content and make it available in contexts beyond just reading a document itself—a note about a book can now easily pull in every note that references the book, for example.&lt;/p&gt;
&lt;h2&gt;
In closing.&lt;/h2&gt;
&lt;p&gt;
While not necessarily the most efficient manner of learning, I couldn’t recommend more the practice of always having a background project that just so happens to need the application of the technical skills which you do not presently possess. The combination of understanding the requirements, having interest in moving forward, but not having the necessary skills to quickly or entirely deliver creates a space within which there’s a fast track toward technical growth.&lt;/p&gt;
&lt;p&gt;
I’m excited to have Squidtree up and running at long last. This milestone marks a time when my focus is no longer on learning technology, but instead is on deeply integrating ideas and sharing the resulting insights.&lt;/p&gt;
</content>
    <published>2021-07-13T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/blog/2021/07/13/welcome-to-squidtree</id>
    <title>Welcome to Squidtree.</title>
    <updated>2022-09-02T21:01:48Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/notes/time-to-open-is-highly-correlated-to-code-cycle-time/12B1,2A"/>
    <content type="html">&lt;p&gt;
According to a study of 180,000 merge requests from 500 teams, time to open &lt;em class="paren-em"&gt;(first commit to merge request open)&lt;/em&gt; has an 87% correlation with &lt;a href="/notes/12B1,2"&gt;code cycle time&lt;/a&gt;. This suggests that code ships faster when the decisions are smaller and brought to the team for input sooner. Indirectly, this may suggest that strong pairing practices make code ship faster.&lt;a href="#fn:rD13" id="fnref:rD13" class="footnote" title="see footnote"&gt;rD13&lt;/a&gt;&lt;/p&gt;
&lt;div class="footnotes"&gt;
  &lt;hr&gt;
  &lt;ol&gt;
    &lt;li id="fn:rD13"&gt;
&lt;a title="return to article" class="reversefootnote" href="#fnref:rD13"&gt;&amp;#x21A9;&lt;/a&gt;      &lt;p&gt;
Noah Davis, &lt;em&gt;“What Analyzing 180,000 Pull Requests Taught Us About Shipping Faster,”&lt;/em&gt; Code Climate &lt;em class="paren-em"&gt;(blog)&lt;/em&gt;, November 28, 2018, &lt;a href="https://codeclimate.com/blog/what-data-science-tells-us-about-shipping-faster/"&gt;https://codeclimate.com/blog/what-data-science-tells-us-about-shipping-faster/&lt;/a&gt;. &lt;em class="paren-em"&gt;(See &lt;a href="/references/D13"&gt;notes&lt;/a&gt;.)&lt;/em&gt;      &lt;/p&gt;
    &lt;/li&gt;
  &lt;/ol&gt;
&lt;/div&gt;
</content>
    <published>2025-02-01T17:09:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/notes/time-to-open-is-highly-correlated-to-code-cycle-time/12B1,2A</id>
    <title>Time to open is highly correlated to code cycle time.</title>
    <updated>2025-02-02T00:10:55Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/notes/cycle-time/12B1,2"/>
    <content type="html">&lt;p&gt;
The time it takes to do something start to finish.&lt;/p&gt;
&lt;p&gt;
In software development, we usually separate the coding portion into code cycle time—time from first commit to deployment—away from the lead time of design and ideation, as these are squishier activities.&lt;a href="#fn:rD12" id="fnref:rD12" class="footnote" title="see footnote"&gt;rD12&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;
This metric puts pressure on merge request and team process sizes to speed up sub-cycles within the work.&lt;a href="#fn:rD12" id="fnref:rD12" class="footnote" title="see footnote"&gt;rD12&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;
Time to open is &lt;a href="/notes/12B1,2A"&gt;correlated most strongly&lt;/a&gt; with code lead time.&lt;/p&gt;
&lt;div class="footnotes"&gt;
  &lt;hr&gt;
  &lt;ol&gt;
    &lt;li id="fn:rD12"&gt;
&lt;a title="return to article" class="reversefootnote" href="#fnref:rD12"&gt;&amp;#x21A9;&lt;/a&gt;      &lt;p&gt;
Noah Davis, &lt;em&gt;“What Is Cycle Time and Why Does It Matter?,”&lt;/em&gt; Code Climate &lt;em class="paren-em"&gt;(blog)&lt;/em&gt;, December 8, 2020, &lt;a href="https://codeclimate.com/blog/software-engineering-cycle-time/"&gt;https://codeclimate.com/blog/software-engineering-cycle-time/&lt;/a&gt;. &lt;em class="paren-em"&gt;(See &lt;a href="/references/D12"&gt;notes&lt;/a&gt;.)&lt;/em&gt;      &lt;/p&gt;
    &lt;/li&gt;
    &lt;li id="fn:rD12"&gt;
&lt;a title="return to article" class="reversefootnote" href="#fnref:rD12"&gt;&amp;#x21A9;&lt;/a&gt;      &lt;p&gt;
Noah Davis, &lt;em&gt;“What Is Cycle Time and Why Does It Matter?,”&lt;/em&gt; Code Climate &lt;em class="paren-em"&gt;(blog)&lt;/em&gt;, December 8, 2020, &lt;a href="https://codeclimate.com/blog/software-engineering-cycle-time/"&gt;https://codeclimate.com/blog/software-engineering-cycle-time/&lt;/a&gt;. &lt;em class="paren-em"&gt;(See &lt;a href="/references/D12"&gt;notes&lt;/a&gt;.)&lt;/em&gt;      &lt;/p&gt;
    &lt;/li&gt;
  &lt;/ol&gt;
&lt;/div&gt;
</content>
    <published>2025-02-01T17:06:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/notes/cycle-time/12B1,2</id>
    <title>Cycle time.</title>
    <updated>2025-02-02T00:10:55Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/notes/skip-levels/1211,2"/>
    <content type="html">&lt;p&gt;
A skip level is a &lt;a href="/notes/1211"&gt;one-on-one&lt;/a&gt; between an employee and someone higher in their management chain than their manager.&lt;/p&gt;
&lt;p&gt;
The goals of a skip level are for the leader to learn about the performance of their management team, to keep a pulse on how changes are landing amongst steams, and to learn of challenges or concerns. Some ways to meet these goals: deep dive into specific areas of concern, test out new ideas in a speculative way, confirm important information is flowing down correctly and that there’s alignment. The discussion needs to be safe for the employee in order to meet its goals. Not every problem is a request for intervention.&lt;a href="#fn:rR12" id="fnref:rR12" class="footnote" title="see footnote"&gt;rR12&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;
Like other one-on-ones, this is a good place to share feedback and observations, especially praise.&lt;/p&gt;
&lt;div class="footnotes"&gt;
  &lt;hr&gt;
  &lt;ol&gt;
    &lt;li id="fn:rR12"&gt;
&lt;a title="return to article" class="reversefootnote" href="#fnref:rR12"&gt;&amp;#x21A9;&lt;/a&gt;      &lt;p&gt;
Jade Rubick, &lt;em&gt;“Why and How to Do Skip Level 1-1s,”&lt;/em&gt; September 30, 2024, &lt;a href="https://www.rubick.com/skip-level-1-on-1s/"&gt;https://www.rubick.com/skip-level-1-on-1s/&lt;/a&gt;. &lt;em class="paren-em"&gt;(See &lt;a href="/references/R12"&gt;notes&lt;/a&gt;.)&lt;/em&gt;      &lt;/p&gt;
    &lt;/li&gt;
  &lt;/ol&gt;
&lt;/div&gt;
</content>
    <published>2025-01-19T17:28:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/notes/skip-levels/1211,2</id>
    <title>Skip levels.</title>
    <updated>2025-01-20T00:31:49Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/notes/failure-modes-of-scrum-and-its-derivatives/1171,9"/>
    <content type="html">&lt;p&gt;
Scrum goes poorly when top-down management techniques are applied. The following symptoms can signal that leaders don’t know how to trust a team, which might be repaired by redoubled efforts toward delivering high visibility, high quality increments:&lt;a href="#fn:rJ2" id="fnref:rJ2" class="footnote" title="see footnote"&gt;rJ2&lt;/a&gt;&lt;/p&gt;
&lt;ul&gt;
  &lt;li&gt;
&lt;a href="/notes/1224,3"&gt;Standup is extractive&lt;/a&gt; rather than collaboration planning for the day  &lt;/li&gt;
  &lt;li&gt;
Planning is a series of demands rather than a goal and then self-organization  &lt;/li&gt;
  &lt;li&gt;
Sprint review is mostly lamentation of failed expectations, same with retrospectives  &lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;
&lt;a href="/notes/1227,1"&gt;Managing stakeholder expectations&lt;/a&gt; is a big part of this failure mode.&lt;/p&gt;
&lt;div class="footnotes"&gt;
  &lt;hr&gt;
  &lt;ol&gt;
    &lt;li id="fn:rJ2"&gt;
&lt;a title="return to article" class="reversefootnote" href="#fnref:rJ2"&gt;&amp;#x21A9;&lt;/a&gt;      &lt;p&gt;
Ron Jeffries, &lt;em&gt;“Dark Scrum,”&lt;/em&gt; September 8, 2016, &lt;a href="https://ronjeffries.com/articles/016-09ff/defense/"&gt;https://ronjeffries.com/articles/016-09ff/defense/&lt;/a&gt;. &lt;em class="paren-em"&gt;(See &lt;a href="/references/J2"&gt;notes&lt;/a&gt;.)&lt;/em&gt;      &lt;/p&gt;
    &lt;/li&gt;
  &lt;/ol&gt;
&lt;/div&gt;
</content>
    <published>2025-01-19T13:02:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/notes/failure-modes-of-scrum-and-its-derivatives/1171,9</id>
    <title>Failure modes of scrum (and its derivatives).</title>
    <updated>2025-01-19T20:04:57Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/notes/brain-matter/5311,4"/>
    <content type="html">&lt;p&gt;
Brain matter consists of grey matter, which is used in the cortex and associated with more active thinking processes, and white matter, which is more for connecting different parts of the brain together.&lt;/p&gt;
&lt;p&gt;
In one study, it was observed that human males have somewhat more white matter, possibly indicating higher statistics for spatial awareness and motor control. Women were shown to have higher grey matter, suggesting a stronger propensity for memory and emotional awareness. Importantly, statistics may be useful for generic claims, but gender is only one part of the picture, and nurture will have a noteworthy impact on an individual’s capabilities, as well as environment.&lt;a href="#fn:rG6" id="fnref:rG6" class="footnote" title="see footnote"&gt;rG6&lt;/a&gt;&lt;/p&gt;
&lt;div class="footnotes"&gt;
  &lt;hr&gt;
  &lt;ol&gt;
    &lt;li id="fn:rG6"&gt;
&lt;a title="return to article" class="reversefootnote" href="#fnref:rG6"&gt;&amp;#x21A9;&lt;/a&gt;      &lt;p&gt;
Sanjana Gajbhiye, &lt;em&gt;“Male and Female Brains Truly Are Wired Completely Differently,”&lt;/em&gt; Earth.com, January 9, 2025, &lt;a href="https://www.earth.com/news/male-and-female-brains-are-wired-completely-differently/"&gt;https://www.earth.com/news/male-and-female-brains-are-wired-completely-differently/&lt;/a&gt;. &lt;em class="paren-em"&gt;(See &lt;a href="/references/G6"&gt;notes&lt;/a&gt;.)&lt;/em&gt;      &lt;/p&gt;
    &lt;/li&gt;
  &lt;/ol&gt;
&lt;/div&gt;
</content>
    <published>2025-01-18T21:18:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/notes/brain-matter/5311,4</id>
    <title>Brain matter.</title>
    <updated>2025-01-19T04:21:30Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/notes/troubleshooting/112C"/>
    <content type="html">&lt;p&gt;
Nine rules of debugging are:&lt;a href="#fn:rW6" id="fnref:rW6" class="footnote" title="see footnote"&gt;rW6&lt;/a&gt;&lt;/p&gt;
&lt;ol&gt;
  &lt;li&gt;
&lt;strong&gt;Understand the system:&lt;/strong&gt; read about it, learn its tools.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Make it fail:&lt;/strong&gt; identify success and failure cases, look for patterns in intermittent failures, record all of the steps.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Quit thinking and look:&lt;/strong&gt; only guessing should be about where to add more visibility.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Divide and conquer:&lt;/strong&gt; cut down the problem space progressively, zooming into the cause.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Change one thing at a time:&lt;/strong&gt; don’t fix until the cause is clear, try comparing the current state to the last known good state.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Keep and audit trail:&lt;/strong&gt; write all changes down, assess for cause and effect.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Check the plug:&lt;/strong&gt; start at the beginning, identify and verify all assumptions.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Get a fresh view:&lt;/strong&gt; rubber duck, talk to experts, listen to experience, discuss symptoms rather than conclusions.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;If you didn’t fix it, it ain’t fixed:&lt;/strong&gt; verify fixes truly work, know that things can’t just start working, find the root causes.  &lt;/li&gt;
&lt;/ol&gt;
&lt;div class="footnotes"&gt;
  &lt;hr&gt;
  &lt;ol&gt;
    &lt;li id="fn:rW6"&gt;
&lt;a title="return to article" class="reversefootnote" href="#fnref:rW6"&gt;&amp;#x21A9;&lt;/a&gt;      &lt;p&gt;
David Wheeler, &lt;em&gt;“David A. Wheeler’s Review of ‘Debugging’ by David J. Agans,”&lt;/em&gt; March 2, 2004, &lt;a href="https://dwheeler.com/essays/debugging-agans.html"&gt;https://dwheeler.com/essays/debugging-agans.html&lt;/a&gt;. &lt;em class="paren-em"&gt;(See &lt;a href="/references/W6"&gt;notes&lt;/a&gt;.)&lt;/em&gt;      &lt;/p&gt;
    &lt;/li&gt;
  &lt;/ol&gt;
&lt;/div&gt;
</content>
    <published>2025-01-18T15:03:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/notes/troubleshooting/112C</id>
    <title>Troubleshooting.</title>
    <updated>2025-01-18T22:07:48Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/notes/barbell-method-of-reading/1311,3"/>
    <content type="html">&lt;p&gt;
This method optimizes for the time expense to value ratios. In this method, one reads through a body of literature once, marking anything interesting. If the piece proves useful, a second pass is taken, only reading what was marked. Notes and connections are made during the second pass.&lt;a href="#fn:rF5" id="fnref:rF5" class="footnote" title="see footnote"&gt;rF5&lt;/a&gt;&lt;/p&gt;
&lt;div class="footnotes"&gt;
  &lt;hr&gt;
  &lt;ol&gt;
    &lt;li id="fn:rF5"&gt;
&lt;a title="return to article" class="reversefootnote" href="#fnref:rF5"&gt;&amp;#x21A9;&lt;/a&gt;      &lt;p&gt;
Sascha Fast, &lt;em&gt;“The Barbell Method of Reading,”&lt;/em&gt; Zettelkasten Method, 2018, &lt;a href="https://www.zettelkasten.de/posts/barbell-method-reading/"&gt;https://www.zettelkasten.de/posts/barbell-method-reading/&lt;/a&gt;. &lt;em class="paren-em"&gt;(See &lt;a href="/references/F5"&gt;notes&lt;/a&gt;.)&lt;/em&gt;      &lt;/p&gt;
    &lt;/li&gt;
  &lt;/ol&gt;
&lt;/div&gt;
</content>
    <published>2024-12-27T23:29:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/notes/barbell-method-of-reading/1311,3</id>
    <title>Barbell method of reading.</title>
    <updated>2024-12-28T06:31:49Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/notes/five-whys-is-a-cause-analysis-technique/2122,10E"/>
    <content type="html">&lt;p&gt;
Often used in &lt;a href="/notes/1133"&gt;defect management&lt;/a&gt;, the technique guides participants to move from symptoms or problems back into its cause. The question “why?” solicits an analysis of the factor, but by no means suggests that there is only one factor underneath and subsequently only one root cause; the exercise should pursue any interesting leads that arise. The assumption that there’s only one cause is &lt;a href="/notes/1133,2B"&gt;problematic&lt;/a&gt;.&lt;/p&gt;
</content>
    <published>2024-09-29T12:08:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/notes/five-whys-is-a-cause-analysis-technique/2122,10E</id>
    <title>Five Whys is a cause analysis technique.</title>
    <updated>2024-09-29T18:26:18Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/notes/fishbone-diagrams-show-cause-and-effect/2122,10D"/>
    <content type="html">&lt;p&gt;
Also called an Ishikawa diagram. Commonly used as part of &lt;a href="/notes/1133"&gt;defect management&lt;/a&gt; to assess for root causes of some deficiency. The diagram appears as a fish skeleton, with the problem to be solved listed at its head at the right and four to eight major categories of potential cause extending to the left. The root causes are listed horiztonally, attached to the relevant category.&lt;/p&gt;
&lt;p&gt;
Different industries use different high-level categories. Some useful for software engineering might be:&lt;/p&gt;
&lt;ul&gt;
  &lt;li&gt;
People  &lt;/li&gt;
  &lt;li&gt;
Process  &lt;/li&gt;
  &lt;li&gt;
Tools/Technology  &lt;/li&gt;
  &lt;li&gt;
Requirements  &lt;/li&gt;
  &lt;li&gt;
Environment  &lt;/li&gt;
  &lt;li&gt;
Management  &lt;/li&gt;
  &lt;li&gt;
Quality  &lt;/li&gt;
&lt;/ul&gt;
</content>
    <published>2024-09-29T12:04:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/notes/fishbone-diagrams-show-cause-and-effect/2122,10D</id>
    <title>Fishbone diagrams show cause and effect.</title>
    <updated>2024-09-29T18:26:18Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/notes/porters-five-forces/2122,10C"/>
    <content type="html">&lt;p&gt;
Also called the Competitive Forces Model, this assess competitiveness in an industry. The forces are:&lt;/p&gt;
&lt;ul&gt;
  &lt;li&gt;
Intensity of rivalry  &lt;/li&gt;
  &lt;li&gt;
Threat of potential new entrants  &lt;/li&gt;
  &lt;li&gt;
Bargaining power of buyers  &lt;/li&gt;
  &lt;li&gt;
Bargaining power of suppliers  &lt;/li&gt;
  &lt;li&gt;
Threat of substitute goods/services  &lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;
A sixth force is sometimes added: Power of complementary goods/services providers.&lt;/p&gt;
</content>
    <published>2024-09-29T11:56:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/notes/porters-five-forces/2122,10C</id>
    <title>Porter’s Five Forces.</title>
    <updated>2024-09-29T18:26:18Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/notes/pestel-analysis/2122,10B"/>
    <content type="html">&lt;p&gt;
This is used to assess a business’ outer context. It stands for Political, Economic, Social, Technological, Environmental, &amp; Legal. Historically, only the first four traits were used.&lt;/p&gt;
</content>
    <published>2024-09-29T11:55:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/notes/pestel-analysis/2122,10B</id>
    <title>PESTEL analysis.</title>
    <updated>2024-09-29T18:26:18Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/notes/swot-analysis/2122,10A"/>
    <content type="html">&lt;p&gt;
SWOT stands for Strengths, Weakenesses, Opportunities, Threats. It is used as a planning tool to help assess organizations and projects. It is a matrix of helpful/harmful and internal/external.&lt;/p&gt;
&lt;table&gt;
  &lt;thead&gt;
    &lt;tr&gt;
      &lt;th style="text-align: left;"&gt;
      &lt;/th&gt;
      &lt;th style="text-align: left;"&gt;
&lt;strong&gt;Help&lt;/strong&gt;      &lt;/th&gt;
      &lt;th style="text-align: left;"&gt;
&lt;strong&gt;Harm&lt;/strong&gt;      &lt;/th&gt;
    &lt;/tr&gt;
  &lt;/thead&gt;
  &lt;tbody&gt;
    &lt;tr&gt;
      &lt;td style="text-align: left;"&gt;
&lt;strong&gt;Internal&lt;/strong&gt;      &lt;/td&gt;
      &lt;td style="text-align: left;"&gt;
Strength      &lt;/td&gt;
      &lt;td style="text-align: left;"&gt;
Weakeness      &lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td style="text-align: left;"&gt;
&lt;strong&gt;External&lt;/strong&gt;      &lt;/td&gt;
      &lt;td style="text-align: left;"&gt;
Opportunity      &lt;/td&gt;
      &lt;td style="text-align: left;"&gt;
Threat      &lt;/td&gt;
    &lt;/tr&gt;
  &lt;/tbody&gt;
&lt;/table&gt;
</content>
    <published>2024-09-29T11:51:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/notes/swot-analysis/2122,10A</id>
    <title>SWOT analysis.</title>
    <updated>2024-09-29T18:26:18Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/notes/analysis/2122,10"/>
    <content type="html">&lt;p&gt;
Analytical tools &amp; models:&lt;/p&gt;
&lt;ul&gt;
  &lt;li&gt;
&lt;a href="/notes/2122,10A"&gt;SWOT&lt;/a&gt; &lt;em class="paren-em"&gt;(planning)&lt;/em&gt;.  &lt;/li&gt;
  &lt;li&gt;
&lt;a href="/notes/2122,10B"&gt;PESTEL&lt;/a&gt; &lt;em class="paren-em"&gt;(market position)&lt;/em&gt;.  &lt;/li&gt;
  &lt;li&gt;
&lt;a href="/notes/2122,10C"&gt;Porter’s Five Forces&lt;/a&gt; &lt;em class="paren-em"&gt;(industry competitiveness)&lt;/em&gt;.  &lt;/li&gt;
  &lt;li&gt;
&lt;a href="/notes/2122,10D"&gt;Fishbone&lt;/a&gt; &lt;em class="paren-em"&gt;(cause/effect)&lt;/em&gt;.  &lt;/li&gt;
  &lt;li&gt;
&lt;a href="/notes/2122,10E"&gt;5 Whys&lt;/a&gt; &lt;em class="paren-em"&gt;(root cause)&lt;/em&gt;.  &lt;/li&gt;
  &lt;li&gt;
Cost-benefit.  &lt;/li&gt;
  &lt;li&gt;
&lt;a href="/notes/5000,1"&gt;Scientific method&lt;/a&gt;.  &lt;/li&gt;
  &lt;li&gt;
&lt;a href="/notes/1242"&gt;WSJF&lt;/a&gt; &lt;em class="paren-em"&gt;(project sequencing)&lt;/em&gt;.  &lt;/li&gt;
  &lt;li&gt;
&lt;a href="/notes/2122,7A"&gt;Template&lt;/a&gt;.  &lt;/li&gt;
&lt;/ul&gt;
</content>
    <published>2024-09-29T11:47:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/notes/analysis/2122,10</id>
    <title>Analysis.</title>
    <updated>2024-09-29T18:26:18Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/notes/the-scientific-method/5000,1"/>
    <content type="html">&lt;p&gt;
The scientific method is an &lt;a href="/notes/2122,10"&gt;analytical&lt;/a&gt; and &lt;a href="/notes/2122"&gt;decision making&lt;/a&gt; framework used especially in the scientific community. Its steps are:&lt;/p&gt;
&lt;ol&gt;
  &lt;li&gt;
Form a question  &lt;/li&gt;
  &lt;li&gt;
Research  &lt;/li&gt;
  &lt;li&gt;
Form a hypothesis  &lt;/li&gt;
  &lt;li&gt;
Run an experiment  &lt;/li&gt;
  &lt;li&gt;
Analyze results  &lt;/li&gt;
  &lt;li&gt;
Draw a conclusion  &lt;/li&gt;
&lt;/ol&gt;
</content>
    <published>2024-09-28T18:07:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/notes/the-scientific-method/5000,1</id>
    <title>The scientific method.</title>
    <updated>2024-09-29T18:26:18Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/notes/template-for-decision-making-and-analysis/2122,7A"/>
    <content type="html">&lt;p&gt;
Start by reviewing &lt;a href="/notes/2122"&gt;decision making&lt;/a&gt;, &lt;a href="/notes/2171"&gt;problem solving&lt;/a&gt;, and &lt;a href="/notes/2143"&gt;goals and objectives&lt;/a&gt;.&lt;/p&gt;
&lt;h2&gt;
Problem statement.&lt;/h2&gt;
&lt;p&gt;
&lt;em&gt;What do we need to figure out?&lt;/em&gt;&lt;/p&gt;
&lt;h2&gt;
Is analysis needed?&lt;/h2&gt;
&lt;p&gt;
&lt;em&gt;Is there a faster or more direct solution? Are there significant risks at hand?&lt;/em&gt;&lt;/p&gt;
&lt;h2&gt;
Observations.&lt;/h2&gt;
&lt;p&gt;
&lt;em&gt;What’s caused us to think we need this analysis?&lt;/em&gt;&lt;/p&gt;
&lt;h2&gt;
Context &amp; factors.&lt;/h2&gt;
&lt;p&gt;
&lt;em&gt;What’s the context? What factors and traits are involved?&lt;/em&gt;&lt;/p&gt;
&lt;h2&gt;
Anatomy of the system.&lt;/h2&gt;
&lt;p&gt;
&lt;em&gt;What are the components and flows in &lt;a href="/notes/1161"&gt;the system&lt;/a&gt;?&lt;/em&gt;&lt;/p&gt;
&lt;h2&gt;
Hypothesis.&lt;/h2&gt;
&lt;p&gt;
&lt;em&gt;What might explain the mechanics behind the observation?&lt;/em&gt;&lt;/p&gt;
&lt;h2&gt;
Leverage points.&lt;/h2&gt;
&lt;p&gt;
&lt;em&gt;What might change the system of those mechanics? Which &lt;a href="/notes/1161,7"&gt;leverage points&lt;/a&gt; are most impactful?&lt;/em&gt;&lt;/p&gt;
&lt;h2&gt;
Enact change.&lt;/h2&gt;
&lt;p&gt;
&lt;em&gt;Execute the change, perhaps as part of a &lt;a href="/notes/2210,1C"&gt;change initiative&lt;/a&gt;.&lt;/em&gt;&lt;/p&gt;
&lt;h2&gt;
Feedback loops to monitor change.&lt;/h2&gt;
&lt;p&gt;
&lt;em&gt;Ensure there are &lt;a href="/notes/1161,2A"&gt;feedback loops&lt;/a&gt; that can create new observations, possibly restarting the process.&lt;/em&gt;&lt;/p&gt;
</content>
    <published>2024-09-28T18:05:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/notes/template-for-decision-making-and-analysis/2122,7A</id>
    <title>Template for decision making and analysis.</title>
    <updated>2024-09-29T18:26:18Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/notes/usability-heuristics/1612"/>
    <content type="html">&lt;p&gt;
According to Nielsen Norman Group:&lt;a href="#fn:rN5" id="fnref:rN5" class="footnote" title="see footnote"&gt;rN5&lt;/a&gt;&lt;/p&gt;
&lt;ol&gt;
  &lt;li&gt;
&lt;strong&gt;Visibility of system status:&lt;/strong&gt; Tell the user about what the system is doing with their actions, especially when something of consequence is happening.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Match between system and the real world:&lt;/strong&gt; Use terms and representations that match the user’s natural context. Avoid jargon.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;User control and freedom:&lt;/strong&gt; Allow undo, redo, and cancel. Let the user get out of their current actions easily.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Consistency and standards:&lt;/strong&gt; Maintain consistency, both within the product and with expectations the user learned externally in other products.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Error prevention:&lt;/strong&gt; Use constraints and good defaults to prevent inattentive errors &lt;em class="paren-em"&gt;(“slips”)&lt;/em&gt;. Reduce user mental load and add warnings to prevent consequential problems. Mistakes are caused by misunderstanding the system.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Recognition rather than recall:&lt;/strong&gt; Information required to use the system should be available where it’s needed. Make the information architecture visible.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Flexibility and efficiency of use:&lt;/strong&gt; Allow shortcuts for power users, personalization for tailored experience, and customization of product behavior.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Aesthetic and minimalist design:&lt;/strong&gt; Focus content and design on the essentials. Remove irrelevant or infrequently useful elements.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Help users recognize, diagnose, and recover from errors:&lt;/strong&gt; Use recognizable error design elements. Use plain language. Offer the user an action they can take to affect the situation.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Help and documentation:&lt;/strong&gt; When otherwise unavoidable, show documentation where it’s needed. It should be searchable and give the user concrete steps to follow.  &lt;/li&gt;
&lt;/ol&gt;
&lt;div class="footnotes"&gt;
  &lt;hr&gt;
  &lt;ol&gt;
    &lt;li id="fn:rN5"&gt;
&lt;a title="return to article" class="reversefootnote" href="#fnref:rN5"&gt;&amp;#x21A9;&lt;/a&gt;      &lt;p&gt;
Jakob Nielsen, &lt;em&gt;“10 Usability Heuristics for User Interface Design,”&lt;/em&gt; Nielsen Norman Group, 1994, &lt;a href="https://www.nngroup.com/articles/ten-usability-heuristics/"&gt;https://www.nngroup.com/articles/ten-usability-heuristics/&lt;/a&gt;. &lt;em class="paren-em"&gt;(See &lt;a href="/references/N5"&gt;notes&lt;/a&gt;.)&lt;/em&gt;      &lt;/p&gt;
    &lt;/li&gt;
  &lt;/ol&gt;
&lt;/div&gt;
</content>
    <published>2024-09-22T20:07:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/notes/usability-heuristics/1612</id>
    <title>Usability heuristics.</title>
    <updated>2024-09-23T02:14:24Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/notes/other-things-to-do-to-improve-executive-presence/2215,C"/>
    <content type="html">&lt;p&gt;
Generally:&lt;a href="#fn:rR11" id="fnref:rR11" class="footnote" title="see footnote"&gt;rR11&lt;/a&gt;&lt;/p&gt;
&lt;ul&gt;
  &lt;li&gt;
Improve by recording and watching communication from meetings.  &lt;/li&gt;
  &lt;li&gt;
Take note of peers’ strengths and try to copy their skills.  &lt;/li&gt;
  &lt;li&gt;
Schedule time to prepare for meetings.  &lt;/li&gt;
  &lt;li&gt;
Dress and groom to be in the top 2/3 of peer group in terms of avoiding the appearance of immaturity and shabbiness.&lt;a href="#fn:rS13" id="fnref:rS13" class="footnote" title="see footnote"&gt;rS13&lt;/a&gt;  &lt;/li&gt;
&lt;/ul&gt;
&lt;div class="footnotes"&gt;
  &lt;hr&gt;
  &lt;ol&gt;
    &lt;li id="fn:rS13"&gt;
&lt;a title="return to article" class="reversefootnote" href="#fnref:rS13"&gt;&amp;#x21A9;&lt;/a&gt;      &lt;p&gt;
&lt;em&gt;“A Practical Guide to Executive Presence,”&lt;/em&gt; May 27, 2023, &lt;a href="https://staysaasy.com/leadership/2023/05/27/executive-presence.html"&gt;https://staysaasy.com/leadership/2023/05/27/executive-presence.html&lt;/a&gt;. &lt;em class="paren-em"&gt;(See &lt;a href="/references/S13"&gt;notes&lt;/a&gt;.)&lt;/em&gt;      &lt;/p&gt;
    &lt;/li&gt;
    &lt;li id="fn:rR11"&gt;
&lt;a title="return to article" class="reversefootnote" href="#fnref:rR11"&gt;&amp;#x21A9;&lt;/a&gt;      &lt;p&gt;
Jade Rubick, &lt;em&gt;“Executive Presence Coaching – Use These Tips to Become a Better Leader,”&lt;/em&gt; February 7, 2022, &lt;a href="https://www.rubick.com/executive-presence-coaching/"&gt;https://www.rubick.com/executive-presence-coaching/&lt;/a&gt;. &lt;em class="paren-em"&gt;(See &lt;a href="/references/R11"&gt;notes&lt;/a&gt;.)&lt;/em&gt;      &lt;/p&gt;
    &lt;/li&gt;
  &lt;/ol&gt;
&lt;/div&gt;
</content>
    <published>2024-09-22T20:01:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/notes/other-things-to-do-to-improve-executive-presence/2215,C</id>
    <title>Other things to do to improve executive presence.</title>
    <updated>2024-09-23T02:14:24Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/notes/themes-in-executive-presence-focused-communication/2215,B1"/>
    <content type="html">&lt;p&gt;
There seems to be two primary themes: creating clarity and avoiding defensiveness.&lt;/p&gt;
&lt;p&gt;
Anxiety can &lt;a href="/notes/2131,3"&gt;cause&lt;/a&gt; a whole slew of &lt;a href="/notes/2131,2"&gt;defensive behaviors&lt;/a&gt;, so as a leader it is critical to engage in ways to &lt;a href="/notes/2132,5"&gt;alleviate shame&lt;/a&gt; and &lt;a href="/notes/2154,2B"&gt;anxiety&lt;/a&gt;. Authenticity is therefore a key cause for executive presence.&lt;/p&gt;
&lt;p&gt;
&lt;a href="/notes/1275"&gt;Creating clarity&lt;/a&gt; has another series of associated tactics.&lt;/p&gt;
</content>
    <published>2024-09-22T19:58:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/notes/themes-in-executive-presence-focused-communication/2215,B1</id>
    <title>Themes in executive presence-focused communication.</title>
    <updated>2024-09-23T15:17:45Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/notes/focuses-during-communication-to-improve-executive-presence/2215,B"/>
    <content type="html">&lt;p&gt;
Things to focus on:[^r11]&lt;/p&gt;
&lt;ul&gt;
  &lt;li&gt;
Ask questions &amp; then wait—don’t add to them. Count if needed.  &lt;/li&gt;
  &lt;li&gt;
Ask for feedback about executive presence.  &lt;/li&gt;
  &lt;li&gt;
Improve writing by putting more attention into editing.  &lt;/li&gt;
  &lt;li&gt;
Tailor communication style to discussion context: executive discussions are action-focused and brief, other types may allow more exploration.  &lt;/li&gt;
  &lt;li&gt;
Avoid responding immediately where deeper thought offline is needed.  &lt;/li&gt;
  &lt;li&gt;
Speak definitively &lt;em class="paren-em"&gt;(remove “I think”)&lt;/em&gt;, but enable disagreement by asking for weakenesses in ideas.  &lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;
Similarly:&lt;a href="#fn:rS13" id="fnref:rS13" class="footnote" title="see footnote"&gt;rS13&lt;/a&gt;&lt;/p&gt;
&lt;ul&gt;
  &lt;li&gt;
Show confidence where experience/data/logic allow; okay to have no opinion.  &lt;/li&gt;
  &lt;li&gt;
Don’t destroy confidence by freaking out—freezing, anger, lashing out.  &lt;/li&gt;
  &lt;li&gt;
Avoid defensiveness. Consider all angles of your role, even if indirect. Avoid whataboutism. Take control of problems leading to excuses.  &lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;
&lt;a href="/notes/2215,B1"&gt;Continued&lt;/a&gt;.&lt;/p&gt;
&lt;div class="footnotes"&gt;
  &lt;hr&gt;
  &lt;ol&gt;
    &lt;li id="fn:rS13"&gt;
&lt;a title="return to article" class="reversefootnote" href="#fnref:rS13"&gt;&amp;#x21A9;&lt;/a&gt;      &lt;p&gt;
&lt;em&gt;“A Practical Guide to Executive Presence,”&lt;/em&gt; May 27, 2023, &lt;a href="https://staysaasy.com/leadership/2023/05/27/executive-presence.html"&gt;https://staysaasy.com/leadership/2023/05/27/executive-presence.html&lt;/a&gt;. &lt;em class="paren-em"&gt;(See &lt;a href="/references/S13"&gt;notes&lt;/a&gt;.)&lt;/em&gt;      &lt;/p&gt;
    &lt;/li&gt;
  &lt;/ol&gt;
&lt;/div&gt;
</content>
    <published>2024-09-22T19:54:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/notes/focuses-during-communication-to-improve-executive-presence/2215,B</id>
    <title>Focuses during communication to improve executive presence.</title>
    <updated>2024-09-23T02:14:24Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/notes/ways-of-speaking-to-improve-executive-presence/2215,A"/>
    <content type="html">&lt;p&gt;
Several particulars to mind:&lt;a href="#fn:rR11" id="fnref:rR11" class="footnote" title="see footnote"&gt;rR11&lt;/a&gt;&lt;/p&gt;
&lt;ul&gt;
  &lt;li&gt;
Use active verbs, avoid passive verbs. Take accountability.  &lt;/li&gt;
  &lt;li&gt;
Similarly, avoid adverbs.  &lt;/li&gt;
  &lt;li&gt;
Don’t stress about filler words—focusing on connection with audience should naturally reduce them anyway.  &lt;/li&gt;
  &lt;li&gt;
Be concise. Relatedly, don’t ramble—increases surface area for saying something dumb, which is likely because rambling may come from a failure to understand the topic well enough to be concise.&lt;a href="#fn:rS13" id="fnref:rS13" class="footnote" title="see footnote"&gt;rS13&lt;/a&gt;  &lt;/li&gt;
&lt;/ul&gt;
&lt;div class="footnotes"&gt;
  &lt;hr&gt;
  &lt;ol&gt;
    &lt;li id="fn:rS13"&gt;
&lt;a title="return to article" class="reversefootnote" href="#fnref:rS13"&gt;&amp;#x21A9;&lt;/a&gt;      &lt;p&gt;
&lt;em&gt;“A Practical Guide to Executive Presence,”&lt;/em&gt; May 27, 2023, &lt;a href="https://staysaasy.com/leadership/2023/05/27/executive-presence.html"&gt;https://staysaasy.com/leadership/2023/05/27/executive-presence.html&lt;/a&gt;. &lt;em class="paren-em"&gt;(See &lt;a href="/references/S13"&gt;notes&lt;/a&gt;.)&lt;/em&gt;      &lt;/p&gt;
    &lt;/li&gt;
    &lt;li id="fn:rR11"&gt;
&lt;a title="return to article" class="reversefootnote" href="#fnref:rR11"&gt;&amp;#x21A9;&lt;/a&gt;      &lt;p&gt;
Jade Rubick, &lt;em&gt;“Executive Presence Coaching – Use These Tips to Become a Better Leader,”&lt;/em&gt; February 7, 2022, &lt;a href="https://www.rubick.com/executive-presence-coaching/"&gt;https://www.rubick.com/executive-presence-coaching/&lt;/a&gt;. &lt;em class="paren-em"&gt;(See &lt;a href="/references/R11"&gt;notes&lt;/a&gt;.)&lt;/em&gt;      &lt;/p&gt;
    &lt;/li&gt;
  &lt;/ol&gt;
&lt;/div&gt;
</content>
    <published>2024-09-22T19:52:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/notes/ways-of-speaking-to-improve-executive-presence/2215,A</id>
    <title>Ways of speaking to improve executive presence.</title>
    <updated>2024-09-23T02:14:24Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/notes/executive-presence/2215"/>
    <content type="html">&lt;p&gt;
Executive presence may be defined as a set of behaviors that influence others to listen.&lt;a href="#fn:rS13" id="fnref:rS13" class="footnote" title="see footnote"&gt;rS13&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;
We may break it into a few high-level categories of action:&lt;/p&gt;
&lt;ul&gt;
  &lt;li&gt;
&lt;a href="/notes/2215,A"&gt;Specific ways of speaking&lt;/a&gt;.  &lt;/li&gt;
  &lt;li&gt;
&lt;a href="/notes/2215,B"&gt;Things to focus on while communicating&lt;/a&gt;.  &lt;/li&gt;
  &lt;li&gt;
&lt;a href="/notes/2215,C"&gt;Things to do more generally&lt;/a&gt;.  &lt;/li&gt;
&lt;/ul&gt;
&lt;div class="footnotes"&gt;
  &lt;hr&gt;
  &lt;ol&gt;
    &lt;li id="fn:rS13"&gt;
&lt;a title="return to article" class="reversefootnote" href="#fnref:rS13"&gt;&amp;#x21A9;&lt;/a&gt;      &lt;p&gt;
&lt;em&gt;“A Practical Guide to Executive Presence,”&lt;/em&gt; May 27, 2023, &lt;a href="https://staysaasy.com/leadership/2023/05/27/executive-presence.html"&gt;https://staysaasy.com/leadership/2023/05/27/executive-presence.html&lt;/a&gt;. &lt;em class="paren-em"&gt;(See &lt;a href="/references/S13"&gt;notes&lt;/a&gt;.)&lt;/em&gt;      &lt;/p&gt;
    &lt;/li&gt;
  &lt;/ol&gt;
&lt;/div&gt;
</content>
    <published>2024-09-22T19:50:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/notes/executive-presence/2215</id>
    <title>Executive presence.</title>
    <updated>2024-09-23T02:14:24Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/notes/staff-engineer-level-description/1126,2C"/>
    <content type="html">&lt;p&gt;
Level details:&lt;a href="#fn:rG5" id="fnref:rG5" class="footnote" title="see footnote"&gt;rG5&lt;/a&gt;&lt;/p&gt;
&lt;ul&gt;
  &lt;li&gt;
&lt;strong&gt;Time scope:&lt;/strong&gt; 2–3 months.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Complexity scope:&lt;/strong&gt; Large &amp; complex tasks spanning the system. Turn significant ambiguity &amp; upcoming needs into clear tasks.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Risk management:&lt;/strong&gt; Manage risk for team projects &amp; objectives, especially by establishing the sequence of deliverables.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Domain expertise:&lt;/strong&gt; Expert in domain, moving toward architecture and system thinking.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Big picture:&lt;/strong&gt; Prioritization &amp; solution input to product strategy.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Influence:&lt;/strong&gt; Team, 5–15 people.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Supervision:&lt;/strong&gt; Lead team in delivery over 2–3 month timelines.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Communication:&lt;/strong&gt; Proactively give input to improve others’ work. Share the technical achievements of team to a larger audience.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Team contributions:&lt;/strong&gt; Technical lead. Mentor others into new responsibilities. Build consensus with team and management about team direction.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Evaluation:&lt;/strong&gt; Manager &amp; director.  &lt;/li&gt;
&lt;/ul&gt;
&lt;div class="footnotes"&gt;
  &lt;hr&gt;
  &lt;ol&gt;
    &lt;li id="fn:rG5"&gt;
&lt;a title="return to article" class="reversefootnote" href="#fnref:rG5"&gt;&amp;#x21A9;&lt;/a&gt;      &lt;p&gt;
Aria Beingessner &lt;em class="paren-em"&gt;(@Gankra&lt;em&gt;)&lt;/em&gt;, Twitter post, September 30, 2018, &lt;&lt;a href="https://twitter.com/Gankra"&gt;https://twitter.com/Gankra&lt;/a&gt;&lt;/em&gt;/status/1046438955439271936/photo/1&gt;. &lt;em class="paren-em"&gt;(See &lt;a href="/references/G5"&gt;notes&lt;/a&gt;.)&lt;/em&gt;      &lt;/p&gt;
    &lt;/li&gt;
  &lt;/ol&gt;
&lt;/div&gt;
</content>
    <published>2024-09-22T18:10:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/notes/staff-engineer-level-description/1126,2C</id>
    <title>Staff engineer level description.</title>
    <updated>2024-09-23T01:28:42Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/notes/senior-software-engineer-level-description/1126,1A"/>
    <content type="html">&lt;p&gt;
Level details:&lt;a href="#fn:rG5" id="fnref:rG5" class="footnote" title="see footnote"&gt;rG5&lt;/a&gt;&lt;/p&gt;
&lt;ul&gt;
  &lt;li&gt;
&lt;strong&gt;Time scope:&lt;/strong&gt; 1 month.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Complexity scope:&lt;/strong&gt; Disambiguate tasks into actionability. Effectively work across multiple parts of the system.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Risk management:&lt;/strong&gt; Manage own risks &amp; blockers. Escalate if overwhelmed.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Domain expertise:&lt;/strong&gt; Advanced understanding of domain. Aware of other domains on the team.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Big picture:&lt;/strong&gt; Solid understanding of product strategy, solve big problems.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Influence:&lt;/strong&gt; 2–5 peers.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Supervision:&lt;/strong&gt; Largely self-directs on assignments.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Communication:&lt;/strong&gt; Unblock teammates. Go-to for code review. Contributes to team discussions.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Team contributions:&lt;/strong&gt; Go-to on team. Improves team productivity. Interviews candidates effectively  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Evaluation:&lt;/strong&gt; Manager.  &lt;/li&gt;
&lt;/ul&gt;
&lt;div class="footnotes"&gt;
  &lt;hr&gt;
  &lt;ol&gt;
    &lt;li id="fn:rG5"&gt;
&lt;a title="return to article" class="reversefootnote" href="#fnref:rG5"&gt;&amp;#x21A9;&lt;/a&gt;      &lt;p&gt;
Aria Beingessner &lt;em class="paren-em"&gt;(@Gankra&lt;em&gt;)&lt;/em&gt;, Twitter post, September 30, 2018, &lt;&lt;a href="https://twitter.com/Gankra"&gt;https://twitter.com/Gankra&lt;/a&gt;&lt;/em&gt;/status/1046438955439271936/photo/1&gt;. &lt;em class="paren-em"&gt;(See &lt;a href="/references/G5"&gt;notes&lt;/a&gt;.)&lt;/em&gt;      &lt;/p&gt;
    &lt;/li&gt;
  &lt;/ol&gt;
&lt;/div&gt;
</content>
    <published>2024-09-22T17:29:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/notes/senior-software-engineer-level-description/1126,1A</id>
    <title>Senior software engineer level description.</title>
    <updated>2024-09-23T01:28:42Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/notes/fellow/1126,6F"/>
    <content type="html">&lt;p&gt;
Level details:&lt;a href="#fn:rG5" id="fnref:rG5" class="footnote" title="see footnote"&gt;rG5&lt;/a&gt;&lt;/p&gt;
&lt;ul&gt;
  &lt;li&gt;
&lt;strong&gt;Time scope:&lt;/strong&gt; 3–5 years.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Complexity scope:&lt;/strong&gt; Ground breaking solutions. Solves high risk problems.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Risk management:&lt;/strong&gt; Solves existential risks for company &amp; industry.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Domain expertise:&lt;/strong&gt; Industry leader in multiple domains.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Big picture:&lt;/strong&gt; Helps build company purpose, aligns product/org strategy with needs on 3–5 year timeline.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Influence:&lt;/strong&gt; Industry &lt;em class="paren-em"&gt;(10,000+)&lt;/em&gt;.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Supervision:&lt;/strong&gt; Industry leader.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Communication:&lt;/strong&gt; Runs industry discussions. Part of senior leadership.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Team contributions:&lt;/strong&gt; Mentors senior leaders across company &amp; industry. Adjusts company culture to meet future objectives.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Evaluation:&lt;/strong&gt; SVP.  &lt;/li&gt;
&lt;/ul&gt;
&lt;div class="footnotes"&gt;
  &lt;hr&gt;
  &lt;ol&gt;
    &lt;li id="fn:rG5"&gt;
&lt;a title="return to article" class="reversefootnote" href="#fnref:rG5"&gt;&amp;#x21A9;&lt;/a&gt;      &lt;p&gt;
Aria Beingessner &lt;em class="paren-em"&gt;(@Gankra&lt;em&gt;)&lt;/em&gt;, Twitter post, September 30, 2018, &lt;&lt;a href="https://twitter.com/Gankra"&gt;https://twitter.com/Gankra&lt;/a&gt;&lt;/em&gt;/status/1046438955439271936/photo/1&gt;. &lt;em class="paren-em"&gt;(See &lt;a href="/references/G5"&gt;notes&lt;/a&gt;.)&lt;/em&gt;      &lt;/p&gt;
    &lt;/li&gt;
  &lt;/ol&gt;
&lt;/div&gt;
</content>
    <published>2024-09-22T17:24:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/notes/fellow/1126,6F</id>
    <title>Fellow.</title>
    <updated>2024-09-23T01:28:42Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/notes/distinguished-engineer/1126,6E"/>
    <content type="html">&lt;p&gt;
Level details:&lt;a href="#fn:rG5" id="fnref:rG5" class="footnote" title="see footnote"&gt;rG5&lt;/a&gt;&lt;/p&gt;
&lt;ul&gt;
  &lt;li&gt;
&lt;strong&gt;Time scope:&lt;/strong&gt; 1–2 years.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Complexity scope:&lt;/strong&gt; Coordinates solutions across internal &amp; external teams.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Risk management:&lt;/strong&gt; Assesses risks for the whole industry.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Domain expertise:&lt;/strong&gt; Industry leader, expert in multiple domains. Familiar with domains across the company.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Big picture:&lt;/strong&gt; Lead product strategy with organization leaders.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Influence:&lt;/strong&gt; Company with 1000+.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Supervision:&lt;/strong&gt; Directs whole organization with management.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Communication:&lt;/strong&gt; Manages industry discussion. Advises senior leadership.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Team contributions:&lt;/strong&gt; Mentors senior tech leadership. Strategic recruiting. Responsible for individual contributor culture.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Evaluation:&lt;/strong&gt; Directors &amp; VP.  &lt;/li&gt;
&lt;/ul&gt;
&lt;div class="footnotes"&gt;
  &lt;hr&gt;
  &lt;ol&gt;
    &lt;li id="fn:rG5"&gt;
&lt;a title="return to article" class="reversefootnote" href="#fnref:rG5"&gt;&amp;#x21A9;&lt;/a&gt;      &lt;p&gt;
Aria Beingessner &lt;em class="paren-em"&gt;(@Gankra&lt;em&gt;)&lt;/em&gt;, Twitter post, September 30, 2018, &lt;&lt;a href="https://twitter.com/Gankra"&gt;https://twitter.com/Gankra&lt;/a&gt;&lt;/em&gt;/status/1046438955439271936/photo/1&gt;. &lt;em class="paren-em"&gt;(See &lt;a href="/references/G5"&gt;notes&lt;/a&gt;.)&lt;/em&gt;      &lt;/p&gt;
    &lt;/li&gt;
  &lt;/ol&gt;
&lt;/div&gt;
</content>
    <published>2024-09-22T17:21:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/notes/distinguished-engineer/1126,6E</id>
    <title>Distinguished engineer.</title>
    <updated>2024-09-23T01:28:42Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/notes/principal-engineer/1126,6D"/>
    <content type="html">&lt;p&gt;
Level details:&lt;a href="#fn:rG5" id="fnref:rG5" class="footnote" title="see footnote"&gt;rG5&lt;/a&gt;&lt;/p&gt;
&lt;ul&gt;
  &lt;li&gt;
&lt;strong&gt;Time scope:&lt;/strong&gt; 6-12 months.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Complexity scope:&lt;/strong&gt; Reconcile priority conflicts. Reduce overarching complexity through systems &amp; architectural thinking.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Risk management:&lt;/strong&gt; Design to reduce risk for whole company.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Domain expertise:&lt;/strong&gt; Company leader. Easily deepens expertise through others.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Big picture:&lt;/strong&gt; Inform new product strategy through engineering capabilities.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Influence:&lt;/strong&gt; 50+ across organization.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Supervision:&lt;/strong&gt; Drives cross-team initiatives from ideation to delivery without regular oversight.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Communication:&lt;/strong&gt; Manages company-wide technical discussion.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Team contributions:&lt;/strong&gt; Mentors mentors. Improves organization process, tooling, &amp; culture.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Evaluation:&lt;/strong&gt; Director, VP.  &lt;/li&gt;
&lt;/ul&gt;
&lt;div class="footnotes"&gt;
  &lt;hr&gt;
  &lt;ol&gt;
    &lt;li id="fn:rG5"&gt;
&lt;a title="return to article" class="reversefootnote" href="#fnref:rG5"&gt;&amp;#x21A9;&lt;/a&gt;      &lt;p&gt;
Aria Beingessner &lt;em class="paren-em"&gt;(@Gankra&lt;em&gt;)&lt;/em&gt;, Twitter post, September 30, 2018, &lt;&lt;a href="https://twitter.com/Gankra"&gt;https://twitter.com/Gankra&lt;/a&gt;&lt;/em&gt;/status/1046438955439271936/photo/1&gt;. &lt;em class="paren-em"&gt;(See &lt;a href="/references/G5"&gt;notes&lt;/a&gt;.)&lt;/em&gt;      &lt;/p&gt;
    &lt;/li&gt;
  &lt;/ol&gt;
&lt;/div&gt;
</content>
    <published>2024-09-22T17:19:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/notes/principal-engineer/1126,6D</id>
    <title>Principal engineer.</title>
    <updated>2024-09-23T01:28:42Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/notes/senior-staff-software-engineer/1126,6C"/>
    <content type="html">&lt;p&gt;
Level details:&lt;a href="#fn:rG5" id="fnref:rG5" class="footnote" title="see footnote"&gt;rG5&lt;/a&gt;&lt;/p&gt;
&lt;ul&gt;
  &lt;li&gt;
&lt;strong&gt;Time scope:&lt;/strong&gt; 3–6 months.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Complexity scope:&lt;/strong&gt; Complex work across multiple teams &amp; domains. High impact work. Finds &amp; solves areas for improvement.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Risk management:&lt;/strong&gt; Manages risk while working with other teams.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Domain expertise:&lt;/strong&gt; Company leader in domain.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Big picture:&lt;/strong&gt; Turns strategy to action with company leadership.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Influence:&lt;/strong&gt; 15–50 among peer teams.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Supervision:&lt;/strong&gt; Provides direction in large or multiple teams. Requires infrequent oversight.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Communication:&lt;/strong&gt; Known for written and verbal technical communication. Actively teaches others.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Team contributions:&lt;/strong&gt; History of mentorship, collaboration, leadership, recruiting. Improves team efficiency &amp; trains others in engineering culture.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Evaluation:&lt;/strong&gt; Manager &amp; director.  &lt;/li&gt;
&lt;/ul&gt;
&lt;div class="footnotes"&gt;
  &lt;hr&gt;
  &lt;ol&gt;
    &lt;li id="fn:rG5"&gt;
&lt;a title="return to article" class="reversefootnote" href="#fnref:rG5"&gt;&amp;#x21A9;&lt;/a&gt;      &lt;p&gt;
Aria Beingessner &lt;em class="paren-em"&gt;(@Gankra&lt;em&gt;)&lt;/em&gt;, Twitter post, September 30, 2018, &lt;&lt;a href="https://twitter.com/Gankra"&gt;https://twitter.com/Gankra&lt;/a&gt;&lt;/em&gt;/status/1046438955439271936/photo/1&gt;. &lt;em class="paren-em"&gt;(See &lt;a href="/references/G5"&gt;notes&lt;/a&gt;.)&lt;/em&gt;      &lt;/p&gt;
    &lt;/li&gt;
  &lt;/ol&gt;
&lt;/div&gt;
</content>
    <published>2024-09-22T17:15:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/notes/senior-staff-software-engineer/1126,6C</id>
    <title>Senior staff software engineer.</title>
    <updated>2024-09-23T01:28:42Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/notes/software-engineer-2-mid-level-engineer/1126,6B"/>
    <content type="html">&lt;p&gt;
Level details:&lt;a href="#fn:rG5" id="fnref:rG5" class="footnote" title="see footnote"&gt;rG5&lt;/a&gt;&lt;/p&gt;
&lt;ul&gt;
  &lt;li&gt;
&lt;strong&gt;Time scope:&lt;/strong&gt; 1–2 weeks.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Complexity scope:&lt;/strong&gt; Minor collaborative tasks.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Risk management:&lt;/strong&gt; Escalate blockers before they occur.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Domain expertise:&lt;/strong&gt; Understands domain &amp; aware of others on team.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Big picture:&lt;/strong&gt; Awareness of &amp; contribution to product strategy.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Influence:&lt;/strong&gt; Self.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Supervision:&lt;/strong&gt; Weekly or fortnightly attention from manager, senior engineers.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Communication:&lt;/strong&gt; Share progress with team.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Team contributions:&lt;/strong&gt; Follows &amp; improves team process. Self-improvement to productivity.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Evaluation:&lt;/strong&gt; Manager.  &lt;/li&gt;
&lt;/ul&gt;
&lt;div class="footnotes"&gt;
  &lt;hr&gt;
  &lt;ol&gt;
    &lt;li id="fn:rG5"&gt;
&lt;a title="return to article" class="reversefootnote" href="#fnref:rG5"&gt;&amp;#x21A9;&lt;/a&gt;      &lt;p&gt;
Aria Beingessner &lt;em class="paren-em"&gt;(@Gankra&lt;em&gt;)&lt;/em&gt;, Twitter post, September 30, 2018, &lt;&lt;a href="https://twitter.com/Gankra"&gt;https://twitter.com/Gankra&lt;/a&gt;&lt;/em&gt;/status/1046438955439271936/photo/1&gt;. &lt;em class="paren-em"&gt;(See &lt;a href="/references/G5"&gt;notes&lt;/a&gt;.)&lt;/em&gt;      &lt;/p&gt;
    &lt;/li&gt;
  &lt;/ol&gt;
&lt;/div&gt;
</content>
    <published>2024-09-22T17:13:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/notes/software-engineer-2-mid-level-engineer/1126,6B</id>
    <title>Software engineer 2 (mid-level engineer).</title>
    <updated>2024-09-23T01:28:42Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/notes/software-engineer-1-junior-engineer/1126,6A"/>
    <content type="html">&lt;p&gt;
Level details:&lt;a href="#fn:rG5" id="fnref:rG5" class="footnote" title="see footnote"&gt;rG5&lt;/a&gt;&lt;/p&gt;
&lt;ul&gt;
  &lt;li&gt;
&lt;strong&gt;Time scope:&lt;/strong&gt; 1–3 days.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Complexity scope:&lt;/strong&gt; Minor, self-sufficient tasks.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Risk management:&lt;/strong&gt; Escalate blockers.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Domain expertise:&lt;/strong&gt; Learning industry &amp; best practices.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Big picture:&lt;/strong&gt; Potential to learn it.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Influence:&lt;/strong&gt; Self.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Supervision:&lt;/strong&gt; Frequent attention from manager &amp; senior engineers.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Communication:&lt;/strong&gt; Status updates to manager.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Team contributions:&lt;/strong&gt; Learns &amp; follows team processes.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Evaluation:&lt;/strong&gt; Manager.  &lt;/li&gt;
&lt;/ul&gt;
&lt;div class="footnotes"&gt;
  &lt;hr&gt;
  &lt;ol&gt;
    &lt;li id="fn:rG5"&gt;
&lt;a title="return to article" class="reversefootnote" href="#fnref:rG5"&gt;&amp;#x21A9;&lt;/a&gt;      &lt;p&gt;
Aria Beingessner &lt;em class="paren-em"&gt;(@Gankra&lt;em&gt;)&lt;/em&gt;, Twitter post, September 30, 2018, &lt;&lt;a href="https://twitter.com/Gankra"&gt;https://twitter.com/Gankra&lt;/a&gt;&lt;/em&gt;/status/1046438955439271936/photo/1&gt;. &lt;em class="paren-em"&gt;(See &lt;a href="/references/G5"&gt;notes&lt;/a&gt;.)&lt;/em&gt;      &lt;/p&gt;
    &lt;/li&gt;
  &lt;/ol&gt;
&lt;/div&gt;
</content>
    <published>2024-09-22T17:10:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/notes/software-engineer-1-junior-engineer/1126,6A</id>
    <title>Software engineer 1 (junior engineer).</title>
    <updated>2024-09-23T01:28:42Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/notes/engineering-levels/1126,6"/>
    <content type="html">&lt;p&gt;
As defined by Mozilla:&lt;a href="#fn:rG5" id="fnref:rG5" class="footnote" title="see footnote"&gt;rG5&lt;/a&gt;&lt;/p&gt;
&lt;ul&gt;
  &lt;li&gt;
&lt;a href="/notes/1126,6A"&gt;Software engineer 1&lt;/a&gt;.  &lt;/li&gt;
  &lt;li&gt;
&lt;a href="/notes/1126,6B"&gt;Software engineer 2&lt;/a&gt;.  &lt;/li&gt;
  &lt;li&gt;
&lt;a href="/notes/1126,1"&gt;Senior software engineer&lt;/a&gt;.  &lt;/li&gt;
  &lt;li&gt;
&lt;a href="/notes/1126,2"&gt;Staff software engineer&lt;/a&gt;.  &lt;/li&gt;
  &lt;li&gt;
&lt;a href="/notes/1126,6C"&gt;Senior staff software engineer&lt;/a&gt;.  &lt;/li&gt;
  &lt;li&gt;
&lt;a href="/notes/1126,6D"&gt;Principal engineer&lt;/a&gt;.  &lt;/li&gt;
  &lt;li&gt;
&lt;a href="/notes/1126,6E"&gt;Distinguished engineer&lt;/a&gt;.  &lt;/li&gt;
  &lt;li&gt;
&lt;a href="/notes/1126,6F"&gt;Fellow&lt;/a&gt;.  &lt;/li&gt;
&lt;/ul&gt;
&lt;div class="footnotes"&gt;
  &lt;hr&gt;
  &lt;ol&gt;
    &lt;li id="fn:rG5"&gt;
&lt;a title="return to article" class="reversefootnote" href="#fnref:rG5"&gt;&amp;#x21A9;&lt;/a&gt;      &lt;p&gt;
Aria Beingessner &lt;em class="paren-em"&gt;(@Gankra&lt;em&gt;)&lt;/em&gt;, Twitter post, September 30, 2018, &lt;&lt;a href="https://twitter.com/Gankra"&gt;https://twitter.com/Gankra&lt;/a&gt;&lt;/em&gt;/status/1046438955439271936/photo/1&gt;. &lt;em class="paren-em"&gt;(See &lt;a href="/references/G5"&gt;notes&lt;/a&gt;.)&lt;/em&gt;      &lt;/p&gt;
    &lt;/li&gt;
  &lt;/ol&gt;
&lt;/div&gt;
</content>
    <published>2024-09-22T17:08:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/notes/engineering-levels/1126,6</id>
    <title>Engineering levels.</title>
    <updated>2024-09-23T01:28:42Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/notes/senior-engineers-need-new-skills-to-advance/1213,7A"/>
    <content type="html">&lt;p&gt;
To move into management or staff engineering, senior developers must develop further:&lt;a href="#fn:rS12" id="fnref:rS12" class="footnote" title="see footnote"&gt;rS12&lt;/a&gt;&lt;/p&gt;
&lt;ul&gt;
  &lt;li&gt;
&lt;strong&gt;Learn to scale scope:&lt;/strong&gt; Combination of taking on more scope by prioritizing important things more carefully, but also by training others &amp; working through them—with or without authority.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Managing ambiguity:&lt;/strong&gt; Get better at picking tradeoffs &amp; making bets by making &amp; falsifying hypotheses, isolating uncertainty into specific problems, decomposing problems into subproblems, eschewing paralysis by making decisions with minimum viable information, &amp; making choices flexibly against what’s volatile.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Influence without authority:&lt;/strong&gt; Not really just the magic words people need to hear &lt;em class="paren-em"&gt;(persuasion)&lt;/em&gt;, but personal connections, brand, negotiation.  &lt;/li&gt;
&lt;/ul&gt;
&lt;div class="footnotes"&gt;
  &lt;hr&gt;
  &lt;ol&gt;
    &lt;li id="fn:rS12"&gt;
&lt;a title="return to article" class="reversefootnote" href="#fnref:rS12"&gt;&amp;#x21A9;&lt;/a&gt;      &lt;p&gt;
Irina Stanescu, &lt;em&gt;“3 Critical Skills You Need to Grow Beyond Senior Levels in Engineering,”&lt;/em&gt; April 8, 2024, &lt;a href="https://www.thecaringtechie.com/p/3-critical-skills-you-need-to-grow"&gt;https://www.thecaringtechie.com/p/3-critical-skills-you-need-to-grow&lt;/a&gt;. &lt;em class="paren-em"&gt;(See &lt;a href="/references/S12"&gt;notes&lt;/a&gt;.)&lt;/em&gt;      &lt;/p&gt;
    &lt;/li&gt;
  &lt;/ol&gt;
&lt;/div&gt;
</content>
    <published>2024-09-22T16:59:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/notes/senior-engineers-need-new-skills-to-advance/1213,7A</id>
    <title>Senior engineers need new skills to advance.</title>
    <updated>2024-09-23T01:28:42Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/notes/becoming-a-staff-engineer/1213,7"/>
    <content type="html">&lt;p&gt;
Senior engineers &lt;a href="/notes/1213,7A"&gt;need new skills&lt;/a&gt; to advance.&lt;/p&gt;
</content>
    <published>2024-09-22T16:58:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/notes/becoming-a-staff-engineer/1213,7</id>
    <title>Becoming a staff engineer.</title>
    <updated>2024-09-23T01:28:42Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/notes/what-individauls-can-do-about-burnout/1215,4"/>
    <content type="html">&lt;p&gt;
Employees can:&lt;a href="#fn:rO4" id="fnref:rO4" class="footnote" title="see footnote"&gt;rO4&lt;/a&gt;&lt;/p&gt;
&lt;ul&gt;
  &lt;li&gt;
Introspect their true values outside of work &amp; invest more deeply in them. Work is not who we are, we need to invest in our hobbies, health, etc.  &lt;/li&gt;
  &lt;li&gt;
Set boundaries to prevent exhaustion. Create non-negotiable personal routines such as exercise.  &lt;/li&gt;
  &lt;li&gt;
Get perspective from friends &amp; family about work stresses.  &lt;/li&gt;
&lt;/ul&gt;
&lt;div class="footnotes"&gt;
  &lt;hr&gt;
  &lt;ol&gt;
    &lt;li id="fn:rO4"&gt;
&lt;a title="return to article" class="reversefootnote" href="#fnref:rO4"&gt;&amp;#x21A9;&lt;/a&gt;      &lt;p&gt;
Csaba Okrona, &lt;em&gt;“Demystifying Burnout – A Deep Dive Into Its Symptoms And Remedies,”&lt;/em&gt; June 26, 2023, &lt;a href="https://leadership.garden/demystifying-burnout/"&gt;https://leadership.garden/demystifying-burnout/&lt;/a&gt;. &lt;em class="paren-em"&gt;(See &lt;a href="/references/O4"&gt;notes&lt;/a&gt;.)&lt;/em&gt;      &lt;/p&gt;
    &lt;/li&gt;
  &lt;/ol&gt;
&lt;/div&gt;
</content>
    <published>2024-09-22T16:29:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/notes/what-individauls-can-do-about-burnout/1215,4</id>
    <title>What individauls can do about burnout.</title>
    <updated>2024-09-22T22:32:23Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/notes/what-organizations-can-do-about-burnout/1215,3"/>
    <content type="html">&lt;p&gt;
Organizations can:&lt;a href="#fn:rO4" id="fnref:rO4" class="footnote" title="see footnote"&gt;rO4&lt;/a&gt;&lt;/p&gt;
&lt;ul&gt;
  &lt;li&gt;
Promote balanced workloads &amp; deadlines, build slack into the process  &lt;/li&gt;
  &lt;li&gt;
Realign on values so both individual &amp; org needs are incorporated  &lt;/li&gt;
  &lt;li&gt;
Ensure transparency in compensation &amp; promotions  &lt;/li&gt;
  &lt;li&gt;
Recognize employees better through programs &amp; public praise  &lt;/li&gt;
  &lt;li&gt;
Nurture intrinsic rewards such as learning  &lt;/li&gt;
&lt;/ul&gt;
&lt;div class="footnotes"&gt;
  &lt;hr&gt;
  &lt;ol&gt;
    &lt;li id="fn:rO4"&gt;
&lt;a title="return to article" class="reversefootnote" href="#fnref:rO4"&gt;&amp;#x21A9;&lt;/a&gt;      &lt;p&gt;
Csaba Okrona, &lt;em&gt;“Demystifying Burnout – A Deep Dive Into Its Symptoms And Remedies,”&lt;/em&gt; June 26, 2023, &lt;a href="https://leadership.garden/demystifying-burnout/"&gt;https://leadership.garden/demystifying-burnout/&lt;/a&gt;. &lt;em class="paren-em"&gt;(See &lt;a href="/references/O4"&gt;notes&lt;/a&gt;.)&lt;/em&gt;      &lt;/p&gt;
    &lt;/li&gt;
  &lt;/ol&gt;
&lt;/div&gt;
</content>
    <published>2024-09-22T16:27:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/notes/what-organizations-can-do-about-burnout/1215,3</id>
    <title>What organizations can do about burnout.</title>
    <updated>2024-09-22T22:32:23Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/notes/burnout-is-not-merely-excessive-stress/1215,2A"/>
    <content type="html">&lt;p&gt;
Stress diminishes with relaxation, but burnout persists through it.&lt;a href="#fn:rO4" id="fnref:rO4" class="footnote" title="see footnote"&gt;rO4&lt;/a&gt;&lt;/p&gt;
&lt;div class="footnotes"&gt;
  &lt;hr&gt;
  &lt;ol&gt;
    &lt;li id="fn:rO4"&gt;
&lt;a title="return to article" class="reversefootnote" href="#fnref:rO4"&gt;&amp;#x21A9;&lt;/a&gt;      &lt;p&gt;
Csaba Okrona, &lt;em&gt;“Demystifying Burnout – A Deep Dive Into Its Symptoms And Remedies,”&lt;/em&gt; June 26, 2023, &lt;a href="https://leadership.garden/demystifying-burnout/"&gt;https://leadership.garden/demystifying-burnout/&lt;/a&gt;. &lt;em class="paren-em"&gt;(See &lt;a href="/references/O4"&gt;notes&lt;/a&gt;.)&lt;/em&gt;      &lt;/p&gt;
    &lt;/li&gt;
  &lt;/ol&gt;
&lt;/div&gt;
</content>
    <published>2024-09-22T16:26:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/notes/burnout-is-not-merely-excessive-stress/1215,2A</id>
    <title>Burnout is not merely excessive stress.</title>
    <updated>2024-09-22T22:32:23Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/notes/how-burnout-manifests/1215,2"/>
    <content type="html">&lt;p&gt;
Burnout syndrome appears as:&lt;a href="#fn:rO4" id="fnref:rO4" class="footnote" title="see footnote"&gt;rO4&lt;/a&gt;&lt;/p&gt;
&lt;ul&gt;
  &lt;li&gt;
&lt;strong&gt;Emotional exhaustion:&lt;/strong&gt; An overwhelmed sense where no more could imaginably be tolerated. Rest &amp; vacation don’t change anything.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Depersonalization or cynicism:&lt;/strong&gt; Short fuse with everyone &amp; a persistent assumption of malicious intent.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Sense of personal ineffectiveness:&lt;/strong&gt; Even when things are going well, there’s a loss of purpose &amp; no sense of accomplishment.  &lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;
This is &lt;a href="/notes/1215,2A"&gt;not merely stress&lt;/a&gt;.&lt;/p&gt;
&lt;div class="footnotes"&gt;
  &lt;hr&gt;
  &lt;ol&gt;
    &lt;li id="fn:rO4"&gt;
&lt;a title="return to article" class="reversefootnote" href="#fnref:rO4"&gt;&amp;#x21A9;&lt;/a&gt;      &lt;p&gt;
Csaba Okrona, &lt;em&gt;“Demystifying Burnout – A Deep Dive Into Its Symptoms And Remedies,”&lt;/em&gt; June 26, 2023, &lt;a href="https://leadership.garden/demystifying-burnout/"&gt;https://leadership.garden/demystifying-burnout/&lt;/a&gt;. &lt;em class="paren-em"&gt;(See &lt;a href="/references/O4"&gt;notes&lt;/a&gt;.)&lt;/em&gt;      &lt;/p&gt;
    &lt;/li&gt;
  &lt;/ol&gt;
&lt;/div&gt;
</content>
    <published>2024-09-22T16:24:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/notes/how-burnout-manifests/1215,2</id>
    <title>How burnout manifests.</title>
    <updated>2024-09-22T22:32:23Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/notes/signs-of-an-unhealthy-organization/1264,2"/>
    <content type="html">&lt;p&gt;
There are many signs that an organization has been &lt;a href="/notes/2132,2"&gt;tainted by shame&lt;/a&gt;, including:&lt;/p&gt;
&lt;ul&gt;
  &lt;li&gt;
Perfectionism  &lt;/li&gt;
  &lt;li&gt;
Weird power dynamics  &lt;/li&gt;
  &lt;li&gt;
Framing worth by productivity  &lt;/li&gt;
  &lt;li&gt;
Blame-focused culture  &lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;
Other “org smells” include:&lt;a href="#fn:rB7" id="fnref:rB7" class="footnote" title="see footnote"&gt;rB7&lt;/a&gt;&lt;/p&gt;
&lt;ul&gt;
  &lt;li&gt;
Conflict-avoidant leadership  &lt;/li&gt;
  &lt;li&gt;
Moving poor performers around  &lt;/li&gt;
  &lt;li&gt;
Leadership burnout  &lt;/li&gt;
&lt;/ul&gt;
&lt;div class="footnotes"&gt;
  &lt;hr&gt;
  &lt;ol&gt;
    &lt;li id="fn:rB7"&gt;
&lt;a title="return to article" class="reversefootnote" href="#fnref:rB7"&gt;&amp;#x21A9;&lt;/a&gt;      &lt;p&gt;
Suzan Bond, &lt;em&gt;“An Incomplete List of Org Smells,”&lt;/em&gt; Substack newsletter, Suzan’s Fieldnotes &lt;em class="paren-em"&gt;(blog)&lt;/em&gt;, April 25, 2022, &lt;a href="https://suzansfieldnotes.substack.com/p/an-incomplete-list-of-org-smells"&gt;https://suzansfieldnotes.substack.com/p/an-incomplete-list-of-org-smells&lt;/a&gt;. &lt;em class="paren-em"&gt;(See &lt;a href="/references/B7"&gt;notes&lt;/a&gt;.)&lt;/em&gt;      &lt;/p&gt;
    &lt;/li&gt;
  &lt;/ol&gt;
&lt;/div&gt;
</content>
    <published>2024-05-25T16:54:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/notes/signs-of-an-unhealthy-organization/1264,2</id>
    <title>Signs of an unhealthy organization.</title>
    <updated>2024-05-25T22:57:49Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/notes/signs-that-an-engineering-director-is-struggling/1111,2A"/>
    <content type="html">&lt;p&gt;
It’s a common problem that directors do not get the training or support that they need to be effective. It’s also common to trim companies by their middle management layer when it’s time to take a hard look at who contributes what. This can create significant fear in this layer, and insecurity + fear = defensive behavior, particularly by drawing inward into the certain skills that made success in past roles and by spending greater focus on their teams than the organization. They de-risk their failures by ensuring lax timelines and increasing headcount requests. Blame is deflected on these factors, too. Knowledge silos increase and the connectedness of more junior employees decreases. Other parts of the organization start to route around things the director is rendering ineffective.&lt;a href="#fn:rN4" id="fnref:rN4" class="footnote" title="see footnote"&gt;rN4&lt;/a&gt;&lt;/p&gt;
&lt;div class="footnotes"&gt;
  &lt;hr&gt;
  &lt;ol&gt;
    &lt;li id="fn:rN4"&gt;
&lt;a title="return to article" class="reversefootnote" href="#fnref:rN4"&gt;&amp;#x21A9;&lt;/a&gt;      &lt;p&gt;
Johnathan Nightingale and Melissa Nightingale, &lt;em&gt;“Director Means Something,”&lt;/em&gt; January 10, 2024, &lt;a href="https://www.rawsignal.ca/newsletter-archive/director-means-something"&gt;https://www.rawsignal.ca/newsletter-archive/director-means-something&lt;/a&gt;. &lt;em class="paren-em"&gt;(See &lt;a href="/references/N4"&gt;notes&lt;/a&gt;.)&lt;/em&gt;      &lt;/p&gt;
    &lt;/li&gt;
  &lt;/ol&gt;
&lt;/div&gt;
</content>
    <published>2024-04-27T17:33:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/notes/signs-that-an-engineering-director-is-struggling/1111,2A</id>
    <title>Signs that an engineering director is struggling.</title>
    <updated>2024-04-28T00:29:36Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/notes/webserver-sessions/3141"/>
    <content type="html">&lt;p&gt;
Sessions are IDs that address a timeboxed set of activity performed by a specific client. They are often associated with session storage which records specific details about client-server interactions. In webservers, sessions are often set as cookies in the client which are carried on each interaction with the server, but any method of trading session tokens can work. Sessions are often additionally defined by level of identity verification of the client, with each level having unique IDs and potentially different timeboxes.&lt;/p&gt;
</content>
    <published>2024-04-20T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/notes/webserver-sessions/3141</id>
    <title>Webserver sessions.</title>
    <updated>2024-04-28T01:54:39Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/notes/webservers/3140"/>
    <content type="html">&lt;ul&gt;
  &lt;li&gt;
&lt;a href="/notes/3141"&gt;Sessions&lt;/a&gt;.  &lt;/li&gt;
&lt;/ul&gt;
</content>
    <published>2024-04-20T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/notes/webservers/3140</id>
    <title>Webservers.</title>
    <updated>2024-04-28T01:54:39Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/notes/rules-of-the-unix-philosophy/1154,1A"/>
    <content type="html">&lt;p&gt;
As follows:&lt;a href="#fn:rR9" id="fnref:rR9" class="footnote" title="see footnote"&gt;rR9&lt;/a&gt;&lt;/p&gt;
&lt;ol&gt;
  &lt;li&gt;
&lt;strong&gt;Rule of modularity:&lt;/strong&gt; Simple units connected by good interfaces.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Rule of clarity:&lt;/strong&gt; Clear over clever.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Rule of composition:&lt;/strong&gt; Programs are design to interact with each other.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Rule of separation:&lt;/strong&gt; Separate interface and rules from how it works.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Rule of simplicity:&lt;/strong&gt; Add complexity only when absolutely required.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Rule of parsimony:&lt;/strong&gt; Write big software as a matter of last resort.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Rule of transparency:&lt;/strong&gt; Design to accommodate troubleshooting.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Rule of robustness:&lt;/strong&gt; Comes from transparency and simplicity.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Rule of representation:&lt;/strong&gt; Express knowledge as data, keep logic simple.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Rule of least surprise:&lt;/strong&gt; Design interfaces to minimize surprise.  &lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;
&lt;a href="/notes/1154,1B"&gt;Continuation&lt;/a&gt;&lt;/p&gt;
&lt;div class="footnotes"&gt;
  &lt;hr&gt;
  &lt;ol&gt;
    &lt;li id="fn:rR9"&gt;
&lt;a title="return to article" class="reversefootnote" href="#fnref:rR9"&gt;&amp;#x21A9;&lt;/a&gt;      &lt;p&gt;
Eric Steven Raymond, &lt;em&gt;“Basics of the Unix Philosophy,”&lt;/em&gt; 2003, &lt;a href="http://www.catb.org/~esr/writings/taoup/html/ch01s06.html"&gt;http://www.catb.org/~esr/writings/taoup/html/ch01s06.html&lt;/a&gt;. &lt;em class="paren-em"&gt;(See &lt;a href="/references/R9"&gt;notes&lt;/a&gt;.)&lt;/em&gt;      &lt;/p&gt;
    &lt;/li&gt;
  &lt;/ol&gt;
&lt;/div&gt;
</content>
    <published>2024-03-24T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/notes/rules-of-the-unix-philosophy/1154,1A</id>
    <title>Rules of the UNIX philosophy.</title>
    <updated>2024-04-27T23:19:52Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/notes/tactics-for-effective-leadership/2214"/>
    <content type="html">&lt;p&gt;
Some approaches to combat &lt;a href="/notes/2213"&gt;leadership pitfalls&lt;/a&gt;:&lt;a href="#fn:rR10" id="fnref:rR10" class="footnote" title="see footnote"&gt;rR10&lt;/a&gt;&lt;/p&gt;
&lt;ul&gt;
  &lt;li&gt;
Explicitly ask for arguments against your ideas. Creates the space for pushback that one may expect but not naturally receive.  &lt;/li&gt;
  &lt;li&gt;
Make bad proposals, or incomplete ideas, to solicit their thoughts. Implicitly delegates solutioning to them and builds trust as they find their ideas affect change.  &lt;/li&gt;
  &lt;li&gt;
Build relationships everywhere. Gives access to better context, space to bounce around ideas, and opportunity to act on hidden problems.  &lt;/li&gt;
  &lt;li&gt;
Appreciate opposition to help de-risk future contributions from individual contributors.  &lt;/li&gt;
  &lt;li&gt;
Servant leadership. Stay hidden during success, act as support.  &lt;/li&gt;
  &lt;li&gt;
Roll out plans incrementally with previews and feedback gathering.  &lt;/li&gt;
&lt;/ul&gt;
&lt;div class="footnotes"&gt;
  &lt;hr&gt;
  &lt;ol&gt;
    &lt;li id="fn:rR10"&gt;
&lt;a title="return to article" class="reversefootnote" href="#fnref:rR10"&gt;&amp;#x21A9;&lt;/a&gt;      &lt;p&gt;
Jade Rubick, &lt;em&gt;“Everyone Lies to Leaders,”&lt;/em&gt; June 1, 2021, &lt;a href="https://www.rubick.com/everyone-lies-to-leaders/"&gt;https://www.rubick.com/everyone-lies-to-leaders/&lt;/a&gt;. &lt;em class="paren-em"&gt;(See &lt;a href="/references/R10"&gt;notes&lt;/a&gt;.)&lt;/em&gt;      &lt;/p&gt;
    &lt;/li&gt;
  &lt;/ol&gt;
&lt;/div&gt;
</content>
    <published>2024-03-24T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/notes/tactics-for-effective-leadership/2214</id>
    <title>Tactics for effective leadership.</title>
    <updated>2024-04-28T01:54:39Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/notes/the-unix-philosophy/1154,1"/>
    <content type="html">&lt;p&gt;
The components of UNIX philosophy originate from a series of maxims by UNIX and C language experts. They focus on software composition, simplicity, and optimization.&lt;/p&gt;
&lt;blockquote&gt;
  &lt;p&gt;
Write programs that do one thing and do it well. Write programs to work together. Write programs to handle text streams, because that is the universal interface.  &lt;/p&gt;
  &lt;p&gt;
—Peter H. Salus  &lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;
Rob Pike offered a series of rules that advise that we don’t optimize algorithms until we’ve measured a bottleneck and only if it overwhelms the rest of the program at that, because fancy algorithms are buggier and only offer improvements at large scales. Ken Thompson simplifies it to:&lt;/p&gt;
&lt;blockquote&gt;
  &lt;p&gt;
When in doubt, use brute force.  &lt;/p&gt;
  &lt;p&gt;
—Ken Thompson  &lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;
From these statements and actions of early design master, a &lt;a href="/notes/1154,1A"&gt;series of rules&lt;/a&gt; may be extracted.&lt;a href="#fn:rR9" id="fnref:rR9" class="footnote" title="see footnote"&gt;rR9&lt;/a&gt;&lt;/p&gt;
&lt;div class="footnotes"&gt;
  &lt;hr&gt;
  &lt;ol&gt;
    &lt;li id="fn:rR9"&gt;
&lt;a title="return to article" class="reversefootnote" href="#fnref:rR9"&gt;&amp;#x21A9;&lt;/a&gt;      &lt;p&gt;
Eric Steven Raymond, &lt;em&gt;“Basics of the Unix Philosophy,”&lt;/em&gt; 2003, &lt;a href="http://www.catb.org/~esr/writings/taoup/html/ch01s06.html"&gt;http://www.catb.org/~esr/writings/taoup/html/ch01s06.html&lt;/a&gt;. &lt;em class="paren-em"&gt;(See &lt;a href="/references/R9"&gt;notes&lt;/a&gt;.)&lt;/em&gt;      &lt;/p&gt;
    &lt;/li&gt;
  &lt;/ol&gt;
&lt;/div&gt;
</content>
    <published>2024-03-24T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/notes/the-unix-philosophy/1154,1</id>
    <title>The UNIX philosophy.</title>
    <updated>2024-04-28T00:32:16Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/notes/rules-of-the-unix-philosophy-continued/1154,1B"/>
    <content type="html">&lt;p&gt;
Continuing from the &lt;a href="/notes/1154,1A"&gt;first 10&lt;/a&gt;:&lt;a href="#fn:rR9" id="fnref:rR9" class="footnote" title="see footnote"&gt;rR9&lt;/a&gt;&lt;/p&gt;
&lt;ol start="11"&gt;
  &lt;li&gt;
&lt;strong&gt;Rule of silence:&lt;/strong&gt; Only output if there’s something surprising to note.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Rule of repair:&lt;/strong&gt; Fail as early as possible, loudly.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Rule of economy:&lt;/strong&gt; Programmer time is more expensive than compute.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Rule of generation:&lt;/strong&gt; Write code that writes code where possible.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Rule of optimization:&lt;/strong&gt; Make it work before improving it.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Rule of diversity:&lt;/strong&gt; There’s rarely a single right way.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Rule of extensibility:&lt;/strong&gt; Design for the future.  &lt;/li&gt;
&lt;/ol&gt;
&lt;div class="footnotes"&gt;
  &lt;hr&gt;
  &lt;ol&gt;
    &lt;li id="fn:rR9"&gt;
&lt;a title="return to article" class="reversefootnote" href="#fnref:rR9"&gt;&amp;#x21A9;&lt;/a&gt;      &lt;p&gt;
Eric Steven Raymond, &lt;em&gt;“Basics of the Unix Philosophy,”&lt;/em&gt; 2003, &lt;a href="http://www.catb.org/~esr/writings/taoup/html/ch01s06.html"&gt;http://www.catb.org/~esr/writings/taoup/html/ch01s06.html&lt;/a&gt;. &lt;em class="paren-em"&gt;(See &lt;a href="/references/R9"&gt;notes&lt;/a&gt;.)&lt;/em&gt;      &lt;/p&gt;
    &lt;/li&gt;
  &lt;/ol&gt;
&lt;/div&gt;
</content>
    <published>2024-03-24T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/notes/rules-of-the-unix-philosophy-continued/1154,1B</id>
    <title>Rules of the UNIX Philosophy, continued.</title>
    <updated>2024-04-27T23:19:52Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/notes/pitfalls-for-leaders/2213"/>
    <content type="html">&lt;p&gt;
Rules of power:&lt;a href="#fn:rR10" id="fnref:rR10" class="footnote" title="see footnote"&gt;rR10&lt;/a&gt;&lt;/p&gt;
&lt;ul&gt;
  &lt;li&gt;
&lt;strong&gt;Leaders lose touch with reality:&lt;/strong&gt; The further one gets from the ground, the less information about it one has—with proportionally more responsibility to fixing issues.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Everyone lies to leaders:&lt;/strong&gt; The further away you are, the more likely they are to say what is least likely to get them in trouble.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Leaders are overconfident:&lt;/strong&gt; Cockiness and aggression escalate when present in a culture, often trickling down. Confidence is valuable but overconfidence is distorting.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Leaders get credit:&lt;/strong&gt; This can reinforce ego and diminish the contributions of others.  &lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;
These pitfalls &lt;a href="/notes/2214"&gt;can be countered&lt;/a&gt;!&lt;/p&gt;
&lt;div class="footnotes"&gt;
  &lt;hr&gt;
  &lt;ol&gt;
    &lt;li id="fn:rR10"&gt;
&lt;a title="return to article" class="reversefootnote" href="#fnref:rR10"&gt;&amp;#x21A9;&lt;/a&gt;      &lt;p&gt;
Jade Rubick, &lt;em&gt;“Everyone Lies to Leaders,”&lt;/em&gt; June 1, 2021, &lt;a href="https://www.rubick.com/everyone-lies-to-leaders/"&gt;https://www.rubick.com/everyone-lies-to-leaders/&lt;/a&gt;. &lt;em class="paren-em"&gt;(See &lt;a href="/references/R10"&gt;notes&lt;/a&gt;.)&lt;/em&gt;      &lt;/p&gt;
    &lt;/li&gt;
  &lt;/ol&gt;
&lt;/div&gt;
</content>
    <published>2024-03-24T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/notes/pitfalls-for-leaders/2213</id>
    <title>Pitfalls for leaders.</title>
    <updated>2024-04-28T01:54:39Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/notes/inner-platform-effect/1150,1"/>
    <content type="html">&lt;p&gt;
This is an anti-pattern where a system designer overly favors flexibility to the degree that their system starts cloning features of the platform they are building atop. This duplication is done poorly and inefficiently, not to mention the expense of it.&lt;/p&gt;
&lt;p&gt;
The &lt;a href="/notes/1154,1"&gt;Unix philosophy&lt;/a&gt; helps mitigate this through its focus on composability and simplicity.&lt;/p&gt;
</content>
    <published>2024-03-24T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/notes/inner-platform-effect/1150,1</id>
    <title>Inner-platform effect.</title>
    <updated>2024-04-27T23:14:18Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/notes/software-architecture-philosophies/1154"/>
    <content type="html">&lt;ul&gt;
  &lt;li&gt;
&lt;a href="/notes/1153"&gt;Domain-Driven Design&lt;/a&gt;.  &lt;/li&gt;
  &lt;li&gt;
&lt;a href="/notes/1154,1"&gt;Unix philosophy&lt;/a&gt;.  &lt;/li&gt;
&lt;/ul&gt;
</content>
    <published>2024-03-24T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/notes/software-architecture-philosophies/1154</id>
    <title>Software architecture philosophies.</title>
    <updated>2024-04-27T23:14:18Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/notes/domain-driven-design/1153"/>
    <content type="html">&lt;p&gt;
Domain-Driven Design &lt;em class="paren-em"&gt;(DDD)&lt;/em&gt; focuses design on business-level abstractions. This creates &lt;a href="/notes/1153,1"&gt;better technical abstractions&lt;/a&gt;.&lt;/p&gt;
</content>
    <published>2024-03-17T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/notes/domain-driven-design/1153</id>
    <title>Domain-Driven Design.</title>
    <updated>2024-04-27T23:14:18Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/notes/remote-work/12B0,2"/>
    <content type="html">&lt;p&gt;
Ongoing research about remote work has shown that the shift toward remote work had no impact on productivity. Conversely, return to office &lt;em class="paren-em"&gt;(RTO)&lt;/em&gt; mandates have not improved company performance and either do not improve or do harm to productivity. RTO harms employee satisfaction. Studies suggest a correlation between CEO power and belief that RTO is necessary.&lt;a href="#fn:rZ2" id="fnref:rZ2" class="footnote" title="see footnote"&gt;rZ2&lt;/a&gt;&lt;/p&gt;
&lt;div class="footnotes"&gt;
  &lt;hr&gt;
  &lt;ol&gt;
    &lt;li id="fn:rZ2"&gt;
&lt;a title="return to article" class="reversefootnote" href="#fnref:rZ2"&gt;&amp;#x21A9;&lt;/a&gt;      &lt;p&gt;
Maxwell Zeff, &lt;em&gt;“There’s More Proof That Return to Office Is Pointless,”&lt;/em&gt; January 30, 2024, &lt;a href="https://gizmodo.com/more-proof-that-return-to-office-is-pointless-1851209231"&gt;https://gizmodo.com/more-proof-that-return-to-office-is-pointless-1851209231&lt;/a&gt;. &lt;em class="paren-em"&gt;(See &lt;a href="/references/Z2"&gt;notes&lt;/a&gt;.)&lt;/em&gt;      &lt;/p&gt;
    &lt;/li&gt;
  &lt;/ol&gt;
&lt;/div&gt;
</content>
    <published>2024-03-17T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/notes/remote-work/12B0,2</id>
    <title>Remote work.</title>
    <updated>2024-04-27T23:50:46Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/notes/developer-experience/112B"/>
    <content type="html">&lt;ul&gt;
  &lt;li&gt;
&lt;a href="/notes/112B,1"&gt;The returns on DevEx investment&lt;/a&gt;.  &lt;/li&gt;
&lt;/ul&gt;
</content>
    <published>2024-03-17T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/notes/developer-experience/112B</id>
    <title>Developer experience.</title>
    <updated>2024-04-28T00:09:19Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/notes/the-appendix/5321"/>
    <content type="html">&lt;p&gt;
While commonly regarded as pointless, the appendix actually serves the important role of providing a safe place for “good” bacteria to hang out. This is valuable during gastrointestinal events where bacterial colonies may otherwise be disrupted or destroyed, as the appendix offers a way to rëestablish the colonies after.&lt;a href="#fn:rS11" id="fnref:rS11" class="footnote" title="see footnote"&gt;rS11&lt;/a&gt;&lt;/p&gt;
&lt;div class="footnotes"&gt;
  &lt;hr&gt;
  &lt;ol&gt;
    &lt;li id="fn:rS11"&gt;
&lt;a title="return to article" class="reversefootnote" href="#fnref:rS11"&gt;&amp;#x21A9;&lt;/a&gt;      &lt;p&gt;
Selena Simmons-Duffin, &lt;em&gt;“Your Appendix Is Not, in Fact, Useless. This Anatomy Professor Explains,”&lt;/em&gt; NPR, February 2, 2024, sec. Short Wave, &lt;a href="https://www.npr.org/sections/health-shots/2024/02/02/1228474984/appendix-function-appendicitis-gut-health"&gt;https://www.npr.org/sections/health-shots/2024/02/02/1228474984/appendix-function-appendicitis-gut-health&lt;/a&gt;. &lt;em class="paren-em"&gt;(See &lt;a href="/references/S11"&gt;notes&lt;/a&gt;.)&lt;/em&gt;      &lt;/p&gt;
    &lt;/li&gt;
  &lt;/ol&gt;
&lt;/div&gt;
</content>
    <published>2024-03-17T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/notes/the-appendix/5321</id>
    <title>The appendix.</title>
    <updated>2024-04-28T00:09:19Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/notes/distribution-of-employee-impact/1214,8"/>
    <content type="html">&lt;p&gt;
Conventional HR wisdom holds that employee performance follows a bell curve and results of performance reviews should follow this curve fractally—everything is roughly relative to nearby neighbors, there should be no truly outstanding teams or divisions.&lt;/p&gt;
&lt;p&gt;
The reality is that impact follows a power law distribution: there’s a long tail of average to middling impact, while a small handful—the top ~20%—are markedly more valuable. Research puts top performers at 3–4x more useful than average performers. Steve Jobs saw the difference as those who get company process versus &lt;a href="/notes/1214,8A"&gt;those who understand its true purpose&lt;/a&gt;.&lt;a href="#fn:rH5" id="fnref:rH5" class="footnote" title="see footnote"&gt;rH5&lt;/a&gt;&lt;/p&gt;
&lt;div class="footnotes"&gt;
  &lt;hr&gt;
  &lt;ol&gt;
    &lt;li id="fn:rH5"&gt;
&lt;a title="return to article" class="reversefootnote" href="#fnref:rH5"&gt;&amp;#x21A9;&lt;/a&gt;      &lt;p&gt;
Jeff Haden, &lt;em&gt;“27 Years Ago, Steve Jobs Said the Best Employees Focus on Content, Not Process. Research Shows He Was Right,”&lt;/em&gt; March 9, 2023, &lt;a href="https://www.inc.com/jeff-haden/27-years-ago-steve-jobs-said-best-employees-focus-on-content-not-process-workplace-research-shows-he-was-right.html"&gt;https://www.inc.com/jeff-haden/27-years-ago-steve-jobs-said-best-employees-focus-on-content-not-process-workplace-research-shows-he-was-right.html&lt;/a&gt;. &lt;em class="paren-em"&gt;(See &lt;a href="/references/H5"&gt;notes&lt;/a&gt;.)&lt;/em&gt;      &lt;/p&gt;
    &lt;/li&gt;
  &lt;/ol&gt;
&lt;/div&gt;
</content>
    <published>2024-03-17T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/notes/distribution-of-employee-impact/1214,8</id>
    <title>Distribution of employee impact.</title>
    <updated>2024-04-27T23:28:09Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/notes/risk-assessments/112A,2"/>
    <content type="html">&lt;p&gt;
A methodical risk assessment practice starts with asset identification, reviews practicality of risks, and makes recommendations as an output. A process for this:&lt;/p&gt;
&lt;ol&gt;
  &lt;li&gt;
Create a census of data types, interfaces, and flows.  &lt;/li&gt;
  &lt;li&gt;
Classify the data risk categories by integrity, availability, and confidentiality as high, medium, and low.  &lt;/li&gt;
  &lt;li&gt;
List some threats to the data, classifying each as adversarial, accidental, structural, or environmental. Don’t pursue comprehensiveness.  &lt;/li&gt;
  &lt;li&gt;
Identify vulnerabilities that trigger the threat, classifying which data risk category the vulnerability harms. These are the Risks.  &lt;/li&gt;
  &lt;li&gt;
List an controls that presently mitigate each risk.  &lt;/li&gt;
  &lt;li&gt;
Rate the likelihood of each risk occurring. Rate impact, too.  &lt;/li&gt;
  &lt;li&gt;
List the risk rating from a matrix of impact versus likelihood, with low taking precedent, medium next, and only high + high = high.  &lt;/li&gt;
  &lt;li&gt;
Finally, list risks + ratings and produce a recommendation for each.  &lt;/li&gt;
&lt;/ol&gt;
</content>
    <published>2024-03-17T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/notes/risk-assessments/112A,2</id>
    <title>Risk assessments.</title>
    <updated>2024-04-27T23:50:46Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/notes/business-centric-interfaces-encapsulate-abstraction-better-than-data-centric-interfaces/1153,1"/>
    <content type="html">&lt;p&gt;
Data-centric interfaces typically revolve around CRUD activities, while business-centric interfaces focus on actions occurring at the level of the business. All software is about the business activities rather than technical concerns, at the end of the day, so it stands to reason that structure based on the business will convey more relevance across systems than CRUD descriptions will. For example, Employee Deleted does not convey as much information as Employee Terminated—while the former &lt;em&gt;could&lt;/em&gt; include the additional semantics, the default implementation will omit it if the source system does not value the additional data. There’s a real chance downstream systems do benefit from it though, so everyone agreeing to discuss the business instead of technical implementation will reduce data loss and complexity. If the interfaces expose the source schemas directly, then the clients will couple to it and make changes harder, breaking encapsulation.&lt;a href="#fn:rC6" id="fnref:rC6" class="footnote" title="see footnote"&gt;rC6&lt;/a&gt;&lt;/p&gt;
&lt;div class="footnotes"&gt;
  &lt;hr&gt;
  &lt;ol&gt;
    &lt;li id="fn:rC6"&gt;
&lt;a title="return to article" class="reversefootnote" href="#fnref:rC6"&gt;&amp;#x21A9;&lt;/a&gt;      &lt;p&gt;
Derek Comartin, &lt;em&gt;“Event-Driven Architecture Lost Its Way,”&lt;/em&gt; March 7, 2024, &lt;a href="https://codeopinion.com/event-driven-architecture-lost-its-way/"&gt;https://codeopinion.com/event-driven-architecture-lost-its-way/&lt;/a&gt;. &lt;em class="paren-em"&gt;(See &lt;a href="/references/C6"&gt;notes&lt;/a&gt;.)&lt;/em&gt;      &lt;/p&gt;
    &lt;/li&gt;
  &lt;/ol&gt;
&lt;/div&gt;
</content>
    <published>2024-03-17T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/notes/business-centric-interfaces-encapsulate-abstraction-better-than-data-centric-interfaces/1153,1</id>
    <title>Business-centric interfaces encapsulate abstraction better than data-centric interfaces.</title>
    <updated>2024-04-28T00:43:06Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/notes/high-performers-have-a-fundamental-appreciation-of-the-companys-purpose/1214,8A"/>
    <content type="html">&lt;p&gt;
Steve Jobs differentiated company process from its “content,” the stuff that the company exists to make. While process is important, there’s not usually a repeatable pattern to innovation. When something works, there’s often an impulse to try to crystalize it into something that can make more success. The trouble is that success comes from a clear understanding of purpose and a relentless pursuit of that alone. To that end, great employees are difficult to manage because they are way more driven to accomplishment than purpose, and this makes them not marginally more valuable than others but multiple times more valuable.&lt;a href="#fn:rH5" id="fnref:rH5" class="footnote" title="see footnote"&gt;rH5&lt;/a&gt;&lt;/p&gt;
&lt;div class="footnotes"&gt;
  &lt;hr&gt;
  &lt;ol&gt;
    &lt;li id="fn:rH5"&gt;
&lt;a title="return to article" class="reversefootnote" href="#fnref:rH5"&gt;&amp;#x21A9;&lt;/a&gt;      &lt;p&gt;
Jeff Haden, &lt;em&gt;“27 Years Ago, Steve Jobs Said the Best Employees Focus on Content, Not Process. Research Shows He Was Right,”&lt;/em&gt; March 9, 2023, &lt;a href="https://www.inc.com/jeff-haden/27-years-ago-steve-jobs-said-best-employees-focus-on-content-not-process-workplace-research-shows-he-was-right.html"&gt;https://www.inc.com/jeff-haden/27-years-ago-steve-jobs-said-best-employees-focus-on-content-not-process-workplace-research-shows-he-was-right.html&lt;/a&gt;. &lt;em class="paren-em"&gt;(See &lt;a href="/references/H5"&gt;notes&lt;/a&gt;.)&lt;/em&gt;      &lt;/p&gt;
    &lt;/li&gt;
  &lt;/ol&gt;
&lt;/div&gt;
</content>
    <published>2024-03-17T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/notes/high-performers-have-a-fundamental-appreciation-of-the-companys-purpose/1214,8A</id>
    <title>High performers have a fundamental appreciation of the company’s purpose.</title>
    <updated>2024-04-27T23:28:09Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/notes/digestive-system/5320"/>
    <content type="html">&lt;ul&gt;
  &lt;li&gt;
&lt;a href="/notes/5321"&gt;Appendix&lt;/a&gt;.  &lt;/li&gt;
&lt;/ul&gt;
</content>
    <published>2024-03-17T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/notes/digestive-system/5320</id>
    <title>Digestive system.</title>
    <updated>2024-04-28T00:09:19Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/notes/jobs-to-be-done-framework/1254"/>
    <content type="html">&lt;p&gt;
A product development framework that frames user needs as goals for which they want to “hire” a product or service. Key concepts include:&lt;a href="#fn:rR8" id="fnref:rR8" class="footnote" title="see footnote"&gt;rR8&lt;/a&gt;&lt;/p&gt;
&lt;ul&gt;
  &lt;li&gt;
&lt;strong&gt;Market:&lt;/strong&gt; A group of people largely defined by the job they need done.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Job:&lt;/strong&gt; Task or goal a person would “hire” a service or product to help them do. A verb-first phrase that describes what they want, including functional, social, or emotional aspects.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Outcome:&lt;/strong&gt; A &lt;a href="/notes/2143"&gt;goal&lt;/a&gt; or “What does success look like?”. Should be phrased in a way that suggests a measurement or other success qualification.  &lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;
Suggested practice for applying the framework:&lt;a href="#fn:rR8" id="fnref:rR8" class="footnote" title="see footnote"&gt;rR8&lt;/a&gt;&lt;/p&gt;
&lt;ol&gt;
  &lt;li&gt;
&lt;strong&gt;Explore markets:&lt;/strong&gt; Explore and research based on hypotheses about user needs. Distill into a coarse idea about the Jobs in the markets. Narrow to viable or underserved markets.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Discover all jobs and outcomes:&lt;/strong&gt; Interview three experts in the market to learn all their jobs, together in one session, and their outcomes in a second.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Quanity&lt;/strong&gt; unmet needs in a survey.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Prioritize unmet needs:&lt;/strong&gt; &lt;code class="inline"&gt;opportunity score = Importance % + &lt;em class="paren-em"&gt;(Importance % - Satisfaction %)&lt;/em&gt;&lt;/code&gt;  &lt;/li&gt;
&lt;/ol&gt;
&lt;div class="footnotes"&gt;
  &lt;hr&gt;
  &lt;ol&gt;
    &lt;li id="fn:rR8"&gt;
&lt;a title="return to article" class="reversefootnote" href="#fnref:rR8"&gt;&amp;#x21A9;&lt;/a&gt;      &lt;p&gt;
Sara Landi Tortoli, &lt;em&gt;“Uncover Your Customers’ Hidden Needs In 4 Steps with Jobs-To-Be-Done + Access Custom GPT | HackerNoon,”&lt;/em&gt; December 14, 2023, &lt;a href="https://hackernoon.com/uncover-your-customers-hidden-needs-in-4-steps-with-the-jobs-to-be-done-framework"&gt;https://hackernoon.com/uncover-your-customers-hidden-needs-in-4-steps-with-the-jobs-to-be-done-framework&lt;/a&gt;. &lt;em class="paren-em"&gt;(See &lt;a href="/references/R8"&gt;notes&lt;/a&gt;.)&lt;/em&gt;      &lt;/p&gt;
    &lt;/li&gt;
    &lt;li id="fn:rR8"&gt;
&lt;a title="return to article" class="reversefootnote" href="#fnref:rR8"&gt;&amp;#x21A9;&lt;/a&gt;      &lt;p&gt;
Sara Landi Tortoli, &lt;em&gt;“Uncover Your Customers’ Hidden Needs In 4 Steps with Jobs-To-Be-Done + Access Custom GPT | HackerNoon,”&lt;/em&gt; December 14, 2023, &lt;a href="https://hackernoon.com/uncover-your-customers-hidden-needs-in-4-steps-with-the-jobs-to-be-done-framework"&gt;https://hackernoon.com/uncover-your-customers-hidden-needs-in-4-steps-with-the-jobs-to-be-done-framework&lt;/a&gt;. &lt;em class="paren-em"&gt;(See &lt;a href="/references/R8"&gt;notes&lt;/a&gt;.)&lt;/em&gt;      &lt;/p&gt;
    &lt;/li&gt;
  &lt;/ol&gt;
&lt;/div&gt;
</content>
    <published>2024-03-17T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/notes/jobs-to-be-done-framework/1254</id>
    <title>Jobs to be done framework.</title>
    <updated>2024-04-28T00:09:19Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/notes/write-with-the-readers-context-in-mind-to-increase-effectiveness/1422,3"/>
    <content type="html">&lt;p&gt;
The average reader reads 240 words-per-minute &lt;em class="paren-em"&gt;(WPM)&lt;/em&gt;. Brevity of words and fewer ideas or requests help readers access what’s most important. Make reading easy by shortening sentences and using short/common words. Design for ease of navigation by:&lt;/p&gt;
&lt;ul&gt;
  &lt;li&gt;
Making ther most important things immediately visible  &lt;/li&gt;
  &lt;li&gt;
Separating distinct ideas  &lt;/li&gt;
  &lt;li&gt;
Placing ideas in priority order  &lt;/li&gt;
  &lt;li&gt;
Grouping related ideas  &lt;/li&gt;
  &lt;li&gt;
Using headings  &lt;/li&gt;
  &lt;li&gt;
Adding visuals  &lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;
Formatting should be used just enough. Overuse will dilute the most important points which need formatting to highlight. Finally, readers need to be told why the text matters and why it applies to them &lt;em class="paren-em"&gt;(or, who it’s supposed to apply to)&lt;/em&gt;.&lt;a href="#fn:rD6" id="fnref:rD6" class="footnote" title="see footnote"&gt;rD6&lt;/a&gt;&lt;/p&gt;
&lt;div class="footnotes"&gt;
  &lt;hr&gt;
  &lt;ol&gt;
    &lt;li id="fn:rD6"&gt;
&lt;a title="return to article" class="reversefootnote" href="#fnref:rD6"&gt;&amp;#x21A9;&lt;/a&gt;      &lt;p&gt;
Sam Thomas Davies, &lt;em&gt;“Words Into Works #099 | The Six Principles of Effective Writing,”&lt;/em&gt; December 11, 2023, &lt;a href="https://www.samuelthomasdavies.com/the-six-principles-of-effective-writing/"&gt;https://www.samuelthomasdavies.com/the-six-principles-of-effective-writing/&lt;/a&gt;. &lt;em class="paren-em"&gt;(See &lt;a href="/references/D6"&gt;notes&lt;/a&gt;.)&lt;/em&gt;      &lt;/p&gt;
    &lt;/li&gt;
  &lt;/ol&gt;
&lt;/div&gt;
</content>
    <published>2024-03-17T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/notes/write-with-the-readers-context-in-mind-to-increase-effectiveness/1422,3</id>
    <title>Write with the readers’ context in mind to increase effectiveness.</title>
    <updated>2024-04-28T00:09:19Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/notes/the-returns-on-devex-investment/112B,1"/>
    <content type="html">&lt;p&gt;
Allocating significant focus time to development increases productivity by 50%. The focus here is on establishing and maintaining flow state. Developers working on engaging projects are 30% more productive. 42% productivity boost when developers believe they have a high degree of understanding of their code and context around it—documentation efforts therefore have a clear ROI. Intuitive processes, including technical processes and issues around blockers/friction, create 50% more innovation. Fast turnaround on feedback loops creates 20% higher innovation. Fast responses to questions during development leads to 50% less technical debt.&lt;a href="#fn:rK6" id="fnref:rK6" class="footnote" title="see footnote"&gt;rK6&lt;/a&gt;&lt;/p&gt;
&lt;div class="footnotes"&gt;
  &lt;hr&gt;
  &lt;ol&gt;
    &lt;li id="fn:rK6"&gt;
&lt;a title="return to article" class="reversefootnote" href="#fnref:rK6"&gt;&amp;#x21A9;&lt;/a&gt;      &lt;p&gt;
Eirini Kalliamvakou, &lt;em&gt;“Yes, Good DevEx Increases Productivity. Here Is the Data.,”&lt;/em&gt; January 23, 2024, &lt;a href="https://github.blog/2024-01-23-good-devex-increases-productivity/"&gt;https://github.blog/2024-01-23-good-devex-increases-productivity/&lt;/a&gt;. &lt;em class="paren-em"&gt;(See &lt;a href="/references/K6"&gt;notes&lt;/a&gt;.)&lt;/em&gt;      &lt;/p&gt;
    &lt;/li&gt;
  &lt;/ol&gt;
&lt;/div&gt;
</content>
    <published>2024-03-17T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/notes/the-returns-on-devex-investment/112B,1</id>
    <title>The returns on DevEx investment.</title>
    <updated>2024-04-28T00:09:19Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/notes/anna-karenina-principle/0000,1B1"/>
    <content type="html">&lt;p&gt;
Pulled from Leo Tolstoy’s Anna Karenina:&lt;/p&gt;
&lt;blockquote&gt;
  &lt;p&gt;
All happy families are alike; each unhappy family is unhappy in its own way.  &lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;
In essence, in certain cases, a state arises from many other states, but the lack of any single one causes the absence of the state of interest. As another example, animal domestication requires many specific traits to line up, and any misaligned trait leads to an animal or species being undomesticatable.&lt;/p&gt;
</content>
    <published>2024-02-08T16:48:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/notes/anna-karenina-principle/0000,1B1</id>
    <title>Anna Karenina principle.</title>
    <updated>2024-02-10T23:24:58Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/notes/policy-docs/12B0,1"/>
    <content type="html">&lt;p&gt;
There are three major levels for policy documents:&lt;/p&gt;
&lt;ul&gt;
  &lt;li&gt;
&lt;strong&gt;Policy:&lt;/strong&gt; This is the highest level which captures what the org is committing to and why. Vision-adjacent.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Standards:&lt;/strong&gt; This is capturing the details of the commitment, especially through measurements or goals. Mission-adjacent.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Practices:&lt;/strong&gt; Specifics of the approach. Implementation prescriptions. Strategy-adjacent.  &lt;/li&gt;
&lt;/ul&gt;
</content>
    <published>2024-02-04T16:54:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/notes/policy-docs/12B0,1</id>
    <title>Policy docs.</title>
    <updated>2024-02-04T23:57:14Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/notes/order-of-abjectives-in-english/4311,1"/>
    <content type="html">&lt;p&gt;
The order in which adjectives usually present in English is:&lt;a href="#fn:rC3" id="fnref:rC3" class="footnote" title="see footnote"&gt;rC3&lt;/a&gt;&lt;/p&gt;
&lt;ol&gt;
  &lt;li&gt;
Opinion  &lt;/li&gt;
  &lt;li&gt;
Size  &lt;/li&gt;
  &lt;li&gt;
Physical quality  &lt;/li&gt;
  &lt;li&gt;
Shape  &lt;/li&gt;
  &lt;li&gt;
Age  &lt;/li&gt;
  &lt;li&gt;
Color  &lt;/li&gt;
  &lt;li&gt;
Origin  &lt;/li&gt;
  &lt;li&gt;
Material  &lt;/li&gt;
  &lt;li&gt;
Type  &lt;/li&gt;
  &lt;li&gt;
Purpose  &lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;
Following &lt;a href="/notes/4101,2"&gt;ontological parasitism&lt;/a&gt; which more or less suggests that what we consider objects are just collected properties of collections of matter, the order of adjectives leading into a noun suggests we are intuitively aware of the relationship between properties and objects. Nouns are essentially just large groups of properties presumed to be together. The list of adjectives before that group of properties is ordered roughly by specificity, ascending.&lt;a href="#fn:rV1" id="fnref:rV1" class="footnote" title="see footnote"&gt;rV1&lt;/a&gt;&lt;/p&gt;
&lt;div class="footnotes"&gt;
  &lt;hr&gt;
  &lt;ol&gt;
    &lt;li id="fn:rV1"&gt;
&lt;a title="return to article" class="reversefootnote" href="#fnref:rV1"&gt;&amp;#x21A9;&lt;/a&gt;      &lt;p&gt;
Vsauce, &lt;em&gt;“Do Chairs Exist?,”&lt;/em&gt; YouTube video, 37:51, 2021-09-14, &lt;a href="https://www.youtube.com/watch?v=fXW-QjBsruE"&gt;https://www.youtube.com/watch?v=fXW-QjBsruE&lt;/a&gt;. &lt;em class="paren-em"&gt;(See &lt;a href="/references/V1"&gt;notes&lt;/a&gt;.)&lt;/em&gt;      &lt;/p&gt;
    &lt;/li&gt;
    &lt;li id="fn:rC3"&gt;
&lt;a title="return to article" class="reversefootnote" href="#fnref:rC3"&gt;&amp;#x21A9;&lt;/a&gt;      &lt;p&gt;
&lt;em&gt;“Adjectives: Order,”&lt;/em&gt; accessed May 6, 2023, &lt;a href="https://dictionary.cambridge.org/us/grammar/british-grammar/adjectives-order"&gt;https://dictionary.cambridge.org/us/grammar/british-grammar/adjectives-order&lt;/a&gt;. &lt;em class="paren-em"&gt;(See &lt;a href="/references/C3"&gt;notes&lt;/a&gt;.)&lt;/em&gt;      &lt;/p&gt;
    &lt;/li&gt;
  &lt;/ol&gt;
&lt;/div&gt;
</content>
    <published>2023-11-19T14:27:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/notes/order-of-abjectives-in-english/4311,1</id>
    <title>Order of abjectives in English.</title>
    <updated>2023-11-27T21:17:12Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/notes/grammar-and-parts-of-speech/4311"/>
    <content type="html">&lt;ul&gt;
  &lt;li&gt;
&lt;a href="/notes/4311,1"&gt;Order of adjectives&lt;/a&gt;.  &lt;/li&gt;
&lt;/ul&gt;
</content>
    <published>2023-11-19T14:26:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/notes/grammar-and-parts-of-speech/4311</id>
    <title>Grammar and parts of speech.</title>
    <updated>2023-11-19T22:18:24Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/notes/mereology-is-the-philosophy-of-parts-and-wholes/4102"/>
    <content type="html">&lt;p&gt;
Part of &lt;a href="/notes/4101"&gt;ontology&lt;/a&gt;. Mereology is partly concerned with answering the &lt;em&gt;Special Composition Question&lt;/em&gt;, which is: “When do two or more things become something else?” &lt;em&gt;Mereological universalism&lt;/em&gt; answers that any combination of things across space or time constitutes a new thing regardless of sensibility. Regards it arbitrary to accept some composites as things while not others—that discernment, on the flipside, is &lt;em&gt;eliminitivism&lt;/em&gt;. &lt;em&gt;Mereological nihilism&lt;/em&gt; rejects these distinctions and postulates that only &lt;a href="/notes/4101,1"&gt;simples&lt;/a&gt; physically exist in reality.&lt;a href="#fn:rV1" id="fnref:rV1" class="footnote" title="see footnote"&gt;rV1&lt;/a&gt;&lt;/p&gt;
&lt;div class="footnotes"&gt;
  &lt;hr&gt;
  &lt;ol&gt;
    &lt;li id="fn:rV1"&gt;
&lt;a title="return to article" class="reversefootnote" href="#fnref:rV1"&gt;&amp;#x21A9;&lt;/a&gt;      &lt;p&gt;
Vsauce, &lt;em&gt;“Do Chairs Exist?,”&lt;/em&gt; YouTube video, 37:51, 2021-09-14, &lt;a href="https://www.youtube.com/watch?v=fXW-QjBsruE"&gt;https://www.youtube.com/watch?v=fXW-QjBsruE&lt;/a&gt;. &lt;em class="paren-em"&gt;(See &lt;a href="/references/V1"&gt;notes&lt;/a&gt;.)&lt;/em&gt;      &lt;/p&gt;
    &lt;/li&gt;
  &lt;/ol&gt;
&lt;/div&gt;
</content>
    <published>2023-11-19T14:22:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/notes/mereology-is-the-philosophy-of-parts-and-wholes/4102</id>
    <title>Mereology is the philosophy of parts and wholes.</title>
    <updated>2023-11-19T22:18:24Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/notes/ontological-stances-or-viewpoints/4101,2"/>
    <content type="html">&lt;p&gt;
These reference &lt;a href="/notes/4101,1"&gt;basic concepts&lt;/a&gt;:&lt;a href="#fn:rV1" id="fnref:rV1" class="footnote" title="see footnote"&gt;rV1&lt;/a&gt;&lt;/p&gt;
&lt;ul&gt;
  &lt;li&gt;
&lt;strong&gt;Ontological reductionism:&lt;/strong&gt; A whole is nothing more than its parts, and ordinary objects exist through composition.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Ontological realism:&lt;/strong&gt; Things objectively exist and don’t require the interpretation of an observer because the universe has meaningful “joints” by which to separate.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Ontological anti-realism:&lt;/strong&gt; There are many ways to perceive the universe. Our perceptions are only as we need them to be. No objective “joints”.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Ontological innocense:&lt;/strong&gt; Things arise from their simples but are not literally those simples. A thing “exists” in its own right, not necessarily as a reference to its literal parts. Things can be defined this way by introducing an application condition to provide enough context to distinguish a thing from the rest of the simples involved.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Ontological parasitism:&lt;/strong&gt; Wholes must be hosted by something else cannot exist unto themselves. &lt;em&gt;Object fixation/property repression&lt;/em&gt; has us focus on the parasite and ignore that only its materials actually exist.  &lt;/li&gt;
&lt;/ul&gt;
&lt;div class="footnotes"&gt;
  &lt;hr&gt;
  &lt;ol&gt;
    &lt;li id="fn:rV1"&gt;
&lt;a title="return to article" class="reversefootnote" href="#fnref:rV1"&gt;&amp;#x21A9;&lt;/a&gt;      &lt;p&gt;
Vsauce, &lt;em&gt;“Do Chairs Exist?,”&lt;/em&gt; YouTube video, 37:51, 2021-09-14, &lt;a href="https://www.youtube.com/watch?v=fXW-QjBsruE"&gt;https://www.youtube.com/watch?v=fXW-QjBsruE&lt;/a&gt;. &lt;em class="paren-em"&gt;(See &lt;a href="/references/V1"&gt;notes&lt;/a&gt;.)&lt;/em&gt;      &lt;/p&gt;
    &lt;/li&gt;
  &lt;/ol&gt;
&lt;/div&gt;
</content>
    <published>2023-11-19T14:18:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/notes/ontological-stances-or-viewpoints/4101,2</id>
    <title>Ontological stances or viewpoints.</title>
    <updated>2023-11-19T22:18:24Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/notes/basic-concepts-of-ontology/4101,1"/>
    <content type="html">&lt;p&gt;
Especially in relation to mereology:&lt;a href="#fn:rV1" id="fnref:rV1" class="footnote" title="see footnote"&gt;rV1&lt;/a&gt;&lt;/p&gt;
&lt;ul&gt;
  &lt;li&gt;
&lt;strong&gt;Ordinary objects:&lt;/strong&gt; Average and obvious objects such as chairs.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Composition:&lt;/strong&gt; All things are composed of simples.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Simples:&lt;/strong&gt; Some basic component of the universe that is not composed itself. &lt;em class="paren-em"&gt;(In a “gunky” universe, though, there are no simples, just infinitely lower orders of composition. Contrast with “junky”, which has infinitely larger structures which everything rolls upward into.)&lt;/em&gt;  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Existence has senses:&lt;/strong&gt; The &lt;em&gt;neutral sense&lt;/em&gt; refers literally to groups of simples, while the &lt;em&gt;sortal sense&lt;/em&gt; refers to higher-level countable objects. Simples need an &lt;em&gt;application condition&lt;/em&gt; to have enough information to distinguish things.  &lt;/li&gt;
&lt;/ul&gt;
&lt;div class="footnotes"&gt;
  &lt;hr&gt;
  &lt;ol&gt;
    &lt;li id="fn:rV1"&gt;
&lt;a title="return to article" class="reversefootnote" href="#fnref:rV1"&gt;&amp;#x21A9;&lt;/a&gt;      &lt;p&gt;
Vsauce, &lt;em&gt;“Do Chairs Exist?,”&lt;/em&gt; YouTube video, 37:51, 2021-09-14, &lt;a href="https://www.youtube.com/watch?v=fXW-QjBsruE"&gt;https://www.youtube.com/watch?v=fXW-QjBsruE&lt;/a&gt;. &lt;em class="paren-em"&gt;(See &lt;a href="/references/V1"&gt;notes&lt;/a&gt;.)&lt;/em&gt;      &lt;/p&gt;
    &lt;/li&gt;
  &lt;/ol&gt;
&lt;/div&gt;
</content>
    <published>2023-11-19T14:15:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/notes/basic-concepts-of-ontology/4101,1</id>
    <title>Basic concepts of ontology.</title>
    <updated>2023-11-19T22:18:24Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/notes/ontology-the-study-of-what-exists/4101"/>
    <content type="html">&lt;ul&gt;
  &lt;li&gt;
&lt;a href="/notes/4101,1"&gt;Basic concepts&lt;/a&gt;.  &lt;/li&gt;
  &lt;li&gt;
&lt;a href="/notes/4101,2"&gt;Stances/viewpoints&lt;/a&gt;.  &lt;/li&gt;
  &lt;li&gt;
&lt;a href="/notes/4102"&gt;Mereology&lt;/a&gt;.  &lt;/li&gt;
&lt;/ul&gt;
</content>
    <published>2023-11-19T14:14:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/notes/ontology-the-study-of-what-exists/4101</id>
    <title>Ontology: the study of what exists.</title>
    <updated>2023-11-19T22:18:24Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/notes/black-hole-stars-could-explain-otherwise-impossibly-large-black-holes/5103,1"/>
    <content type="html">&lt;p&gt;
Black hole stars are a hypothesis which explain why we see black holes from the first billion years with hundreds of millions of solar masses, which should not be possible. The stars we can see max out around 300 solar masses and can create black holes of dozens of solar masses. They can only grow very slowly because matter is super heated on a very long orbit before reaching the event horizon, which in turn puts pressure on other matter to keep it away. Even with merging black holes, there would not have been enough time to grow this large.&lt;/p&gt;
&lt;p&gt;
Black hole stars resolve this by being so large—forming in dark matter halos from many millions of solar masses of material which outweighs smaller galaxies—that when the pressure causes the core to collapse into a black hole, the resulting supernova is not powerful enough to blow away the outer mantle. The outer gravity overwhelms the black hole’s outward forces, force feeding it and generating tremendous radiation pressure which keeps the star stable until it runs low on matter, at which point it would explode.&lt;a href="#fn:rK5" id="fnref:rK5" class="footnote" title="see footnote"&gt;rK5&lt;/a&gt;&lt;/p&gt;
&lt;div class="footnotes"&gt;
  &lt;hr&gt;
  &lt;ol&gt;
    &lt;li id="fn:rK5"&gt;
&lt;a title="return to article" class="reversefootnote" href="#fnref:rK5"&gt;&amp;#x21A9;&lt;/a&gt;      &lt;p&gt;
Kurzgesagt, &lt;em&gt;Black Hole Star – The Star That Shouldn’t Exist,&lt;/em&gt; 2022, &lt;a href="https://www.youtube.com/watch?v=aeWyp2vXxqA"&gt;https://www.youtube.com/watch?v=aeWyp2vXxqA&lt;/a&gt;. &lt;em class="paren-em"&gt;(See &lt;a href="/references/K5"&gt;notes&lt;/a&gt;.)&lt;/em&gt;      &lt;/p&gt;
    &lt;/li&gt;
  &lt;/ol&gt;
&lt;/div&gt;
</content>
    <published>2023-11-19T14:09:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/notes/black-hole-stars-could-explain-otherwise-impossibly-large-black-holes/5103,1</id>
    <title>Black hole stars could explain otherwise impossibly large black holes.</title>
    <updated>2023-11-19T22:18:24Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/notes/stars/5103"/>
    <content type="html">&lt;ul&gt;
  &lt;li&gt;
&lt;a href="/notes/5103,1"&gt;Black hole stars&lt;/a&gt;.  &lt;/li&gt;
&lt;/ul&gt;
</content>
    <published>2023-11-19T14:09:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/notes/stars/5103</id>
    <title>Stars.</title>
    <updated>2023-11-19T22:18:24Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/notes/resource-utilization-must-be-less-than-full-to-allow-flow/1173,2A"/>
    <content type="html">&lt;p&gt;
A simple example of sequential task flow between multiple participants shows:&lt;a href="#fn:rK4" id="fnref:rK4" class="footnote" title="see footnote"&gt;rK4&lt;/a&gt;&lt;/p&gt;
&lt;ul&gt;
  &lt;li&gt;
At full utilization, flow is reduced to a crawl as each step constitutes a bottleneck.  &lt;/li&gt;
  &lt;li&gt;
Focusing on one item at a time means the overall system is wasting capability.  &lt;/li&gt;
  &lt;li&gt;
Changing to a pull-based, rather than push-based, model allowed the system to maximize throughput and minimize waste.  &lt;/li&gt;
&lt;/ul&gt;
&lt;div class="footnotes"&gt;
  &lt;hr&gt;
  &lt;ol&gt;
    &lt;li id="fn:rK4"&gt;
&lt;a title="return to article" class="reversefootnote" href="#fnref:rK4"&gt;&amp;#x21A9;&lt;/a&gt;      &lt;p&gt;
Henrik Kniberg, &lt;em&gt;“The Resource Utilization Trap,”&lt;/em&gt; 2014, &lt;a href="https://www.youtube.com/watch?v=CostXs2p6r0&amp;ab_channel=crispagileacademy"&gt;https://www.youtube.com/watch?v=CostXs2p6r0&amp;ab_channel=crispagileacademy&lt;/a&gt;. &lt;em class="paren-em"&gt;(See &lt;a href="/references/K4"&gt;notes&lt;/a&gt;.)&lt;/em&gt;      &lt;/p&gt;
    &lt;/li&gt;
  &lt;/ol&gt;
&lt;/div&gt;
</content>
    <published>2023-11-19T14:06:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/notes/resource-utilization-must-be-less-than-full-to-allow-flow/1173,2A</id>
    <title>Resource utilization must be less than full to allow flow.</title>
    <updated>2023-11-19T22:18:24Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/notes/the-lippitt-knoster-model-for-managing-complex-change/2210,1C1"/>
    <content type="html">&lt;p&gt;
This model says you have six elements that are all desired for success, and six pitfalls when an element is missing. This list has each element and its associated pitfall:&lt;a href="#fn:rO3" id="fnref:rO3" class="footnote" title="see footnote"&gt;rO3&lt;/a&gt;&lt;/p&gt;
&lt;ul&gt;
  &lt;li&gt;
&lt;strong&gt;Vision:&lt;/strong&gt; when missing creates confusion.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Consensus:&lt;/strong&gt; becomes sabotage when missing.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Skills:&lt;/strong&gt; anxiety without.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Incentives:&lt;/strong&gt; if unclear, will meet resistance.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Resources:&lt;/strong&gt; change is frustrated when lacking.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Action plan:&lt;/strong&gt; false starts until clear.  &lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;
Where each of these are present, the change should meet success.&lt;/p&gt;
&lt;div class="footnotes"&gt;
  &lt;hr&gt;
  &lt;ol&gt;
    &lt;li id="fn:rO3"&gt;
&lt;a title="return to article" class="reversefootnote" href="#fnref:rO3"&gt;&amp;#x21A9;&lt;/a&gt;      &lt;p&gt;
Addy Osmani, &lt;em&gt;“Managing Complex Change,”&lt;/em&gt; November 7, 2022, &lt;a href="https://addyosmani.com/blog/managing-complex-change/"&gt;https://addyosmani.com/blog/managing-complex-change/&lt;/a&gt;. &lt;em class="paren-em"&gt;(See &lt;a href="/references/O3"&gt;notes&lt;/a&gt;.)&lt;/em&gt;      &lt;/p&gt;
    &lt;/li&gt;
  &lt;/ol&gt;
&lt;/div&gt;
</content>
    <published>2023-11-19T13:38:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/notes/the-lippitt-knoster-model-for-managing-complex-change/2210,1C1</id>
    <title>The Lippitt-Knoster model for managing complex change.</title>
    <updated>2023-11-19T22:18:24Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/notes/leaders-lead-change-initiatives/2210,1C"/>
    <content type="html">&lt;p&gt;
For complex change, they may turn to the &lt;a href="/notes/2210,1C1"&gt;Lippitt-Knoster model&lt;/a&gt; for identifying pitfalls in their approach.&lt;/p&gt;
</content>
    <published>2023-11-19T13:37:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/notes/leaders-lead-change-initiatives/2210,1C</id>
    <title>Leaders lead change initiatives.</title>
    <updated>2023-11-19T22:18:24Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/notes/implementing-engineering-manager-support-groups/1111,1B2"/>
    <content type="html">&lt;p&gt;
One senior leader acts as the organizer who designs the groups of 5–8 and determines who the facilitators will be.&lt;a href="#fn:rR4" id="fnref:rR4" class="footnote" title="see footnote"&gt;rR4&lt;/a&gt; They monitor and report on how the program is doing, in particular by checking in with participants. Organizers help facilitators learn from each other, and modifies the groups as needed.&lt;a href="#fn:rR5" id="fnref:rR5" class="footnote" title="see footnote"&gt;rR5&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;
Facilitators handle scheduling, help people engage discussions, coaches people on trust issues, and guides conversation toward curiosity and reframing rather than festering.&lt;a href="#fn:rR5" id="fnref:rR5" class="footnote" title="see footnote"&gt;rR5&lt;/a&gt; A typical discussion will solicit a challenge from each participant, prioritize them, and proceed to group discussion of each challenge. This requires absolute confidentiality to be established.&lt;a href="#fn:rR4" id="fnref:rR4" class="footnote" title="see footnote"&gt;rR4&lt;/a&gt; A well-run group will behave like a conspiracy to improve the organization.&lt;a href="#fn:rR6" id="fnref:rR6" class="footnote" title="see footnote"&gt;rR6&lt;/a&gt;&lt;/p&gt;
&lt;div class="footnotes"&gt;
  &lt;hr&gt;
  &lt;ol&gt;
    &lt;li id="fn:rR6"&gt;
&lt;a title="return to article" class="reversefootnote" href="#fnref:rR6"&gt;&amp;#x21A9;&lt;/a&gt;      &lt;p&gt;
Jade Rubick, &lt;em&gt;“Variations for Mini-M Management Support Groups,”&lt;/em&gt; February 10, 2023, &lt;a href="https://www.rubick.com/mini-m-variations/"&gt;https://www.rubick.com/mini-m-variations/&lt;/a&gt;. &lt;em class="paren-em"&gt;(See &lt;a href="/references/R6"&gt;notes&lt;/a&gt;.)&lt;/em&gt;      &lt;/p&gt;
    &lt;/li&gt;
    &lt;li id="fn:rR4"&gt;
&lt;a title="return to article" class="reversefootnote" href="#fnref:rR4"&gt;&amp;#x21A9;&lt;/a&gt;      &lt;p&gt;
Jade Rubick, &lt;em&gt;“Uplevel Your Managers with Mini-M Support Groups,”&lt;/em&gt; January 28, 2023, &lt;a href="https://www.rubick.com/mini-m-support-groups/"&gt;https://www.rubick.com/mini-m-support-groups/&lt;/a&gt;. &lt;em class="paren-em"&gt;(See &lt;a href="/references/R4"&gt;notes&lt;/a&gt;.)&lt;/em&gt;      &lt;/p&gt;
    &lt;/li&gt;
    &lt;li id="fn:rR5"&gt;
&lt;a title="return to article" class="reversefootnote" href="#fnref:rR5"&gt;&amp;#x21A9;&lt;/a&gt;      &lt;p&gt;
Jade Rubick, &lt;em&gt;“How to Implement Mini-M Support Groups,”&lt;/em&gt; February 2, 2023, &lt;a href="https://www.rubick.com/implementing-mini-m-support-groups/"&gt;https://www.rubick.com/implementing-mini-m-support-groups/&lt;/a&gt;. &lt;em class="paren-em"&gt;(See &lt;a href="/references/R5"&gt;notes&lt;/a&gt;.)&lt;/em&gt;      &lt;/p&gt;
    &lt;/li&gt;
    &lt;li id="fn:rR5"&gt;
&lt;a title="return to article" class="reversefootnote" href="#fnref:rR5"&gt;&amp;#x21A9;&lt;/a&gt;      &lt;p&gt;
Jade Rubick, &lt;em&gt;“How to Implement Mini-M Support Groups,”&lt;/em&gt; February 2, 2023, &lt;a href="https://www.rubick.com/implementing-mini-m-support-groups/"&gt;https://www.rubick.com/implementing-mini-m-support-groups/&lt;/a&gt;. &lt;em class="paren-em"&gt;(See &lt;a href="/references/R5"&gt;notes&lt;/a&gt;.)&lt;/em&gt;      &lt;/p&gt;
    &lt;/li&gt;
    &lt;li id="fn:rR4"&gt;
&lt;a title="return to article" class="reversefootnote" href="#fnref:rR4"&gt;&amp;#x21A9;&lt;/a&gt;      &lt;p&gt;
Jade Rubick, &lt;em&gt;“Uplevel Your Managers with Mini-M Support Groups,”&lt;/em&gt; January 28, 2023, &lt;a href="https://www.rubick.com/mini-m-support-groups/"&gt;https://www.rubick.com/mini-m-support-groups/&lt;/a&gt;. &lt;em class="paren-em"&gt;(See &lt;a href="/references/R4"&gt;notes&lt;/a&gt;.)&lt;/em&gt;      &lt;/p&gt;
    &lt;/li&gt;
  &lt;/ol&gt;
&lt;/div&gt;
</content>
    <published>2023-11-19T13:29:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/notes/implementing-engineering-manager-support-groups/1111,1B2</id>
    <title>Implementing engineering manager support groups.</title>
    <updated>2023-11-19T22:18:24Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/notes/rationale-for-forming-engineering-manager-support-groups/1111,1B1"/>
    <content type="html">&lt;p&gt;
There are a number of benefits to creating these groups:&lt;a href="#fn:rR4" id="fnref:rR4" class="footnote" title="see footnote"&gt;rR4&lt;/a&gt;&lt;/p&gt;
&lt;ul&gt;
  &lt;li&gt;
Learn from peers instead of just your manager.  &lt;/li&gt;
  &lt;li&gt;
Opportunity to grow by filling in your knowledge gaps through &lt;a href="/notes/1330,1"&gt;teaching&lt;/a&gt;.  &lt;/li&gt;
  &lt;li&gt;
Allows growth where you are rather than where a curriculum or mentor decides you should be.  &lt;/li&gt;
  &lt;li&gt;
Creates a long-lived support network.  &lt;/li&gt;
  &lt;li&gt;
Creates intentional connection and touchpoints which especially helps in a remote world.  &lt;/li&gt;
  &lt;li&gt;
Increases retention, lengthens their tenures, and attracts new talent.  &lt;/li&gt;
&lt;/ul&gt;
&lt;div class="footnotes"&gt;
  &lt;hr&gt;
  &lt;ol&gt;
    &lt;li id="fn:rR4"&gt;
&lt;a title="return to article" class="reversefootnote" href="#fnref:rR4"&gt;&amp;#x21A9;&lt;/a&gt;      &lt;p&gt;
Jade Rubick, &lt;em&gt;“Uplevel Your Managers with Mini-M Support Groups,”&lt;/em&gt; January 28, 2023, &lt;a href="https://www.rubick.com/mini-m-support-groups/"&gt;https://www.rubick.com/mini-m-support-groups/&lt;/a&gt;. &lt;em class="paren-em"&gt;(See &lt;a href="/references/R4"&gt;notes&lt;/a&gt;.)&lt;/em&gt;      &lt;/p&gt;
    &lt;/li&gt;
  &lt;/ol&gt;
&lt;/div&gt;
</content>
    <published>2023-11-19T13:26:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/notes/rationale-for-forming-engineering-manager-support-groups/1111,1B1</id>
    <title>Rationale for forming engineering manager support groups.</title>
    <updated>2023-11-19T22:18:24Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/notes/generate-ids-outside-db-for-high-scale/3122,2"/>
    <content type="html">&lt;p&gt;
At a large scale, DBs can no longer generate their own IDs. Cassandra operates at a scale where it doesn’t even have a default option since each implementation needs to be so particular. Autoincrement IDs don’t work when distributed, and UUIDs are too random to efficiently paginate through IDs when sharding. Twitter assigns an ID from a central service to a new action the moment it enters the ecosystem.&lt;a href="#fn:rC5" id="fnref:rC5" class="footnote" title="see footnote"&gt;rC5&lt;/a&gt;&lt;/p&gt;
&lt;div class="footnotes"&gt;
  &lt;hr&gt;
  &lt;ol&gt;
    &lt;li id="fn:rC5"&gt;
&lt;a title="return to article" class="reversefootnote" href="#fnref:rC5"&gt;&amp;#x21A9;&lt;/a&gt;      &lt;p&gt;
Rob Conery, &lt;em&gt;“A Better ID Generator For PostgreSQL,”&lt;/em&gt; Rob Conery, May 29, 2014, &lt;a href="http://rob.conery.io/2014/05/29/a-better-id-generator-for-postgresql/"&gt;http://rob.conery.io/2014/05/29/a-better-id-generator-for-postgresql/&lt;/a&gt;. &lt;em class="paren-em"&gt;(See &lt;a href="/references/C5"&gt;notes&lt;/a&gt;.)&lt;/em&gt;      &lt;/p&gt;
    &lt;/li&gt;
  &lt;/ol&gt;
&lt;/div&gt;
</content>
    <published>2023-11-18T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/notes/generate-ids-outside-db-for-high-scale/3122,2</id>
    <title>Generate IDs outside DB for high scale.</title>
    <updated>2023-11-19T22:18:24Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/notes/database-ids/3122"/>
    <content type="html">&lt;ul&gt;
  &lt;li&gt;
&lt;a href="/notes/3122,1"&gt;ID representation schemes&lt;/a&gt;.  &lt;/li&gt;
  &lt;li&gt;
&lt;a href="/notes/3122,2"&gt;Generate IDs outside DB for high scale&lt;/a&gt;.  &lt;/li&gt;
&lt;/ul&gt;
</content>
    <published>2023-11-18T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/notes/database-ids/3122</id>
    <title>Database IDs.</title>
    <updated>2023-11-19T22:18:24Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/notes/crockford-base32/3122,1C"/>
    <content type="html">&lt;p&gt;
0-9, A-Z, omitting I, L, O, U for human readability. Includes a check character at the end for automatic error checking.&lt;a href="#fn:rC4" id="fnref:rC4" class="footnote" title="see footnote"&gt;rC4&lt;/a&gt;&lt;/p&gt;
&lt;div class="footnotes"&gt;
  &lt;hr&gt;
  &lt;ol&gt;
    &lt;li id="fn:rC4"&gt;
&lt;a title="return to article" class="reversefootnote" href="#fnref:rC4"&gt;&amp;#x21A9;&lt;/a&gt;      &lt;p&gt;
&lt;em&gt;“How to Generate Human-Friendly Identifiers | Connect2id,”&lt;/em&gt; 2016. &lt;a href="https://connect2id.com/blog/how-to-generate-human-friendly-identifiers"&gt;https://connect2id.com/blog/how-to-generate-human-friendly-identifiers&lt;/a&gt;. &lt;em class="paren-em"&gt;(See &lt;a href="/references/C4"&gt;notes&lt;/a&gt;.)&lt;/em&gt;      &lt;/p&gt;
    &lt;/li&gt;
  &lt;/ol&gt;
&lt;/div&gt;
</content>
    <published>2023-11-18T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/notes/crockford-base32/3122,1C</id>
    <title>Crockford base32.</title>
    <updated>2023-11-19T22:18:24Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/notes/uuid/3122,1D"/>
    <content type="html">&lt;p&gt;
UUID is &lt;a href="/notes/3122,1D1"&gt;not adequate for high-security purposes&lt;/a&gt;. Because UUIDs use hexadecimal, they are quite uncompressed, especially when compared to something like base58.&lt;/p&gt;
</content>
    <published>2023-11-18T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/notes/uuid/3122,1D</id>
    <title>UUID.</title>
    <updated>2023-11-19T22:18:24Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/notes/how-long-to-guess-a-hash/112A,1"/>
    <content type="html">&lt;p&gt;
  &lt;img alt="OWASP has guessing timing equation" class="latex" src="/media/notes/112A,1.png"&gt;
&lt;/p&gt;
&lt;p&gt;
where &lt;em&gt;A&lt;/em&gt; is guesses per second, &lt;em&gt;B&lt;/em&gt; is the number of bits of randomness in the hash and &lt;em&gt;S&lt;/em&gt; is the number of sessions that are valid to guess.&lt;a href="#fn:rM8" id="fnref:rM8" class="footnote" title="see footnote"&gt;rM8&lt;/a&gt;&lt;/p&gt;
&lt;div class="footnotes"&gt;
  &lt;hr&gt;
  &lt;ol&gt;
    &lt;li id="fn:rM8"&gt;
&lt;a title="return to article" class="reversefootnote" href="#fnref:rM8"&gt;&amp;#x21A9;&lt;/a&gt;      &lt;p&gt;
Neil Madden, &lt;em&gt;“Moving Away from UUIDs,”&lt;/em&gt; Neil Madden &lt;em class="paren-em"&gt;(blog)&lt;/em&gt;, August 30, 2018, &lt;a href="https://neilmadden.blog/2018/08/30/moving-away-from-uuids/"&gt;https://neilmadden.blog/2018/08/30/moving-away-from-uuids/&lt;/a&gt;. &lt;em class="paren-em"&gt;(See &lt;a href="/references/M8"&gt;notes&lt;/a&gt;.)&lt;/em&gt;      &lt;/p&gt;
    &lt;/li&gt;
  &lt;/ol&gt;
&lt;/div&gt;
</content>
    <published>2023-11-18T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/notes/how-long-to-guess-a-hash/112A,1</id>
    <title>How long to guess a hash?</title>
    <updated>2023-11-19T22:18:24Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/notes/uuid-is-inadequate-for-high-security/3122,1D1"/>
    <content type="html">&lt;p&gt;
UUID4 has 128 bits, 122 of which are random. Bitcoin’s whole network in 2018 had a hashrate of 2&lt;sup&gt;64&lt;/sup&gt; H/S, which could have guessed a UUID in 35 minutes, according to the &lt;a href="/notes/112A,1"&gt;OWASP hash guessing timing equation&lt;/a&gt;. Contrast with 160 bits of randomness, which would take 18 million years at that hash rate.&lt;a href="#fn:rM8" id="fnref:rM8" class="footnote" title="see footnote"&gt;rM8&lt;/a&gt;&lt;/p&gt;
&lt;div class="footnotes"&gt;
  &lt;hr&gt;
  &lt;ol&gt;
    &lt;li id="fn:rM8"&gt;
&lt;a title="return to article" class="reversefootnote" href="#fnref:rM8"&gt;&amp;#x21A9;&lt;/a&gt;      &lt;p&gt;
Neil Madden, &lt;em&gt;“Moving Away from UUIDs,”&lt;/em&gt; Neil Madden &lt;em class="paren-em"&gt;(blog)&lt;/em&gt;, August 30, 2018, &lt;a href="https://neilmadden.blog/2018/08/30/moving-away-from-uuids/"&gt;https://neilmadden.blog/2018/08/30/moving-away-from-uuids/&lt;/a&gt;. &lt;em class="paren-em"&gt;(See &lt;a href="/references/M8"&gt;notes&lt;/a&gt;.)&lt;/em&gt;      &lt;/p&gt;
    &lt;/li&gt;
  &lt;/ol&gt;
&lt;/div&gt;
</content>
    <published>2023-11-18T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/notes/uuid-is-inadequate-for-high-security/3122,1D1</id>
    <title>UUID is inadequate for high security.</title>
    <updated>2023-11-19T22:18:24Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/notes/id-representations/3122,1"/>
    <content type="html">&lt;ul&gt;
  &lt;li&gt;
&lt;a href="/notes/3122,1A"&gt;base32&lt;/a&gt;.  &lt;/li&gt;
  &lt;li&gt;
&lt;a href="/notes/3122,1B"&gt;z-base-32&lt;/a&gt;.  &lt;/li&gt;
  &lt;li&gt;
&lt;a href="/notes/3122,1C"&gt;Crockford base32&lt;/a&gt;.  &lt;/li&gt;
  &lt;li&gt;
&lt;a href="/notes/3122,1D"&gt;UUID&lt;/a&gt;.  &lt;/li&gt;
  &lt;li&gt;
base64.  &lt;/li&gt;
  &lt;li&gt;
base58.  &lt;/li&gt;
&lt;/ul&gt;
</content>
    <published>2023-11-18T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/notes/id-representations/3122,1</id>
    <title>ID representations.</title>
    <updated>2023-11-19T22:18:24Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/notes/security/112A"/>
    <content type="html">&lt;ul&gt;
  &lt;li&gt;
&lt;a href="/notes/112A,1"&gt;How long to guess a hash?&lt;/a&gt;  &lt;/li&gt;
  &lt;li&gt;
&lt;a href="/notes/112A,2"&gt;Risk assessments&lt;/a&gt;.  &lt;/li&gt;
&lt;/ul&gt;
</content>
    <published>2023-11-18T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/notes/security/112A</id>
    <title>Security.</title>
    <updated>2024-04-27T23:50:46Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/notes/base32/3122,1A"/>
    <content type="html">&lt;p&gt;
A-Z 2-7 with = as a padding character. Omitted numbers are to improve human readability by removing numbers that look like letters.&lt;a href="#fn:rC4" id="fnref:rC4" class="footnote" title="see footnote"&gt;rC4&lt;/a&gt;&lt;/p&gt;
&lt;div class="footnotes"&gt;
  &lt;hr&gt;
  &lt;ol&gt;
    &lt;li id="fn:rC4"&gt;
&lt;a title="return to article" class="reversefootnote" href="#fnref:rC4"&gt;&amp;#x21A9;&lt;/a&gt;      &lt;p&gt;
&lt;em&gt;“How to Generate Human-Friendly Identifiers | Connect2id,”&lt;/em&gt; 2016. &lt;a href="https://connect2id.com/blog/how-to-generate-human-friendly-identifiers"&gt;https://connect2id.com/blog/how-to-generate-human-friendly-identifiers&lt;/a&gt;. &lt;em class="paren-em"&gt;(See &lt;a href="/references/C4"&gt;notes&lt;/a&gt;.)&lt;/em&gt;      &lt;/p&gt;
    &lt;/li&gt;
  &lt;/ol&gt;
&lt;/div&gt;
</content>
    <published>2023-11-18T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/notes/base32/3122,1A</id>
    <title>base32.</title>
    <updated>2023-11-19T22:18:24Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/notes/z-base-32/3122,1B"/>
    <content type="html">&lt;p&gt;
a-z 1-9, omitting 0, l, v, and 2. Omissions are for human readability and to eliminate potential mistakes in handwriting.&lt;a href="#fn:rC4" id="fnref:rC4" class="footnote" title="see footnote"&gt;rC4&lt;/a&gt;&lt;/p&gt;
&lt;div class="footnotes"&gt;
  &lt;hr&gt;
  &lt;ol&gt;
    &lt;li id="fn:rC4"&gt;
&lt;a title="return to article" class="reversefootnote" href="#fnref:rC4"&gt;&amp;#x21A9;&lt;/a&gt;      &lt;p&gt;
&lt;em&gt;“How to Generate Human-Friendly Identifiers | Connect2id,”&lt;/em&gt; 2016. &lt;a href="https://connect2id.com/blog/how-to-generate-human-friendly-identifiers"&gt;https://connect2id.com/blog/how-to-generate-human-friendly-identifiers&lt;/a&gt;. &lt;em class="paren-em"&gt;(See &lt;a href="/references/C4"&gt;notes&lt;/a&gt;.)&lt;/em&gt;      &lt;/p&gt;
    &lt;/li&gt;
  &lt;/ol&gt;
&lt;/div&gt;
</content>
    <published>2023-11-18T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/notes/z-base-32/3122,1B</id>
    <title>z-base-32.</title>
    <updated>2023-11-19T22:18:24Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/notes/creating-engineering-manager-support-groups/1111,1B"/>
    <content type="html">&lt;ul&gt;
  &lt;li&gt;
&lt;a href="/notes/1111,1B1"&gt;Rationale&lt;/a&gt;.  &lt;/li&gt;
  &lt;li&gt;
&lt;a href="/notes/1111,1B2"&gt;Implementation&lt;/a&gt;.  &lt;/li&gt;
&lt;/ul&gt;
</content>
    <published>2023-04-30T15:59:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/notes/creating-engineering-manager-support-groups/1111,1B</id>
    <title>Creating engineering manager support groups.</title>
    <updated>2023-11-19T22:18:24Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/notes/gustafsons-law-claims-that-efficiency-improvements-will-be-used-to-do-harder-jobs/1277,1B"/>
    <content type="html">&lt;p&gt;
This is in contrast to doing the old jobs faster.&lt;a href="#fn:rS10" id="fnref:rS10" class="footnote" title="see footnote"&gt;rS10&lt;/a&gt; The implication here is that less interesting problems are selected when constraints are tight, but aren’t necessarily the real focus from a global perspective. Put differently, there is a positive correlation between available resources for a solution space and the afinity with which the resources are addressing the fundamentals of the problem space.&lt;/p&gt;
&lt;div class="footnotes"&gt;
  &lt;hr&gt;
  &lt;ol&gt;
    &lt;li id="fn:rS10"&gt;
&lt;a title="return to article" class="reversefootnote" href="#fnref:rS10"&gt;&amp;#x21A9;&lt;/a&gt;      &lt;p&gt;
Jason Sachs, &lt;em&gt;“Zebras Hate You For No Reason: Why Amdahl’s Law Is Misleading in a World of Cats &lt;em class="paren-em"&gt;(And Maybe in Ours Too)&lt;/em&gt; - Jason Sachs,”&lt;/em&gt; February 27, 2017, &lt;a href="https://www.embeddedrelated.com/showarticle/1033.php"&gt;https://www.embeddedrelated.com/showarticle/1033.php&lt;/a&gt;. &lt;em class="paren-em"&gt;(See &lt;a href="/references/S10"&gt;notes&lt;/a&gt;.)&lt;/em&gt;      &lt;/p&gt;
    &lt;/li&gt;
  &lt;/ol&gt;
&lt;/div&gt;
</content>
    <published>2023-03-18T18:15:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/notes/gustafsons-law-claims-that-efficiency-improvements-will-be-used-to-do-harder-jobs/1277,1B</id>
    <title>Gustafson’s Law claims that efficiency improvements will be used to do harder jobs.</title>
    <updated>2023-03-19T00:18:48Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/notes/amdahls-law-computes-how-much-an-improvement-will-speed-up-a-system/1277,1A"/>
    <content type="html">&lt;p&gt;
It can be written as:&lt;/p&gt;
&lt;p&gt;
  &lt;img alt="One divided by f over N plus 1 minus f" class="latex" src="/media/notes/1277,1A.png"&gt;
&lt;/p&gt;
&lt;p&gt;
with &lt;em&gt;f&lt;/em&gt; meaning the fraction of the work process being improved and &lt;em&gt;N&lt;/em&gt; referring to the speed multiplier for that subprocess. In its original context, &lt;em&gt;N&lt;/em&gt; meant the number of parallel workers and 1 — &lt;em&gt;f&lt;/em&gt; represented the remaining serial work. Thus, this equation describes an improvement made to a part of a system, but not the whole system.&lt;a href="#fn:rS10" id="fnref:rS10" class="footnote" title="see footnote"&gt;rS10&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;
&lt;a href="/notes/1277,1B"&gt;Gustafson’s Law&lt;/a&gt; claims this view is myopic, and that improvements to efficiency usually result in more interesting types of work rather than more efficient conduct of the old work.&lt;/p&gt;
&lt;div class="footnotes"&gt;
  &lt;hr&gt;
  &lt;ol&gt;
    &lt;li id="fn:rS10"&gt;
&lt;a title="return to article" class="reversefootnote" href="#fnref:rS10"&gt;&amp;#x21A9;&lt;/a&gt;      &lt;p&gt;
Jason Sachs, &lt;em&gt;“Zebras Hate You For No Reason: Why Amdahl’s Law Is Misleading in a World of Cats &lt;em class="paren-em"&gt;(And Maybe in Ours Too)&lt;/em&gt; - Jason Sachs,”&lt;/em&gt; February 27, 2017, &lt;a href="https://www.embeddedrelated.com/showarticle/1033.php"&gt;https://www.embeddedrelated.com/showarticle/1033.php&lt;/a&gt;. &lt;em class="paren-em"&gt;(See &lt;a href="/references/S10"&gt;notes&lt;/a&gt;.)&lt;/em&gt;      &lt;/p&gt;
    &lt;/li&gt;
  &lt;/ol&gt;
&lt;/div&gt;
</content>
    <published>2023-03-18T18:10:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/notes/amdahls-law-computes-how-much-an-improvement-will-speed-up-a-system/1277,1A</id>
    <title>Amdahl’s Law computes how much an improvement will speed up a system.</title>
    <updated>2023-03-19T00:18:48Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/notes/stages-of-insurgency/2311,2"/>
    <content type="html">&lt;p&gt;
According to CIA field manuals on insurgency, there are three main stages:&lt;a href="#fn:rO2" id="fnref:rO2" class="footnote" title="see footnote"&gt;rO2&lt;/a&gt;&lt;/p&gt;
&lt;ul&gt;
  &lt;li&gt;
&lt;strong&gt;Pre-insurgency:&lt;/strong&gt; Groups form around specific grievances and begin growing their numbers.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Incipient conflict stage:&lt;/strong&gt; These groups start building militias by acquiring weapons and training. Infiltration of police and military provides further training and intel. The populace and government risk delayed action by not realizing that initial attacks are coordinated by insurgent groups.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Open insurgency:&lt;/strong&gt; The groups engage open warfare.  &lt;/li&gt;
&lt;/ul&gt;
&lt;div class="footnotes"&gt;
  &lt;hr&gt;
  &lt;ol&gt;
    &lt;li id="fn:rO2"&gt;
&lt;a title="return to article" class="reversefootnote" href="#fnref:rO2"&gt;&amp;#x21A9;&lt;/a&gt;      &lt;p&gt;
KK Ottesen, &lt;em&gt;“‘They Are Preparing for War’: An Expert on Civil Wars Discusses Where Political Extremists Are Taking This Country,”&lt;/em&gt; Washington Post, March 8, 2022, &lt;a href="https://www.washingtonpost.com/magazine/2022/03/08/they-are-preparing-war-an-expert-civil-wars-discusses-where-political-extremists-are-taking-this-country/"&gt;https://www.washingtonpost.com/magazine/2022/03/08/they-are-preparing-war-an-expert-civil-wars-discusses-where-political-extremists-are-taking-this-country/&lt;/a&gt;. &lt;em class="paren-em"&gt;(See &lt;a href="/references/O2"&gt;notes&lt;/a&gt;.)&lt;/em&gt;      &lt;/p&gt;
    &lt;/li&gt;
  &lt;/ol&gt;
&lt;/div&gt;
</content>
    <published>2023-03-17T17:23:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/notes/stages-of-insurgency/2311,2</id>
    <title>Stages of insurgency.</title>
    <updated>2023-03-17T23:26:30Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/notes/precursors-to-civil-war/2311,1"/>
    <content type="html">&lt;p&gt;
According to a study commissioned by the CIA, there are two highly predictive factors that lead to civil war:&lt;a href="#fn:rO2" id="fnref:rO2" class="footnote" title="see footnote"&gt;rO2&lt;/a&gt;&lt;/p&gt;
&lt;ul&gt;
  &lt;li&gt;
&lt;strong&gt;Anocracy:&lt;/strong&gt; A society that is straddling authoritarianism and democracy likely has a government made of weakened institutions and is less able to enforce policy.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Identity-based factions:&lt;/strong&gt; Rather than societal friction stemming mostly from political affiliations, society is focusing on identity such as religion, race, or ethnicity.  &lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;
Countries ranking highly in these two factors have ~4% risk of breaking into civil war per year, which has a compounding effect over time.&lt;/p&gt;
&lt;div class="footnotes"&gt;
  &lt;hr&gt;
  &lt;ol&gt;
    &lt;li id="fn:rO2"&gt;
&lt;a title="return to article" class="reversefootnote" href="#fnref:rO2"&gt;&amp;#x21A9;&lt;/a&gt;      &lt;p&gt;
KK Ottesen, &lt;em&gt;“‘They Are Preparing for War’: An Expert on Civil Wars Discusses Where Political Extremists Are Taking This Country,”&lt;/em&gt; Washington Post, March 8, 2022, &lt;a href="https://www.washingtonpost.com/magazine/2022/03/08/they-are-preparing-war-an-expert-civil-wars-discusses-where-political-extremists-are-taking-this-country/"&gt;https://www.washingtonpost.com/magazine/2022/03/08/they-are-preparing-war-an-expert-civil-wars-discusses-where-political-extremists-are-taking-this-country/&lt;/a&gt;. &lt;em class="paren-em"&gt;(See &lt;a href="/references/O2"&gt;notes&lt;/a&gt;.)&lt;/em&gt;      &lt;/p&gt;
    &lt;/li&gt;
  &lt;/ol&gt;
&lt;/div&gt;
</content>
    <published>2023-03-17T17:20:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/notes/precursors-to-civil-war/2311,1</id>
    <title>Precursors to civil war.</title>
    <updated>2023-03-17T23:26:30Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/notes/internal-conflict/2311"/>
    <content type="html">&lt;ul&gt;
  &lt;li&gt;
&lt;a href="/notes/2311,1"&gt;Precursors to civil war&lt;/a&gt;.  &lt;/li&gt;
  &lt;li&gt;
&lt;a href="/notes/2311,2"&gt;Stages of insurgency&lt;/a&gt;.  &lt;/li&gt;
&lt;/ul&gt;
</content>
    <published>2023-03-17T17:19:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/notes/internal-conflict/2311</id>
    <title>Internal conflict.</title>
    <updated>2023-03-17T23:26:30Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/notes/peace-and-conflict-studies/2310"/>
    <content type="html">&lt;ul&gt;
  &lt;li&gt;
&lt;a href="/notes/2311"&gt;Internal conflict&lt;/a&gt;.  &lt;/li&gt;
&lt;/ul&gt;
</content>
    <published>2023-03-17T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/notes/peace-and-conflict-studies/2310</id>
    <title>Peace and conflict studies.</title>
    <updated>2023-03-17T23:26:30Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/notes/properties-not-necessary-to-consciousness/2152,2A"/>
    <content type="html">&lt;p&gt;
A materialist view suggests a few non-requirements:&lt;a href="#fn:rS9" id="fnref:rS9" class="footnote" title="see footnote"&gt;rS9&lt;/a&gt;&lt;/p&gt;
&lt;ul&gt;
  &lt;li&gt;
&lt;strong&gt;Contiguousness:&lt;/strong&gt; Presumably, components can communicate at a distance.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;No conscious sub-components:&lt;/strong&gt; There’s no reason part of the conscious system cannot have its own conscious properties.  &lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Procreation:&lt;/strong&gt; Nothing about the properties of consciousness require procreation to function.  &lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;
Contrast with &lt;a href="/notes/2152,2"&gt;necessary properties&lt;/a&gt;.&lt;/p&gt;
&lt;div class="footnotes"&gt;
  &lt;hr&gt;
  &lt;ol&gt;
    &lt;li id="fn:rS9"&gt;
&lt;a title="return to article" class="reversefootnote" href="#fnref:rS9"&gt;&amp;#x21A9;&lt;/a&gt;      &lt;p&gt;
Eric Schwitzgebel, &lt;em&gt;“If Materialism Is True, the United States Is Probably Conscious,”&lt;/em&gt; Philosophical Studies, no. 172 &lt;em class="paren-em"&gt;(2015)&lt;/em&gt;: 1697–1721. &lt;em class="paren-em"&gt;(See &lt;a href="/references/S9"&gt;notes&lt;/a&gt;.)&lt;/em&gt;      &lt;/p&gt;
    &lt;/li&gt;
  &lt;/ol&gt;
&lt;/div&gt;
</content>
    <published>2023-03-07T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/notes/properties-not-necessary-to-consciousness/2152,2A</id>
    <title>Properties not necessary to consciousness.</title>
    <updated>2023-03-17T22:35:49Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/notes/properties-of-consciousness/2152,2"/>
    <content type="html">&lt;p&gt;
A materialist view suggests minimal requirements:&lt;a href="#fn:rS9" id="fnref:rS9" class="footnote" title="see footnote"&gt;rS9&lt;/a&gt;&lt;/p&gt;
&lt;ul&gt;
  &lt;li&gt;
Organization of information to coordinate action  &lt;/li&gt;
  &lt;li&gt;
Responsiveness toward certain goals  &lt;/li&gt;
  &lt;li&gt;
Self-monitoring of some sort to maintain homeostasis  &lt;/li&gt;
  &lt;li&gt;
Phenomonology &lt;em class="paren-em"&gt;(what it’s likes to be oneself)&lt;/em&gt;  &lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;
Other properties seem necessary, &lt;a href="/notes/2152,2A"&gt;but aren’t&lt;/a&gt;.&lt;/p&gt;
&lt;div class="footnotes"&gt;
  &lt;hr&gt;
  &lt;ol&gt;
    &lt;li id="fn:rS9"&gt;
&lt;a title="return to article" class="reversefootnote" href="#fnref:rS9"&gt;&amp;#x21A9;&lt;/a&gt;      &lt;p&gt;
Eric Schwitzgebel, &lt;em&gt;“If Materialism Is True, the United States Is Probably Conscious,”&lt;/em&gt; Philosophical Studies, no. 172 &lt;em class="paren-em"&gt;(2015)&lt;/em&gt;: 1697–1721. &lt;em class="paren-em"&gt;(See &lt;a href="/references/S9"&gt;notes&lt;/a&gt;.)&lt;/em&gt;      &lt;/p&gt;
    &lt;/li&gt;
  &lt;/ol&gt;
&lt;/div&gt;
</content>
    <published>2023-03-07T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/notes/properties-of-consciousness/2152,2</id>
    <title>Properties of consciousness.</title>
    <updated>2023-03-17T22:36:15Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/notes/cunninghams-law/1310,1"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
The best way to get the right answer on the internet is not to ask a question; it’s to post the wrong answer.  &lt;/p&gt;
  &lt;p&gt;
—Steve McGeady, after Ward Cunningham, inventor of wikis.&lt;a href="#fn:rF4" id="fnref:rF4" class="footnote" title="see footnote"&gt;rF4&lt;/a&gt;  &lt;/p&gt;
&lt;/blockquote&gt;
&lt;div class="footnotes"&gt;
  &lt;hr&gt;
  &lt;ol&gt;
    &lt;li id="fn:rF4"&gt;
&lt;a title="return to article" class="reversefootnote" href="#fnref:rF4"&gt;&amp;#x21A9;&lt;/a&gt;      &lt;p&gt;
Nancy Friedman, &lt;em&gt;“Word of the Week: Cunningham’s Law,”&lt;/em&gt; Fritinancy, May 31, 2010, &lt;a href="https://nancyfriedman.typepad.com/away_with_words/2010/05/word-of-the-week-cunninghams-law.html"&gt;https://nancyfriedman.typepad.com/away_with_words/2010/05/word-of-the-week-cunninghams-law.html&lt;/a&gt;. &lt;em class="paren-em"&gt;(See &lt;a href="/references/F4"&gt;notes&lt;/a&gt;.)&lt;/em&gt;      &lt;/p&gt;
    &lt;/li&gt;
  &lt;/ol&gt;
&lt;/div&gt;
</content>
    <published>2023-03-06T15:14:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/notes/cunninghams-law/1310,1</id>
    <title>Cunningham’s Law.</title>
    <updated>2023-03-06T22:40:08Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/notes/listing-tables-in-schemas/3121,2"/>
    <content type="html">&lt;p&gt;
Schemas are different than databases. In Redshift and Postgres, schema tables can be listed as &lt;code class="inline"&gt;\dt schemaname.*&lt;/code&gt;&lt;/p&gt;
</content>
    <published>2023-03-06T15:13:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/notes/listing-tables-in-schemas/3121,2</id>
    <title>Listing tables in schemas.</title>
    <updated>2023-03-06T22:40:08Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/notes/sword-of-damocles/4501"/>
    <content type="html">&lt;p&gt;
As told by the Roman philosopher Cicero in 45 BC, Dionysius II was a tyrant over Syracuse around 400 BC. He had many riches and much power, but had created many enemies in getting there. He was deeply unhappy, worried continuously about the threat of assassination. He lived through this fear in every way.&lt;/p&gt;
&lt;p&gt;
Damocles served the court, and in one occasion upset the tyrant by expounding on how successful, rich, and happy Dionysius must be. Dionysius offered to allow Damocles to sample his life. He arranged for a throne and servants to shower Damocles with luxuries. As Damocles enjoyed these gifts, he came to notice a sword hanging above his head, suspended only by a strand of horsehair. He was thus unable to continue enjoying his wealth, threatened by death at the slightest change or accident. He begged to be released from the throne.&lt;a href="#fn:rA5" id="fnref:rA5" class="footnote" title="see footnote"&gt;rA5&lt;/a&gt;&lt;/p&gt;
&lt;div class="footnotes"&gt;
  &lt;hr&gt;
  &lt;ol&gt;
    &lt;li id="fn:rA5"&gt;
&lt;a title="return to article" class="reversefootnote" href="#fnref:rA5"&gt;&amp;#x21A9;&lt;/a&gt;      &lt;p&gt;
Evan Andrews, &lt;em&gt;“What Was the Sword of Damocles?,”&lt;/em&gt; HISTORY, February 17, 2016, &lt;a href="https://www.history.com/news/what-was-the-sword-of-damocles"&gt;https://www.history.com/news/what-was-the-sword-of-damocles&lt;/a&gt;. &lt;em class="paren-em"&gt;(See &lt;a href="/references/A5"&gt;notes&lt;/a&gt;.)&lt;/em&gt;      &lt;/p&gt;
    &lt;/li&gt;
  &lt;/ol&gt;
&lt;/div&gt;
</content>
    <published>2023-03-06T15:09:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/notes/sword-of-damocles/4501</id>
    <title>Sword of Damocles.</title>
    <updated>2023-03-06T22:40:08Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/notes/mythology-and-folklore/4500"/>
    <content type="html">&lt;ul&gt;
  &lt;li&gt;
&lt;a href="/notes/4501"&gt;The Sword of Damocles&lt;/a&gt;.  &lt;/li&gt;
&lt;/ul&gt;
</content>
    <published>2023-03-06T15:08:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/notes/mythology-and-folklore/4500</id>
    <title>Mythology and folklore.</title>
    <updated>2023-03-06T22:40:08Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/notes/history/4400"/>
    <content type="html"></content>
    <published>2023-03-06T15:08:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/notes/history/4400</id>
    <title>History.</title>
    <updated>2023-03-06T22:40:08Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/notes/linguistic-relativity-or-the-sapir-whorf-hypothesis/4310,1"/>
    <content type="html">&lt;p&gt;
Simply put, language shapes the way we think and what we think about. Reality and our perceptions of reality are clearly different things, and the way we describe reality shapes what we are capable of noticing about it. Grammar prescribes a process for breaking reality into descriptions, so grammar itself restricts what we are capable of considering.&lt;a href="#fn:rH4" id="fnref:rH4" class="footnote" title="see footnote"&gt;rH4&lt;/a&gt;&lt;/p&gt;
&lt;div class="footnotes"&gt;
  &lt;hr&gt;
  &lt;ol&gt;
    &lt;li id="fn:rH4"&gt;
&lt;a title="return to article" class="reversefootnote" href="#fnref:rH4"&gt;&amp;#x21A9;&lt;/a&gt;      &lt;p&gt;
Basel Al-Sheikh Hussein, &lt;em&gt;“The Sapir-Whorf Hypothesis Today,”&lt;/em&gt; Theory and Practice in Language Studies 2, no. 3 &lt;em class="paren-em"&gt;(March 1, 2012)&lt;/em&gt;: 642–46, &lt;a href="https://doi.org/10.4304/tpls.2.3.642-646"&gt;https://doi.org/10.4304/tpls.2.3.642-646&lt;/a&gt;. &lt;em class="paren-em"&gt;(See &lt;a href="/references/H4"&gt;notes&lt;/a&gt;.)&lt;/em&gt;      &lt;/p&gt;
    &lt;/li&gt;
  &lt;/ol&gt;
&lt;/div&gt;
</content>
    <published>2023-03-06T15:06:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/notes/linguistic-relativity-or-the-sapir-whorf-hypothesis/4310,1</id>
    <title>Linguistic relativity, or the Sapir-Whorf Hypothesis.</title>
    <updated>2023-03-06T22:40:08Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/notes/linguistics/4310"/>
    <content type="html">&lt;ul&gt;
  &lt;li&gt;
&lt;a href="/notes/4310,1"&gt;Linguistic relativity&lt;/a&gt;.  &lt;/li&gt;
  &lt;li&gt;
&lt;a href="/notes/4311"&gt;Grammar &amp; parts of speech&lt;/a&gt;.  &lt;/li&gt;
&lt;/ul&gt;
</content>
    <published>2023-03-06T15:05:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/notes/linguistics/4310</id>
    <title>Linguistics.</title>
    <updated>2023-11-19T22:18:24Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/K17"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Henrik Karlsson, &lt;em&gt;“Advice for a Friend Who Wants to Start a Blog,”&lt;/em&gt; January 17, 2023, &lt;a href="https://www.henrikkarlsson.xyz/p/start-a-blog"&gt;https://www.henrikkarlsson.xyz/p/start-a-blog&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
&lt;h2&gt;
Reading notes.&lt;/h2&gt;
&lt;p&gt;
Be yourself, integrated, and ignore what others are doing. Weird combinations of personal interests are way more interesting than just one thing. Develop your own style through embracing quirks. Chat style is more relatable than official written article style. Write for your own purposes, especially in the beginning, by writing to think things through more deeply. Writing to someone specific encourages your emotion and personality to shine because you’re trying to say things that resonate. But the writing has to be well-formed: the learning and organizing comes before the writing so the writing can be off the cuff. Simple formats to try:&lt;/p&gt;
&lt;ul&gt;
  &lt;li&gt;
here’s a problem and how I solved it  &lt;/li&gt;
  &lt;li&gt;
here are reflections on a problem I want to solve  &lt;/li&gt;
  &lt;li&gt;
a list of whatever  &lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;
Having a problem to solve tells the reader what they get for their work. For each piece in the first 100, work to improve one detail:&lt;/p&gt;
&lt;ul&gt;
  &lt;li&gt;
title  &lt;/li&gt;
  &lt;li&gt;
structure  &lt;/li&gt;
  &lt;li&gt;
ending  &lt;/li&gt;
  &lt;li&gt;
descriptions  &lt;/li&gt;
  &lt;li&gt;
dialogue  &lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;
Gotta work outside of comfort zone to grow, but also have to finish stuff. Deadlines can help with this. Use prompts to start.  If you don’t like what you get, start over, done try to edit it to good. Edit, but not too much. Cut the weakest 20% of the draft. There’s no audience to optimize for, let them build from what you find you want to do.&lt;/p&gt;
</content>
    <published>2025-02-01T15:20:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/K17</id>
    <title>Henrik Karlsson, Starting a Blog.</title>
    <updated>2025-02-01T22:20:50Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/B19"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Vicki Boykis, &lt;em&gt;“On the Team as a System,”&lt;/em&gt; September 10, 2022, &lt;a href="https://veekaybee.github.io/2022/09/10/on-the-team-as-a-system/"&gt;https://veekaybee.github.io/2022/09/10/on-the-team-as-a-system/&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
&lt;h2&gt;
Reading notes.&lt;/h2&gt;
&lt;p&gt;
Software quality comes from systems that value quality, not individuals.&lt;/p&gt;
&lt;p&gt;
Good management starts with the understanding that there is a theoretically ideal system design, one that is completely efficient and produces perfect work output. From this system, you can make tradeoffs to make it more realistic. You can add code reviews to slow down the system but increase maintainability. Carefully make these tradeoffs, though, to make sure the deficiency does not outweigh the benefit.&lt;/p&gt;
&lt;p&gt;
Bad management is the adoption of tools and practices without understanding the tradeoffs they create. Breaking up teams introduces queues into the process flow while optimizing comms within it. If this is done without understanding the tradeoff is a problem.&lt;/p&gt;
&lt;p&gt;
Good teams have effective process. What is missing in a system is just as important has what it has. Slack in work as in kanban adds efficiency. 1:1s are for providing regular feedback, but also puts gaps in the flow of feedback. Takes away the ability to have uninterrupted work. Have to interpret what is being removed and gained when making these changes.&lt;/p&gt;
</content>
    <published>2025-02-01T15:19:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/B19</id>
    <title>Vicki Boykis, On the Team as a System.</title>
    <updated>2025-02-01T22:19:54Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/D20"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Sam Thomas Davies, &lt;em&gt;“Super Thinking by Gabriel Weinberg and Lauren McCann,”&lt;/em&gt; Sam Thomas Davies &lt;em class="paren-em"&gt;(blog)&lt;/em&gt;, accessed January 25, 2025, &lt;a href="https://www.samuelthomasdavies.com/book-summaries/psychology/super-thinking/"&gt;https://www.samuelthomasdavies.com/book-summaries/psychology/super-thinking/&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
&lt;h2&gt;
Reading notes.&lt;/h2&gt;
&lt;p&gt;
This book mostly sounds like a compilation of notes from Thinking in Systems, Essentialism, Your Brain at Work, and Liminal Thinking.&lt;/p&gt;
&lt;p&gt;
Being wrong less:&lt;/p&gt;
&lt;p&gt;
Thinking things through from first principles is the best way to be wrong less and to learn new things rapidly. First principles are assumptions that need to be tested in the real world. Use Ockham’s Razor to strip away any unnecessary dependencies.&lt;/p&gt;
&lt;p&gt;
Traps:&lt;/p&gt;
&lt;ul&gt;
  &lt;li&gt;
Framing: Stuck in one frame of reference. Consider other frames when an idea is presented.  &lt;/li&gt;
  &lt;li&gt;
Nudging: Influenced by specific words or other cues, unrelated to the idea itself  &lt;/li&gt;
  &lt;li&gt;
Anchoring: Over-reliance on first impression  &lt;/li&gt;
  &lt;li&gt;
Availability bias: Distortions of objectivity/model of the big picture created by overvaluing recent information  &lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;
To be wrong less about other people, imagine the situation from an impartial observer’s standpoint. Similarly, try to get into an understanding where you can represent the other PoV.&lt;/p&gt;
&lt;p&gt;
Most Respectful Interpretation MRI is giving benefit of the doubt, choosing to interpret something as favorably as possible.&lt;/p&gt;
&lt;p&gt;
Hanlon’s Razor suggests carelessness creates negative experience more than malice.&lt;/p&gt;
&lt;p&gt;
Fundamental Attribution Error is the interpretation that others’ behaviors come from their fundamental motivation rather than external factors. The above strategies help mediate this.&lt;/p&gt;
&lt;p&gt;
Veil of ignorance: pretending our perspective doesn’t exist when considering how society should be organized&lt;/p&gt;
&lt;p&gt;
Confirmation bias: using new information to reaffirm existing beliefs.&lt;/p&gt;
&lt;p&gt;
Backfire effect: tendency to dig into an incorrect position when presented with contrary evidence.&lt;/p&gt;
&lt;p&gt;
Disconfirmation bias: holding new information to unreasonably high standards that existing beliefs don’t have to clear&lt;/p&gt;
&lt;p&gt;
Cognitive dissonance: Discomfort cause by possessing two contradictory ideas at the same time. Reinforcement mechanism for confirmation bias.&lt;/p&gt;
&lt;p&gt;
Real trick to being wrong less: work to accept new information, paradigms.&lt;/p&gt;
&lt;p&gt;
Models to help do that:&lt;/p&gt;
&lt;ul&gt;
  &lt;li&gt;
Thinking gray: Get out of black and white thinking, it doesn’t work  &lt;/li&gt;
  &lt;li&gt;
Devil’s advocate: Write out opposing rationale. Include opposition when making decisions.    &lt;ul&gt;
      &lt;li&gt;
Helps reduce Optimistic Probability Bias, confusing desire for something to be true with the likelihood it is      &lt;/li&gt;
    &lt;/ul&gt;
  &lt;/li&gt;
&lt;/ul&gt;
</content>
    <published>2025-01-26T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/D20</id>
    <title>Sam Thomas Davies, Super Thinking.</title>
    <updated>2025-01-30T17:34:34Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/A11"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Daniel Aronson, &lt;em&gt;“Step-By-Step Stocks and Flows: Converting From Causal Loop Diagrams,”&lt;/em&gt; January 17, 2016, &lt;a href="https://thesystemsthinker.com/step-by-step-stocks-and-flows-converting-from-causal-loop-diagrams/"&gt;https://thesystemsthinker.com/step-by-step-stocks-and-flows-converting-from-causal-loop-diagrams/&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
&lt;h2&gt;
Reading notes.&lt;/h2&gt;
&lt;p&gt;
To convert Causal Loop Diagrams to Stock and Flow diagrams:&lt;/p&gt;
&lt;ol&gt;
  &lt;li&gt;
Identify the units used for each variable in the CLD. Makes the diagram more precise, starts identifying where time is a variable &lt;em class="paren-em"&gt;(therefore insinuating a flow)&lt;/em&gt;, and points out missing variables.  &lt;/li&gt;
  &lt;li&gt;
Identify stocks. The prior step may have noted flows, which indicate stocks. &lt;em class="paren-em"&gt;(Note that not all time-involved variables are definitely flows.)&lt;/em&gt; Consider whether there are additional stocks to involve. &lt;em class="paren-em"&gt;(Stocks are drawn as rectangles)&lt;/em&gt;  &lt;/li&gt;
  &lt;li&gt;
Identify flows. What increases a stock? Decreases it? Every one of these processes is a flow. &lt;em class="paren-em"&gt;(Flows are drawn as fat arrows with a circle indicating the activity with a valve connected to it)&lt;/em&gt;  &lt;/li&gt;
  &lt;li&gt;
Connect stocks and flows. All decreasers are outflows, all increasers are inflows. A stock may need to be connected to a flow if the stock’s size provides information to modulate the flow—information links are line arrows.  &lt;/li&gt;
  &lt;li&gt;
Add and link remaining variables. Anything left over is either a constant &lt;em class="paren-em"&gt;(like market size)&lt;/em&gt; or a calculation &lt;em class="paren-em"&gt;(like % market untapped)&lt;/em&gt;. These variables can only influence each other and flows. If it seems like they are influencing a stock, then they might actually be a full-on flow and should be reconsidered. Variables are just circles connected by information arrows.  &lt;/li&gt;
  &lt;li&gt;
Check units. Make sure they all line up and use the same time increments.  &lt;/li&gt;
  &lt;li&gt;
Add any remaining variables. The goal here is to get to a calculable model, so any missing ratios etc need to be added to get there.  &lt;/li&gt;
&lt;/ol&gt;
</content>
    <published>2025-01-26T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/A11</id>
    <title>Daniel Aronson, Stocks and Flows: Converting From Causal Loop Diagrams.</title>
    <updated>2025-01-26T22:51:15Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/R25"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Jade Rubick, &lt;em&gt;“Velocity Role 2 - the Mole,”&lt;/em&gt; January 23, 2024, &lt;a href="https://www.rubick.com/velocity-role-mole/"&gt;https://www.rubick.com/velocity-role-mole/&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
&lt;h2&gt;
Reading notes.&lt;/h2&gt;
&lt;p&gt;
The mole: Spying on the org to bring back intel&lt;/p&gt;
&lt;p&gt;
Goal is to coordinate with the org better. Absorb as much information and comms as possible. They connect the dots for less informed/attentive folk. Knows who knows what.&lt;/p&gt;
&lt;p&gt;
Moles ask who would be the best to talk to about things, and which stakeholders need more information.&lt;/p&gt;
&lt;p&gt;
Risk becoming gossips or preferring social interaction than the actual organizational goals. Shouldn’t undermine trust.&lt;/p&gt;
</content>
    <published>2025-01-25T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/R25</id>
    <title>Jade Rubick, Velocity Role 2 - the Mole.</title>
    <updated>2025-01-25T19:46:57Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/R23"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Jeff Rosenthal and Molly Rosen, &lt;em&gt;“How to Lead Across a Siloed Organization,”&lt;/em&gt; Harvard Business Review, January 11, 2024, &lt;a href="https://hbr.org/2024/01/how-to-lead-across-a-siloed-organization"&gt;https://hbr.org/2024/01/how-to-lead-across-a-siloed-organization&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
&lt;h2&gt;
Reading notes.&lt;/h2&gt;
&lt;p&gt;
It’s a common problem for CEOs to not know how to get their executive teams to work together, with each executive thinking only about their own function.&lt;/p&gt;
&lt;p&gt;
Sampling VPs+ who are able to successfully navigate their organizations without harming their relationships, clear trends emerged. They have “lateral agility”, spending as much time with their teams as with the rest of the organization—able to focus on their own objectives while driving forward the objectives of others.&lt;/p&gt;
&lt;p&gt;
3 traits:&lt;/p&gt;
&lt;ol&gt;
  &lt;li&gt;
Expanded mindsets: Humility in choosing priorities, putting the entire organization ahead of their own functions. View their job as locating expertise around the organization, weaving it together.  &lt;/li&gt;
  &lt;li&gt;
Connective skills: Curiosity and empathy lead to trust and symbiosis. Interest in motivations and constraints of peers. Negotiation skills seeking for everyone to win.  &lt;/li&gt;
  &lt;li&gt;
Innovative practices: Everyone brings sketches, no one brings plans that didn’t involve others—never about getting others to take your ideas. Prioritize building relationships with the most important participants.  &lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;
To improve:&lt;/p&gt;
&lt;ul&gt;
  &lt;li&gt;
Figure out 5-8 most important stakeholders and decide whether enough time is spent with them  &lt;/li&gt;
  &lt;li&gt;
Is time spend going laterally or just vertically?  &lt;/li&gt;
  &lt;li&gt;
Learn about the day-to-day lives of people around the organization  &lt;/li&gt;
&lt;/ul&gt;
</content>
    <published>2025-01-25T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/R23</id>
    <title>Jeff Rosenthal and Molly Rosen, How to Lead Across a Siloed Organization.</title>
    <updated>2025-01-25T19:44:47Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/R27"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Jade Rubick, &lt;em&gt;“Velocity Role 4 - the Nowist,”&lt;/em&gt; January 25, 2024, &lt;a href="https://www.rubick.com/velocity-role-nowist/"&gt;https://www.rubick.com/velocity-role-nowist/&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
&lt;h2&gt;
Reading notes.&lt;/h2&gt;
&lt;p&gt;
The Nowist: Strives to remove waiting from the system. Doesn’t wait for communication, questions the need for meetings. Regards deadlines as not the goal but the failure line. There is always a way to make progress without blockers stopping movement. Seeks expertise rather than approval, broadcasting intentions instead of waiting for confirmation. Senses the way a decision will go and gets a head start on following it, risking a bit of wasted work if the guess was wrong. Needs immediate goals to work toward.&lt;/p&gt;
&lt;p&gt;
Risks creating untenable goals/expectations if this is a leader. Need to pay extra attention to the needs and constraints of people who are introducing slowness.&lt;/p&gt;
</content>
    <published>2025-01-25T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/R27</id>
    <title>Jade Rubick, Velocity Role 4 - the Nowist.</title>
    <updated>2025-01-25T19:48:11Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/R24"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Jade Rubick, &lt;em&gt;“Velocity Role 1 - the Subtractionist,”&lt;/em&gt; January 22, 2024, &lt;a href="https://www.rubick.com/velocity-role-subtractionist/"&gt;https://www.rubick.com/velocity-role-subtractionist/&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
&lt;h2&gt;
Reading notes.&lt;/h2&gt;
&lt;p&gt;
Mindset to create velocity in a team: Subtractionism. Simplification of everything.&lt;/p&gt;
&lt;p&gt;
Distill complexity into simple representations. Focus discussions on the most important aspects. Prevent scope creep. Essentialism.&lt;/p&gt;
&lt;p&gt;
Risks cutting too deep, simplifying too far, or completely ignoring secondary improvements.&lt;/p&gt;
&lt;p&gt;
How to integrate velocity roles on a team:&lt;/p&gt;
&lt;ol&gt;
  &lt;li&gt;
Have each member choose one role. Keep it secret.  &lt;/li&gt;
  &lt;li&gt;
Ask in a month who can guess which role someone chose.  &lt;/li&gt;
  &lt;li&gt;
Ask everyone to try on a new role in the following month.  &lt;/li&gt;
  &lt;li&gt;
Discuss learnings along the way.  &lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;
As an individual, monitor the activity of someone who has this skill to learn from them. If there are no role models, consider becoming the trait’s representative.&lt;/p&gt;
</content>
    <published>2025-01-25T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/R24</id>
    <title>Jade Rubick, Velocity Role 1 - the Subtractionist.</title>
    <updated>2025-01-25T19:46:20Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/R26"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Jade Rubick, &lt;em&gt;“Velocity Role 3 - the Dodger,”&lt;/em&gt; January 24, 2024, &lt;a href="https://www.rubick.com/velocity-role-dodger/"&gt;https://www.rubick.com/velocity-role-dodger/&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
&lt;h2&gt;
Reading notes.&lt;/h2&gt;
&lt;p&gt;
The dodger: foresees and proactively resolves blockers. Liminal role for sure, asking if an assumption or constraint is even true/real. Facilitate others. Develops multiple solutions to problems.&lt;/p&gt;
&lt;p&gt;
Risks avoiding more permanent solutions upstream through avoidance, creating only temporary and incomplete solutions.&lt;/p&gt;
</content>
    <published>2025-01-25T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/R26</id>
    <title>Jade Rubick, Velocity Role 3 - the Dodger.</title>
    <updated>2025-01-25T19:47:45Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/M15"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Sheril Mathews, &lt;em&gt;“Frustration Tolerance: An Essential for Surviving Large Orgs,”&lt;/em&gt; January 16, 2025, &lt;a href="https://www.leadingsapiens.com/frustration-tolerance/"&gt;https://www.leadingsapiens.com/frustration-tolerance/&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
&lt;h2&gt;
Reading notes.&lt;/h2&gt;
&lt;p&gt;
Frustration tolerance is what separates people who can be successful in a large organization from those who can’t hack it. This isn’t patience exactly, it includes ability to focus on the goal while navigating other people.&lt;/p&gt;
&lt;p&gt;
Psychological definition of frustration is an interfered goal and subsequent dissatisfaction. Impacted by the language of expectation vs reality.&lt;/p&gt;
&lt;p&gt;
Those with it expect things to go poorly and prepare to cope with it in advance. Those without are surprised and incapable of tolerance—rather accept the frustration rather than deal with the difficulties of changes for the longer-term goal. Have “anxiety about anxiety”, avoiding situations they assume would make them anxious.&lt;/p&gt;
&lt;p&gt;
Leaders with low frustration tolerance:&lt;/p&gt;
&lt;ul&gt;
  &lt;li&gt;
abandon initiatives early  &lt;/li&gt;
  &lt;li&gt;
react disproportionately to challenges  &lt;/li&gt;
  &lt;li&gt;
create a tense environment through their emotional disregulation  &lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;
Root cause is 4 irrational beliefs, characterized by how things “should” be, how others “must” act, how one “must” perform.&lt;/p&gt;
&lt;ol&gt;
  &lt;li&gt;
Demands for comfort and ease: expectations that no process or interaction should be challenging to deal with. Leads to avoidance or avoiding growth opportunities.  &lt;/li&gt;
  &lt;li&gt;
Demands for fairness and entitlement: demands for more recognition, leading to resentment and conflict. Victim mentality will hurt teamwork and prevent growth in leaders.  &lt;/li&gt;
  &lt;li&gt;
Demands for achievement and perfectionism: unrealistic high standards perfectionism creates procrastination and unending projects. Delegation suffers, burnout proliferates, and innovation is prevented.  &lt;/li&gt;
  &lt;li&gt;
Demands for emotional control and certainty: refusal to tolerate negative emotions or uncertainty. This stoic behavior leads to cultures where vulnerability is weakness and performers never ask for help, whereby burning themselves out.  &lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;
Understanding that friction at work isn’t just inevitable but actually desirable helps one learn to wield it for their own intentions.&lt;/p&gt;
</content>
    <published>2025-01-24T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/M15</id>
    <title>Sheril Mathews, Frustration Tolerance.</title>
    <updated>2025-01-25T19:43:09Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/L16"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Brandur Leach, &lt;em&gt;“Soft Deletion Probably Isn’t Worth It,”&lt;/em&gt; accessed March 6, 2023, &lt;a href="https://brandur.org/soft-deletion"&gt;https://brandur.org/soft-deletion&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
&lt;h2&gt;
Reading notes.&lt;/h2&gt;
&lt;p&gt;
Soft delete allows easy restoration. It leaks filtering requirements into query logic, though, and even where this is made easy to do, it’s then easy to forget in manual contexts. It also breaks the benefits of foreign keys. Things like GDPR frown on retaining data unnecessarily. SAoft deletion never actually ends up supporting undeletion, either. Deletions often have side effects in other systems, and un-soft-deleting won’t magically cause the right thing to occur there.&lt;/p&gt;
&lt;p&gt;
A deleted records JSONB table is probably more useful where there’s a use case of needing to reference old data for troubleshooting etc. Supports regulatory compliance much more easily.&lt;/p&gt;
</content>
    <published>2025-01-24T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/L16</id>
    <title>Brandur Leach, Soft Deletion Probably Isn’t Worth It.</title>
    <updated>2025-01-25T19:42:13Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/H15"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Rich Hickey, &lt;em&gt;“Simple Made Easy,”&lt;/em&gt; InfoQ, October 20, 2011, &lt;a href="https://www.infoq.com/presentations/Simple-Made-Easy/"&gt;https://www.infoq.com/presentations/Simple-Made-Easy/&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
&lt;h2&gt;
Reading notes.&lt;/h2&gt;
&lt;blockquote&gt;
  &lt;p&gt;
“Simplicity is a prerequisite for reliability”. - Edsger W. Dijkstra  &lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;
Easy is approachable, readily available. Simple is more like not deeply intertwined. They are different things.&lt;/p&gt;
&lt;p&gt;
Simplicity enables understandability, changeability, debuggability, flexibility.&lt;/p&gt;
&lt;p&gt;
Build simple systems:&lt;/p&gt;
&lt;ul&gt;
  &lt;li&gt;
Abstractions answer specific W questions  &lt;/li&gt;
  &lt;li&gt;
Return values of constructs are simple  &lt;/li&gt;
  &lt;li&gt;
Encapsulation hides complexity for building higher  &lt;/li&gt;
&lt;/ul&gt;
</content>
    <published>2025-01-24T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/H15</id>
    <title>Rich Hickey, Simple Made Easy.</title>
    <updated>2025-01-25T19:41:45Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/N11"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Jenny Nicholson, &lt;em&gt;“Evermore: The Theme Park That Wasn’t,”&lt;/em&gt; November 4, 2022, &lt;a href="https://youtube.com/watch?v=L9OhTB5eBqQ"&gt;https://youtube.com/watch?v=L9OhTB5eBqQ&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2025-01-22T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/N11</id>
    <title>Jenny Nicholson, Evermore: The Theme Park That Wasn’t.</title>
    <updated>2025-01-23T18:51:14Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/N12"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Johnathan and Melissa Nightingale, &lt;em&gt;“What Did They Say When You Told Them?,”&lt;/em&gt; August 7, 2024, &lt;a href="https://rawsignal.ca/newsletter-archive/what-did-they-say-when-you-told-them/"&gt;https://rawsignal.ca/newsletter-archive/what-did-they-say-when-you-told-them/&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
&lt;h2&gt;
Reading notes.&lt;/h2&gt;
&lt;p&gt;
You can’t run a “complaint laundry” where all report are bringing their issues to you to resolve or commiserate. There are structurally relevant things to escalate. We work with adults and “what did they say when you told them that?” is a great way to turn complaints into positive action without intervention.&lt;/p&gt;
&lt;p&gt;
But it goes both ways. Valid escalations can be uncomfortable to resolve, as they’ll involve either lateral or upward discussions that are difficult to have. Those are still necessary to help the org function in a healthy manner.&lt;/p&gt;
</content>
    <published>2025-01-21T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/N12</id>
    <title>Johnathan and Melissa Nightingale, What Did They Say When You Told Them?</title>
    <updated>2025-01-25T19:44:03Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/Z3"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Ed Zitron, &lt;em&gt;“The Work-From-Home Future Is Destroying Bosses’ Brains,”&lt;/em&gt; February 9, 2023, &lt;a href="https://wheresyoured.at/p/the-work-from-home-future-is-destroying"&gt;https://wheresyoured.at/p/the-work-from-home-future-is-destroying&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2025-01-20T16:47:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/Z3</id>
    <title>Ed Zitron, The Work-From-Home Future Is Destroying Bosses’ Brains.</title>
    <updated>2025-01-20T23:51:00Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/C22"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Technology Connections, &lt;em&gt;“Old-Fashioned Rice Cookers Are Extremely Clever,”&lt;/em&gt; 2020, &lt;a href="https://www.youtube.com/watch?v=RSTNhvDGbYI"&gt;https://www.youtube.com/watch?v=RSTNhvDGbYI&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2025-01-17T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/C22</id>
    <title>Technology Connections, Old-Fashioned Rice Cookers Are Extremely Clever.</title>
    <updated>2025-01-21T17:32:48Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/W6"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
David Wheeler, &lt;em&gt;“David A. Wheeler’s Review of ‘Debugging’ by David J. Agans,”&lt;/em&gt; March 2, 2004, &lt;a href="https://dwheeler.com/essays/debugging-agans.html"&gt;https://dwheeler.com/essays/debugging-agans.html&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2025-01-16T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/W6</id>
    <title>David Wheeler, Review of Debugging.</title>
    <updated>2025-01-18T21:46:22Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/S25"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Ethan Siegel, &lt;em&gt;“Protons: Made of Quarks, but Ruled by Gluons,”&lt;/em&gt; January 16, 2025, &lt;a href="https://bigthink.com/starts-with-a-bang/protons-quarks-gluons/"&gt;https://bigthink.com/starts-with-a-bang/protons-quarks-gluons/&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2025-01-16T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/S25</id>
    <title>Ethan Siegel, Protons: Made of Quarks, but Ruled by Gluons.</title>
    <updated>2025-01-21T17:33:37Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/W7"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Woodruff William, &lt;em&gt;“Be Aware of the Makefile Effect,”&lt;/em&gt; January 10, 2025, &lt;a href="https://blog.yossarian.net/2025/01/10/Be-aware-of-the-Makefile-effect"&gt;https://blog.yossarian.net/2025/01/10/Be-aware-of-the-Makefile-effect&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2025-01-16T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/W7</id>
    <title>Woodruff William, Be Aware of the Makefile Effect.</title>
    <updated>2025-01-20T22:28:50Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/H8"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Fred Hebert, &lt;em&gt;“Queues Don’t Fix Overload,”&lt;/em&gt; November 19, 2014, &lt;a href="https://ferd.ca/queues-don-t-fix-overload.html"&gt;https://ferd.ca/queues-don-t-fix-overload.html&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2025-01-15T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/H8</id>
    <title>Fred Hebert, Queues Don’t Fix Overload.</title>
    <updated>2025-01-20T22:16:39Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/G13"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Sebastian Gebski, &lt;em&gt;“The Failed Promise of Domain-Driven Design - Part 1,”&lt;/em&gt; January 2, 2024, &lt;a href="https://no-kill-switch.ghost.io/the-failed-promise-of-domain-driven-design-part-1/"&gt;https://no-kill-switch.ghost.io/the-failed-promise-of-domain-driven-design-part-1/&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2025-01-15T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/G13</id>
    <title>Sebastian Gebski, The Failed Promise of Domain-Driven Design.</title>
    <updated>2025-01-21T16:36:52Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/W9"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Jason Wong, &lt;em&gt;“Building a First Team Mindset,”&lt;/em&gt; Jason Wong’s Blog &lt;em class="paren-em"&gt;(blog)&lt;/em&gt;, June 25, 2018, &lt;a href="https://www.attack-gecko.net/2018/06/25/building-a-first-team-mindset/"&gt;https://www.attack-gecko.net/2018/06/25/building-a-first-team-mindset/&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2025-01-13T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/W9</id>
    <title>Jason Wong, Building a First Team Mindset.</title>
    <updated>2025-01-20T22:29:09Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/G6"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Sanjana Gajbhiye, &lt;em&gt;“Male and Female Brains Truly Are Wired Completely Differently,”&lt;/em&gt; Earth.com, January 9, 2025, &lt;a href="https://www.earth.com/news/male-and-female-brains-are-wired-completely-differently/"&gt;https://www.earth.com/news/male-and-female-brains-are-wired-completely-differently/&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2025-01-12T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/G6</id>
    <title>Sanjana Gajbhiye, Male and Female Brains.</title>
    <updated>2025-01-14T08:37:10Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/P7"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Catherine Pearson, &lt;em&gt;“6 Ways to Strengthen Your Relationships in 2023,”&lt;/em&gt; The New York Times, December 29, 2022, sec. Well, &lt;a href="https://www.nytimes.com/2022/12/29/well/family/relationship-advice-love-friendship-dating.html"&gt;https://www.nytimes.com/2022/12/29/well/family/relationship-advice-love-friendship-dating.html&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2025-01-10T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/P7</id>
    <title>Catherine Pearson, 6 Ways to Strengthen Your Relationships in 2023.</title>
    <updated>2025-01-20T22:23:35Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/N9"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Anita Hossain Choudhry and Mindy Zhang, &lt;em&gt;“The Best Managers Don’t Fix, They Coach — Four Tools to Add to Your Toolkit,”&lt;/em&gt; accessed January 16, 2022, &lt;a href="https://review.firstround.com/the-best-managers-dont-fix,-they-coach-four-tools-to-add-to-your-toolkit"&gt;https://review.firstround.com/the-best-managers-dont-fix,-they-coach-four-tools-to-add-to-your-toolkit&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2025-01-10T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/N9</id>
    <title>Anita Hossain Choudhry and Mindy Zhang, The Best Managers Don’t Fix, They Coach.</title>
    <updated>2025-01-20T22:23:06Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/C19"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Jennifer Chu, &lt;em&gt;“Physicists Magnetize a Material with Light,”&lt;/em&gt; December 18, 2024, &lt;a href="https://news.mit.edu/2024/physicists-magnetize-material-using-light-1218"&gt;https://news.mit.edu/2024/physicists-magnetize-material-using-light-1218&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2025-01-10T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/C19</id>
    <title>Jennifer Chu, Physicists Magnetize a Material with Light.</title>
    <updated>2025-01-21T07:33:03Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/S23"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Sigal Samuel, &lt;em&gt;“You Can’t Optimize Your Way to Being a Good Person,”&lt;/em&gt; December 3, 2024, &lt;a href="https://www.vox.com/the-highlight/387570/moral-optimization"&gt;https://www.vox.com/the-highlight/387570/moral-optimization&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2025-01-10T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/S23</id>
    <title>Sigal Samuel, You Can’t Optimize Your Way to Being a Good Person.</title>
    <updated>2025-01-21T17:34:07Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/R22"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Alex Russell, &lt;em&gt;“Reckoning: Frontend’s Lost Decade,”&lt;/em&gt; 2025, &lt;a href="https://youtu.be/0XwWVjQOmyg"&gt;https://youtu.be/0XwWVjQOmyg&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2025-01-09T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/R22</id>
    <title>Alex Russell, Frontend’s Lost Decade.</title>
    <updated>2025-01-21T17:34:30Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/T3"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Sergey Tselovalnikov, &lt;em&gt;“Six Sins of Platform Teams,”&lt;/em&gt; January 7, 2025, &lt;a href="https://serce.me/posts/2025-01-07-six-sins-of-platform-teams"&gt;https://serce.me/posts/2025-01-07-six-sins-of-platform-teams&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2025-01-08T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/T3</id>
    <title>Sergey Tselovalnikov, Six Sins of Platform Teams.</title>
    <updated>2025-01-20T22:27:56Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/N10"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Doc Norton, &lt;em&gt;“Tuckman Was Wrong!,”&lt;/em&gt; OnBelay, May 5, 2017, &lt;a href="https://onbelay.co/articles/2017/5/5/tuckman-was-wrong"&gt;https://onbelay.co/articles/2017/5/5/tuckman-was-wrong&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2025-01-08T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/N10</id>
    <title>Doc Norton, Tuckman Was Wrong!</title>
    <updated>2025-01-20T22:21:54Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/N6"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Peter Naur, &lt;em&gt;“Programming as Theory Building,”&lt;/em&gt; Microprocessing and Microprogramming 15, no. 5 &lt;em class="paren-em"&gt;(May 1985)&lt;/em&gt;: 253–61, &lt;a href="https://doi.org/10.1016/0165-6074&lt;em class="paren-em"&gt;(85)&lt;/em&gt;90032-8"&gt;https://doi.org/10.1016/0165-6074&lt;em class="paren-em"&gt;(85)&lt;/em&gt;90032-8&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2025-01-05T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/N6</id>
    <title>Peter Naur, Programming as Theory Building.</title>
    <updated>2025-01-20T22:22:05Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/B17"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Giacomo Bartolucci et al., &lt;em&gt;“Phase Behavior of Cacio and Pepe Sauce”&lt;/em&gt; &lt;em class="paren-em"&gt;(arXiv, December 31, 2024)&lt;/em&gt;, &lt;a href="https://doi.org/10.48550/arXiv.2501.00536"&gt;https://doi.org/10.48550/arXiv.2501.00536&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2025-01-04T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/B17</id>
    <title>Giacomo Bartolucci et al., Phase Behavior of Cacio and Pepe Sauce.</title>
    <updated>2025-01-21T07:27:26Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/K10"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Joshua Kaplan, &lt;em&gt;“A Mole Infiltrated the Highest Ranks of American Militias. This Is What He Found.,”&lt;/em&gt; ProPublica, January 4, 2025, &lt;a href="https://www.propublica.org/article/ap3-oath-keepers-militia-mole"&gt;https://www.propublica.org/article/ap3-oath-keepers-militia-mole&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2025-01-04T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/K10</id>
    <title>Joshua Kaplan, A Mole Infiltrated the Highest Ranks of American Militias.</title>
    <updated>2025-01-21T17:16:49Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/F6"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Nicole Forsgren et al., &lt;em&gt;“The SPACE of Developer Productivity: There’s More to It than You Think.,”&lt;/em&gt; Queue 19, no. 1 &lt;em class="paren-em"&gt;(February 28, 2021)&lt;/em&gt;: 20–48, &lt;a href="https://doi.org/10.1145/3454122.3454124"&gt;https://doi.org/10.1145/3454122.3454124&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2025-01-03T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/F6</id>
    <title>Nicole Forsgren et al., The SPACE of Developer Productivity.</title>
    <updated>2025-01-20T22:10:24Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/H11"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Marilyn Haigh, &lt;em&gt;“Execs from Amazon, LinkedIn and Square Start Some Meetings in Silence — Here’s Why,”&lt;/em&gt; CNBC, November 7, 2018, &lt;a href="https://www.cnbc.com/2018/11/07/amazon-and-square-execs-swear-by-the-silent-meeting--heres-why.html"&gt;https://www.cnbc.com/2018/11/07/amazon-and-square-execs-swear-by-the-silent-meeting–heres-why.html&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2025-01-02T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/H11</id>
    <title>Marilyn Haigh, Silent Meetings.</title>
    <updated>2025-01-20T22:15:09Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/S21"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Julius Seporaitis, &lt;em&gt;“What Can 75,000 Pull Requests Tell?,”&lt;/em&gt; July 19, 2021, &lt;a href="https://www.seporaitis.net/posts/2021/07/19/what-can-75000-pull-requests-tell/"&gt;https://www.seporaitis.net/posts/2021/07/19/what-can-75000-pull-requests-tell/&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2025-01-02T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/S21</id>
    <title>Julius Seporaitis, What Can 75,000 Pull Requests Tell?</title>
    <updated>2025-01-20T22:27:46Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/S24"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Ethan Siegel, &lt;em&gt;“The One-Page Calendar That Changes How You View the Year,”&lt;/em&gt; Big Think &lt;em class="paren-em"&gt;(blog)&lt;/em&gt;, January 1, 2025, &lt;a href="https://bigthink.com/starts-with-a-bang/one-page-calendar/"&gt;https://bigthink.com/starts-with-a-bang/one-page-calendar/&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2025-01-01T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/S24</id>
    <title>Ethan Siegel, The One-Page Calendar That Changes How You View the Year.</title>
    <updated>2025-01-21T17:33:51Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/D12"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Noah Davis, &lt;em&gt;“What Is Cycle Time and Why Does It Matter?,”&lt;/em&gt; Code Climate &lt;em class="paren-em"&gt;(blog)&lt;/em&gt;, December 8, 2020, &lt;a href="https://codeclimate.com/blog/software-engineering-cycle-time/"&gt;https://codeclimate.com/blog/software-engineering-cycle-time/&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2024-12-31T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/D12</id>
    <title>Noah Davis, Cycle Time.</title>
    <updated>2025-01-20T22:07:15Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/B14"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Marianne Bellotti, &lt;em&gt;“Hunting Tech Debt via Org Charts,”&lt;/em&gt; Medium &lt;em class="paren-em"&gt;(blog)&lt;/em&gt;, December 20, 2021, &lt;a href="https://bellmar.medium.com/hunting-tech-debt-via-org-charts-92df0b253145"&gt;https://bellmar.medium.com/hunting-tech-debt-via-org-charts-92df0b253145&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2024-12-30T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/B14</id>
    <title>Marianne Bellotti, Hunting Tech Debt via Org Charts.</title>
    <updated>2025-01-20T22:01:10Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/S20"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
&lt;em&gt;“Pull Request Analytics: How to Visualize Cycle Time / Lead Time and Get Insights for Improvement,”&lt;/em&gt; Stiltsoft &lt;em class="paren-em"&gt;(blog)&lt;/em&gt;, March 30, 2021, &lt;a href="https://stiltsoft.com/blog/pull-request-analytics-how-to-visualize-cycle-time-lead-time-and-get-insights-for-improvement/"&gt;https://stiltsoft.com/blog/pull-request-analytics-how-to-visualize-cycle-time-lead-time-and-get-insights-for-improvement/&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2024-12-29T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/S20</id>
    <title>Stiltsoft, How to Visualize Cycle Time / Lead Time.</title>
    <updated>2025-01-20T22:27:31Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/G11"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
George Guimarães, &lt;em&gt;“5 Metrics Engineering Managers Can Extract from Pull Requests,”&lt;/em&gt; SourceLevel &lt;em class="paren-em"&gt;(blog)&lt;/em&gt;, November 14, 2019, &lt;a href="https://sourcelevel.io/blog/5-metrics-engineering-managers-can-extract-from-pull-requests"&gt;https://sourcelevel.io/blog/5-metrics-engineering-managers-can-extract-from-pull-requests&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2024-12-29T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/G11</id>
    <title>George Guimarães, 5 Metrics Engineering Managers Can Extract from Pull Requests.</title>
    <updated>2025-01-20T22:13:50Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/D13"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Noah Davis, &lt;em&gt;“What Analyzing 180,000 Pull Requests Taught Us About Shipping Faster,”&lt;/em&gt; Code Climate &lt;em class="paren-em"&gt;(blog)&lt;/em&gt;, November 28, 2018, &lt;a href="https://codeclimate.com/blog/what-data-science-tells-us-about-shipping-faster/"&gt;https://codeclimate.com/blog/what-data-science-tells-us-about-shipping-faster/&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2024-12-28T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/D13</id>
    <title>Noah Davis, What Analyzing 180,000 Pull Requests Taught Us About Shipping Faster.</title>
    <updated>2025-01-20T22:07:38Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/C20"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Adrian Colyer, &lt;em&gt;“The Evolution of Continuous Experimentation in Software Product Development | the Morning Paper,”&lt;/em&gt; September 29, 2017, &lt;a href="https://blog.acolyer.org/2017/09/29/the-evolution-of-continuous-experimentation-in-software-product-development/"&gt;https://blog.acolyer.org/2017/09/29/the-evolution-of-continuous-experimentation-in-software-product-development/&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2024-12-27T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/C20</id>
    <title>Adrian Colyer, The Evolution of Continuous Experimentation in Software Product Development.</title>
    <updated>2025-01-21T07:36:26Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/B8"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Jaime Bocanumenth, &lt;em&gt;“Five Organizational Models,”&lt;/em&gt; accessed August 1, 2022, &lt;a href="https://www.ursinus.edu/live/files/1157-five-organizational-modelspdf"&gt;https://www.ursinus.edu/live/files/1157-five-organizational-modelspdf&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2024-12-27T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/B8</id>
    <title>Jaime Bocanumenth, Five Organizational Models.</title>
    <updated>2025-01-20T22:02:05Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/M11"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Sandi Metz, &lt;em&gt;“The Wrong Abstraction,”&lt;/em&gt; Sandi Metz, January 20, 2016, &lt;a href="https://sandimetz.com/blog/2016/1/20/the-wrong-abstraction"&gt;https://sandimetz.com/blog/2016/1/20/the-wrong-abstraction&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2024-12-25T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/M11</id>
    <title>Sandi Metz, The Wrong Abstraction.</title>
    <updated>2025-01-20T22:21:09Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/A7"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Sinan Ata, &lt;em&gt;“Rockstars vs Superstars — Get to Know Your People,”&lt;/em&gt; Medium, March 19, 2020, &lt;a href="https://medium.com/the-crossover-cast/rockstars-vs-superstars-get-to-know-your-people-b30cd878e0a1"&gt;https://medium.com/the-crossover-cast/rockstars-vs-superstars-get-to-know-your-people-b30cd878e0a1&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2024-12-24T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/A7</id>
    <title>Sinan Ata, Rockstars vs Superstars.</title>
    <updated>2025-01-20T21:59:03Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/L12"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Patrick M. Lencioni, &lt;em&gt;“Make Your Values Mean Something,”&lt;/em&gt; Harvard Business Review, July 1, 2002, &lt;a href="https://hbr.org/2002/07/make-your-values-mean-something"&gt;https://hbr.org/2002/07/make-your-values-mean-something&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2024-12-20T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/L12</id>
    <title>Patrick M. Lencioni, Make Your Values Mean Something.</title>
    <updated>2025-01-20T22:19:30Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/R16"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Douglas A. Ready and Emily Truelove, &lt;em&gt;“The Power of Collective Ambition,”&lt;/em&gt; Harvard Business Review, December 1, 2011, &lt;a href="https://hbr.org/2011/12/the-power-of-collective-ambition"&gt;https://hbr.org/2011/12/the-power-of-collective-ambition&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2024-12-19T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/R16</id>
    <title>Douglas A. Ready and Emily Truelove, The Power of Collective Ambition.</title>
    <updated>2025-01-20T22:24:38Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/C21"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Derek Comartin, &lt;em&gt;“STOP Doing Dogmatic Domain Driven Design,”&lt;/em&gt; CodeOpinion &lt;em class="paren-em"&gt;(blog)&lt;/em&gt;, June 9, 2021, &lt;a href="https://codeopinion.com/stop-doing-dogmatic-domain-driven-design/"&gt;https://codeopinion.com/stop-doing-dogmatic-domain-driven-design/&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2024-12-19T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/C21</id>
    <title>Derek Comartin, STOP Doing Dogmatic Domain Driven Design.</title>
    <updated>2025-01-21T07:38:37Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/R15"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Julia Rozovsky, &lt;em&gt;“Re:Work - The Five Keys to a Successful Google Team,”&lt;/em&gt; November 17, 2015, &lt;a href="https://rework.withgoogle.com/blog/five-keys-to-a-successful-google-team/"&gt;https://rework.withgoogle.com/blog/five-keys-to-a-successful-google-team/&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2024-12-19T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/R15</id>
    <title>Julia Rozovsky, The Five Keys to a Successful Google Team.</title>
    <updated>2025-01-20T22:24:30Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/D15"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Maarten Dalmijn, &lt;em&gt;“Basecamp’s Shape Up: How Different Is It Really from Scrum?,”&lt;/em&gt; Medium, May 6, 2020, &lt;a href="https://medium.com/serious-scrum/basecamps-shape-up-how-different-is-it-really-from-scrum-c0298f124333"&gt;https://medium.com/serious-scrum/basecamps-shape-up-how-different-is-it-really-from-scrum-c0298f124333&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2024-12-18T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/D15</id>
    <title>Maarten Dalmijn, Shape Up vs Scrum.</title>
    <updated>2025-01-20T22:08:22Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/L8"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Brandur Leach, &lt;em&gt;“Implementing Stripe-like Idempotency Keys in Postgres — Brandur.Org,”&lt;/em&gt; October 27, 2017, &lt;a href="https://www.brandur.org/idempotency-keys"&gt;https://www.brandur.org/idempotency-keys&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2024-12-15T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/L8</id>
    <title>Brandur Leach, Implementing Stripe-like Idempotency Keys in Postgres.</title>
    <updated>2025-01-20T22:19:44Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/C17"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Richard Cook, &lt;em&gt;“How Complex Systems Fail,”&lt;/em&gt; April 21, 2000, &lt;a href="https://how.complexsystems.fail/"&gt;https://how.complexsystems.fail/&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2024-12-15T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/C17</id>
    <title>Richard Cook, How Complex Systems Fail.</title>
    <updated>2025-01-20T22:04:54Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/B16"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
&lt;em&gt;“RAPID®: Bain’s Tool to Clarify Decision Accountability,”&lt;/em&gt; Bain, August 11, 2011, &lt;a href="https://www.bain.com/insights/rapid-tool-to-clarify-decision-accountability/"&gt;https://www.bain.com/insights/rapid-tool-to-clarify-decision-accountability/&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2024-10-21T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/B16</id>
    <title>RAPID®: Bain’s Tool to Clarify Decision Accountability.</title>
    <updated>2025-01-20T22:01:56Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/A8"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Benjamin Artz, Amanda Goodall, and Andrew J. Oswald, &lt;em&gt;“If Your Boss Could Do Your Job, You’re More Likely to Be Happy at Work,”&lt;/em&gt; Harvard Business Review, December 29, 2016, &lt;a href="https://hbr.org/2016/12/if-your-boss-could-do-your-job-youre-more-likely-to-be-happy-at-work"&gt;https://hbr.org/2016/12/if-your-boss-could-do-your-job-youre-more-likely-to-be-happy-at-work&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2024-10-20T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/A8</id>
    <title>Benjamin Artz, Amanda Goodall, and Andrew J. Oswald, If Your Boss Could Do Your Job, You’re More Likely to Be Happy at Work.</title>
    <updated>2025-01-20T21:59:18Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/C13"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Melvin E. Conway, &lt;em&gt;“How Do Committees Invent?,”&lt;/em&gt; Datamation, April 1968, &lt;a href="https://www.melconway.com/Home/pdf/committees.pdf"&gt;https://www.melconway.com/Home/pdf/committees.pdf&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2024-10-20T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/C13</id>
    <title>Melvin E. Conway, How Do Committees Invent?</title>
    <updated>2025-01-30T17:41:36Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/M10"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Charity Majors, &lt;em&gt;“Engineering Management: The Pendulum Or The Ladder,”&lt;/em&gt; charity.wtf, January 4, 2019, &lt;a href="https://charity.wtf/2019/01/04/engineering-management-the-pendulum-or-the-ladder/"&gt;https://charity.wtf/2019/01/04/engineering-management-the-pendulum-or-the-ladder/&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2024-10-20T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/M10</id>
    <title>Charity Majors, Engineering Management: The Pendulum Or The Ladder.</title>
    <updated>2025-01-20T22:21:03Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/C16"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Ron Carucci, &lt;em&gt;“How Corporate Values Get Hijacked and Misused,”&lt;/em&gt; Harvard Business Review, May 29, 2017, &lt;a href="https://hbr.org/2017/05/how-corporate-values-get-hijacked-and-misused"&gt;https://hbr.org/2017/05/how-corporate-values-get-hijacked-and-misused&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2024-10-13T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/C16</id>
    <title>Ron Carucci, How Corporate Values Get Hijacked and Misused.</title>
    <updated>2025-01-20T22:04:47Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/R12"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Jade Rubick, &lt;em&gt;“Why and How to Do Skip Level 1-1s,”&lt;/em&gt; September 30, 2024, &lt;a href="https://www.rubick.com/skip-level-1-on-1s/"&gt;https://www.rubick.com/skip-level-1-on-1s/&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2024-10-02T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/R12</id>
    <title>Jade Rubick, Why and How to Do Skip Level 1-1s.</title>
    <updated>2025-01-19T23:36:13Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/L10"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Will Larson, &lt;em&gt;“Write Five, Then Synthesize: Good Engineering Strategy Is Boring.,”&lt;/em&gt; November 26, 2020, &lt;a href="https://lethain.com/good-engineering-strategy-is-boring/"&gt;https://lethain.com/good-engineering-strategy-is-boring/&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2024-10-02T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/L10</id>
    <title>Will Larson, Good Engineering Strategy Is Boring.</title>
    <updated>2025-01-20T22:19:05Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/R20"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Richard Rumelt, &lt;em&gt;“The Perils of Bad Strategy | McKinsey,”&lt;/em&gt; June 1, 2011, &lt;a href="https://www.mckinsey.com/business-functions/strategy-and-corporate-finance/our-insights/the-perils-of-bad-strategy"&gt;https://www.mckinsey.com/business-functions/strategy-and-corporate-finance/our-insights/the-perils-of-bad-strategy&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2024-10-02T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/R20</id>
    <title>Richard Rumelt, The Perils of Bad Strategy.</title>
    <updated>2025-01-20T22:25:05Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/L11"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Will Larson, &lt;em&gt;“Engineering Strategy Every Org Should Write.,”&lt;/em&gt; November 7, 2020, &lt;a href="https://lethain.com/eng-strategies-every-org-should-write/"&gt;https://lethain.com/eng-strategies-every-org-should-write/&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2024-10-02T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/L11</id>
    <title>Will Larson, Engineering Strategy Every Org Should Write.</title>
    <updated>2025-01-20T22:19:22Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/G12"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
David Graeber, &lt;em&gt;“Are You An Anarchist? The Answer May Surprise You!,”&lt;/em&gt; The Anarchist Library, November 9, 2009, &lt;a href="https://theanarchistlibrary.org/library/david-graeber-are-you-an-anarchist-the-answer-may-surprise-you"&gt;https://theanarchistlibrary.org/library/david-graeber-are-you-an-anarchist-the-answer-may-surprise-you&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2024-09-29T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/G12</id>
    <title>David Graeber, Are You An Anarchist? The Answer May Surprise You!.</title>
    <updated>2025-01-20T22:14:08Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/M12"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Katie Mather, &lt;em&gt;“How You Perceive Time Reveals a Lot about You,”&lt;/em&gt; In The Know, June 30, 2020, &lt;a href="https://www.intheknow.com/post/how-you-perceive-time-reveals-a-lot-about-you/"&gt;https://www.intheknow.com/post/how-you-perceive-time-reveals-a-lot-about-you/&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2024-09-29T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/M12</id>
    <title>Katie Mather, How You Perceive Time Reveals a Lot about You.</title>
    <updated>2025-01-20T22:21:16Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/K8"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Byron Katie’s 4 Questions to Get out of a Negative Headspace, Stop Suffering, &amp; Start Healing Now, 2020, &lt;a href="https://www.youtube.com/watch?v=lr0_afKsI8M&amp;ab_channel=MarieForleo"&gt;https://www.youtube.com/watch?v=lr0_afKsI8M&amp;ab_channel=MarieForleo&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2024-09-29T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/K8</id>
    <title>Byron Katie, 4 Questions to Get out of a Negative Headspace, Stop Suffering, &amp;amp; Start Healing Now.</title>
    <updated>2025-01-20T22:18:40Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/T5"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Hirotaka Takeuchi and Ikujiro Nonaka, &lt;em&gt;“The New New Product Development Game,”&lt;/em&gt; Harvard Business Review, January 1, 1986, &lt;a href="https://hbr.org/1986/01/the-new-new-product-development-game"&gt;https://hbr.org/1986/01/the-new-new-product-development-game&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2024-09-29T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/T5</id>
    <title>Hirotaka Takeuchi and Ikujiro Nonaka, The New New Product Development Game.</title>
    <updated>2025-01-20T22:28:17Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/N7"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Abi Noda, &lt;em&gt;“Predicting Developer Attrition,”&lt;/em&gt; June 9, 2023, &lt;a href="https://newsletter.getdx.com/p/predicting-developer-attrition"&gt;https://newsletter.getdx.com/p/predicting-developer-attrition&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2024-09-24T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/N7</id>
    <title>Abi Noda, Predicting Developer Attrition.</title>
    <updated>2025-01-20T22:22:14Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/O4"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Csaba Okrona, &lt;em&gt;“Demystifying Burnout – A Deep Dive Into Its Symptoms And Remedies,”&lt;/em&gt; June 26, 2023, &lt;a href="https://leadership.garden/demystifying-burnout/"&gt;https://leadership.garden/demystifying-burnout/&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2024-09-16T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/O4</id>
    <title>Csaba Okrona, Demystifying Burnout.</title>
    <updated>2024-09-22T22:22:16Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/H13"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Benjamin Harris and Aliz Hammond, &lt;em&gt;“We Spent $20 To Achieve RCE And Accidentally Became The Admins Of .MOBI,”&lt;/em&gt; watchTowr Labs - Blog, September 11, 2024, &lt;a href="https://labs.watchtowr.com/we-spent-20-to-achieve-rce-and-accidentally-became-the-admins-of-mobi/"&gt;https://labs.watchtowr.com/we-spent-20-to-achieve-rce-and-accidentally-became-the-admins-of-mobi/&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2024-09-15T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/H13</id>
    <title>Benjamin Harris and Aliz Hammond, We Spent $20 To Achieve RCE And Accidentally Became The Admins Of .MOBI.</title>
    <updated>2025-01-21T17:14:46Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/J2"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Ron Jeffries, &lt;em&gt;“Dark Scrum,”&lt;/em&gt; September 8, 2016, &lt;a href="https://ronjeffries.com/articles/016-09ff/defense/"&gt;https://ronjeffries.com/articles/016-09ff/defense/&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2024-09-01T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/J2</id>
    <title>Ron Jeffries, Dark Scrum.</title>
    <updated>2025-01-13T06:50:17Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/R18"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Lynn Root, &lt;em&gt;“The Design of Everyday APIs,”&lt;/em&gt; June 2, 2022, &lt;a href="https://www.roguelynn.com/talks/everyday-apis/"&gt;https://www.roguelynn.com/talks/everyday-apis/&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2024-08-09T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/R18</id>
    <title>Lynn Root, The Design of Everyday APIs.</title>
    <updated>2025-01-20T22:24:49Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/H6"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Alexandra Hoffer, &lt;em&gt;“Creating Processes for API Clarity and Consistency,”&lt;/em&gt; Plaid, February 17, 2022, &lt;a href="https://plaid.com/blog/api-review-council/"&gt;https://plaid.com/blog/api-review-council/&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2024-08-06T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/H6</id>
    <title>Alexandra Hoffer, Creating Processes for API Clarity and Consistency.</title>
    <updated>2025-01-20T22:15:58Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/S14"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
&lt;em&gt;“Standardizing,”&lt;/em&gt; Stay SaaSy, August 6, 2024, &lt;a href="https://staysaasy.com/management/2024/08/06/standardize.html"&gt;https://staysaasy.com/management/2024/08/06/standardize.html&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2024-08-06T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/S14</id>
    <title>Stay SaaSy, Standardizing.</title>
    <updated>2025-01-20T22:25:39Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/G7"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
&lt;em&gt;“Proto Best Practices,”&lt;/em&gt; Protocol Buffers Documentation, accessed July 29, 2024, &lt;a href="https://protobuf.dev/programming-guides/dos-donts/"&gt;https://protobuf.dev/programming-guides/dos-donts/&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2024-08-05T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/G7</id>
    <title>Proto Best Practices.</title>
    <updated>2025-01-20T22:14:20Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/G8"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
&lt;em&gt;“API Best Practices,”&lt;/em&gt; Protocol Buffers Documentation, accessed July 29, 2024, &lt;a href="https://protobuf.dev/programming-guides/api/"&gt;https://protobuf.dev/programming-guides/api/&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2024-08-05T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/G8</id>
    <title>API Best Practices.</title>
    <updated>2025-01-20T22:14:26Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/D14"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Kevin Dickinson, &lt;em&gt;“3 Rules to Express Your Thoughts so That Everyone Will Understand You,”&lt;/em&gt; Big Think &lt;em class="paren-em"&gt;(blog)&lt;/em&gt;, December 1, 2022, &lt;a href="https://bigthink.com/the-learning-curve/3-rules-express-your-thoughts-clearly/"&gt;https://bigthink.com/the-learning-curve/3-rules-express-your-thoughts-clearly/&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2024-08-02T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/D14</id>
    <title>Kevin Dickinson, 3 Rules to Express Your Thoughts so That Everyone Will Understand You.</title>
    <updated>2025-01-20T22:07:53Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/S13"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
&lt;em&gt;“A Practical Guide to Executive Presence,”&lt;/em&gt; May 27, 2023, &lt;a href="https://staysaasy.com/leadership/2023/05/27/executive-presence.html"&gt;https://staysaasy.com/leadership/2023/05/27/executive-presence.html&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2024-07-28T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/S13</id>
    <title>A Practical Guide to Executive Presence.</title>
    <updated>2024-09-22T22:52:12Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/N5"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Jakob Nielsen, &lt;em&gt;“10 Usability Heuristics for User Interface Design,”&lt;/em&gt; Nielsen Norman Group, 1994, &lt;a href="https://www.nngroup.com/articles/ten-usability-heuristics/"&gt;https://www.nngroup.com/articles/ten-usability-heuristics/&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2024-07-27T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/N5</id>
    <title>Jakob Nielson, 10 Usability Heuristics for UI Design.</title>
    <updated>2024-09-23T02:06:21Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/R11"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Jade Rubick, &lt;em&gt;“Executive Presence Coaching – Use These Tips to Become a Better Leader,”&lt;/em&gt; February 7, 2022, &lt;a href="https://www.rubick.com/executive-presence-coaching/"&gt;https://www.rubick.com/executive-presence-coaching/&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2024-07-02T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/R11</id>
    <title>Jade Rubick, Executive Presence Coaching.</title>
    <updated>2025-01-19T23:40:54Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/G9"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Kevin Gary, &lt;em&gt;“To the Bored All Things Are Boring,”&lt;/em&gt; January 5, 2023, &lt;a href="https://comment.org/to-the-bored-all-things-are-boring/"&gt;https://comment.org/to-the-bored-all-things-are-boring/&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2024-06-27T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/G9</id>
    <title>Kevin Gary, To the Bored All Things Are Boring.</title>
    <updated>2025-01-20T22:14:38Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/S12"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Irina Stanescu, &lt;em&gt;“3 Critical Skills You Need to Grow Beyond Senior Levels in Engineering,”&lt;/em&gt; April 8, 2024, &lt;a href="https://www.thecaringtechie.com/p/3-critical-skills-you-need-to-grow"&gt;https://www.thecaringtechie.com/p/3-critical-skills-you-need-to-grow&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2024-06-23T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/S12</id>
    <title>Irina Stanescu, Growing Beyond Senior Levels in Engineer.</title>
    <updated>2024-09-22T22:50:17Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/G5"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Aria Beingessner &lt;em class="paren-em"&gt;(@Gankra_)&lt;/em&gt;, Twitter post, September 30, 2018, &lt;a href="https://twitter.com/Gankra_/status/1046438955439271936/photo/1"&gt;https://twitter.com/Gankra_/status/1046438955439271936/photo/1&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2024-06-23T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/G5</id>
    <title>Aria Beingessner, Mozilla’s Engineering Ladder.</title>
    <updated>2024-09-23T01:31:37Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/B7"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Suzan Bond, &lt;em&gt;“An Incomplete List of Org Smells,”&lt;/em&gt; Substack newsletter, Suzan’s Fieldnotes &lt;em class="paren-em"&gt;(blog)&lt;/em&gt;, April 25, 2022, &lt;a href="https://suzansfieldnotes.substack.com/p/an-incomplete-list-of-org-smells"&gt;https://suzansfieldnotes.substack.com/p/an-incomplete-list-of-org-smells&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2024-05-25T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/B7</id>
    <title>Suzan Bond, An Incomplete List of Org Smells.</title>
    <updated>2024-05-25T22:53:05Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/S15"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Rach Smith, &lt;em&gt;“Reassessing the Morning Routine in 2023,”&lt;/em&gt; Rach Smith’s digital garden, accessed April 14, 2024, &lt;a href="https://rachsmith.com/reassessing-the-morning-routine/"&gt;https://rachsmith.com/reassessing-the-morning-routine/&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2024-04-27T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/S15</id>
    <title>Rach Smith, Reassessing the Morning Routine in 2023.</title>
    <updated>2025-01-20T22:25:50Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/K7"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Ben Kuhn, &lt;em&gt;“Staring into the Abyss as a Core Life Skill,”&lt;/em&gt; benkuhn.net, December 22, 2022, &lt;a href="https://www.benkuhn.net/abyss/"&gt;https://www.benkuhn.net/abyss/&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2024-04-27T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/K7</id>
    <title>Ben Kuhn, Staring into the Abyss as a Core Life Skill.</title>
    <updated>2025-01-20T22:17:38Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/C12"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Louis Chew, &lt;em&gt;“The Steel Man Technique: How To Argue Better And Be More Persuasive,”&lt;/em&gt; August 25, 2018, &lt;a href="https://constantrenewal.com/steel-man"&gt;https://constantrenewal.com/steel-man&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2024-04-27T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/C12</id>
    <title>Louis Chew, The Steel Man Technique.</title>
    <updated>2025-01-20T22:02:51Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/H9"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Cate Hall, &lt;em&gt;“How to Be More Agentic,”&lt;/em&gt; Substack newsletter, Useful Fictions &lt;em class="paren-em"&gt;(blog)&lt;/em&gt;, January 10, 2024, &lt;a href="https://usefulfictions.substack.com/p/how-to-be-more-agentic"&gt;https://usefulfictions.substack.com/p/how-to-be-more-agentic&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2024-04-16T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/H9</id>
    <title>Cate Hall, How to Be More Agentic.</title>
    <updated>2025-01-20T22:16:48Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/S16"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Itamar Shatz, &lt;em&gt;“The Shirky Principle: Institutions Try to Preserve the Problem to Which They Are the Solution – Effectiviology,”&lt;/em&gt; accessed February 24, 2024, &lt;a href="https://effectiviology.com/shirky-principle/"&gt;https://effectiviology.com/shirky-principle/&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2024-04-16T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/S16</id>
    <title>Itamar Shatz, The Shirky Principle.</title>
    <updated>2025-01-20T22:26:06Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/D8"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Shreyas Doshi, &lt;em&gt;“High Agency: What Is It, Why It Is Important, and How to Cultivate It,”&lt;/em&gt; June 28, 2020, &lt;a href="https://www.linkedin.com/pulse/high-agency-its-importance-how-cultivate-shreyas-doshi"&gt;https://www.linkedin.com/pulse/high-agency-its-importance-how-cultivate-shreyas-doshi&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2024-04-15T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/D8</id>
    <title>Shreyas Doshi, High Agency.</title>
    <updated>2025-01-20T22:08:45Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/S17"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Derek Sivers, &lt;em&gt;“Writing One Sentence per Line,”&lt;/em&gt; June 20, 2022, &lt;a href="https://sive.rs/1s"&gt;https://sive.rs/1s&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2024-04-14T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/S17</id>
    <title>Derek Sivers, Writing One Sentence per Line.</title>
    <updated>2025-01-20T22:26:17Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/G10"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Eliyahu Goldratt, &lt;em&gt;Presenting TOC &lt;em class="paren-em"&gt;(Theory of Constraints)&lt;/em&gt;&lt;/em&gt;, 2012, &lt;a href="https://www.youtube.com/watch?v=DQoO8y3En3w"&gt;https://www.youtube.com/watch?v=DQoO8y3En3w&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2024-04-14T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/G10</id>
    <title>Eliyahu Goldratt, Theory of Constraints.</title>
    <updated>2025-01-20T22:11:03Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/K15"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Brett &amp; Kate McKay, &lt;em&gt;“Towards a Philosophy of Household Management,”&lt;/em&gt; The Art of Manliness &lt;em class="paren-em"&gt;(blog)&lt;/em&gt;, March 26, 2024, &lt;a href="https://www.artofmanliness.com/lifestyle/homeownership/towards-a-philosophy-of-household-management/"&gt;https://www.artofmanliness.com/lifestyle/homeownership/towards-a-philosophy-of-household-management/&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2024-04-14T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/K15</id>
    <title>AoM, Towards a Philosophy of Household Management.</title>
    <updated>2025-01-21T17:35:05Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/D7"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Redowan Delowar, &lt;em&gt;“ETag and HTTP Caching,”&lt;/em&gt; April 10, 2024, &lt;a href="https://rednafi.com/misc/etag_and_http_caching/"&gt;https://rednafi.com/misc/etag_and_http_caching/&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2024-04-10T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/D7</id>
    <title>Redowan Delowar, ETag and HTTP Caching.</title>
    <updated>2025-01-20T22:08:32Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/A6"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Paul Asjes, &lt;em&gt;“Designing APIs for Humans: Object IDs,”&lt;/em&gt; DEV Community, August 30, 2022, &lt;a href="https://dev.to/stripe/designing-apis-for-humans-object-ids-3o5a"&gt;https://dev.to/stripe/designing-apis-for-humans-object-ids-3o5a&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2024-03-26T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/A6</id>
    <title>Paul Asjes, Designing APIs for Humans: Object IDs.</title>
    <updated>2025-01-20T21:58:21Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/S27"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Derek Sivers, &lt;em&gt;“Cut out Everything That’s Not Surprising,”&lt;/em&gt; October 14, 2019, &lt;a href="https://sive.rs/d22"&gt;https://sive.rs/d22&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2024-03-25T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/S27</id>
    <title>Derek Sivers, Cut out Everything That’s Not Surprising.</title>
    <updated>2025-01-21T17:32:57Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/R9"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Eric Steven Raymond, &lt;em&gt;“Basics of the Unix Philosophy,”&lt;/em&gt; 2003, &lt;a href="http://www.catb.org/~esr/writings/taoup/html/ch01s06.html"&gt;http://www.catb.org/~esr/writings/taoup/html/ch01s06.html&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2024-03-24T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/R9</id>
    <title>Eric Raymond, Basics of the Unix Philosophy.</title>
    <updated>2024-04-27T22:13:37Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/K14"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Brett &amp; Kate McKay, &lt;em&gt;“5BX: The Cold War Military Workout for Getting Fit in 11 Minutes a Day,”&lt;/em&gt; The Art of Manliness &lt;em class="paren-em"&gt;(blog)&lt;/em&gt;, March 19, 2024, &lt;a href="https://www.artofmanliness.com/health-fitness/5bx-the-cold-war-military-workout-for-getting-fit-in-11-minutes-a-day/"&gt;https://www.artofmanliness.com/health-fitness/5bx-the-cold-war-military-workout-for-getting-fit-in-11-minutes-a-day/&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2024-03-23T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/K14</id>
    <title>AoM, 5BX.</title>
    <updated>2025-01-21T17:35:18Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/C7"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Jefferey Cave, &lt;em&gt;“The Evils of Sequential IDs,”&lt;/em&gt; Medium &lt;em class="paren-em"&gt;(blog)&lt;/em&gt;, January 20, 2024, &lt;a href="https://jefferey-cave.medium.com/the-evils-of-sequential-ids-2d1b18b50fdb"&gt;https://jefferey-cave.medium.com/the-evils-of-sequential-ids-2d1b18b50fdb&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2024-03-22T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/C7</id>
    <title>Jefferey Cave, The Evils of Sequential IDs.</title>
    <updated>2025-01-20T22:04:59Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/L15"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Jack Lindamood, &lt;em&gt;“Design Better Software Abstractions Using Bipartite Composition,”&lt;/em&gt; May 29, 2019, &lt;a href="https://cep.dev/posts/design-better-software-abstractions-using-bipartite-composition/"&gt;https://cep.dev/posts/design-better-software-abstractions-using-bipartite-composition/&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2024-03-15T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/L15</id>
    <title>Jack Lindamood, Bipartite Composition.</title>
    <updated>2025-01-21T17:36:07Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/B9"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Vicki Boykis, &lt;em&gt;“Both Pyramids Are White,”&lt;/em&gt; March 13, 2024, &lt;a href="https://vickiboykis.com/2024/03/13/both-pyramids-are-white/"&gt;https://vickiboykis.com/2024/03/13/both-pyramids-are-white/&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2024-03-15T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/B9</id>
    <title>Vicki Boykis, Both Pyramids Are White.</title>
    <updated>2025-01-20T22:02:15Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/C6"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Derek Comartin, &lt;em&gt;“Event-Driven Architecture Lost Its Way,”&lt;/em&gt; March 7, 2024, &lt;a href="https://codeopinion.com/event-driven-architecture-lost-its-way/"&gt;https://codeopinion.com/event-driven-architecture-lost-its-way/&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2024-03-12T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/C6</id>
    <title>Derek Comartin, Event-Driven Architecture Lost Its Way.</title>
    <updated>2024-04-28T00:42:12Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/W8"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Fred Wynyk, &lt;em&gt;“Conway’s Law in Team Topolgies: Did You Really Get It?,”&lt;/em&gt; Medium &lt;em class="paren-em"&gt;(blog)&lt;/em&gt;, February 22, 2024, &lt;a href="mailto:https://medium.com/@fwynyk/conways-law-in-team-topolgies-did-you-really-get-it-69c1a4d702af"&gt;https://medium.com/@fwynyk/conways-law-in-team-topolgies-did-you-really-get-it-69c1a4d702af&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2024-03-12T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/W8</id>
    <title>Fred Wynyk, Conway’s Law in Team Topolgies.</title>
    <updated>2025-01-20T22:29:03Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/Y1"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Yuval Yeret, &lt;em&gt;“4 Metrics To Visualize and Accelerate Flow - DZone,”&lt;/em&gt; May 10, 2018, &lt;a href="https://www.scrum.org/resources/blog/4-key-flow-metrics-and-how-use-them-scrums-events"&gt;https://www.scrum.org/resources/blog/4-key-flow-metrics-and-how-use-them-scrums-events&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2024-03-12T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/Y1</id>
    <title>Yuval Yeret, 4 Metrics To Visualize and Accelerate Flow.</title>
    <updated>2024-04-27T22:40:13Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/D9"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Sam Thomas Davies, &lt;em&gt;“Words Into Works #106 | Failing Forward,”&lt;/em&gt; February 26, 2024, &lt;a href="https://www.samuelthomasdavies.com/failing-forward/"&gt;https://www.samuelthomasdavies.com/failing-forward/&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2024-02-29T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/D9</id>
    <title>Sam Thomas Davies, Failing Forward.</title>
    <updated>2025-01-20T22:08:59Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/R19"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Matthew Rocklin, &lt;em&gt;“Write Dumb Code,”&lt;/em&gt; January 27, 2018, &lt;a href="https://matthewrocklin.com/write-dumb-code.html"&gt;https://matthewrocklin.com/write-dumb-code.html&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2024-02-28T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/R19</id>
    <title>Matthew Rocklin, Write Dumb Code.</title>
    <updated>2025-01-20T22:24:55Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/C8"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Tom Critchlow, &lt;em&gt;“&lt;em class="paren-em"&gt;(Another)&lt;/em&gt; Quick Riff on Narrative Strategy,”&lt;/em&gt; February 16, 2024, &lt;a href="https://tomcritchlow.com/2024/02/16/narrative-strategy/"&gt;https://tomcritchlow.com/2024/02/16/narrative-strategy/&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2024-02-26T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/C8</id>
    <title>Tom Critchlow, Narrative Strategy.</title>
    <updated>2025-01-20T22:05:17Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/H7"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Charlotte Hu, &lt;em&gt;“Why Writing by Hand Is Better for Memory and Learning,”&lt;/em&gt; February 21, 2024, &lt;a href="https://www.scientificamerican.com/article/why-writing-by-hand-is-better-for-memory-and-learning/"&gt;https://www.scientificamerican.com/article/why-writing-by-hand-is-better-for-memory-and-learning/&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2024-02-24T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/H7</id>
    <title>Charlotte Hu, Why Writing by Hand Is Better for Memory and Learning.</title>
    <updated>2025-01-20T22:16:14Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/P5"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Ninad Pathak, &lt;em&gt;“Your GitHub Pull Request Workflow Is Slowing Everyone Down,”&lt;/em&gt; December 4, 2023, &lt;a href="https://graphite.dev/blog/your-github-pr-workflow-is-slow"&gt;https://graphite.dev/blog/your-github-pr-workflow-is-slow&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2024-02-23T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/P5</id>
    <title>Ninad Pathak, Your GitHub Pull Request Workflow Is Slowing Everyone Down.</title>
    <updated>2025-01-20T22:23:18Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/S22"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
James Samuel, &lt;em&gt;“How to Get Good at Giving Feedback,”&lt;/em&gt; Substack newsletter, Effective Software Leads &lt;em class="paren-em"&gt;(blog)&lt;/em&gt;, February 5, 2024, &lt;a href="https://softwareleads.substack.com/p/how-to-get-good-at-giving-feedback"&gt;https://softwareleads.substack.com/p/how-to-get-good-at-giving-feedback&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2024-02-18T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/S22</id>
    <title>James Samuel, How to Get Good at Giving Feedback.</title>
    <updated>2025-01-21T17:34:16Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/F7"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Greg Foster, &lt;em&gt;“The Ideal PR Is 50 Lines Long,”&lt;/em&gt; July 24, 2023, &lt;a href="https://graphite.dev/blog/the-ideal-pr-is-50-lines-long"&gt;https://graphite.dev/blog/the-ideal-pr-is-50-lines-long&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2024-02-08T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/F7</id>
    <title>Greg Foster, The Ideal PR Is 50 Lines Long.</title>
    <updated>2025-01-20T22:10:32Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/S11"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Selena Simmons-Duffin, &lt;em&gt;“Your Appendix Is Not, in Fact, Useless. This Anatomy Professor Explains,”&lt;/em&gt; NPR, February 2, 2024, sec. Short Wave, &lt;a href="https://www.npr.org/sections/health-shots/2024/02/02/1228474984/appendix-function-appendicitis-gut-health"&gt;https://www.npr.org/sections/health-shots/2024/02/02/1228474984/appendix-function-appendicitis-gut-health&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2024-02-08T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/S11</id>
    <title>Selena Simmons-Duffin, Your Appendix Is Not Useless.</title>
    <updated>2024-04-27T22:23:57Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/C9"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Jason Cohen, &lt;em&gt;“Business Advice Plagued by Survivor Bias,”&lt;/em&gt; August 17, 2009, &lt;a href="https://longform.asmartbear.com/survivor-bias/"&gt;https://longform.asmartbear.com/survivor-bias/&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2024-02-07T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/C9</id>
    <title>Jason Cohen, Business Advice Plagued by Survivor Bias.</title>
    <updated>2025-01-20T22:05:27Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/Z2"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Maxwell Zeff, &lt;em&gt;“There’s More Proof That Return to Office Is Pointless,”&lt;/em&gt; January 30, 2024, &lt;a href="https://gizmodo.com/more-proof-that-return-to-office-is-pointless-1851209231"&gt;https://gizmodo.com/more-proof-that-return-to-office-is-pointless-1851209231&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2024-01-31T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/Z2</id>
    <title>Maxwell Zeff, There’s More Proof That Return to Office Is Pointless.</title>
    <updated>2024-04-27T22:25:13Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/F8"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Adam Fishman, &lt;em&gt;“Balancing Engineering Cultures: Debate Everything vs. Just Tell Me What To Build,”&lt;/em&gt; January 31, 2023, &lt;a href="https://www.fishmanafnewsletter.com/p/balancing-engineering-cultures-debate-vs-do"&gt;https://www.fishmanafnewsletter.com/p/balancing-engineering-cultures-debate-vs-do&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2024-01-28T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/F8</id>
    <title>Adam Fishman, Debate Everything vs. Just Tell Me What To Build.</title>
    <updated>2025-01-20T22:10:55Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/K6"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Eirini Kalliamvakou, &lt;em&gt;“Yes, Good DevEx Increases Productivity. Here Is the Data.,”&lt;/em&gt; January 23, 2024, &lt;a href="https://github.blog/2024-01-23-good-devex-increases-productivity/"&gt;https://github.blog/2024-01-23-good-devex-increases-productivity/&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2024-01-26T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/K6</id>
    <title>Eirini Kalliamvakou, Good DevEx Increases Productivity.</title>
    <updated>2024-04-27T22:22:01Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/L14"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Crystal Lewis, &lt;em&gt;“Hire a Data Manager,”&lt;/em&gt; July 7, 2023, &lt;a href="https://cghlewis.com/blog/hire_datamgr/"&gt;https://cghlewis.com/blog/hire_datamgr/&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2024-01-25T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/L14</id>
    <title>Crystal Lewis, Hire a Data Manager.</title>
    <updated>2025-01-21T17:36:15Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/C10"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Tom Critchlow, &lt;em&gt;“Don’t Give Advice, Be Useful,”&lt;/em&gt; January 23, 2024, &lt;a href="https://tomcritchlow.com/2024/01/23/advice/"&gt;https://tomcritchlow.com/2024/01/23/advice/&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2024-01-23T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/C10</id>
    <title>Tom Critchlow, Don’t Give Advice, Be Useful.</title>
    <updated>2025-01-20T22:02:22Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/L9"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Crystal Lewis, &lt;em&gt;“Let’s Talk about Joins,”&lt;/em&gt; January 10, 2024, &lt;a href="https://cghlewis.com/blog/joins/"&gt;https://cghlewis.com/blog/joins/&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2024-01-21T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/L9</id>
    <title>Crystal Lewis, Let’s Talk about Joins.</title>
    <updated>2025-01-20T22:20:52Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/V3"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Fernando Villalba, &lt;em&gt;“DevOps: Don’t Destroy Silos, Transform Them,”&lt;/em&gt; Substack newsletter, The Personable Engineer &lt;em class="paren-em"&gt;(blog)&lt;/em&gt;, December 19, 2023, &lt;a href="https://fernandovillalba.substack.com/p/devops-dont-destroy-silos-transform"&gt;https://fernandovillalba.substack.com/p/devops-dont-destroy-silos-transform&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2024-01-19T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/V3</id>
    <title>Fernando Villalba, Don’t Destroy Silos, Transform Them.</title>
    <updated>2025-01-20T22:28:34Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/N4"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Johnathan Nightingale and Melissa Nightingale, &lt;em&gt;“Director Means Something,”&lt;/em&gt; January 10, 2024, &lt;a href="https://www.rawsignal.ca/newsletter-archive/director-means-something"&gt;https://www.rawsignal.ca/newsletter-archive/director-means-something&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2024-01-17T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/N4</id>
    <title>Johnathan &amp;amp; Melissa Nightingale, Director Means Something.</title>
    <updated>2024-04-28T00:28:09Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/V5"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Bob Violino, &lt;em&gt;“10 Ways to Destroy Developer Happiness,”&lt;/em&gt; January 8, 2024, &lt;a href="https://www.infoworld.com/article/3711840/10-ways-to-destroy-developer-happiness.html"&gt;https://www.infoworld.com/article/3711840/10-ways-to-destroy-developer-happiness.html&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2024-01-15T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/V5</id>
    <title>Bob Violino, 10 Ways to Destroy Developer Happiness.</title>
    <updated>2025-01-21T17:30:48Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/M9"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Pier-Jean Malandrino, &lt;em&gt;“C4 Model Perspective - DZone,”&lt;/em&gt; January 5, 2024, &lt;a href="https://lab.scub.net/the-different-types-of-software-architects-c4-model-perspective-dcf3bb4c49e8"&gt;https://lab.scub.net/the-different-types-of-software-architects-c4-model-perspective-dcf3bb4c49e8&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2024-01-15T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/M9</id>
    <title>Pier-Jean Malandrino, C4 Model Perspective.</title>
    <updated>2025-01-20T22:21:28Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/M13"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Tom Mahood, &lt;em&gt;“The Hunt for the Death Valley Germans,”&lt;/em&gt; accessed January 13, 2024, &lt;a href="https://www.otherhand.org/home-page/search-and-rescue/the-hunt-for-the-death-valley-germans/"&gt;https://www.otherhand.org/home-page/search-and-rescue/the-hunt-for-the-death-valley-germans/&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2024-01-10T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/M13</id>
    <title>Tom Mahood, The Hunt for the Death Valley Germans.</title>
    <updated>2025-01-21T17:35:49Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/S26"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Derek Sivers, &lt;em&gt;“Benefits of a Daily Diary and Topic Journals,”&lt;/em&gt; accessed January 4, 2024, &lt;a href="https://sive.rs/dj"&gt;https://sive.rs/dj&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2024-01-04T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/S26</id>
    <title>Derek Sivers, Benefits of a Daily Diary and Topic Journals.</title>
    <updated>2025-01-21T17:33:23Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/E3"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Julia Evans, &lt;em&gt;“Get Your Work Recognized: Write a Brag Document,”&lt;/em&gt; June 28, 2019, &lt;a href="https://jvns.ca/blog/brag-documents/"&gt;https://jvns.ca/blog/brag-documents/&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2024-01-03T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/E3</id>
    <title>Julia Evans, Write a Brag Document.</title>
    <updated>2025-01-20T22:09:49Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/H5"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Jeff Haden, &lt;em&gt;“27 Years Ago, Steve Jobs Said the Best Employees Focus on Content, Not Process. Research Shows He Was Right,”&lt;/em&gt; March 9, 2023, &lt;a href="https://www.inc.com/jeff-haden/27-years-ago-steve-jobs-said-best-employees-focus-on-content-not-process-workplace-research-shows-he-was-right.html"&gt;https://www.inc.com/jeff-haden/27-years-ago-steve-jobs-said-best-employees-focus-on-content-not-process-workplace-research-shows-he-was-right.html&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2024-01-02T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/H5</id>
    <title>Jeff Haden, The Best Employees Focus on Content, Not Process.</title>
    <updated>2024-04-27T22:08:57Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/L13"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Will Larson, &lt;em&gt;“Why Limiting Work-in-Progress Works.,”&lt;/em&gt; February 17, 2019, &lt;a href="https://lethain.com/limiting-wip/"&gt;https://lethain.com/limiting-wip/&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2023-12-28T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/L13</id>
    <title>Will Larson, Why Limiting Work-in-Progress Works.</title>
    <updated>2025-01-21T17:36:28Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/R8"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Sara Landi Tortoli, &lt;em&gt;“Uncover Your Customers’ Hidden Needs In 4 Steps with Jobs-To-Be-Done + Access Custom GPT | HackerNoon,”&lt;/em&gt; December 14, 2023, &lt;a href="https://hackernoon.com/uncover-your-customers-hidden-needs-in-4-steps-with-the-jobs-to-be-done-framework"&gt;https://hackernoon.com/uncover-your-customers-hidden-needs-in-4-steps-with-the-jobs-to-be-done-framework&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2023-12-20T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/R8</id>
    <title>Sara Tortoli, Jobs-To-Be-Done.</title>
    <updated>2024-04-27T22:12:15Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/F9"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Sergey Faldin, &lt;em&gt;“All You Need Is To Make 1,000 Pots,”&lt;/em&gt; June 11, 2020, &lt;a href="https://scribe.bus-hit.me/honest-creative/all-you-need-is-to-make-1-000-pots-6f8c80ebd88d"&gt;https://scribe.bus-hit.me/honest-creative/all-you-need-is-to-make-1-000-pots-6f8c80ebd88d&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2023-12-20T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/F9</id>
    <title>Sergey Faldin, All You Need Is To Make 1,000 Pots.</title>
    <updated>2025-01-21T07:57:55Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/D10"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Oskar Dudycz, &lt;em&gt;“Hitchhiker’s Guide To Moving From Relational Data To Events,”&lt;/em&gt; December 15, 2023, &lt;a href="https://event-driven.io/en/the_end_is_near_for_crud_data/"&gt;https://event-driven.io/en/the_end_is_near_for_crud_data/&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2023-12-18T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/D10</id>
    <title>Oskar Dudycz, From Relational Data To Events.</title>
    <updated>2025-01-20T22:06:02Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/D6"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Sam Thomas Davies, &lt;em&gt;“Words Into Works #099 | The Six Principles of Effective Writing,”&lt;/em&gt; December 11, 2023, &lt;a href="https://www.samuelthomasdavies.com/the-six-principles-of-effective-writing/"&gt;https://www.samuelthomasdavies.com/the-six-principles-of-effective-writing/&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2023-12-15T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/D6</id>
    <title>Sam Davies, The Six Principles of Effective Writing.</title>
    <updated>2024-04-27T22:19:54Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/C11"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Leonardo Creed, &lt;em&gt;“The Most Valuable Trait of Top Software Engineers,”&lt;/em&gt; Substack newsletter, Engineer’s Codex &lt;em class="paren-em"&gt;(blog)&lt;/em&gt;, October 26, 2023, &lt;a href="https://engineercodex.substack.com/p/the-1-trait-of-the-most-valuable"&gt;https://engineercodex.substack.com/p/the-1-trait-of-the-most-valuable&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2023-12-04T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/C11</id>
    <title>Leonardo Creed, The Most Valuable Trait of Top Software Engineers.</title>
    <updated>2025-01-20T22:02:36Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/T4"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Chris Taylor, &lt;em&gt;“Every Self-Help Book Ever, Boiled down to 11 Simple Rules,”&lt;/em&gt; July 25, 2020, &lt;a href="https://mashable.com/article/best-self-help-book-advice"&gt;https://mashable.com/article/best-self-help-book-advice&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2023-11-30T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/T4</id>
    <title>Chris Taylor, Every Self-Help Book Ever.</title>
    <updated>2025-01-20T22:28:08Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/P4"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Remy Porter, &lt;em&gt;“The Therac-25 Incident,”&lt;/em&gt; February 15, 2021, &lt;a href="https://thedailywtf.com/articles/the-therac-25-incident"&gt;https://thedailywtf.com/articles/the-therac-25-incident&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2023-11-30T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/P4</id>
    <title>Remy Porter, The Therac-25 Incident.</title>
    <updated>2024-04-28T00:16:22Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/S18"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Derek Sivers, First Follower Leadership Lessons - Stabilized and Enlarged, 2013, &lt;a href="https://www.youtube.com/watch?v=8p9GZfhvrys"&gt;https://www.youtube.com/watch?v=8p9GZfhvrys&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2023-11-26T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/S18</id>
    <title>Derek Sivers, First Follower Leadership Lessons.</title>
    <updated>2025-01-20T22:26:24Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/V4"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Veritasium, &lt;em&gt;“Testing the US Military’s Worst Idea,”&lt;/em&gt; 2022, &lt;a href="https://www.youtube.com/watch?v=J_n1FZaKzF8"&gt;https://www.youtube.com/watch?v=J_n1FZaKzF8&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2023-11-26T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/V4</id>
    <title>Veritasium, Testing the US Military’s Worst Idea.</title>
    <updated>2025-01-21T17:32:25Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/S19"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
&lt;em&gt;“Stop Making People Make Up Their Mind,”&lt;/em&gt; Stay SaaSy, July 12, 2023, &lt;a href="https://staysaasy.com/product/2023/07/12/changing-minds.html"&gt;https://staysaasy.com/product/2023/07/12/changing-minds.html&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2023-11-18T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/S19</id>
    <title>Stay SaaSy, Stop Making People Make Up Their Mind.</title>
    <updated>2025-01-20T22:26:43Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/B10"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Jimmy Breck-McKye, &lt;em&gt;“Microfrontends Should Be Your Last Resort,”&lt;/em&gt; May 29, 2023, &lt;a href="https://www.breck-mckye.com/blog/2023/05/Microfrontends-should-be-your-last-resort/"&gt;https://www.breck-mckye.com/blog/2023/05/Microfrontends-should-be-your-last-resort/&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2023-11-18T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/B10</id>
    <title>Jimmy Breck-McKye, Microfrontends Should Be Your Last Resort.</title>
    <updated>2025-01-20T21:59:35Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/N8"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Arjun Narayan and George Fraser, &lt;em&gt;“Using Kafka as Your Primary Data Store? Here’s Why You Shouldn’t,”&lt;/em&gt; Materialize, December 8, 2020, &lt;a href="https://materialize.com/kafka-is-not-a-database/"&gt;https://materialize.com/kafka-is-not-a-database/&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2023-11-18T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/N8</id>
    <title>Arjun Narayan and George Fraser, Don’t Use Kafka as Your Primary Data Store.</title>
    <updated>2025-01-20T22:22:45Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/M8"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Neil Madden, &lt;em&gt;“Moving Away from UUIDs,”&lt;/em&gt; Neil Madden &lt;em class="paren-em"&gt;(blog)&lt;/em&gt;, August 30, 2018, &lt;a href="https://neilmadden.blog/2018/08/30/moving-away-from-uuids/"&gt;https://neilmadden.blog/2018/08/30/moving-away-from-uuids/&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2023-11-14T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/M8</id>
    <title>Neil Madden, Moving Away from UUIDs.</title>
    <updated>2023-11-19T04:38:29Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/C4"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
&lt;em&gt;“How to Generate Human-Friendly Identifiers | Connect2id,”&lt;/em&gt; 2016. &lt;a href="https://connect2id.com/blog/how-to-generate-human-friendly-identifiers"&gt;https://connect2id.com/blog/how-to-generate-human-friendly-identifiers&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2023-11-14T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/C4</id>
    <title>Connect2id, Human-Friendly Identifiers.</title>
    <updated>2023-11-19T07:49:11Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/V2"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Henrique Vicente, &lt;em&gt;“You Don’t Need UUID | Henrique Vicente,”&lt;/em&gt; May 30, 2021, &lt;a href="https://henvic.dev/posts/uuid/"&gt;https://henvic.dev/posts/uuid/&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2023-11-14T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/V2</id>
    <title>Henrique Vicente, You Don’t Need UUID.</title>
    <updated>2023-11-19T06:21:43Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/C5"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Rob Conery, &lt;em&gt;“A Better ID Generator For PostgreSQL,”&lt;/em&gt; Rob Conery, May 29, 2014, &lt;a href="http://rob.conery.io/2014/05/29/a-better-id-generator-for-postgresql/"&gt;http://rob.conery.io/2014/05/29/a-better-id-generator-for-postgresql/&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2023-11-14T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/C5</id>
    <title>Rob Conery, A Better ID Generator For PostgreSQL.</title>
    <updated>2023-11-19T07:49:28Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/K13"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Brett &amp; Kate McKay, &lt;em&gt;“Think Like Feynman: Why You Should Have 12 Favorite Problems,”&lt;/em&gt; The Art of Manliness &lt;em class="paren-em"&gt;(blog)&lt;/em&gt;, May 2, 2023, &lt;a href="https://www.artofmanliness.com/character/advice/think-like-feynman-why-you-should-have-12-favorite-problems/"&gt;https://www.artofmanliness.com/character/advice/think-like-feynman-why-you-should-have-12-favorite-problems/&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2023-11-11T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/K13</id>
    <title>AoM, You Should Have 12 Favorite Problems.</title>
    <updated>2025-01-21T17:35:41Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/K11"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Matt Kirkland, &lt;em&gt;“On Keeping Sketchbooks,”&lt;/em&gt; Attainable Felicity, August 22, 2023, &lt;a href="https://attainablefelicity.mattkirkland.com/20230822/Sketchbooks.html"&gt;https://attainablefelicity.mattkirkland.com/20230822/Sketchbooks.html&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2023-09-28T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/K11</id>
    <title>Matt Kirkland, On Keeping Sketchbooks.</title>
    <updated>2025-01-21T17:17:26Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/K16"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Patrick McKenzie, &lt;em&gt;“Credit Card Debt Collection,”&lt;/em&gt; August 11, 2023, &lt;a href="https://www.bitsaboutmoney.com/archive/the-waste-stream-of-consumer-finance/"&gt;https://www.bitsaboutmoney.com/archive/the-waste-stream-of-consumer-finance/&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2023-09-12T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/K16</id>
    <title>Patrick McKenzie, Credit Card Debt Collection.</title>
    <updated>2025-01-21T17:34:56Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/V1"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Vsauce, &lt;em&gt;“Do Chairs Exist?,”&lt;/em&gt; YouTube video, 37:51, 2021-09-14, &lt;a href="https://www.youtube.com/watch?v=fXW-QjBsruE"&gt;https://www.youtube.com/watch?v=fXW-QjBsruE&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;
&lt;strong&gt;Premise:&lt;/strong&gt; Ontology and mereology help us explore what exactly it means for a chair to exist.&lt;/p&gt;
</content>
    <published>2023-05-06T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/V1</id>
    <title>Vsauce, Do Chairs Exist?</title>
    <updated>2023-05-07T02:45:52Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/O3"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Addy Osmani, &lt;em&gt;“Managing Complex Change,”&lt;/em&gt; November 7, 2022, &lt;a href="https://addyosmani.com/blog/managing-complex-change/"&gt;https://addyosmani.com/blog/managing-complex-change/&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;
&lt;strong&gt;Premise:&lt;/strong&gt; You need 6 factors to manage complex change, and each is associated with a pitfall when missing.&lt;/p&gt;
</content>
    <published>2023-04-30T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/O3</id>
    <title>Addy Osmani, Managing Complex Change.</title>
    <updated>2023-04-30T19:45:29Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/J3"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
David Jenkins, &lt;em&gt;“I Asked Guillermo Del Toro His Thoughts on the Intersections between Noir and Horror &lt;em class="paren-em"&gt;(w/r/t Nightmare Alley)&lt;/em&gt; and, for Context, He Threw out This Amazing Definition of Noir… Https://T.Co/COrbpXJqdp,”&lt;/em&gt; Tweet, Twitter, December 14, 2021, &lt;a href="https://twitter.com/daveyjenkins/status/1470871077404479499"&gt;https://twitter.com/daveyjenkins/status/1470871077404479499&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2023-04-29T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/J3</id>
    <title>David Jenkins, Guillermo Del Toro on Noir and Horror.</title>
    <updated>2025-01-20T22:17:21Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/K5"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Kurzgesagt, &lt;em&gt;Black Hole Star – The Star That Shouldn’t Exist,&lt;/em&gt; 2022, &lt;a href="https://www.youtube.com/watch?v=aeWyp2vXxqA"&gt;https://www.youtube.com/watch?v=aeWyp2vXxqA&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;
&lt;strong&gt;Premise:&lt;/strong&gt; Supermassive stars may have existed in the early universe which created and force fed internal black holes, explaining why we see black holes that seem to be too large to exist.&lt;/p&gt;
</content>
    <published>2023-04-23T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/K5</id>
    <title>Kurzgesagt, The Star That Shouldn’t Exist.</title>
    <updated>2023-04-23T20:21:43Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/K4"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Henrik Kniberg, &lt;em&gt;“The Resource Utilization Trap,”&lt;/em&gt; 2014, &lt;a href="https://www.youtube.com/watch?v=CostXs2p6r0&amp;ab_channel=crispagileacademy"&gt;https://www.youtube.com/watch?v=CostXs2p6r0&amp;ab_channel=crispagileacademy&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;
&lt;strong&gt;Premise:&lt;/strong&gt; Resource utilization must include slack or the flow of work is held up.&lt;/p&gt;
</content>
    <published>2023-04-23T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/K4</id>
    <title>Henrik Kniberg, The Resource Utilization Trap.</title>
    <updated>2023-04-23T06:10:11Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/D11"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Sam Thomas Davies, &lt;em&gt;“Words Into Works #070 | The Four Commitments,”&lt;/em&gt; Sam Thomas Davies &lt;em class="paren-em"&gt;(blog)&lt;/em&gt;, April 3, 2023, &lt;a href="https://www.samuelthomasdavies.com/the-four-commitments/"&gt;https://www.samuelthomasdavies.com/the-four-commitments/&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2023-04-19T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/D11</id>
    <title>Sam Thomas Davies, The Four Commitments.</title>
    <updated>2025-01-20T22:06:53Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/H10"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Lara Hogan, &lt;em&gt;“Be a Thermostat, Not a Thermometer,”&lt;/em&gt; April 4, 2023, &lt;a href="https://larahogan.me/blog/be-a-thermostat-not-a-thermometer/"&gt;https://larahogan.me/blog/be-a-thermostat-not-a-thermometer/&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2023-04-15T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/H10</id>
    <title>Lara Hogan, Be a Thermostat, Not a Thermometer.</title>
    <updated>2025-01-20T22:14:49Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/R14"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Jade Rubick, &lt;em&gt;“Engineering Manager vs. Tech Lead – Which Is Better?,”&lt;/em&gt; November 17, 2021, &lt;a href="https://www.rubick.com/engineering-manager-vs-tech-lead/"&gt;https://www.rubick.com/engineering-manager-vs-tech-lead/&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2023-04-07T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/R14</id>
    <title>Jade Rubick, Engineering Manager vs. Tech Lead.</title>
    <updated>2025-01-20T22:24:12Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/C14"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Cedric Chin, &lt;em&gt;“Goodhart’s Law Isn’t as Useful as You Might Think,”&lt;/em&gt; Commoncog, April 7, 2023, &lt;a href="https://commoncog.com/goodharts-law-not-useful/"&gt;https://commoncog.com/goodharts-law-not-useful/&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2023-04-07T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/C14</id>
    <title>Cedric Chin, Goodhart’s Law Isn’t as Useful as You Might Think.</title>
    <updated>2025-01-20T22:03:35Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/R13"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Jade Rubick, &lt;em&gt;“Can This Ownership Exercise Improve How You Work with Others?,”&lt;/em&gt; June 10, 2022, &lt;a href="https://www.rubick.com/role-definition/"&gt;https://www.rubick.com/role-definition/&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2023-04-07T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/R13</id>
    <title>Jade Rubick, Can This Ownership Exercise Improve How You Work with Others?</title>
    <updated>2025-01-20T22:23:48Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/P6"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Ryan Peterman, &lt;em&gt;“Why Engineers Need To Write,”&lt;/em&gt; March 24, 2023, &lt;a href="https://www.developing.dev/p/why-engineers-need-to-write"&gt;https://www.developing.dev/p/why-engineers-need-to-write&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2023-04-02T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/P6</id>
    <title>Ryan Peterman, Why Engineers Need To Write.</title>
    <updated>2025-01-20T22:23:26Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/G14"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Angela Giuffrida, &lt;em&gt;“Italian Academic Cooks up Controversy with Claim Carbonara Is US Dish,”&lt;/em&gt; The Guardian, March 27, 2023, sec. World news, &lt;a href="https://www.theguardian.com/world/2023/mar/27/italian-academic-cooks-up-controversy-with-claim-carbonara-is-us-dish"&gt;https://www.theguardian.com/world/2023/mar/27/italian-academic-cooks-up-controversy-with-claim-carbonara-is-us-dish&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2023-03-29T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/G14</id>
    <title>Angela Giuffrida, Carbonara Is a US Dish.</title>
    <updated>2025-01-21T16:56:32Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/R21"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Jade Rubick, &lt;em&gt;“Completed Staff Work,”&lt;/em&gt; July 27, 2016, &lt;a href="https://www.rubick.com/completed-staff-work/"&gt;https://www.rubick.com/completed-staff-work/&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2023-03-21T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/R21</id>
    <title>Jade Rubick, Completed Staff Work.</title>
    <updated>2025-01-21T17:34:39Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/R17"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Jade Rubick, &lt;em&gt;“Advice for New Directors,”&lt;/em&gt; February 20, 2023, &lt;a href="https://www.rubick.com/advice-for-new-directors/"&gt;https://www.rubick.com/advice-for-new-directors/&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2023-03-20T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/R17</id>
    <title>Jade Rubick, Advice for New Directors.</title>
    <updated>2025-01-20T22:24:44Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/R7"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Jade Rubick, &lt;em&gt;“A History of Mini-Ms,”&lt;/em&gt; February 23, 2023, &lt;a href="https://www.rubick.com/history-of-mini-ms/"&gt;https://www.rubick.com/history-of-mini-ms/&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;
&lt;strong&gt;Premise:&lt;/strong&gt; History and context of EM groups.&lt;/p&gt;
</content>
    <published>2023-03-18T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/R7</id>
    <title>Jade Rubick, A History of Mini-Ms.</title>
    <updated>2023-04-23T21:03:29Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/R6"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Jade Rubick, &lt;em&gt;“Variations for Mini-M Management Support Groups,”&lt;/em&gt; February 10, 2023, &lt;a href="https://www.rubick.com/mini-m-variations/"&gt;https://www.rubick.com/mini-m-variations/&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;
&lt;strong&gt;Premise:&lt;/strong&gt; Ideas on ways to adjust EM support group formats.&lt;/p&gt;
</content>
    <published>2023-03-17T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/R6</id>
    <title>Jade Rubick, Variations for Mini-M Management Support Groups.</title>
    <updated>2023-04-23T21:00:20Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/R5"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Jade Rubick, &lt;em&gt;“How to Implement Mini-M Support Groups,”&lt;/em&gt; February 2, 2023, &lt;a href="https://www.rubick.com/implementing-mini-m-support-groups/"&gt;https://www.rubick.com/implementing-mini-m-support-groups/&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;
&lt;strong&gt;Premise:&lt;/strong&gt; Guidance on implementing EM support groups.&lt;/p&gt;
</content>
    <published>2023-03-16T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/R5</id>
    <title>Jade Rubick, How to Implement Mini-M Support Groups.</title>
    <updated>2023-04-23T20:58:18Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/R4"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Jade Rubick, &lt;em&gt;“Uplevel Your Managers with Mini-M Support Groups,”&lt;/em&gt; January 28, 2023, &lt;a href="https://www.rubick.com/mini-m-support-groups/"&gt;https://www.rubick.com/mini-m-support-groups/&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;
&lt;strong&gt;Premise:&lt;/strong&gt; Introduction to an EM support group format.&lt;/p&gt;
</content>
    <published>2023-03-15T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/R4</id>
    <title>Jade Rubick, Uplevel Your Managers with Mini-M Support Groups.</title>
    <updated>2023-04-23T20:54:59Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/S10"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Jason Sachs, &lt;em&gt;“Zebras Hate You For No Reason: Why Amdahl’s Law Is Misleading in a World of Cats &lt;em class="paren-em"&gt;(And Maybe in Ours Too)&lt;/em&gt; - Jason Sachs,”&lt;/em&gt; February 27, 2017, &lt;a href="https://www.embeddedrelated.com/showarticle/1033.php"&gt;https://www.embeddedrelated.com/showarticle/1033.php&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2023-03-07T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/S10</id>
    <title>Jason Sachs, Why Amdahl’s Law is Misleading.</title>
    <updated>2023-03-17T22:57:45Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/S9"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Eric Schwitzgebel, &lt;em&gt;“If Materialism Is True, the United States Is Probably Conscious,”&lt;/em&gt; Philosophical Studies, no. 172 &lt;em class="paren-em"&gt;(2015)&lt;/em&gt;: 1697–1721.  &lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;
&lt;a href="http://www.faculty.ucr.edu/~eschwitz/SchwitzPapers/USAconscious-140721.pdf"&gt;View a PDF of the article here&lt;/a&gt;.&lt;/p&gt;
</content>
    <published>2023-03-07T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/S9</id>
    <title>Eric Schwitzgebel, If Materialism Is True, the United States Is Probably Conscious.</title>
    <updated>2023-03-17T22:34:47Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/O2"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
KK Ottesen, &lt;em&gt;“‘They Are Preparing for War’: An Expert on Civil Wars Discusses Where Political Extremists Are Taking This Country,”&lt;/em&gt; Washington Post, March 8, 2022, &lt;a href="https://www.washingtonpost.com/magazine/2022/03/08/they-are-preparing-war-an-expert-civil-wars-discusses-where-political-extremists-are-taking-this-country/"&gt;https://www.washingtonpost.com/magazine/2022/03/08/they-are-preparing-war-an-expert-civil-wars-discusses-where-political-extremists-are-taking-this-country/&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2023-03-07T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/O2</id>
    <title>KK Ottsen, They Are Preparing for War.</title>
    <updated>2023-03-17T23:01:54Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/K12"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Vadim Kravcenko, &lt;em&gt;“Contracts You Should Never Sign,”&lt;/em&gt; Vadim Kravcenko, January 27, 2023, &lt;a href="https://vadimkravcenko.com/shorts/contracts-you-should-never-sign/"&gt;https://vadimkravcenko.com/shorts/contracts-you-should-never-sign/&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2023-03-06T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/K12</id>
    <title>Vadim Kravcenko, Contracts You Should Never Sign.</title>
    <updated>2025-01-21T17:36:45Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/C18"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Tim Carmody, &lt;em&gt;“Cistercian Numerals,”&lt;/em&gt; kottke.org, January 30, 2023, &lt;a href="https://kottke.org/23/01/cistercian-numerals"&gt;https://kottke.org/23/01/cistercian-numerals&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2023-03-06T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/C18</id>
    <title>Tim Carmody, Cistercian Numerals.</title>
    <updated>2025-01-21T07:29:36Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/R10"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Jade Rubick, &lt;em&gt;“Everyone Lies to Leaders,”&lt;/em&gt; June 1, 2021, &lt;a href="https://www.rubick.com/everyone-lies-to-leaders/"&gt;https://www.rubick.com/everyone-lies-to-leaders/&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2023-03-06T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/R10</id>
    <title>Jade Rubick, Everyone Lies to Leaders.</title>
    <updated>2024-04-27T22:15:04Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/A10"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Animation Obsessive, &lt;em&gt;“How to Paint Like Hayao Miyazaki,”&lt;/em&gt; Substack newsletter, Animation Obsessive &lt;em class="paren-em"&gt;(blog)&lt;/em&gt;, February 2, 2023, &lt;a href="https://animationobsessive.substack.com/p/how-to-paint-like-hayao-miyazaki/"&gt;https://animationobsessive.substack.com/p/how-to-paint-like-hayao-miyazaki/&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2023-03-06T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/A10</id>
    <title>Animation Obsessive, How to Paint Like Hayao Miyazaki.</title>
    <updated>2025-01-21T07:26:22Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/W12"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Don Wentworth, &lt;em&gt;“Issa’s Untidy Hut: ‘Even in Kyoto … I Long for Kyoto:’ Bashō by Hass,”&lt;/em&gt; Issa’s Untidy Hut &lt;em class="paren-em"&gt;(blog)&lt;/em&gt;, August 27, 2010, &lt;a href="https://lilliputreview.blogspot.com/2010/08/even-in-kyoto-i-long-for-kyoto-basho-by.html"&gt;https://lilliputreview.blogspot.com/2010/08/even-in-kyoto-i-long-for-kyoto-basho-by.html&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2023-03-06T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/W12</id>
    <title>Don Wentworth, Bashō by Hass.</title>
    <updated>2025-01-21T17:30:28Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/W11"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Amos Wenger, &lt;em&gt;“Lies We Tell Ourselves to Keep Using Golang,”&lt;/em&gt; fasterthanli.me, April 29, 2022, &lt;a href="https://fasterthanli.me/articles/lies-we-tell-ourselves-to-keep-using-golang"&gt;https://fasterthanli.me/articles/lies-we-tell-ourselves-to-keep-using-golang&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2023-03-06T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/W11</id>
    <title>Amos Wenger, Lies We Tell Ourselves to Keep Using Golang.</title>
    <updated>2025-01-21T17:30:39Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/T6"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Clive Thompson, &lt;em&gt;“How I Use RSS To ‘Rewild’ My Attention,”&lt;/em&gt; Medium &lt;em class="paren-em"&gt;(blog)&lt;/em&gt;, February 7, 2023, &lt;a href="https://clivethompson.medium.com/how-i-use-rss-to-rewild-my-attention-7731267a40d8"&gt;https://clivethompson.medium.com/how-i-use-rss-to-rewild-my-attention-7731267a40d8&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2023-03-01T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/T6</id>
    <title>Clive Thompson, How I Use RSS To ‘Rewild’ My Attention.</title>
    <updated>2025-01-21T17:32:36Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/H12"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Philipp Hauer, &lt;em&gt;“Lessons Learned from the Book ‘Effective Remote Work,’”&lt;/em&gt; August 25, 2022, &lt;a href="https://phauer.com/2022/book-remote-work-lessons-learned/"&gt;https://phauer.com/2022/book-remote-work-lessons-learned/&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2023-02-01T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/H12</id>
    <title>Philipp Hauer, Effective Remote Work.</title>
    <updated>2025-01-20T22:15:28Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/B11"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Kevin Bartley, &lt;em&gt;“ETL vs ELT: Key Differences, Side-by-Side Comparisons, &amp; Use Cases,”&lt;/em&gt; Rivery, June 27, 2022, &lt;a href="https://rivery.io/blog/etl-vs-elt/"&gt;https://rivery.io/blog/etl-vs-elt/&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2023-01-20T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/B11</id>
    <title>Kevin Bartley, ETL vs ELT.</title>
    <updated>2025-01-20T21:59:53Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/M7"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Michael McIntyre, &lt;em&gt;“Goodhart’s Law,”&lt;/em&gt; October 17, 2001, &lt;a href="https://www.damtp.cam.ac.uk/user/mem/papers/LHCE/goodhart.html"&gt;https://www.damtp.cam.ac.uk/user/mem/papers/LHCE/goodhart.html&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2022-12-24T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/M7</id>
    <title>Michael McIntyre, Goodhart’s Law.</title>
    <updated>2023-11-19T04:38:19Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/H4"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Basel Al-Sheikh Hussein, &lt;em&gt;“The Sapir-Whorf Hypothesis Today,”&lt;/em&gt; Theory and Practice in Language Studies 2, no. 3 &lt;em class="paren-em"&gt;(March 1, 2012)&lt;/em&gt;: 642–46, &lt;a href="https://doi.org/10.4304/tpls.2.3.642-646"&gt;https://doi.org/10.4304/tpls.2.3.642-646&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2022-12-23T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/H4</id>
    <title>Basel Al-Sheikh Hussein, The Sapir-Whorf Hypothesis Today.</title>
    <updated>2023-03-06T22:36:13Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/A5"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Evan Andrews, &lt;em&gt;“What Was the Sword of Damocles?,”&lt;/em&gt; HISTORY, February 17, 2016, &lt;a href="https://www.history.com/news/what-was-the-sword-of-damocles"&gt;https://www.history.com/news/what-was-the-sword-of-damocles&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2022-12-23T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/A5</id>
    <title>Evan Andrews, Sword of Damocles.</title>
    <updated>2023-03-06T22:33:11Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/F4"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Nancy Friedman, &lt;em&gt;“Word of the Week: Cunningham’s Law,”&lt;/em&gt; Fritinancy, May 31, 2010, &lt;a href="https://nancyfriedman.typepad.com/away_with_words/2010/05/word-of-the-week-cunninghams-law.html"&gt;https://nancyfriedman.typepad.com/away_with_words/2010/05/word-of-the-week-cunninghams-law.html&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2022-12-21T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/F4</id>
    <title>Nancy Friedman, Cunningham’s Law.</title>
    <updated>2023-03-06T22:38:11Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/M14"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
William Morgan, &lt;em&gt;“The Generation Ship Model of Software Development,”&lt;/em&gt; Medium &lt;em class="paren-em"&gt;(blog)&lt;/em&gt;, July 10, 2014, &lt;a href="mailto:https://medium.com/@wm/the-generation-ship-model-of-software-development-5ef89a74854b"&gt;https://medium.com/@wm/the-generation-ship-model-of-software-development-5ef89a74854b&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2022-12-21T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/M14</id>
    <title>William Morgan, The Generation Ship Model of Software Development.</title>
    <updated>2025-01-21T18:34:43Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/L7"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Robert E. Lucas, &lt;em&gt;“Econometric Policy Evaluation: A Critique,”&lt;/em&gt; Carnegie-Rochester Conference Series on Public Policy, no. 1 &lt;em class="paren-em"&gt;(1976)&lt;/em&gt;: 19–46.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2022-11-16T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/L7</id>
    <title>Robert Lucas, Econometric Policy Evaluation.</title>
    <updated>2022-11-17T06:44:15Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/H3"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Douglas R. Hofstadter, &lt;em&gt;Gödel, Escher, Bach: An Eternal Golden Braid&lt;/em&gt;, 20th anniversary ed &lt;em class="paren-em"&gt;(New York: Basic Books, 1999)&lt;/em&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2022-11-13T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/H3</id>
    <title>Douglas Hofstadter, Gödel, Escher, Bach.</title>
    <updated>2022-11-13T23:20:07Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/L5"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
K.J. Lieberherr and I.M. Holland, &lt;em&gt;“Assuring Good Style for Object-Oriented Programs,”&lt;/em&gt; IEEE Software 6, no. 5 &lt;em class="paren-em"&gt;(September 1989)&lt;/em&gt;: 38–48, &lt;a href="https://doi.org/10.1109/52.35588"&gt;https://doi.org/10.1109/52.35588&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2022-11-13T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/L5</id>
    <title>Lieberherr and Holland, Assuring Good Style for Object-Oriented Programs.</title>
    <updated>2022-11-13T23:15:47Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/M6"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Benoit Mandelbrot, &lt;em&gt;“How Long Is the Coast of Britain? Statistical Self-Similarity and Fractional Dimension,”&lt;/em&gt; Science 156, no. 3775 &lt;em class="paren-em"&gt;(May 5, 1967)&lt;/em&gt;: 636–38, &lt;a href="https://doi.org/10.1126/science.156.3775.636"&gt;https://doi.org/10.1126/science.156.3775.636&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2022-11-13T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/M6</id>
    <title>Benoit Mandelbrot, How Long is the Cost of Britain?</title>
    <updated>2022-12-25T00:40:51Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/N3"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Doc Norton, &lt;em&gt;Escape Velocity: Better Metrics for Agile Teams&lt;/em&gt; &lt;em class="paren-em"&gt;(Leanpub, 2020)&lt;/em&gt;, &lt;a href="http://leanpub.com/escapevelocity"&gt;http://leanpub.com/escapevelocity&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2022-11-09T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/N3</id>
    <title>Doc Norton, Escape Velocity.</title>
    <updated>2022-11-13T23:23:49Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/D16"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Nathaniel Davis, &lt;em&gt;“UX Design Practice Verticals,”&lt;/em&gt; December 4, 2011, &lt;a href="https://methodbrain.com/2011/12/04/ux-design-practice-verticals-2/"&gt;https://methodbrain.com/2011/12/04/ux-design-practice-verticals-2/&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2022-11-06T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/D16</id>
    <title>Nathaniel Davis, UX Design Practice Verticals.</title>
    <updated>2025-01-21T07:39:25Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/G3"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Aaron Gustafson, &lt;em&gt;“Understanding Progressive Enhancement,”&lt;/em&gt; A List Apart, October 7, 2008, &lt;a href="https://alistapart.com/article/understandingprogressiveenhancement/"&gt;https://alistapart.com/article/understandingprogressiveenhancement/&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2022-11-06T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/G3</id>
    <title>Aaron Gustafson, Understanding Progressive Enhancement.</title>
    <updated>2022-11-07T02:27:58Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/G4"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Seth Godin, &lt;em&gt;“Three Kinds of ‘Forever,’”&lt;/em&gt; Seth’s Blog, May 17, 2019, &lt;a href="https://seths.blog/2019/05/three-kinds-of-forever/"&gt;https://seths.blog/2019/05/three-kinds-of-forever/&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2022-11-06T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/G4</id>
    <title>Seth Godin, Three Kinds of Forever.</title>
    <updated>2022-11-07T03:26:10Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/L4"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Will Larson, &lt;em&gt;Staff Engineer: Leadership beyond the Management Track&lt;/em&gt;, First edition &lt;em class="paren-em"&gt;(San Francisco? Will Larson, 2021)&lt;/em&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2022-11-05T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/L4</id>
    <title>Will Larson, Staff Engineer.</title>
    <updated>2022-11-05T20:52:24Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/G16"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Ben Gremillion, &lt;em&gt;“A Hands-On Guide to Mobile-First Responsive Design,”&lt;/em&gt; Studio by UXPin &lt;em class="paren-em"&gt;(blog)&lt;/em&gt;, October 1, 2015, &lt;a href="https://www.uxpin.com/studio/blog/a-hands-on-guide-to-mobile-first-design/"&gt;https://www.uxpin.com/studio/blog/a-hands-on-guide-to-mobile-first-design/&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2022-11-05T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/G16</id>
    <title>Ben Gremillion, Mobile-First Responsive Design.</title>
    <updated>2025-01-21T17:13:58Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/T2"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Shin Takahashi, &lt;em&gt;The Manga Guide to Statistics&lt;/em&gt; &lt;em class="paren-em"&gt;(San Francisco: No Starch Press, 2009)&lt;/em&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2022-10-22T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/T2</id>
    <title>Shin Takahashi, The Manga Guide to Statistics.</title>
    <updated>2022-10-24T05:17:32Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/P3"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Jasper Polak, &lt;em&gt;“McKinsey Makes $500,000+ on a Single Presentation. You Can Learn Their Simple Framework below &lt;em class="paren-em"&gt;(for Free)&lt;/em&gt;:,”&lt;/em&gt; Tweet, Twitter, July 23, 2022, &lt;a href="https://twitter.com/polak_jasper/status/1550816018158833667"&gt;https://twitter.com/polak_jasper/status/1550816018158833667&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2022-10-02T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/P3</id>
    <title>Jasper Polak, McKinsey Presentations.</title>
    <updated>2022-10-23T22:58:06Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/H14"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Trey Harris, &lt;em&gt;“The Case of the 500-Mile Email,”&lt;/em&gt; November 29, 2002, &lt;a href="https://www.ibiblio.org/harris/500milemail.html"&gt;https://www.ibiblio.org/harris/500milemail.html&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2022-10-01T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/H14</id>
    <title>Trey Harris, The Case of the 500-Mile Email.</title>
    <updated>2025-01-21T17:16:01Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/D19"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
George Dvorsky, &lt;em&gt;“What Is the Purpose of the Universe? Here Is One Possible Answer.,”&lt;/em&gt; March 30, 2013, &lt;a href="https://gizmodo.com/what-is-the-purpose-of-the-universe-here-is-one-possib-5981472"&gt;https://gizmodo.com/what-is-the-purpose-of-the-universe-here-is-one-possib-5981472&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2022-10-01T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/D19</id>
    <title>George Dvorsky, What Is the Purpose of the Universe? Here Is One Possible Answer..</title>
    <updated>2025-01-21T07:55:06Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/E5"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Julia Evans, &lt;strong&gt;“How to Spy on Your Programs with Strace”&lt;/strong&gt; &lt;em class="paren-em"&gt;(Julia Evans, April 14, 2015)&lt;/em&gt;, &lt;a href="https://wizardzines.com/zines/strace/"&gt;https://wizardzines.com/zines/strace/&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2022-10-01T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/E5</id>
    <title>Julia Evans, How to Spy on Your Programs with Strace.</title>
    <updated>2025-01-21T07:56:41Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/H2"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Ann Pietrangelo, &lt;em&gt;“Yerkes-Dodson Law: How It Correlates to Stress, Anxiety, Performance,”&lt;/em&gt; Healthline, October 22, 2020, &lt;a href="https://www.healthline.com/health/yerkes-dodson-law"&gt;https://www.healthline.com/health/yerkes-dodson-law&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2022-09-19T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/H2</id>
    <title>Ann Pietrangelo, Yerkes-Dodson Law.</title>
    <updated>2025-01-20T21:14:36Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/L6"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
William Larson, &lt;em&gt;An Elegant Puzzle: Systems of Engineering Management&lt;/em&gt;, First edition &lt;em class="paren-em"&gt;(San Francisco, Calif.: Stripe Press / Stripe Matter Inc., 2019)&lt;/em&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2022-08-11T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/L6</id>
    <title>Will Larson, An Elegant Puzzle.</title>
    <updated>2022-12-25T00:41:29Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/K1"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Robert W Keidel, &lt;em&gt;Seeing Organizational Patterns: A New Theory and Language of Organizational Design&lt;/em&gt; &lt;em class="paren-em"&gt;(Washington, D.C.: Beard Books, 2005)&lt;/em&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2022-07-30T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/K1</id>
    <title>Robert Keidel, Seeing Organizational Patterns.</title>
    <updated>2022-09-18T04:11:24Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/K3"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Caleb Kruse, &lt;em&gt;“Focusing on Blue - 10 Projects,”&lt;/em&gt; accessed August 10, 2022, &lt;a href="https://calebkruse.com/10-projects/seeing-blue/"&gt;https://calebkruse.com/10-projects/seeing-blue/&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;
&lt;strong&gt;Premise:&lt;/strong&gt; The human eye cannot see blue light in focus.&lt;/p&gt;
</content>
    <published>2022-07-25T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/K3</id>
    <title>Caleb Kruse, Seeing Blue.</title>
    <updated>2022-09-19T18:20:18Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/W2"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Larry Wall and Randal L. Schwartz, &lt;em&gt;Programming Perl, Minor correction, A Nutshell Handbook&lt;/em&gt; &lt;em class="paren-em"&gt;(Sebastopol, CA: O’Reilly &amp; Associates, 1991)&lt;/em&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2022-07-03T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/W2</id>
    <title>Larry Wall and Randal Schwartz, Programming Perl.</title>
    <updated>2022-09-18T04:11:24Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/T1"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
&lt;em&gt;“Sunday Bulletin Board: I Have Dubbed It The Baader-Meinhof Phenomenon,”&lt;/em&gt; Twin Cities &lt;em class="paren-em"&gt;(blog)&lt;/em&gt;, October 16, 1994, &lt;a href="https://www.twincities.com/1994/10/16/baader-meinhof-phenomenon-sunday-bulletin-board/"&gt;https://www.twincities.com/1994/10/16/baader-meinhof-phenomenon-sunday-bulletin-board/&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2022-07-03T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/T1</id>
    <title>“I Have Dubbed It The Baader-Meinhof Phenomenon”</title>
    <updated>2022-09-18T04:11:24Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/D17"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Ricial Dilig, &lt;em&gt;“Shokunin: The Mastery of One’s Profession,”&lt;/em&gt; Pop Japan, May 10, 2018, &lt;a href="https://pop-japan.com/culture/shokunin-the-mastery-of-ones-profession/"&gt;https://pop-japan.com/culture/shokunin-the-mastery-of-ones-profession/&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2022-07-03T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/D17</id>
    <title>Ricial Dilig, Shokunin.</title>
    <updated>2025-01-21T07:41:05Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/A4"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Russell Ackoff, &lt;em&gt;“From Data to Wisdom,”&lt;/em&gt; Journal of Applied Systems Analysis 16 &lt;em class="paren-em"&gt;(1989)&lt;/em&gt;: 3–7.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2022-06-28T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/A4</id>
    <title>Russell Ackoff, From Data to Wisdom.</title>
    <updated>2022-09-18T04:11:24Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/A3"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Russell Ackoff, &lt;em&gt;“Learning and Legacy of Dr. W. Edwards Deming - Continuous Improvement,”&lt;/em&gt; &lt;a href="https://www.youtube.com/watch?v=OqEeIG8aPPk"&gt;https://www.youtube.com/watch?v=OqEeIG8aPPk&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2022-06-28T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/A3</id>
    <title>Russell Ackoff, Continuous Improvement.</title>
    <updated>2022-09-18T04:11:24Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/L2"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Will Larson, &lt;em&gt;“To Lead, You Have to Follow.,”&lt;/em&gt; May 25, 2020, &lt;a href="https://lethain.com/to-lead-follow/"&gt;https://lethain.com/to-lead-follow/&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2022-06-27T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/L2</id>
    <title>Will Larson, To Lead, You Have to Follow.</title>
    <updated>2022-09-18T04:11:24Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/P2"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
C. Northcote Parkinson, &lt;em&gt;“Parkinson’s Law,”&lt;/em&gt; The Economist, November 19, 1955, &lt;a href="https://www.economist.com/news/1955/11/19/parkinsons-law"&gt;https://www.economist.com/news/1955/11/19/parkinsons-law&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2022-06-25T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/P2</id>
    <title>Northcote Parkinson, Parkinson’s Law.</title>
    <updated>2022-09-19T18:12:41Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/B4"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Susanne Bartel and Andreas Bartel, &lt;em&gt;“The Official Guide to the Kanban Method,”&lt;/em&gt; February 2021.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2022-06-23T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/B4</id>
    <title>Susanne and Andreas Bartel, The Official Guide to the Kanban Method.</title>
    <updated>2022-09-18T04:11:24Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/B13"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Jay H. Bernstein, &lt;em&gt;“The Data-Information-Knowledge-Wisdom Hierarchy and Its Antithesis,”&lt;/em&gt; Proceedings from North American Symposium on Knowledge Organization 2 &lt;em class="paren-em"&gt;(November 13, 2009)&lt;/em&gt;: 68–75, &lt;a href="https://doi.org/10.7152/NASKO.V2I1.12806"&gt;https://doi.org/10.7152/NASKO.V2I1.12806&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2022-06-22T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/B13</id>
    <title>Jay H. Bernstein, The Data-Information-Knowledge-Wisdom Hierarchy and Its Antithesis.</title>
    <updated>2025-01-20T22:01:02Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/B3"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Lyn Bond, &lt;em&gt;“Synthesising,”&lt;/em&gt; Text, February 16, 2012, &lt;a href="https://emedia.rmit.edu.au/learninglab/content/synthesising-0"&gt;https://emedia.rmit.edu.au/learninglab/content/synthesising-0&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2022-06-20T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/B3</id>
    <title>Lyn Bond, Synthesizing.</title>
    <updated>2022-09-18T04:11:24Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/B2"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Abigail Bassett, &lt;em&gt;“The Art of Kakeibo, the Japanese Budgeting System That Could Change Your Financial Life,”&lt;/em&gt; Pocket &lt;em class="paren-em"&gt;(blog)&lt;/em&gt;, February 3, 2020, &lt;a href="https://getpocket.com/explore/item/the-art-of-kakeibo-the-japanese-budgeting-system-that-could-change-your-financial-life"&gt;https://getpocket.com/explore/item/the-art-of-kakeibo-the-japanese-budgeting-system-that-could-change-your-financial-life&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2022-06-19T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/B2</id>
    <title>Abigail Bassett, The Art of Kakeibo.</title>
    <updated>2022-09-18T04:11:24Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/Z1"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Arnold M. Zwicky, &lt;em&gt;“Why Are We so Illuded?,”&lt;/em&gt; September 2006, &lt;a href="https://web.stanford.edu/~zwicky/LSA07illude.abst.pdf"&gt;https://web.stanford.edu/~zwicky/LSA07illude.abst.pdf&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2022-06-18T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/Z1</id>
    <title>Arnold Zwicky, Why Are We so Illuded?</title>
    <updated>2022-09-18T04:11:24Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/S4"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Will Storr, &lt;em&gt;The Status Game: On Social Position and How We Use It&lt;/em&gt;, Unabridged &lt;em class="paren-em"&gt;(London: William Collins, 2021)&lt;/em&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2022-05-02T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/S4</id>
    <title>Will Storr, The Status Game.</title>
    <updated>2022-09-18T04:11:24Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/B15"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Oliver Burkeman, Four Thousand Weeks: Time Management for Mortals, First &lt;em class="paren-em"&gt;(New York: Farrar, Straus and Giroux, 2021)&lt;/em&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2022-05-02T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/B15</id>
    <title>Oliver Burkeman, Four Thousand Weeks: Time Management for Mortals.</title>
    <updated>2025-01-20T22:01:26Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/W1"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Allen Wilson, &lt;em&gt;“Playing the Zettelkasten RPG Through Arbitrary Constraints,”&lt;/em&gt; Zettelkasten Method &lt;em class="paren-em"&gt;(blog)&lt;/em&gt;, April 8, 2022, &lt;a href="https://zettelkasten.de/posts/playing-zettelkasten-rpg-through-arbitrary-constraints/"&gt;https://zettelkasten.de/posts/playing-zettelkasten-rpg-through-arbitrary-constraints/&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2022-04-23T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/W1</id>
    <title>Allen Wilson, Playing the Zettelkasten RPG Through Arbitrary Constraints.</title>
    <updated>2022-09-18T04:11:24Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/C1"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Anne-Laure Le Cunff, &lt;em&gt;“Interview: Using Books to Navigate Life with Juvoni Beckford,”&lt;/em&gt; Ness Labs &lt;em class="paren-em"&gt;(blog)&lt;/em&gt;, November 3, 2020, &lt;a href="https://nesslabs.com/juvoni-beckford-interview"&gt;https://nesslabs.com/juvoni-beckford-interview&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2022-04-23T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/C1</id>
    <title>Juvoni Beckford, Using Books to Navigate Life.</title>
    <updated>2022-09-18T04:11:24Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/I1"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Imaginary-Unit-3267, &lt;em&gt;“How, Exactly, Is Structure Supposed to ‘Emerge’?,”&lt;/em&gt; Reddit Comment, R/Zettelkasten, March 26, 2022, &lt;a href="https://www.reddit.com/r/Zettelkasten/comments/todvoo/how_exactly_is_structure_supposed_to_emerge/i26u1hq/"&gt;https://www.reddit.com/r/Zettelkasten/comments/todvoo/how_exactly_is_structure_supposed_to_emerge/i26u1hq/&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2022-04-17T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/I1</id>
    <title>How, Exactly, Is Structure Supposed to Emerge?</title>
    <updated>2022-09-18T04:11:24Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/M5"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Brett &amp; Kate McKay, &lt;em&gt;“Podcast #734: How Moral Grandstanding Is Ruining Our Public Discourse,”&lt;/em&gt; The Art of Manliness &lt;em class="paren-em"&gt;(blog)&lt;/em&gt;, August 23, 2021, &lt;a href="https://www.artofmanliness.com/character/behavior/moral-grandstanding-podcast/"&gt;https://www.artofmanliness.com/character/behavior/moral-grandstanding-podcast/&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2022-01-09T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/M5</id>
    <title>AoM #734 with Brandon Warmke, How Moral Grandstanding Is Ruining Our Public Discourse.</title>
    <updated>2022-09-18T04:11:24Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/M1"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Brett &amp; Kate McKay, &lt;em&gt;“Podcast #756: How the Desire for Status Explains &lt;em class="paren-em"&gt;(Pretty Much)&lt;/em&gt; Everything,”&lt;/em&gt; The Art of Manliness &lt;em class="paren-em"&gt;(blog)&lt;/em&gt;, November 15, 2021, &lt;a href="https://www.artofmanliness.com/character/behavior/podcast-756-how-the-desire-for-status-explains-pretty-much-everything/"&gt;https://www.artofmanliness.com/character/behavior/podcast-756-how-the-desire-for-status-explains-pretty-much-everything/&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2022-01-09T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/M1</id>
    <title>AoM #756 with Will Storr, How the Desire for Status Explains (Pretty Much) Everything.</title>
    <updated>2022-09-18T04:11:24Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/N1"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Jakub Neander, &lt;em&gt;“How To Export PostgreSQL Query Output as CSV,”&lt;/em&gt; zaiste.net, accessed January 5, 2022, &lt;a href="https://zaiste.net/databases/postgresql/howtos/howto-export-postgresql-query-output-csv/"&gt;https://zaiste.net/databases/postgresql/howtos/howto-export-postgresql-query-output-csv/&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2022-01-09T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/N1</id>
    <title>Jakub Neander, How To Export PostgreSQL Query Output as CSV.</title>
    <updated>2022-09-18T04:11:24Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/M3"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Donella H. Meadows and Diana Wright, &lt;em&gt;Thinking in Systems: A Primer&lt;/em&gt; &lt;em class="paren-em"&gt;(White River Junction, Vt: Chelsea Green Pub, 2008)&lt;/em&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;
&lt;strong&gt;Premise:&lt;/strong&gt; &lt;a href="/notes/0G6"&gt;Changing a system&lt;/a&gt; requires understanding the interactions of its components to identify the leverage points by which change is possible.&lt;/p&gt;
</content>
    <published>2022-01-03T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/M3</id>
    <title>Donella Meadows, Thinking in Systems.</title>
    <updated>2022-09-18T04:11:24Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/S1"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
&lt;em&gt;“Taking a Fence Down,”&lt;/em&gt; Society of Gilbert Keith Chesterton &lt;em class="paren-em"&gt;(blog)&lt;/em&gt;, April 30, 2012, &lt;a href="https://www.chesterton.org/taking-a-fence-down/"&gt;https://www.chesterton.org/taking-a-fence-down/&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2021-12-30T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/S1</id>
    <title>Society of GK Chesterton, “Taking a Fence Down”.</title>
    <updated>2022-09-18T04:11:24Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/M2"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Brett &amp; Kate McKay, &lt;em&gt;“Podcast #762: Prepare Now to Have Your Best Year Ever,”&lt;/em&gt; The Art of Manliness &lt;em class="paren-em"&gt;(blog)&lt;/em&gt;, December 8, 2021, &lt;a href="https://www.artofmanliness.com/character/advice/your-best-year-ever/"&gt;https://www.artofmanliness.com/character/advice/your-best-year-ever/&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2021-12-21T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/M2</id>
    <title>AoM #762 with Michael Hyatt, Prepare Now to Have Your Best New Year Ever.</title>
    <updated>2022-09-18T04:11:24Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/G1"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
David Gray, &lt;em&gt;Liminal Thinking: Create the Change You Want by Changing the Way You Think&lt;/em&gt;, 2016.  &lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;
&lt;strong&gt;Premise:&lt;/strong&gt; Beliefs shape how we experience the world and they must be changed to produce change.&lt;/p&gt;
</content>
    <published>2021-12-20T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/G1</id>
    <title>David Gray, Liminal Thinking.</title>
    <updated>2022-09-18T04:11:24Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/J1"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Ron Jeffries, &lt;em&gt;“Story Points Revisited,”&lt;/em&gt; May 23, 2019, &lt;a href="https://ronjeffries.com/articles/019-01ff/story-points/Index.html"&gt;https://ronjeffries.com/articles/019-01ff/story-points/Index.html&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;
&lt;strong&gt;Premise:&lt;/strong&gt; Story points had just meant “ideal days”, but today are used for all manner of inappropriate purposes.&lt;/p&gt;
</content>
    <published>2021-12-11T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/J1</id>
    <title>Ron Jeffries, Story Points Revisited.</title>
    <updated>2022-09-18T04:11:24Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/F2"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Camille Fournier, &lt;em&gt;The Manager’s Path: A Guide for Tech Leaders Navigating Growth and Change,&lt;/em&gt; ed. Laurel Ruma, First Edition &lt;em class="paren-em"&gt;(Beijing: O’Reilly, 2017)&lt;/em&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;
&lt;strong&gt;Premise:&lt;/strong&gt; A technical management career has many escalating roles and areas of responsibility.&lt;/p&gt;
</content>
    <published>2021-12-05T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/F2</id>
    <title>Camille Fournier, The Manager’s Path.</title>
    <updated>2022-09-18T04:11:24Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/K2"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Kurzgesagt, &lt;em&gt;The Origin of Consciousness – How Unaware Things Became Aware&lt;/em&gt;, 2019, &lt;a href="https://www.youtube.com/watch?v=H6u0VBqNBQ8"&gt;https://www.youtube.com/watch?v=H6u0VBqNBQ8&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;
&lt;strong&gt;Premise:&lt;/strong&gt; Consciousness evolved from the need to find food.&lt;/p&gt;
</content>
    <published>2021-12-05T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/K2</id>
    <title>Kurzgesagt, The Origin of Consciousness.</title>
    <updated>2023-04-23T20:19:33Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/D1"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Sarah Drasner, &lt;em&gt;“Mistakes I’ve Made as an Engineering Manager,”&lt;/em&gt; CSS-Tricks, February 18, 2021, &lt;a href="https://css-tricks.com/mistakes-ive-made-as-an-engineering-manager/"&gt;https://css-tricks.com/mistakes-ive-made-as-an-engineering-manager/&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;
&lt;strong&gt;Premise:&lt;/strong&gt; A review of some common mistakes that engineering managers make and what to do instead.&lt;/p&gt;
</content>
    <published>2021-11-28T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/D1</id>
    <title>Sarah Drasner, Mistakes I’ve Made as an Engineering Manager.</title>
    <updated>2022-09-18T04:11:24Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/A1"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
David Allen, &lt;em&gt;Getting Things Done: The Art of Stress-Free Productivity, Revised edition&lt;/em&gt; &lt;em class="paren-em"&gt;(New York City: Penguin Books, 2015)&lt;/em&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;
&lt;strong&gt;Premise:&lt;/strong&gt; Get things done by writing them into small tasks &lt;a href="/notes/0G0"&gt;0G0&lt;/a&gt;.&lt;/p&gt;
</content>
    <published>2021-11-07T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/A1</id>
    <title>David Allen, Getting Things Done.</title>
    <updated>2022-09-18T04:11:24Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/S7"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Christopher Sirk, &lt;em&gt;“The History of Kaizen,”&lt;/em&gt; CRM.org, August 5, 2020, &lt;a href="https://crm.org/articles/the-history-of-kaizen"&gt;https://crm.org/articles/the-history-of-kaizen&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;
&lt;strong&gt;Premise:&lt;/strong&gt; Kaizen started in the US pre-WWII before saving Toyota in Japan and then coming back &lt;a href="/notes/0M2A"&gt;0M2A&lt;/a&gt;.&lt;/p&gt;
</content>
    <published>2021-11-01T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/S7</id>
    <title>Christopher Sirk, The History of Kaizen.</title>
    <updated>2022-09-18T04:11:24Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/D3"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Sarah Drasner, &lt;em&gt;“The Importance of Career Laddering,”&lt;/em&gt; CSS-Tricks, April 15, 2021, &lt;a href="https://css-tricks.com/the-importance-of-career-laddering/"&gt;https://css-tricks.com/the-importance-of-career-laddering/&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;
&lt;strong&gt;Premise:&lt;/strong&gt; Discussing career objectives helps engineers own their career trajectory.&lt;/p&gt;
</content>
    <published>2021-10-27T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/D3</id>
    <title>Sarah Drasner, The Importance of Career Laddering.</title>
    <updated>2022-09-18T04:11:24Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/S5"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Elizabeth Grace Saunders, &lt;em&gt;“6 Causes of Burnout, and How to Avoid Them,”&lt;/em&gt; Harvard Business Review, July 5, 2019, &lt;a href="https://hbr.org/2019/07/6-causes-of-burnout-and-how-to-avoid-them"&gt;https://hbr.org/2019/07/6-causes-of-burnout-and-how-to-avoid-them&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;
&lt;strong&gt;Premise:&lt;/strong&gt; Burnout can be traced back to specific factors, and those factors can be mitigated.&lt;/p&gt;
</content>
    <published>2021-10-27T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/S5</id>
    <title>Elizabeth Saunders, 6 Causes of Burnout.</title>
    <updated>2022-09-18T04:11:24Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/O1"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Mike Oliver, &lt;em&gt;“Better Short Term Goals for New Engineering Hires | by Mike Oliver | ASICS Digital | Medium,”&lt;/em&gt; December 8, 2017, &lt;a href="https://medium.com/runkeeper-everyone-every-run/better-short-term-goals-for-new-engineering-hires-9a180f1ebc0f"&gt;https://medium.com/runkeeper-everyone-every-run/better-short-term-goals-for-new-engineering-hires-9a180f1ebc0f&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2021-10-27T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/O1</id>
    <title>Mile Oliver, Better Short Term Goals for New Engineering Hires.</title>
    <updated>2022-09-18T04:11:24Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/F1"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Martin Fowler, &lt;em&gt;“What Do You Mean by ‘Event-Driven’?,”&lt;/em&gt; martinfowler.com, 2017, &lt;a href="https://martinfowler.com/articles/201701-event-driven.html"&gt;https://martinfowler.com/articles/201701-event-driven.html&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;
&lt;strong&gt;Premise:&lt;/strong&gt; Evented ecosystem paradigms tend to fall into one of three noteworthy types.&lt;/p&gt;
</content>
    <published>2021-10-27T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/F1</id>
    <title>Martin Fowler, What do you mean by ”event-driven”?</title>
    <updated>2022-09-18T04:11:24Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/E2"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Hal Elrod, &lt;em&gt;The Miracle Morning: The Not-so-Obvious Secret Guaranteed to Transform Your Life before 8AM&lt;/em&gt;, 2018.  &lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;
&lt;strong&gt;Premise:&lt;/strong&gt; The way one starts their morning fundamentally changes their outlook on life &lt;a href="/notes/6F"&gt;6F&lt;/a&gt;.&lt;/p&gt;
</content>
    <published>2021-10-20T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/E2</id>
    <title>Hal Elrod, The Miracle Morning.</title>
    <updated>2022-09-18T04:11:24Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/G15"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Whitson Gordon, &lt;em&gt;“How to Dual Boot and Virtualize the Same Partition on Your Computer,”&lt;/em&gt; Lifehacker, May 7, 2013, &lt;a href="https://lifehacker.com/how-to-dual-boot-and-virtualize-the-same-partition-on-y-493223329"&gt;https://lifehacker.com/how-to-dual-boot-and-virtualize-the-same-partition-on-y-493223329&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2021-09-23T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/G15</id>
    <title>Whitson Gordon, How to Dual Boot and Virtualize the Same Partition on Your Computer.</title>
    <updated>2025-01-21T17:12:39Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/B5"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
William Burnett and David J. Evans, &lt;em&gt;Designing Your Life: How to Build a Well-Lived, Joyful Life&lt;/em&gt;, First edition &lt;em class="paren-em"&gt;(New York: Alfred A. Knopf, 2016)&lt;/em&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;
&lt;strong&gt;Premise:&lt;/strong&gt; Design thinking can uncover better ways of living. &lt;a href="/notes/6C"&gt;6C&lt;/a&gt;&lt;/p&gt;
</content>
    <published>2021-08-23T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/B5</id>
    <title>Bill Burnett &amp;amp; Dave Evans, Designing Your Life.</title>
    <updated>2022-09-18T04:11:24Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/S2"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Ken Schwaber and Jeff Sutherland, &lt;em&gt;The Scrum Guide: The Definitive Guide to Scrum: The Rules of the Game&lt;/em&gt;, 2020, &lt;a href="https://scrumguides.org/docs/scrumguide/v2020/2020-Scrum-Guide-US.pdf"&gt;https://scrumguides.org/docs/scrumguide/v2020/2020-Scrum-Guide-US.pdf&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;
&lt;strong&gt;Premise:&lt;/strong&gt; Empiricism can help a team create value for stakeholders with increasing speed while reducing waste.&lt;/p&gt;
</content>
    <published>2021-08-13T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/S2</id>
    <title>Ken Schwaber &amp;amp; Jeff Sutherland, The Scrum Guide.</title>
    <updated>2022-09-18T04:11:24Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/D4"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Doanh Do, &lt;em&gt;“What Is Continuous Improvement &lt;em class="paren-em"&gt;(Kaizen)&lt;/em&gt;?,”&lt;/em&gt; The Lean Way, August 5, 2017, &lt;a href="https://theleanway.net/what-is-continuous-improvement"&gt;https://theleanway.net/what-is-continuous-improvement&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;
&lt;strong&gt;Premise:&lt;/strong&gt; Kaizen is action and analysis to reduce waste and improve operations &lt;a href="/notes/0M2"&gt;0M2&lt;/a&gt;.&lt;/p&gt;
</content>
    <published>2021-08-12T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/D4</id>
    <title>Doanh Do, What Is Continuous Improvement (Kaizen)?</title>
    <updated>2022-09-18T04:11:24Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/S3"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Jeff Sutherland, &lt;em&gt;Scrum: The Art of Doing Twice the Work in Half the Time&lt;/em&gt;, First Edition &lt;em class="paren-em"&gt;(New York: Crown Business, 2014)&lt;/em&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;
&lt;strong&gt;Premise:&lt;/strong&gt; Any team can reduce waste and deliver the most impactful work with the application of scrum.&lt;/p&gt;
</content>
    <published>2021-08-12T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/S3</id>
    <title>Jeff Sutherland, Scrum.</title>
    <updated>2022-09-18T04:11:24Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/A9"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Willem-Jan Ageling, &lt;em&gt;“7 Reasons Not to Use Scrum,”&lt;/em&gt; Serious Scrum &lt;em class="paren-em"&gt;(blog)&lt;/em&gt;, October 29, 2019, &lt;a href="https://medium.com/serious-scrum/7-reasons-not-to-use-scrum-480530e3e00a"&gt;https://medium.com/serious-scrum/7-reasons-not-to-use-scrum-480530e3e00a&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2021-08-11T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/A9</id>
    <title>Willem-Jan Ageling, 7 Reasons Not to Use Scrum.</title>
    <updated>2025-01-20T21:59:27Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/S8"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Simon Sinek, &lt;em&gt;Most Leaders Don’t Even Know the Game They’re In | Simon Sinek&lt;/em&gt;, 2016, &lt;a href="https://www.youtube.com/watch?v=RyTQ5-SQYTo&amp;ab_channel=SimonSinek"&gt;https://www.youtube.com/watch?v=RyTQ5-SQYTo&amp;ab_channel=SimonSinek&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;
&lt;strong&gt;Premise:&lt;/strong&gt; Leadership ought to focus on ongoing improvement, not try to win against someone else.&lt;/p&gt;
</content>
    <published>2021-08-05T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/S8</id>
    <title>Simon Sinek, Most Leaders Don’t Even Know the Game They’re In.</title>
    <updated>2023-03-17T20:19:51Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/P8"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Thierry de Pauw, &lt;em&gt;“Shades of Conway’s Law,”&lt;/em&gt; ThinkingLabs:: Thierry de Pauw, May 3, 2021, &lt;a href="https://thinkinglabs.io/articles/2021/05/07/shades-of-conways-law.html"&gt;https://thinkinglabs.io/articles/2021/05/07/shades-of-conways-law.html&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2021-07-31T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/P8</id>
    <title>Thierry de Pauw, Shades of Conway’s Law.</title>
    <updated>2025-01-21T17:34:47Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/E1"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Nir Eyal, &lt;em&gt;Hooked: How to Build Habit-Forming Products&lt;/em&gt; &lt;em class="paren-em"&gt;(New York, New York: Portfolio/Penguin, 2014)&lt;/em&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;
&lt;strong&gt;Premise:&lt;/strong&gt; Understanding the psychology of motivation is instrumental in building high-engagement products.&lt;/p&gt;
</content>
    <published>2021-07-23T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/E1</id>
    <title>Nir Eyal, Hooked.</title>
    <updated>2022-09-18T04:11:24Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/P1"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Dan Pink, &lt;em&gt;RSA ANIMATE: Drive: The Surprising Truth about What Motivates Us&lt;/em&gt;, 2010, &lt;a href="https://www.youtube.com/watch?v=u6XAPnuFjJc"&gt;https://www.youtube.com/watch?v=u6XAPnuFjJc&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;
&lt;strong&gt;Premise:&lt;/strong&gt; People are motivated by mastery, autonomy, and purpose; compensation only motivates up to the point where money is no longer a major issue.&lt;/p&gt;
</content>
    <published>2021-07-23T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/P1</id>
    <title>Dan Pink, The Surprising Truth about What Motivates Us.</title>
    <updated>2022-09-18T04:11:24Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/B6"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
M. D. Robert Burton, &lt;em&gt;“Where Science and Story Meet,”&lt;/em&gt; Nautilus, April 22, 2013, &lt;a href="http://nautil.us/issue/0/the-story-of-nautilus/where-science-and-story-meet"&gt;http://nautil.us/issue/0/the-story-of-nautilus/where-science-and-story-meet&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2021-07-21T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/B6</id>
    <title>Robert Burton, Where Science and Story Meet.</title>
    <updated>2022-09-18T04:11:24Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/L3"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Jeremiah Lee, &lt;em&gt;“Spotify’s Failed #SquadGoals,”&lt;/em&gt; April 19, 2020, &lt;a href="https://www.jeremiahlee.com/posts/failed-squad-goals/"&gt;https://www.jeremiahlee.com/posts/failed-squad-goals/&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;
&lt;strong&gt;Premise:&lt;/strong&gt; The Spotify Model optimized for autonomy, which is not what the firm needed, so the approach failed &lt;a href="/notes/4B1H"&gt;4B1H&lt;/a&gt;.&lt;/p&gt;
</content>
    <published>2021-07-21T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/L3</id>
    <title>Jeremiah Lee, Spotify’s Failed #SquadGoals.</title>
    <updated>2022-09-18T04:11:24Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/B1"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Brené Brown, &lt;em&gt;Dare to Lead: Brave Work, Tough Conversations, Whole Hearts&lt;/em&gt; &lt;em class="paren-em"&gt;(New York: Random House, 2018)&lt;/em&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;
&lt;strong&gt;Premise:&lt;/strong&gt; Vulnerability is necessary to lead teams with clarity and trust &lt;a href="/notes/4B6C"&gt;4B6C&lt;/a&gt;.&lt;/p&gt;
</content>
    <published>2021-05-02T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/B1</id>
    <title>Brené Brown, Dare to Lead.</title>
    <updated>2022-09-18T04:11:24Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/F3"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Tiago Forte, &lt;em&gt;“The Building a Second Brain Podcast,”&lt;/em&gt; accessed July 24, 2021, &lt;a href="https://open.spotify.com/show/40O0Lbp5ockSt0qSogo6q1?si=8Xuq_oxxQp2UYvqIp6WDMA&amp;dl_branch=1"&gt;https://open.spotify.com/show/40O0Lbp5ockSt0qSogo6q1?si=8Xuq_oxxQp2UYvqIp6WDMA&amp;dl_branch=1&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;
&lt;strong&gt;Premise:&lt;/strong&gt; Collecting and distilling every day knowledge work inputs enables faster and more comprehensive creative output.&lt;/p&gt;
</content>
    <published>2021-05-02T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/F3</id>
    <title>Tiago Forte, Building a Second Brain Podcast.</title>
    <updated>2022-09-18T04:11:24Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/G2"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Dustin Moris Gorski, &lt;em&gt;“When to Use Scrum? Waterfall vs. Scrum vs. Kanban vs. Scrumban - Dusted Codes,”&lt;/em&gt; Dusted Codes &lt;em class="paren-em"&gt;(blog)&lt;/em&gt;, November 8, 2015, &lt;a href="https://dusted.codes/when-to-use-scrum-waterfall-vs-scrum-vs-kanban-vs-scrumban"&gt;https://dusted.codes/when-to-use-scrum-waterfall-vs-scrum-vs-kanban-vs-scrumban&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;
&lt;strong&gt;Premise:&lt;/strong&gt; Each work management methodology has circumstances where it’s optimized for the problems and needs—scrum is not the end-all-be-all of work management.&lt;/p&gt;
</content>
    <published>2021-05-02T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/G2</id>
    <title>Dustin Gorski, When to Use Scrum?</title>
    <updated>2022-09-18T04:11:24Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/L1"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Patrick Lencioni, &lt;em&gt;The Advantage: Why Organizational Health Trumps Everything Else in Business, 1st ed&lt;/em&gt; &lt;em class="paren-em"&gt;(San Francisco: Jossey-Bass, 2012)&lt;/em&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;
&lt;strong&gt;Premise:&lt;/strong&gt; Organizational health is the most important focus of a company &lt;a href="/notes/4B3"&gt;4B3&lt;/a&gt;.&lt;/p&gt;
</content>
    <published>2021-05-02T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/L1</id>
    <title>Patrick Lencioni, The Advantage.</title>
    <updated>2022-09-18T04:11:24Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/D2"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Nick deWilde, &lt;em&gt;“The Learning Loop of Knowledge Work,”&lt;/em&gt; 2021, &lt;a href="https://junglegym.substack.com/p/learning-loop-of-knowledge-work"&gt;https://junglegym.substack.com/p/learning-loop-of-knowledge-work&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;
&lt;strong&gt;Premise:&lt;/strong&gt; Organizations can actively foster learning &lt;a href="/notes/0C1"&gt;0C1&lt;/a&gt;.&lt;/p&gt;
</content>
    <published>2021-05-02T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/D2</id>
    <title>Nick deWilde, The Learning Loop of Knowledge Work.</title>
    <updated>2022-09-18T04:11:24Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/R1"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
David Rock, &lt;em&gt;Your Brain at Work: Strategies for Overcoming Distraction, Regaining Focus, and Working Smarter All Day Long, 1st ed&lt;/em&gt; &lt;em class="paren-em"&gt;(New York: Harper Business, 2009)&lt;/em&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;
&lt;strong&gt;Premise:&lt;/strong&gt; Understanding how the brain works allows one to wield it more effectively &lt;a href="/notes/0G3"&gt;0G3&lt;/a&gt;.&lt;/p&gt;
</content>
    <published>2021-05-02T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/R1</id>
    <title>David Rock, Your Brain at Work.</title>
    <updated>2022-09-18T04:11:24Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/D18"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
@donoteat01, &lt;em&gt;“Elon Musk’s Loop - It’s Bad, Folks,”&lt;/em&gt; 2019, &lt;a href="https://www.youtube.com/watch?v=4dn6ZVpJLxs&amp;ab_channel=donoteat01"&gt;https://www.youtube.com/watch?v=4dn6ZVpJLxs&amp;ab_channel=donoteat01&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2021-04-16T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/D18</id>
    <title>Elon Musk’s Loop - It’s Bad, Folks.</title>
    <updated>2025-01-21T07:51:06Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/N2"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Gary Neilson, Jaime Estupiñán, and Bhushan Sethi, &lt;em&gt;“10 Principles of Organization Design,”&lt;/em&gt; strategy+business, 2015, &lt;a href="https://www.strategy-business.com/article/00318?gko=31dee"&gt;https://www.strategy-business.com/article/00318?gko=31dee&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;
&lt;strong&gt;Premise:&lt;/strong&gt; Aligning an org with strategy happens with several variables.&lt;/p&gt;
</content>
    <published>2021-03-23T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/N2</id>
    <title>Gary Neilson et al., 10 Principles of Organization Design.</title>
    <updated>2022-09-18T04:11:24Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/K9"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Robert Keidel, &lt;em&gt;“The Three Reasons to Hold a Meeting,”&lt;/em&gt; Wharton Magazine &lt;em class="paren-em"&gt;(blog)&lt;/em&gt;, March 23, 2017, &lt;a href="https://magazine.wharton.upenn.edu/digital/the-three-reasons-to-hold-a-meeting/"&gt;https://magazine.wharton.upenn.edu/digital/the-three-reasons-to-hold-a-meeting/&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2021-03-21T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/K9</id>
    <title>Robert Keidel, The Three Reasons to Hold a Meeting.</title>
    <updated>2025-01-20T22:18:49Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/C2"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Karla Segura Chavarría, &lt;em&gt;“Space and Earth Science: Will the Giant Star Betelgeuse Go HyperNova?,”&lt;/em&gt; Space and Earth Science &lt;em class="paren-em"&gt;(blog)&lt;/em&gt;, 2011-08-29, &lt;a href="http://spaceandearthsciencearticles.blogspot.com/2011/08/will-giant-star-betelgeuse-go-hypernova.html"&gt;http://spaceandearthsciencearticles.blogspot.com/2011/08/will-giant-star-betelgeuse-go-hypernova.html&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2021-03-19T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/C2</id>
    <title>Karla Segura Chavarría, Will Betelgeuse Go Hypernova?</title>
    <updated>2022-09-18T04:11:24Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/E4"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Merve Emre, &lt;em&gt;“Uncovering The Secret History Of Myers-Briggs,”&lt;/em&gt; Digg, October 1, 2015, &lt;a href="https://digg.com/2015/myers-briggs-secret-history"&gt;https://digg.com/2015/myers-briggs-secret-history&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2021-03-19T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/E4</id>
    <title>Merve Emre, Secret History Of Myers-Briggs.</title>
    <updated>2025-01-20T22:10:08Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/R3"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
RobotRollCall, &lt;em&gt;“Reddit: What It’s like inside of a Black Hole,”&lt;/em&gt; Reddit Comment, R/Askscience, January 15, 2011, &lt;a href="https://www.reddit.com/r/askscience/comments/f1lgu/what_would_happen_if_the_event_horizons_of_two/c1cuiyw/"&gt;https://www.reddit.com/r/askscience/comments/f1lgu/what_would_happen_if_the_event_horizons_of_two/c1cuiyw/&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2021-03-19T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/R3</id>
    <title>What it’s like inside of a black hole.</title>
    <updated>2022-09-18T04:11:24Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/W13"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Rouan Wilsenach, &lt;em&gt;“Bliki: DevOpsCulture,”&lt;/em&gt; martinfowler.com, July 9, 2015, &lt;a href="https://martinfowler.com/bliki/DevOpsCulture.html"&gt;https://martinfowler.com/bliki/DevOpsCulture.html&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2021-03-19T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/W13</id>
    <title>Rouan Wilsenach, DevOpsCulture.</title>
    <updated>2025-01-21T17:29:59Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/F11"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Martin Fowler, &lt;em&gt;“Bliki: MicroservicePrerequisites,”&lt;/em&gt; martinfowler.com, August 28, 2014, &lt;a href="https://martinfowler.com/bliki/MicroservicePrerequisites.html"&gt;https://martinfowler.com/bliki/MicroservicePrerequisites.html&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2021-03-19T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/F11</id>
    <title>Martin Fowler, MicroservicePrerequisites.</title>
    <updated>2025-01-21T07:59:37Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/F10"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Mark Forster, &lt;em&gt;“Noguchi Filing System,”&lt;/em&gt; June 9, 2008, &lt;a href="http://markforster.squarespace.com/blog/2008/6/9/noguchi-filing-system.html"&gt;http://markforster.squarespace.com/blog/2008/6/9/noguchi-filing-system.html&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2021-03-09T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/F10</id>
    <title>Mark Forster, Noguchi Filing System.</title>
    <updated>2025-01-21T07:58:26Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/W3"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Stephen Watts and Joe Hertvik, &lt;em&gt;“Technical Debt: The Ultimate Guide – BMC Blogs,”&lt;/em&gt; July 30, 2020, &lt;a href="https://www.bmc.com/blogs/technical-debt-explained-the-complete-guide-to-understanding-and-dealing-with-technical-debt/"&gt;https://www.bmc.com/blogs/technical-debt-explained-the-complete-guide-to-understanding-and-dealing-with-technical-debt/&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;
&lt;strong&gt;Premise:&lt;/strong&gt; Defining and managing technical debt.&lt;/p&gt;
</content>
    <published>2021-01-15T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/W3</id>
    <title>Watts &amp;amp; Hertvik, Technical Debt: The Ultimate Guide.</title>
    <updated>2022-09-18T04:11:24Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/R2"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Steven G. Rogelberg, &lt;em&gt;The Surprising Science of Meetings: How You Can Lead Your Team to Peak Performance&lt;/em&gt; &lt;em class="paren-em"&gt;(New York: Oxford University Press, 2019)&lt;/em&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;
&lt;strong&gt;Premise:&lt;/strong&gt; Meetings can be very effective with the right approaches.&lt;/p&gt;
</content>
    <published>2021-01-09T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/R2</id>
    <title>Steven Rogelberg, The Surprising Science of Meetings.</title>
    <updated>2022-09-18T04:11:24Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/S6"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
&lt;em&gt;“WSJF,”&lt;/em&gt; Scaled Agile Framework &lt;em class="paren-em"&gt;(blog)&lt;/em&gt;, accessed January 7, 2021, &lt;a href="https://www.scaledagileframework.com/wsjf/"&gt;https://www.scaledagileframework.com/wsjf/&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2021-01-08T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/S6</id>
    <title>Scaled Agile Framework, WSJF.</title>
    <updated>2022-09-19T18:12:08Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/M4"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Greg McKeown, &lt;em&gt;Essentialism: The Disciplined Pursuit of Less, First Edition&lt;/em&gt; &lt;em class="paren-em"&gt;(New York: Crown Business, 2014)&lt;/em&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;
&lt;strong&gt;Premise:&lt;/strong&gt; Focus only on the disproportionately valuable options &lt;a href="/notes/0G2"&gt;0G2&lt;/a&gt;.&lt;/p&gt;
</content>
    <published>2021-01-03T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/M4</id>
    <title>Greg McKeown, Essentialism.</title>
    <updated>2022-09-18T04:11:24Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/F5"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Sascha Fast, &lt;em&gt;“The Barbell Method of Reading,”&lt;/em&gt; Zettelkasten Method, 2018, &lt;a href="https://www.zettelkasten.de/posts/barbell-method-reading/"&gt;https://www.zettelkasten.de/posts/barbell-method-reading/&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2020-12-31T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/F5</id>
    <title>Sascha Fast, The Barbell Method of Reading.</title>
    <updated>2024-12-28T06:29:01Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/A2"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Sönke Ahrens, &lt;em&gt;How to Take Smart Notes: One Simple Technique to Boost Writing, Learning and Thinking: For Students, Academics and Nonfiction Book Writers&lt;/em&gt; &lt;em class="paren-em"&gt;(North Charleston, SC: CreateSpace, 2017)&lt;/em&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;
&lt;strong&gt;Premise:&lt;/strong&gt; Writing is thinking &lt;a href="/notes/0G1"&gt;0G1&lt;/a&gt;.&lt;/p&gt;
</content>
    <published>2020-12-28T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/A2</id>
    <title>Sönke Ahrens, How to Take Smart Notes.</title>
    <updated>2022-09-18T04:11:24Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/B18"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Jon-Paul Bruce, &lt;em&gt;“Milliseconds  Make Millions,”&lt;/em&gt; Deloitte Digital, March 24, 2020, &lt;a href="https://www2.deloitte.com/content/dam/Deloitte/ie/Documents/Consulting/Milliseconds_Make_Millions_report.pdf"&gt;https://www2.deloitte.com/content/dam/Deloitte/ie/Documents/Consulting/Milliseconds_Make_Millions_report.pdf&lt;/a&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2020-03-24T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/B18</id>
    <title>Jon-Paul Bruce, Milliseconds Make Millions.</title>
    <updated>2025-01-21T07:24:51Z</updated>
  </entry>
  <entry>
    <link href="https://www.squidtree.com/references/D5"/>
    <content type="html">&lt;blockquote&gt;
  &lt;p&gt;
Annie Duke, &lt;em&gt;Thinking in Bets: Making Smarter Decisions When You Don’t Have All the Facts&lt;/em&gt; &lt;em class="paren-em"&gt;(New York: Portfolio/Penguin, 2018)&lt;/em&gt;.  &lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <published>2017-05-05T00:00:00Z</published>
    <author>
      <name>Shaine Hatch</name>
      <uri>https://www.squidtree.com/about</uri>
    </author>
    <id>https://www.squidtree.com/references/D5</id>
    <title>Annie Duke, Thinking in Bets.</title>
    <updated>2022-09-18T04:11:24Z</updated>
  </entry>
</feed>