<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:googleplay="http://www.google.com/schemas/play-podcasts/1.0"><channel><title><![CDATA[Robbie Clutton]]></title><description><![CDATA[Thoughts from Robbie]]></description><link>https://blog.robbieclutton.com</link><image><url>https://blog.robbieclutton.com/img/substack.png</url><title>Robbie Clutton</title><link>https://blog.robbieclutton.com</link></image><generator>Substack</generator><lastBuildDate>Fri, 10 Apr 2026 13:49:41 GMT</lastBuildDate><atom:link href="https://blog.robbieclutton.com/feed" rel="self" type="application/rss+xml"/><copyright><![CDATA[Robbie Clutton]]></copyright><language><![CDATA[en]]></language><webMaster><![CDATA[robbieclutton@substack.com]]></webMaster><itunes:owner><itunes:email><![CDATA[robbieclutton@substack.com]]></itunes:email><itunes:name><![CDATA[Robbie Clutton]]></itunes:name></itunes:owner><itunes:author><![CDATA[Robbie Clutton]]></itunes:author><googleplay:owner><![CDATA[robbieclutton@substack.com]]></googleplay:owner><googleplay:email><![CDATA[robbieclutton@substack.com]]></googleplay:email><googleplay:author><![CDATA[Robbie Clutton]]></googleplay:author><itunes:block><![CDATA[Yes]]></itunes:block><item><title><![CDATA[On reverse engineering using AI]]></title><description><![CDATA[Leveraging reverse Ralph loops to understand legacy codebases]]></description><link>https://blog.robbieclutton.com/p/on-reverse-engineering-using-ai</link><guid isPermaLink="false">https://blog.robbieclutton.com/p/on-reverse-engineering-using-ai</guid><dc:creator><![CDATA[Robbie Clutton]]></dc:creator><pubDate>Sun, 05 Apr 2026 09:16:31 GMT</pubDate><content:encoded><![CDATA[<p>There&#8217;s a technique doing the rounds in agentic engineering circles called the <strong>Ralph loop</strong>, coined by <a href="https://ghuntley.com/loop/">Geoffrey Huntley</a>. In its forward direction, it&#8217;s an autonomous coding pattern: give an AI agent a set of specs, a goal, and a loop &#8212; and let it build. One task per iteration. Fresh context each time. No accumulating noise. No compaction.</p><p>But Ralph runs in both directions. And the reverse direction is where things get interesting for anyone facing a legacy codebase migration.</p><div class="subscription-widget-wrap-editor" data-attrs="{&quot;url&quot;:&quot;https://blog.robbieclutton.com/subscribe?&quot;,&quot;text&quot;:&quot;Subscribe&quot;,&quot;language&quot;:&quot;en&quot;}" data-component-name="SubscribeWidgetToDOM"><div class="subscription-widget show-subscribe"><div class="preamble"><p class="cta-caption">Thanks for reading! Subscribe for free to receive new posts and support my work.</p></div><form class="subscription-widget-subscribe"><input type="email" class="email-input" name="email" placeholder="Type your email&#8230;" tabindex="-1"><input type="submit" class="button primary" value="Subscribe"><div class="fake-input-wrapper"><div class="fake-input"></div><div class="fake-button"></div></div></form></div></div><p><em>This article is an edited summary of a Claude conversation on this topic - but I wanted to share what I&#8217;d learnt in hopefully a consumable way.</em></p><div><hr></div><h2>What is a Reverse Ralph?</h2><p>A forward Ralph loop takes specifications and produces code. A <strong>reverse Ralph</strong> does the opposite: it takes existing code and produces specifications. The goal isn&#8217;t to understand every line &#8212; it&#8217;s to extract enough structured knowledge that a migration or decomposition effort can begin from a solid foundation rather than archaeology.</p><p>Huntley himself described the approach for porting codebases: run a loop over your test files to extract behavioural specs, run a second loop over your source files to document what each module does, then use those specs as the input to whatever comes next. The source code becomes read-only. The specs become the new source of truth. Huntley has a fun example of taking machine code, deriving specs and then producing the application for the <a href="https://ghuntley.com/z80/">ZX80</a>. </p><div><hr></div><h2>Why Loop at All?</h2><p>The honest answer is that a single long AI conversation would use fewer tokens in total, and might take shorter time due to not paying the startup cost of each iteration. But total tokens isn&#8217;t the right metric.</p><p>In a single long context session, every new file you process gets added to an ever-growing conversation. By the time you&#8217;re looking at file 30, the model is carrying the full weight of files 1 through 29 &#8212; most of which are irrelevant to the current task. Quality degrades. The model loses the thread. Eventually the provider compresses older context and detail is silently lost. This is what&#8217;s known as <strong>context rot</strong>.</p><p>The Ralph loop sidesteps this entirely. Each iteration is a fresh process with a clean context window. Prior iterations don&#8217;t accumulate - they&#8217;ve been externalised to the filesystem as spec files in a directory structure that mirrors the source - making an idempotent run possible. The model always starts from a known state. The cost is a small, predictable overhead per loop. The benefit is consistent, auditable output across every iteration, and cheap recovery when something goes wrong.</p><p>For large codebases, there&#8217;s a further advantage: loops can be parallelised across independent directories in a way that a single long session never can.</p><div><hr></div><h2>Adding Domain Modelling</h2><p>A spec-per-file approach captures what each module does. But it doesn&#8217;t tell you how the business concepts hang together &#8212; which entities matter, how they relate, where the natural seams are for decomposition.</p><p>Domain modelling is cross-cutting by nature. A concept like <code>Order</code> might live across a controller, a service layer, a database model, a validator, and an event handler. No single file contains the full picture, so it can&#8217;t emerge from a file-by-file loop alone.</p><p>The solution is a <strong>secondary stage</strong> that reads specs rather than source. By the time you&#8217;ve extracted specs from every file, you have a compressed, normalised view of the codebase that&#8217;s far easier to synthesise across. An entity like <code>Order</code> will appear in dozens of spec files &#8212; and a second pass can aggregate those references into a coherent domain picture without ever touching the original source again.</p><div><hr></div><h2>The Plan &#8212; In Short</h2><p>The full process runs in six phases, each producing output that feeds the next. Phases 1 through 5 are strictly read-only on source files. Humans review at two points before forward work begins.</p><ul><li><p><strong>Phase 1 &#8212; Test specs:</strong> Loop over every test file, extract one behaviour spec per iteration into <code>specs/tests/</code>. Capture acceptance criteria, domain nouns referenced, and edge cases. Each iteration uses a fresh content.</p></li><li><p><strong>Phase 2 &#8212; Source specs:</strong> Loop over every source file, extract one module spec per iteration into <code>specs/src/</code>. Capture purpose, public interface, data in/out, dependencies, and domain events. This enriched template is what makes the domain modelling phases possible. Each iteration uses a fresh context.</p></li><li><p><strong>Phase 3a &#8212; Entity capture:</strong> Loop over the specs (not the source), identify domain entities and document each one in <code>specs/domain/entities/</code>. This uses a shared context window.</p></li><li><p><strong>Phase 3b &#8212; Entity extraction: </strong>Loop over the files in <code>specs/domain/entities/ </code>then search across all the spec files for instances of this entity, and capture in the entity spec file. Each iteration uses a fresh context.</p></li><li><p><strong>Phase 4 &#8212; Relationship mapping:</strong> Single invocation - shared context. Read all entity specs, produce a relationship map documenting how entities connect and where the ownership boundaries are.</p></li><li><p><strong>Phase 5 &#8212; Bounded context proposal:</strong> Single invocation - shared context. Read the relationship map, propose a decomposition into bounded contexts with rationale.</p></li><li><p><strong>Phase 6 &#8212; Migration TODO:</strong> Single invocation - shared context. Read everything, produce a prioritised task list for forward work. </p></li></ul><p>Each phase script enforces read-only guardrails at both the prompt level and the shell level. If the agent touches source files it shouldn&#8217;t, the script detects it and reverts automatically.</p><div><hr></div><h2>Two Things Worth Remembering</h2><p><strong>The specs are the new source of truth.</strong> After Phase 2, the agent never needs to read the original codebase again. Every downstream phase works from specs. This means the quality of your spec template in Phase 2 directly determines the quality of everything that follows.</p><p><strong>The bounded context decisions need a human.</strong> The agent will propose a decomposition based on technical coupling signals. It has no knowledge of your team structure, your deployment constraints, your political landscape, or which parts of the system your organisation actually cares about. Phase 5 output is a starting draft for a conversation &#8212; not an answer.</p><div class="subscription-widget-wrap-editor" data-attrs="{&quot;url&quot;:&quot;https://blog.robbieclutton.com/subscribe?&quot;,&quot;text&quot;:&quot;Subscribe&quot;,&quot;language&quot;:&quot;en&quot;}" data-component-name="SubscribeWidgetToDOM"><div class="subscription-widget show-subscribe"><div class="preamble"><p class="cta-caption">Thanks for reading! Subscribe for free to receive new posts and support my work.</p></div><form class="subscription-widget-subscribe"><input type="email" class="email-input" name="email" placeholder="Type your email&#8230;" tabindex="-1"><input type="submit" class="button primary" value="Subscribe"><div class="fake-input-wrapper"><div class="fake-input"></div><div class="fake-button"></div></div></form></div></div>]]></content:encoded></item><item><title><![CDATA[On developing using an AI coding assistant ]]></title><description><![CDATA[Experiments with a side project, using AI developer tools.]]></description><link>https://blog.robbieclutton.com/p/on-developing-using-an-ai-coding</link><guid isPermaLink="false">https://blog.robbieclutton.com/p/on-developing-using-an-ai-coding</guid><dc:creator><![CDATA[Robbie Clutton]]></dc:creator><pubDate>Mon, 10 Mar 2025 10:15:19 GMT</pubDate><content:encoded><![CDATA[<p>I've been experimenting with AI coding assistants on a side project recently. The specific project doesn't really matter - what's important is that I wanted to use it as a testbed for these AI developer tools that everyone's talking about. My journey with these tools has evolved significantly, and I thought I'd share what I've learned along the way.</p><h2><strong>Starting too big</strong></h2><p>My first instinct was to go all in. I used a couple of different tools to try and build a whole product structure - essentially asking the AI to scaffold a significant portion of my application. However, I didn't really enjoy the experience.</p><p>There was simply too much code generated at once. Reviewing it felt like reading someone else's code - which, in a sense, it was. When I tried to run it, it didn't work as I had expected or intended. Some of the tests failed - and testing is important to me. After struggling with it for a while, I abandoned this approach.</p><h2><strong>Scaling back</strong></h2><p>I decided to take smaller steps, though these were still somewhat large chunks of functionality. I asked the tool (Claude Code in this case) to check with me at each stage of development. This yielded better code, but the process didn't feel smooth. There was almost too much back and forth, it took too long to get to the changeset for the commit.</p><p>I asked Claude Code to act as a pair programmer and start with failing tests before moving on. But it felt less like a conversation and more like me constantly checking someone else's work. Making changes this way felt like it took too long. Objectively, it was probably still faster than writing everything from scratch, but the experience just felt cumbersome.</p><h2><strong>Finding the sweet spot</strong></h2><p>As I became more comfortable with the tools, I found myself more willing to give the AI more leeway to make changes. Claude Code currently asks the user if you want to run a certain command once, or every time going forward within the session, and I let it do more and more as time went by. I settled into a rhythm:</p><ul><li><p>Ask it to tell me it&#8217;s strategy</p></li><li><p>Let it implement a feature with tests</p></li><li><p>Read the changeset to understand the intent</p></li><li><p>Run tests, linting and code analysers</p></li><li><p>Refactor anything I felt that needed it</p></li><li><p>Run a full build and commit the change</p></li></ul><p>I started to feel more like some hybrid architect and product manager, stating desired outcomes in terms of experience and technical approach, then verifying and modifying - rather than doing all the coding myself. And as my application developed and gained more functionality, the changes I was making became smaller. This gave me more confidence in letting the AI work through problems - running its own tests, making further modifications, before telling me it was finished.</p><h2><strong>Small changes win</strong></h2><p>I realised this approach mirrors how I've always preferred to work as a developer. I've always favored lots of small changes over big ones. Whenever I used to review a pull request that touched hundreds of files or thousands of lines of code, I would approach it with extreme caution. The change set felt too big to fully understand everything that was happening.</p><p>Smaller, more discrete changes give you a better chance of understanding the impact, the intention and any potential issues. It seems I'm naturally developing this same pattern with AI coding assistants - asking for smaller, more focused changes, letting the AI work through them, and then carefully reviewing the outcome. This echoes things like &#8216;trunk based development&#8217;, and &#8216;small batch theory&#8217; - as applied to AI software development agents.</p><h2><strong>Lessons learned</strong></h2><p>This field is changing so fast, and it&#8217;s been about 12 years since I had the word &#8220;engineer&#8221; in my job title - so take this with a pinch of salt, and as a point in time experience.</p><ol><li><p><strong>It&#8217;s a new paradigm</strong> - don&#8217;t expect an AI pair to be the same as a human pair, my experience shows it is more likely to give an answer than have a conversation, so ask better questions.</p></li><li><p><strong>Make discrete changes with well defined outcomes - it&#8217;s more likely to produce code that you yourself might have written</strong></p></li><li><p><strong>The combination improves speed - I&#8217;m getting code that I might have written myself, but it feels much faster. I don&#8217;t feel I need to block a few hours to work on a side project, measurable progress can be done within 20 minutes.</strong></p></li></ol><p>Have you been using AI coding assistants in your work? I'd be curious to hear if your experience matches mine, or if you've found other approaches that work better for your projects.</p><div class="subscription-widget-wrap-editor" data-attrs="{&quot;url&quot;:&quot;https://blog.robbieclutton.com/subscribe?&quot;,&quot;text&quot;:&quot;Subscribe&quot;,&quot;language&quot;:&quot;en&quot;}" data-component-name="SubscribeWidgetToDOM"><div class="subscription-widget show-subscribe"><div class="preamble"><p class="cta-caption">Thanks for reading Robbie Clutton! Subscribe for free to receive new posts and support my work.</p></div><form class="subscription-widget-subscribe"><input type="email" class="email-input" name="email" placeholder="Type your email&#8230;" tabindex="-1"><input type="submit" class="button primary" value="Subscribe"><div class="fake-input-wrapper"><div class="fake-input"></div><div class="fake-button"></div></div></form></div></div>]]></content:encoded></item><item><title><![CDATA[On pay philosophy ]]></title><description><![CDATA[Structuring compensation in modern organisations]]></description><link>https://blog.robbieclutton.com/p/on-pay-philosophy</link><guid isPermaLink="false">https://blog.robbieclutton.com/p/on-pay-philosophy</guid><dc:creator><![CDATA[Robbie Clutton]]></dc:creator><pubDate>Mon, 09 Sep 2024 09:13:06 GMT</pubDate><enclosure url="https://substackcdn.com/image/fetch/$s_!At3c!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F9a8c461a-daba-4d58-8bd0-04c412cdeeab_1945x956.png" length="0" type="image/jpeg"/><content:encoded><![CDATA[<p>After a number of conversations with clients about how to put more structure around pay in place as a company scales, I wanted to share what I know about creating those structures and a philosophy behind that. </p><h1>Job and Role Structure</h1><p>The foundation of any pay philosophy is a clear job and role structure. This hierarchy typically includes:</p><p>1. <strong>Job Function or Profession</strong>: these are broad categories such as engineering, product, or marketing.</p><p>2. <strong>Job Family or Practice</strong>: these are specific areas within a function. For the engineering function/profession, these might be software engineering, site reliability engineering, quality assurance testing and more. For the design profession these might include user research, interaction design, content design and many others.</p><p>3. <strong>Career Tracks</strong>: These are typically divided into three main categories:</p><p>   a) <strong>Professional Track</strong>: here you would have the specific role occupied by an individual. For instance Software Engineer, Data Engineer, Architect, Platform Engineer. These would have the same levels across the different roles, and might include: Associate, Engineer, Senior, Staff, Principal. I wrote more on <a href="https://blog.robbieclutton.com/p/on-levelling-learning-and-development">levels</a> specifically if you want to go deeper. Some companies have an additional profession track. </p><p>  b) <strong>Managerial Track</strong>: These are typically &#8216;manager&#8217; and &#8216;director&#8217; titled roles, with people responsibility. Levels tend to include: Associate, Manager, Senior Manager, Director, Senior Director.</p><p>   c) <strong>Executive Track: </strong>These are for more functional and senior leadership roles of Vice President, President and the C-suite. Levels include: VP, Senior VP (SVP), President, Chief Technology Officer, Managing Director.</p><p>It's important to note that the structure can vary depending on organizational needs. For instance, architecture might be its own family rather than a role within engineering, or executives might be treated as a separate function entirely.</p><p>Additionally, some roles may be combined or split based on the company's requirements. For example, you might have separate front-end and back-end engineer roles, or simply use "software engineer" as a broader category.</p><p>Below is how I&#8217;ve seen these levels line up across tracks. Note that a Principal tends to be at the Director level, and Senior at the Manager level. </p><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="https://substackcdn.com/image/fetch/$s_!At3c!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F9a8c461a-daba-4d58-8bd0-04c412cdeeab_1945x956.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!At3c!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F9a8c461a-daba-4d58-8bd0-04c412cdeeab_1945x956.png 424w, https://substackcdn.com/image/fetch/$s_!At3c!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F9a8c461a-daba-4d58-8bd0-04c412cdeeab_1945x956.png 848w, https://substackcdn.com/image/fetch/$s_!At3c!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F9a8c461a-daba-4d58-8bd0-04c412cdeeab_1945x956.png 1272w, https://substackcdn.com/image/fetch/$s_!At3c!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F9a8c461a-daba-4d58-8bd0-04c412cdeeab_1945x956.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!At3c!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F9a8c461a-daba-4d58-8bd0-04c412cdeeab_1945x956.png" width="1456" height="716" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/9a8c461a-daba-4d58-8bd0-04c412cdeeab_1945x956.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:716,&quot;width&quot;:1456,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:49731,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:&quot;image/png&quot;,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="https://substackcdn.com/image/fetch/$s_!At3c!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F9a8c461a-daba-4d58-8bd0-04c412cdeeab_1945x956.png 424w, https://substackcdn.com/image/fetch/$s_!At3c!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F9a8c461a-daba-4d58-8bd0-04c412cdeeab_1945x956.png 848w, https://substackcdn.com/image/fetch/$s_!At3c!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F9a8c461a-daba-4d58-8bd0-04c412cdeeab_1945x956.png 1272w, https://substackcdn.com/image/fetch/$s_!At3c!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F9a8c461a-daba-4d58-8bd0-04c412cdeeab_1945x956.png 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg role="img" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><title></title><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a></figure></div><p></p><h1>Benchmarking</h1><p>To ensure competitive compensation, companies often use various benchmarking sources:</p><p>1. <strong>Industry Data</strong>: Providers like Rashford, Mercer, and Willis Towers Watson offer survey-based data from employers. This data can be tailored to specific sectors, locations, and comparable companies, with more detailed information typically coming at a higher cost.</p><p>2. <strong>User-Reported Data</strong>: Platforms like Glassdoor and Reed provide insights based on employee-reported salaries. This could also come from staff reporting offers they have heard about or received from competitors. </p><p>3. <strong>Emerging Platforms</strong>: Newer players like Ravio are entering the market with fresh approaches to compensation data.</p><h1>Compensation Ratio (Compa Ratio)</h1><p>Now with role structure and benchmarking data, we can start to build pay bands. The compa ratio is a key tool in structuring pay ranges:</p><ul><li><p>A midpoint is typically selected for each job level, with lower and upper bounds set using a percentage or ratio, say 80%-120% or 0.8-1.2</p></li><li><p>It's advisable to have some overlap between levels. This means the upper bound of one level should be higher than the lower bound of the next level.</p></li><li><p>This overlap provides flexibility in hiring and promotion decisions, allowing for situations where higher pay might be offered without a level change, or where a promotion doesn't require a dramatic leap in compensation.</p></li></ul><p>The following is an example, showing 100 at the mid range for the mid level, and working on a 0.8-1.2 ration from there.</p><div class="captioned-image-container"><figure><a class="image-link image2" target="_blank" href="https://substackcdn.com/image/fetch/$s_!fDb_!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fa27f9337-b8be-46c8-844e-2570c704eeff_756x198.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!fDb_!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fa27f9337-b8be-46c8-844e-2570c704eeff_756x198.png 424w, https://substackcdn.com/image/fetch/$s_!fDb_!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fa27f9337-b8be-46c8-844e-2570c704eeff_756x198.png 848w, https://substackcdn.com/image/fetch/$s_!fDb_!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fa27f9337-b8be-46c8-844e-2570c704eeff_756x198.png 1272w, https://substackcdn.com/image/fetch/$s_!fDb_!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fa27f9337-b8be-46c8-844e-2570c704eeff_756x198.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!fDb_!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fa27f9337-b8be-46c8-844e-2570c704eeff_756x198.png" width="756" height="198" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/a27f9337-b8be-46c8-844e-2570c704eeff_756x198.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:198,&quot;width&quot;:756,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:21342,&quot;alt&quot;:&quot;Pay ranges example&quot;,&quot;title&quot;:null,&quot;type&quot;:&quot;image/png&quot;,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="Pay ranges example" title="Pay ranges example" srcset="https://substackcdn.com/image/fetch/$s_!fDb_!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fa27f9337-b8be-46c8-844e-2570c704eeff_756x198.png 424w, https://substackcdn.com/image/fetch/$s_!fDb_!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fa27f9337-b8be-46c8-844e-2570c704eeff_756x198.png 848w, https://substackcdn.com/image/fetch/$s_!fDb_!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fa27f9337-b8be-46c8-844e-2570c704eeff_756x198.png 1272w, https://substackcdn.com/image/fetch/$s_!fDb_!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fa27f9337-b8be-46c8-844e-2570c704eeff_756x198.png 1456w" sizes="100vw" loading="lazy"></picture><div></div></div></a></figure></div><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="https://substackcdn.com/image/fetch/$s_!0Ir8!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F944c41b9-0be5-426c-b05c-cce1d05546ce_1226x322.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!0Ir8!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F944c41b9-0be5-426c-b05c-cce1d05546ce_1226x322.png 424w, https://substackcdn.com/image/fetch/$s_!0Ir8!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F944c41b9-0be5-426c-b05c-cce1d05546ce_1226x322.png 848w, https://substackcdn.com/image/fetch/$s_!0Ir8!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F944c41b9-0be5-426c-b05c-cce1d05546ce_1226x322.png 1272w, https://substackcdn.com/image/fetch/$s_!0Ir8!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F944c41b9-0be5-426c-b05c-cce1d05546ce_1226x322.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!0Ir8!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F944c41b9-0be5-426c-b05c-cce1d05546ce_1226x322.png" width="1226" height="322" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/944c41b9-0be5-426c-b05c-cce1d05546ce_1226x322.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:322,&quot;width&quot;:1226,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:16408,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:&quot;image/png&quot;,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="https://substackcdn.com/image/fetch/$s_!0Ir8!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F944c41b9-0be5-426c-b05c-cce1d05546ce_1226x322.png 424w, https://substackcdn.com/image/fetch/$s_!0Ir8!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F944c41b9-0be5-426c-b05c-cce1d05546ce_1226x322.png 848w, https://substackcdn.com/image/fetch/$s_!0Ir8!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F944c41b9-0be5-426c-b05c-cce1d05546ce_1226x322.png 1272w, https://substackcdn.com/image/fetch/$s_!0Ir8!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F944c41b9-0be5-426c-b05c-cce1d05546ce_1226x322.png 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg role="img" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><title></title><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a></figure></div><h1>Regional Considerations</h1><p>One of the more controversial aspects of modern pay philosophy is how to handle regional differences. The controversy comes from the question of in a remote world, if someone is doing the same job, why should where someone lives make any meaningful difference. I&#8217;ll leave the reader to that exercise but offer the thoughts of how companies structure this:</p><p>Some companies implement different pay structures based on an employee's location, whether between countries or within the same country. One approach is to apply the same benchmarking and compa ratio principles to each region separately. This is a more rigorous approach, and will take time and money (to get survey data) to accomplish. </p><p>Alternatively, some employers use a ratio system, adjusting pay up or down from a primary location based on regional factors. Say location A is a low cost country, so a ratio of 0.7 is applied to the pay ranges; location B is a higher cost country, so a ratio of 1.15 is applied. </p><p>The debate around regional pay differences continues to evolve, especially as remote work becomes more prevalent.</p><h1>Conclusion</h1><p>As companies scale and &#8220;professionalise&#8221;, there is often a desire to have a better handle on pay for employees. This comes from both employees and the employer. It can help create fairness and in some cases transparency. I&#8217;ve walked through how I&#8217;ve seen these bands created, and hope this is useful either for companies going through this for the first time, or for individuals to better understand this within the organisation they work within. </p><p></p><div class="subscription-widget-wrap-editor" data-attrs="{&quot;url&quot;:&quot;https://blog.robbieclutton.com/subscribe?&quot;,&quot;text&quot;:&quot;Subscribe&quot;,&quot;language&quot;:&quot;en&quot;}" data-component-name="SubscribeWidgetToDOM"><div class="subscription-widget show-subscribe"><div class="preamble"><p class="cta-caption">Thanks for reading Robbie Clutton! Subscribe for free to receive new posts and support my work.</p></div><form class="subscription-widget-subscribe"><input type="email" class="email-input" name="email" placeholder="Type your email&#8230;" tabindex="-1"><input type="submit" class="button primary" value="Subscribe"><div class="fake-input-wrapper"><div class="fake-input"></div><div class="fake-button"></div></div></form></div></div><p></p>]]></content:encoded></item><item><title><![CDATA[On taking a month off]]></title><description><![CDATA[Being independent gave me an opportunity I didn't think I'd otherwise have.]]></description><link>https://blog.robbieclutton.com/p/on-taking-a-month-off</link><guid isPermaLink="false">https://blog.robbieclutton.com/p/on-taking-a-month-off</guid><dc:creator><![CDATA[Robbie Clutton]]></dc:creator><pubDate>Wed, 04 Sep 2024 20:27:22 GMT</pubDate><enclosure url="https://substackcdn.com/image/fetch/f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fb7f1330f-5615-4f5a-a79a-002a0f35ad80_4032x3024.heic" length="0" type="image/jpeg"/><content:encoded><![CDATA[<p>When I was considering starting my life as an independent consultant, one of things that appealed to me was being in total control of my own time. I&#8217;ve already made the most of this with my young children in mind, either taking planned time off around school holidays, or things like sports days, as well as having flexibility if they are off school unexpectedly. One thing I had in mind though was taking longer summer breaks.&nbsp;</p><p>Before having children, my wife and I lived in New York City. We moved back to be closer to family as we were about to have our own. We wanted that experience, but without the upheaval of relocating, visas, changing jobs and schools - and we thought making the most of the kids 6 week summer break could offer some of that. This year we did just that, spending 3 weeks in Southern California, seeing friends who live that way, as well as adventures ourselves. We also had some work done to our house while we were away, which needed some &#8220;wrap around&#8221; time off making up the rest of the month.&nbsp;</p><p>Could I have done this whilst in a full-time role? Maybe, I&#8217;m not sure. I likely would have found it hard to even ask for a month off, and I think I might have found it hard to disconnect in the way I could do when I work for myself.&nbsp; Of course, not working means not earning; but that was my own decision, an option and a freedom which I choose to take. I wouldn&#8217;t change that.&nbsp;</p><p>The trip we took meant I could catch up with friends, some of which I&#8217;ve known for over 20 years now. So great to see you and spend some quality time together JT, Steve, Shannon, Nigel and Britney.&nbsp;</p><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="https://substackcdn.com/image/fetch/$s_!pn17!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ff93be307-4437-41da-9045-748054ae6f53_4032x3024.heic" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!pn17!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ff93be307-4437-41da-9045-748054ae6f53_4032x3024.heic 424w, https://substackcdn.com/image/fetch/$s_!pn17!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ff93be307-4437-41da-9045-748054ae6f53_4032x3024.heic 848w, https://substackcdn.com/image/fetch/$s_!pn17!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ff93be307-4437-41da-9045-748054ae6f53_4032x3024.heic 1272w, https://substackcdn.com/image/fetch/$s_!pn17!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ff93be307-4437-41da-9045-748054ae6f53_4032x3024.heic 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!pn17!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ff93be307-4437-41da-9045-748054ae6f53_4032x3024.heic" width="426" height="319.5" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/f93be307-4437-41da-9045-748054ae6f53_4032x3024.heic&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:1092,&quot;width&quot;:1456,&quot;resizeWidth&quot;:426,&quot;bytes&quot;:1937522,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:&quot;image/heic&quot;,&quot;href&quot;:null,&quot;belowTheFold&quot;:false,&quot;topImage&quot;:true,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="https://substackcdn.com/image/fetch/$s_!pn17!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ff93be307-4437-41da-9045-748054ae6f53_4032x3024.heic 424w, https://substackcdn.com/image/fetch/$s_!pn17!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ff93be307-4437-41da-9045-748054ae6f53_4032x3024.heic 848w, https://substackcdn.com/image/fetch/$s_!pn17!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ff93be307-4437-41da-9045-748054ae6f53_4032x3024.heic 1272w, https://substackcdn.com/image/fetch/$s_!pn17!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ff93be307-4437-41da-9045-748054ae6f53_4032x3024.heic 1456w" sizes="100vw" fetchpriority="high"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg role="img" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><title></title><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a></figure></div><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="https://substackcdn.com/image/fetch/$s_!m31I!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fb7f1330f-5615-4f5a-a79a-002a0f35ad80_4032x3024.heic" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!m31I!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fb7f1330f-5615-4f5a-a79a-002a0f35ad80_4032x3024.heic 424w, https://substackcdn.com/image/fetch/$s_!m31I!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fb7f1330f-5615-4f5a-a79a-002a0f35ad80_4032x3024.heic 848w, https://substackcdn.com/image/fetch/$s_!m31I!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fb7f1330f-5615-4f5a-a79a-002a0f35ad80_4032x3024.heic 1272w, https://substackcdn.com/image/fetch/$s_!m31I!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fb7f1330f-5615-4f5a-a79a-002a0f35ad80_4032x3024.heic 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!m31I!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fb7f1330f-5615-4f5a-a79a-002a0f35ad80_4032x3024.heic" width="420" height="315" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/b7f1330f-5615-4f5a-a79a-002a0f35ad80_4032x3024.heic&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:1092,&quot;width&quot;:1456,&quot;resizeWidth&quot;:420,&quot;bytes&quot;:3294425,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:&quot;image/heic&quot;,&quot;href&quot;:null,&quot;belowTheFold&quot;:false,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="https://substackcdn.com/image/fetch/$s_!m31I!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fb7f1330f-5615-4f5a-a79a-002a0f35ad80_4032x3024.heic 424w, https://substackcdn.com/image/fetch/$s_!m31I!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fb7f1330f-5615-4f5a-a79a-002a0f35ad80_4032x3024.heic 848w, https://substackcdn.com/image/fetch/$s_!m31I!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fb7f1330f-5615-4f5a-a79a-002a0f35ad80_4032x3024.heic 1272w, https://substackcdn.com/image/fetch/$s_!m31I!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fb7f1330f-5615-4f5a-a79a-002a0f35ad80_4032x3024.heic 1456w" sizes="100vw"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg role="img" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><title></title><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a></figure></div><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="https://substackcdn.com/image/fetch/$s_!GKi3!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F4bb52e47-8ee8-4fc3-ae0c-5b52c1ccc341_4032x3024.heic" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!GKi3!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F4bb52e47-8ee8-4fc3-ae0c-5b52c1ccc341_4032x3024.heic 424w, https://substackcdn.com/image/fetch/$s_!GKi3!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F4bb52e47-8ee8-4fc3-ae0c-5b52c1ccc341_4032x3024.heic 848w, https://substackcdn.com/image/fetch/$s_!GKi3!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F4bb52e47-8ee8-4fc3-ae0c-5b52c1ccc341_4032x3024.heic 1272w, https://substackcdn.com/image/fetch/$s_!GKi3!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F4bb52e47-8ee8-4fc3-ae0c-5b52c1ccc341_4032x3024.heic 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!GKi3!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F4bb52e47-8ee8-4fc3-ae0c-5b52c1ccc341_4032x3024.heic" width="420" height="315" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/4bb52e47-8ee8-4fc3-ae0c-5b52c1ccc341_4032x3024.heic&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:1092,&quot;width&quot;:1456,&quot;resizeWidth&quot;:420,&quot;bytes&quot;:2553736,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:&quot;image/heic&quot;,&quot;href&quot;:null,&quot;belowTheFold&quot;:false,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="https://substackcdn.com/image/fetch/$s_!GKi3!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F4bb52e47-8ee8-4fc3-ae0c-5b52c1ccc341_4032x3024.heic 424w, https://substackcdn.com/image/fetch/$s_!GKi3!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F4bb52e47-8ee8-4fc3-ae0c-5b52c1ccc341_4032x3024.heic 848w, https://substackcdn.com/image/fetch/$s_!GKi3!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F4bb52e47-8ee8-4fc3-ae0c-5b52c1ccc341_4032x3024.heic 1272w, https://substackcdn.com/image/fetch/$s_!GKi3!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F4bb52e47-8ee8-4fc3-ae0c-5b52c1ccc341_4032x3024.heic 1456w" sizes="100vw"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg role="img" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><title></title><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a></figure></div><p></p><div class="subscription-widget-wrap-editor" data-attrs="{&quot;url&quot;:&quot;https://blog.robbieclutton.com/subscribe?&quot;,&quot;text&quot;:&quot;Subscribe&quot;,&quot;language&quot;:&quot;en&quot;}" data-component-name="SubscribeWidgetToDOM"><div class="subscription-widget show-subscribe"><div class="preamble"><p class="cta-caption">Thanks for reading Robbie Clutton! Subscribe for free to receive new posts and support my work.</p></div><form class="subscription-widget-subscribe"><input type="email" class="email-input" name="email" placeholder="Type your email&#8230;" tabindex="-1"><input type="submit" class="button primary" value="Subscribe"><div class="fake-input-wrapper"><div class="fake-input"></div><div class="fake-button"></div></div></form></div></div>]]></content:encoded></item><item><title><![CDATA[On job applications]]></title><description><![CDATA[I have reviewed probably thousands of job applicants.]]></description><link>https://blog.robbieclutton.com/p/on-job-applications</link><guid isPermaLink="false">https://blog.robbieclutton.com/p/on-job-applications</guid><dc:creator><![CDATA[Robbie Clutton]]></dc:creator><pubDate>Mon, 08 Jul 2024 20:44:36 GMT</pubDate><enclosure url="https://substackcdn.com/image/fetch/$s_!Oxzj!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fa14dc94e-20cc-4e74-a999-f8c319362e4a_1152x640.jpeg" length="0" type="image/jpeg"/><content:encoded><![CDATA[<p>I have reviewed probably thousands of job applicants. I wanted to share some tips from my perspective as a hiring manager. This likely will be different for different hiring managers, so your milage may vary. </p><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="https://substackcdn.com/image/fetch/$s_!Oxzj!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fa14dc94e-20cc-4e74-a999-f8c319362e4a_1152x640.jpeg" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!Oxzj!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fa14dc94e-20cc-4e74-a999-f8c319362e4a_1152x640.jpeg 424w, https://substackcdn.com/image/fetch/$s_!Oxzj!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fa14dc94e-20cc-4e74-a999-f8c319362e4a_1152x640.jpeg 848w, https://substackcdn.com/image/fetch/$s_!Oxzj!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fa14dc94e-20cc-4e74-a999-f8c319362e4a_1152x640.jpeg 1272w, https://substackcdn.com/image/fetch/$s_!Oxzj!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fa14dc94e-20cc-4e74-a999-f8c319362e4a_1152x640.jpeg 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!Oxzj!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fa14dc94e-20cc-4e74-a999-f8c319362e4a_1152x640.jpeg" width="1152" height="640" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/a14dc94e-20cc-4e74-a999-f8c319362e4a_1152x640.jpeg&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:&quot;normal&quot;,&quot;height&quot;:640,&quot;width&quot;:1152,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:null,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:null,&quot;href&quot;:null,&quot;belowTheFold&quot;:false,&quot;topImage&quot;:true,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="https://substackcdn.com/image/fetch/$s_!Oxzj!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fa14dc94e-20cc-4e74-a999-f8c319362e4a_1152x640.jpeg 424w, https://substackcdn.com/image/fetch/$s_!Oxzj!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fa14dc94e-20cc-4e74-a999-f8c319362e4a_1152x640.jpeg 848w, https://substackcdn.com/image/fetch/$s_!Oxzj!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fa14dc94e-20cc-4e74-a999-f8c319362e4a_1152x640.jpeg 1272w, https://substackcdn.com/image/fetch/$s_!Oxzj!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fa14dc94e-20cc-4e74-a999-f8c319362e4a_1152x640.jpeg 1456w" sizes="100vw" fetchpriority="high"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg role="img" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><title></title><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a><figcaption class="image-caption">desk covered in paperwork</figcaption></figure></div><p></p><ul><li><p>Get my attention - you just want me to want to call you, not offer you the job on the spot or know your life story.</p></li><li><p>Be concise but not so concise you omit anything that might help me understand your experience. Don&#8217;t make me have to guess.</p></li><li><p>If your CV is more than 2 pages I&#8217;ll start to worry about your conciseness. Communication is key, especially for leadership positions.</p></li><li><p>More content for newer positions, less for older - or remove entirely - I don&#8217;t really care what you did 20 years ago - unless it really is pertinent to the role.</p></li><li><p>Don&#8217;t send me Word docs, I don&#8217;t use Office.</p></li><li><p>You might not need a cover letter, but if you include one, make sure it addresses the points in the job description, don&#8217;t just repeat what I can read in the CV</p></li></ul>]]></content:encoded></item><item><title><![CDATA[What they don't tell you about leadership]]></title><description><![CDATA[Notes from a talk given at CTO Craft Conference: Culture and the CTO]]></description><link>https://blog.robbieclutton.com/p/what-they-dont-tell-you-about-leadership</link><guid isPermaLink="false">https://blog.robbieclutton.com/p/what-they-dont-tell-you-about-leadership</guid><dc:creator><![CDATA[Robbie Clutton]]></dc:creator><pubDate>Wed, 08 Nov 2023 16:30:26 GMT</pubDate><enclosure url="https://substack-post-media.s3.amazonaws.com/public/images/b5823804-0a23-48fc-8455-686fa77b700f_800x418.jpeg" length="0" type="image/jpeg"/><content:encoded><![CDATA[<p><a href="https://speakerdeck.com/robb1e/what-they-dont-tell-you-about-leadership">Slides</a></p><p><a href="https://www.youtube.com/watch?v=vMjZWO4iU54&amp;list=PL7rH0Xqb-7CYR_vOJtvRO-P6ghXpNYVkp">Video</a></p><p>At <em>CTO Craft Conference: Culture and the CTO</em> I had the opportunity to do a &#8220;lightening talk&#8221;. In the talk, I discussed a story about how I was communicating when I started my first senior leadership role, and how my good intentions created negative consequences. I discussed Albert Mehrabian&#8217;s theory of communication and then dive into inclusive conversation tools of: </p><ul><li><p>Rules of engagement</p></li><li><p>Think, write, share</p></li><li><p>Everyone speaks once before anyone speaks twice</p></li><li><p>Using anonymity to foster psychological safety</p></li></ul><div class="subscription-widget-wrap-editor" data-attrs="{&quot;url&quot;:&quot;https://blog.robbieclutton.com/subscribe?&quot;,&quot;text&quot;:&quot;Subscribe&quot;,&quot;language&quot;:&quot;en&quot;}" data-component-name="SubscribeWidgetToDOM"><div class="subscription-widget show-subscribe"><div class="preamble"><p class="cta-caption">Thanks for reading Robbie Clutton! Subscribe for free to receive new posts and support my work.</p></div><form class="subscription-widget-subscribe"><input type="email" class="email-input" name="email" placeholder="Type your email&#8230;" tabindex="-1"><input type="submit" class="button primary" value="Subscribe"><div class="fake-input-wrapper"><div class="fake-input"></div><div class="fake-button"></div></div></form></div></div><p><strong>References and further reading</strong></p><ul><li><p><a href="https://www.linkedin.com/posts/robbieclutton_michael-bungay-stanier-activity-6819587062656716800-IPsi?utm_source=share&amp;utm_medium=member_desktop">The Advice Trap: Be Humble, Stay Curious &amp; Change the Way You Lead Forever; Michael Bungay Stanier</a></p></li><li><p>The Coaching Habit: Say Less, Ask More &amp; Change the Way You Lead Forever; Michael Bungay Stanier</p></li><li><p><a href="https://www.linkedin.com/posts/robbieclutton_the-good-fight-use-productive-conflict-to-activity-7045669005897945088-iBnE/?utm_source=share&amp;utm_medium=member_desktop">The Good Fight; Liane Davey</a></p></li><li><p><a href="https://www.linkedin.com/posts/robbieclutton_continuousimprovement-audiobook-leadership-activity-6636184564697976832-UBog?utm_source=share&amp;utm_medium=member_desktop">Thinking in Bets: Making Smarter Decisions When You Don't Have All the Facts; Annie Duke</a></p></li><li><p><a href="https://www.linkedin.com/posts/robbieclutton_the-culture-map-activity-6807552065951297536-bGxS?utm_source=share&amp;utm_medium=member_desktop">The Culture Map; Erin Meyer</a></p></li><li><p>What Every BODY Is Saying: An Ex-FBI Agent&#8217;s Guide to Speed-Reading People; Joe Navarro</p></li><li><p>The Surprising Power of Liberating Structures: Simple Rules to Unleash A Culture of Innovation; Henri Lipmanowicz, Keith McCandless </p></li><li><p><a href="https://www.linkedin.com/posts/robbieclutton_red-teaming-how-your-business-can-conquer-activity-6939622246869008385-ww2C/?utm_source=linkedin_share&amp;utm_medium=member_desktop_web">Red Teaming: Transform Your Business by Thinking Like the Enemy; Bryce Hoffman</a></p></li><li><p><a href="https://www.linkedin.com/posts/robbieclutton_audiobook-leadership-people-activity-6751422069168197632-KY1k?utm_source=share&amp;utm_medium=member_desktop">The 7 Habits Of Highly Effective People; Stephen R. Covey </a></p></li><li><p><a href="https://www.linkedin.com/posts/robbieclutton_leadership-people-culture-activity-6763216588180111360-AObD?utm_source=share&amp;utm_medium=member_desktop">The 8th Habit: From Effectiveness to Greatness; Stephen R. Covey</a></p></li><li><p><a href="https://www.linkedin.com/posts/robbieclutton_noise-a-book-by-daniel-kahneman-olivier-activity-6805727840592510976-MyG0?utm_source=share&amp;utm_medium=member_desktop">Noise; Daniel Kahneman, Olivier Sibony, Cass R. Sunstein</a></p></li><li><p>Thinking, Fast and Slow; Daniel Kahneman</p></li><li><p><a href="https://www.linkedin.com/posts/robbieclutton_mistakes-were-made-but-not-by-me-why-we-activity-6912454448258629632-3l9a/?utm_source=linkedin_share&amp;utm_medium=member_desktop_web">Mistakes Were Made (but Not by Me): Why We Justify Foolish Beliefs, Bad Decisions and Hurtful Acts; Carol Tavris, Elliot Aronson</a></p></li><li><p>Leadership is language; David L. Marquet</p></li></ul><p></p><p></p><p>https://conference.ctocraft.com/november-2023/</p><div class="subscription-widget-wrap-editor" data-attrs="{&quot;url&quot;:&quot;https://blog.robbieclutton.com/subscribe?&quot;,&quot;text&quot;:&quot;Subscribe&quot;,&quot;language&quot;:&quot;en&quot;}" data-component-name="SubscribeWidgetToDOM"><div class="subscription-widget show-subscribe"><div class="preamble"><p class="cta-caption">Thanks for reading Robbie Clutton! Subscribe for free to receive new posts and support my work.</p></div><form class="subscription-widget-subscribe"><input type="email" class="email-input" name="email" placeholder="Type your email&#8230;" tabindex="-1"><input type="submit" class="button primary" value="Subscribe"><div class="fake-input-wrapper"><div class="fake-input"></div><div class="fake-button"></div></div></form></div></div>]]></content:encoded></item><item><title><![CDATA[On levelling, learning and development]]></title><description><![CDATA["It takes 1,000 days to forge the spirit and 10,000 days to polish it." - Miyamoto Musashi, 17th century samurai]]></description><link>https://blog.robbieclutton.com/p/on-levelling-learning-and-development</link><guid isPermaLink="false">https://blog.robbieclutton.com/p/on-levelling-learning-and-development</guid><dc:creator><![CDATA[Robbie Clutton]]></dc:creator><pubDate>Fri, 16 Jun 2023 09:14:30 GMT</pubDate><enclosure url="https://substackcdn.com/image/fetch/$s_!eV7W!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fb8324f03-1871-4dc9-ae0f-512aad14624b_800x557.jpeg" length="0" type="image/jpeg"/><content:encoded><![CDATA[<p><em><strong>"It takes 1,000 days to forge the spirit and 10,000 days to polish it." - Miyamoto Musashi, 17th century samurai</strong></em></p><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="https://substackcdn.com/image/fetch/$s_!eV7W!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fb8324f03-1871-4dc9-ae0f-512aad14624b_800x557.jpeg" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!eV7W!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fb8324f03-1871-4dc9-ae0f-512aad14624b_800x557.jpeg 424w, https://substackcdn.com/image/fetch/$s_!eV7W!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fb8324f03-1871-4dc9-ae0f-512aad14624b_800x557.jpeg 848w, https://substackcdn.com/image/fetch/$s_!eV7W!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fb8324f03-1871-4dc9-ae0f-512aad14624b_800x557.jpeg 1272w, https://substackcdn.com/image/fetch/$s_!eV7W!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fb8324f03-1871-4dc9-ae0f-512aad14624b_800x557.jpeg 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!eV7W!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fb8324f03-1871-4dc9-ae0f-512aad14624b_800x557.jpeg" width="800" height="557" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/b8324f03-1871-4dc9-ae0f-512aad14624b_800x557.jpeg&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:557,&quot;width&quot;:800,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:null,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:null,&quot;href&quot;:null,&quot;belowTheFold&quot;:false,&quot;topImage&quot;:true,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="https://substackcdn.com/image/fetch/$s_!eV7W!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fb8324f03-1871-4dc9-ae0f-512aad14624b_800x557.jpeg 424w, https://substackcdn.com/image/fetch/$s_!eV7W!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fb8324f03-1871-4dc9-ae0f-512aad14624b_800x557.jpeg 848w, https://substackcdn.com/image/fetch/$s_!eV7W!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fb8324f03-1871-4dc9-ae0f-512aad14624b_800x557.jpeg 1272w, https://substackcdn.com/image/fetch/$s_!eV7W!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fb8324f03-1871-4dc9-ae0f-512aad14624b_800x557.jpeg 1456w" sizes="100vw" fetchpriority="high"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg role="img" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><title></title><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a></figure></div><p>Recently I&#8217;ve been having a few conversations with newer, growing companies about career development frameworks. Before diving into any ins and outs of such a framework I first want to touch on learning models.&nbsp;</p><p>Over the pandemic I took up Taekwondo with my daughter and I was quite taken by the definition of progression through the grades and belts. I think there is something to learn from this and apply to industry roles. Each grade, and its associated coloured belt, has a meaning related to growing a plant.&nbsp;</p><ul><li><p>White belt presents innocence, a total novice,&nbsp;</p></li><li><p>Yellow belt presents a seedling plant, growing it&#8217;s first roots</p></li><li><p>Green belt presents sprouting, when the plant emerges from the soil and reveals its presence</p></li><li><p>Blue belt presents the plant growing, and stretching for the sky</p></li><li><p>Red belt presents danger. The student has knowledge but may lack experience or discipline. This may result in unintended injury to themselves or an opponent.&nbsp;</p></li><li><p>Black belt (1st Dan) presents a level of mastery, experience, and discipline</p></li></ul><p>It is expected that from novice to black belt should take about 3-5 years. Once the 1st Dan is achieved, the student can be considered an assistant instructor. It takes a further 6-8 years to get to 4th Dan which is then considered an instructor and a Master - that&#8217;s 9-13 years from novice. It can then take another 20 years to achieve Grand Master status, about 30 years from novice.&nbsp;</p><p>Why am I describing Taekwondo here? First, the notion of lifelong learning is baked in. It is assumed to take 30 years to achieve the Grand Master rank. The path to that includes the first 3-5 years to first gain proficiency with incremental steps for the beginner and a built-in notion about becoming dangerous - in this case, knowledge but without discipline and experience. I think these are notions that can be applied to the professional realm. While a martial art like Taekwondo can have a syllabus, and well defined grading criteria - much like in the academic setting - the professional world is less structured.&nbsp;</p><div class="subscription-widget-wrap-editor" data-attrs="{&quot;url&quot;:&quot;https://blog.robbieclutton.com/subscribe?&quot;,&quot;text&quot;:&quot;Subscribe&quot;,&quot;language&quot;:&quot;en&quot;}" data-component-name="SubscribeWidgetToDOM"><div class="subscription-widget show-subscribe"><div class="preamble"><p class="cta-caption">Thanks for reading Robbie Clutton! Subscribe for free to receive new posts and support my work.</p></div><form class="subscription-widget-subscribe"><input type="email" class="email-input" name="email" placeholder="Type your email&#8230;" tabindex="-1"><input type="submit" class="button primary" value="Subscribe"><div class="fake-input-wrapper"><div class="fake-input"></div><div class="fake-button"></div></div></form></div></div><p>Another martial art to take inspiration from is Aidiko with Shuhari. I&#8217;m certainly not the first person to associate Shuhari with software development but it's worthy of inclusion here. Shu (&#23432;) means to obey, to learn the foundations. In Taekwondo this manifests through poomsae, and Karate through kata - both translate as patterns. These are sequences of movements designed to teach and reinforce strikes and blocks. This has been applied to the Toyota Kata as described in his books on the subject by Mike Rother around improvement and coaching. Ha (&#30772;) means to innovate, to break with tradition, and Ri (&#38626;) means to transcend, where everything is natural, and all things are allowed.&nbsp;</p><p>Let&#8217;s move away from martial arts and towards some learning models and see where some overlap might be. The &#8220;four stages of competence&#8221; proposes&nbsp;</p><ul><li><p>unconscious incompetence - you don&#8217;t know what you don&#8217;t know</p></li><li><p>conscious incompetence - you know what you don&#8217;t know</p></li><li><p>conscious competence - you have acquired skill, but it takes effort to perform</p></li><li><p>unconscious competence - you have mastered skill, and performance is intuitive</p></li></ul><p>The Dreyfus model of skill acquisition is a popular model which describes how a person moves through learning:</p><ol><li><p>Novice, the student is following instructions without wider knowledge or context</p></li><li><p>Advanced beginner, the student is still rule based but can start to apply context</p></li><li><p>Competent, the student has a wider grasp of the domain and can perform tasks within context</p></li><li><p>Proficient, the student is transcending the structure, and starting to innovate on solutions</p></li><li><p>Expert, the student no longer relies on rules and guidelines, much is now at an unconscious level</p></li></ol><p>One more model, and one which is more aimed at career levelling as opposed to skill acquisition, the Radford:</p><ol><li><p>Entry</p></li><li><p>Developing</p></li><li><p>Career</p></li><li><p>Advanced</p></li><li><p>Expert</p></li><li><p>Principal</p></li></ol><p><strong>&#8220;All models are wrong, but some are useful&#8221; &#8211; George Box, statistician</strong></p><p>Charlie Munger, legendary investor of Berkshire Hathaway, recommends applying multiple models to a problem to solve, in the hope that one model might find weaknesses where another does not, and to seek any overlap suggesting a way forward across the models applied. None of the models above by themselves might be the right one for you, your company and situation to apply to learning and development, but perhaps a few of them overlaid might show a path forward.&nbsp;</p><p>In the companies I&#8217;ve worked with, there tends to be an individual contributor, or practitioner level, and I&#8217;ve seen it tends to go from 1-6. I have seen some extend beyond that for those few exceptional individuals, I&#8217;ve seen that tend to be called &#8220;Distinguished&#8221; or &#8220;Fellow&#8221;.&nbsp; There then tends to be management and then executive levels which follow similar models.</p><p>So if you are building a career development framework for the first time, what do these models reveal?</p><ul><li><p>There are three phases in a profession, the first is <em>entry</em>, where the individual is learning and acquiring skill and experience; the second is <em>seniority</em>, where the individual is applying context to skill; and the third is <em>mastery</em>, where the individual transcends the rules and guidelines in their work.</p></li><li><p>Break down early career roles into a few levels. This allows both granular definition and growth plans for individuals and also gives them &#8220;high five&#8221; moments when you promote them from one to another. There is a high pace of progression at these earlier stages.&nbsp;</p></li><li><p>Career progression is expected to take longer between higher levels, in part as it&#8217;s harder to measure how an individual transcends the rules, and in part as so much of it is based on experience. Be aware that there will be some who expect the pace of progression to be linear (i.e. being promoted frequently)</p></li></ul><p>Other things to be aware of also, job titles in one company will not equate to job titles in another company. This becomes pronounced the higher the level. Some companies appear to have done away with prefixes on job titles. On levels.fyi Facebook Software Engineer levels are listed as E3-9. Some have a mixture, VMware for instance has levels 1-3 and then introduces prefixes like &#8216;Senior&#8217;, &#8216;Staff&#8217; and &#8216;Principal&#8217;. I could see this being a bit of a double-edged sword. The removal of the title might take some emotion out of a discussion with some people for the better, and some might desire an attachment to a title.&nbsp;</p><p>Here are some examples of what I&#8217;ve seen - each column doesn&#8217;t necessarily correspond to companies 1:1 as I&#8217;ve tried to show various titles used at various levels.&nbsp;</p><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="https://substackcdn.com/image/fetch/$s_!MT1X!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F46969af8-602e-4e17-aa76-803966fb7509_1302x570.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!MT1X!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F46969af8-602e-4e17-aa76-803966fb7509_1302x570.png 424w, https://substackcdn.com/image/fetch/$s_!MT1X!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F46969af8-602e-4e17-aa76-803966fb7509_1302x570.png 848w, https://substackcdn.com/image/fetch/$s_!MT1X!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F46969af8-602e-4e17-aa76-803966fb7509_1302x570.png 1272w, https://substackcdn.com/image/fetch/$s_!MT1X!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F46969af8-602e-4e17-aa76-803966fb7509_1302x570.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!MT1X!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F46969af8-602e-4e17-aa76-803966fb7509_1302x570.png" width="1302" height="570" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/46969af8-602e-4e17-aa76-803966fb7509_1302x570.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:570,&quot;width&quot;:1302,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:84329,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:&quot;image/png&quot;,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="https://substackcdn.com/image/fetch/$s_!MT1X!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F46969af8-602e-4e17-aa76-803966fb7509_1302x570.png 424w, https://substackcdn.com/image/fetch/$s_!MT1X!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F46969af8-602e-4e17-aa76-803966fb7509_1302x570.png 848w, https://substackcdn.com/image/fetch/$s_!MT1X!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F46969af8-602e-4e17-aa76-803966fb7509_1302x570.png 1272w, https://substackcdn.com/image/fetch/$s_!MT1X!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F46969af8-602e-4e17-aa76-803966fb7509_1302x570.png 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg role="img" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><title></title><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a></figure></div><p><strong>&#8220;Mastery is a journey, not a destination. True masters never believe they have attained mastery. There is always more to be learned and greater skill to be developed.&#8221; &#8213; Timothy Ferriss, Tribe Of Mentors: Short Life Advice from the Best in the World</strong></p><p>I&#8217;m going to aim to follow this up with how to look at measuring performance. What have I missed from this section and what would you like to see in the follow up? I&#8217;m keen to hear your suggestions.</p>]]></content:encoded></item><item><title><![CDATA[On hiring]]></title><description><![CDATA[Creating scalable, consistency and noise-free interview evaluations.]]></description><link>https://blog.robbieclutton.com/p/on-hiring</link><guid isPermaLink="false">https://blog.robbieclutton.com/p/on-hiring</guid><dc:creator><![CDATA[Robbie Clutton]]></dc:creator><pubDate>Wed, 29 Mar 2023 09:51:35 GMT</pubDate><enclosure url="https://substackcdn.com/image/fetch/$s_!jpMj!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fa94c11af-76de-4be9-8445-55f2bfe900ca_908x961.png" length="0" type="image/jpeg"/><content:encoded><![CDATA[<p>For me, interviews are less about the answer, and more about the process. I&#8217;m less interested if a candidate knows a given technology, or had a certain experience. I want to see how a candidate thinks, how they approach a problem. I want to see how they react if they see something new, do they use it as a learning opportunity? Do they apply that later in the interview?&nbsp;</p><p>In this article, I want to discuss hiring processes. I&#8217;ve come from a software engineering background, and have interviewed hundreds if not thousands of software engineers, and likely hired over a hundred. I&#8217;ve also been involved in hiring processes and in the interviews for product managers, product designers and program managers as well as people managers and senior leadership. This has a leaning towards hiring for software engineers, but I believe is generally applicable.&nbsp;</p><h1>Bias, and noise</h1><p>There has been a lot of focus on bias over the years, and Daniel Kahneman recently introduced us to the concept of noise through his book of the same name along with co-authors Olivier Sibony, and Cass Sunstein. This article doesn&#8217;t go into much detail about removing biases which might lead to actions like anonymising applications. This looks at the interview and decision making processes, and how to reduce noise.&nbsp;</p><p>Think of a target. The bottom left of this illustration shows no bias or noise - all shots right in the centre. When there is an off-centre cluster, that can be seen as a visualisation of bias, yet lacking noise. You&#8217;re being pulled in a certain direction. When the shots are scattered with no real pattern, this is noise. This can still demonstrate bias (see top right) or unbiased noise (top left).</p><p>Kahnaman, Sibony and Sunstein describe three types of noise: level, pattern and occasion.&nbsp;</p><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="https://substackcdn.com/image/fetch/$s_!jpMj!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fa94c11af-76de-4be9-8445-55f2bfe900ca_908x961.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!jpMj!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fa94c11af-76de-4be9-8445-55f2bfe900ca_908x961.png 424w, https://substackcdn.com/image/fetch/$s_!jpMj!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fa94c11af-76de-4be9-8445-55f2bfe900ca_908x961.png 848w, https://substackcdn.com/image/fetch/$s_!jpMj!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fa94c11af-76de-4be9-8445-55f2bfe900ca_908x961.png 1272w, https://substackcdn.com/image/fetch/$s_!jpMj!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fa94c11af-76de-4be9-8445-55f2bfe900ca_908x961.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!jpMj!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fa94c11af-76de-4be9-8445-55f2bfe900ca_908x961.png" width="908" height="961" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/a94c11af-76de-4be9-8445-55f2bfe900ca_908x961.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:961,&quot;width&quot;:908,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:85747,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:&quot;image/png&quot;,&quot;href&quot;:null,&quot;belowTheFold&quot;:false,&quot;topImage&quot;:true,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="https://substackcdn.com/image/fetch/$s_!jpMj!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fa94c11af-76de-4be9-8445-55f2bfe900ca_908x961.png 424w, https://substackcdn.com/image/fetch/$s_!jpMj!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fa94c11af-76de-4be9-8445-55f2bfe900ca_908x961.png 848w, https://substackcdn.com/image/fetch/$s_!jpMj!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fa94c11af-76de-4be9-8445-55f2bfe900ca_908x961.png 1272w, https://substackcdn.com/image/fetch/$s_!jpMj!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fa94c11af-76de-4be9-8445-55f2bfe900ca_908x961.png 1456w" sizes="100vw" fetchpriority="high"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg role="img" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><title></title><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a></figure></div><div class="subscription-widget-wrap-editor" data-attrs="{&quot;url&quot;:&quot;https://blog.robbieclutton.com/subscribe?&quot;,&quot;text&quot;:&quot;Subscribe&quot;,&quot;language&quot;:&quot;en&quot;}" data-component-name="SubscribeWidgetToDOM"><div class="subscription-widget show-subscribe"><div class="preamble"><p class="cta-caption">Thanks for reading Robbie Clutton! Subscribe for free to receive new posts and support my work.</p></div><form class="subscription-widget-subscribe"><input type="email" class="email-input" name="email" placeholder="Type your email&#8230;" tabindex="-1"><input type="submit" class="button primary" value="Subscribe"><div class="fake-input-wrapper"><div class="fake-input"></div><div class="fake-button"></div></div></form></div></div><p><strong>Level noise</strong> can be seen in scoring charts, say where we are asked for a 1-5 rating. One person might give a 5/5 because the expectation was met, whereas another person might only give 5/5 where expectation was exceeded. Without a definition, a rubric, there will be noise.&nbsp;</p><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="https://substackcdn.com/image/fetch/$s_!mcha!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fd79d8458-eee0-4217-8db2-4fbeecd2dfe2_1314x398.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!mcha!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fd79d8458-eee0-4217-8db2-4fbeecd2dfe2_1314x398.png 424w, https://substackcdn.com/image/fetch/$s_!mcha!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fd79d8458-eee0-4217-8db2-4fbeecd2dfe2_1314x398.png 848w, https://substackcdn.com/image/fetch/$s_!mcha!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fd79d8458-eee0-4217-8db2-4fbeecd2dfe2_1314x398.png 1272w, https://substackcdn.com/image/fetch/$s_!mcha!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fd79d8458-eee0-4217-8db2-4fbeecd2dfe2_1314x398.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!mcha!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fd79d8458-eee0-4217-8db2-4fbeecd2dfe2_1314x398.png" width="1314" height="398" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/d79d8458-eee0-4217-8db2-4fbeecd2dfe2_1314x398.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:398,&quot;width&quot;:1314,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:null,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:null,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="https://substackcdn.com/image/fetch/$s_!mcha!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fd79d8458-eee0-4217-8db2-4fbeecd2dfe2_1314x398.png 424w, https://substackcdn.com/image/fetch/$s_!mcha!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fd79d8458-eee0-4217-8db2-4fbeecd2dfe2_1314x398.png 848w, https://substackcdn.com/image/fetch/$s_!mcha!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fd79d8458-eee0-4217-8db2-4fbeecd2dfe2_1314x398.png 1272w, https://substackcdn.com/image/fetch/$s_!mcha!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fd79d8458-eee0-4217-8db2-4fbeecd2dfe2_1314x398.png 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg role="img" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><title></title><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a></figure></div><p><strong>Pattern noise</strong> is where two individuals make differing judgements on the same input. This might be medical professionals making different diagnosis and treatment plans, judges issuing a sentence, or interviewers favouring differing ways of solving a problem.&nbsp;</p><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="https://substackcdn.com/image/fetch/$s_!S3XK!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ffbe3ea43-8556-4f9a-b2a6-1a074306aa82_1105x586.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!S3XK!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ffbe3ea43-8556-4f9a-b2a6-1a074306aa82_1105x586.png 424w, https://substackcdn.com/image/fetch/$s_!S3XK!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ffbe3ea43-8556-4f9a-b2a6-1a074306aa82_1105x586.png 848w, https://substackcdn.com/image/fetch/$s_!S3XK!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ffbe3ea43-8556-4f9a-b2a6-1a074306aa82_1105x586.png 1272w, https://substackcdn.com/image/fetch/$s_!S3XK!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ffbe3ea43-8556-4f9a-b2a6-1a074306aa82_1105x586.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!S3XK!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ffbe3ea43-8556-4f9a-b2a6-1a074306aa82_1105x586.png" width="1105" height="586" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/fbe3ea43-8556-4f9a-b2a6-1a074306aa82_1105x586.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:586,&quot;width&quot;:1105,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:null,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:null,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="https://substackcdn.com/image/fetch/$s_!S3XK!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ffbe3ea43-8556-4f9a-b2a6-1a074306aa82_1105x586.png 424w, https://substackcdn.com/image/fetch/$s_!S3XK!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ffbe3ea43-8556-4f9a-b2a6-1a074306aa82_1105x586.png 848w, https://substackcdn.com/image/fetch/$s_!S3XK!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ffbe3ea43-8556-4f9a-b2a6-1a074306aa82_1105x586.png 1272w, https://substackcdn.com/image/fetch/$s_!S3XK!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ffbe3ea43-8556-4f9a-b2a6-1a074306aa82_1105x586.png 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg role="img" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><title></title><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a></figure></div><p><strong>Occasion noise</strong> is where a different decision is made depending on the situation, such as before or after eating, or in a rush vs taking time.&nbsp;</p><h1>Create a level playing field</h1><p>Initial impressions can unduly influence decisions. Have you been in interviews which start with an informal chat at the start? That can lead to different questions being asked, and if this happens we&#8217;re not really able to fully compare two candidates. If that conversation leads to a subconscious leaning towards that candidate, then the <em>halo effect bias</em> has come into play. This is where this initial (positive or negative) impression might help amplify a later decision (&#8220;that candidate is <em>really </em>good/bad&#8221;) or compensate for any later areas (&#8220;the answer wasn&#8217;t great, but I&#8217;m prepared to overlook it&#8221;).</p><p>Humans are pattern matching machines, and we also look for cohesion, we like to make sense of things. We can be guilty of seeing patterns in meaningless data, and assigning meaning where there is none. These can all lead to increased subjectivity in the ultimate decision to make a hire.&nbsp;</p><p>We want to compare candidates on a level playing field. In order to do this, we want to ensure we are using the same process and the same questions for all candidates within a batch. Now we might run a batch, make changes and then run another batch, but changing the process within a batch will cause problems.</p><p>What I&#8217;m outlining here is more about scaling and consistency of process. If you can create a process with a good job description, not a compromised wish list trying to please everyone; a consistent interview, and well defined scorecards, training new interviewers becomes easier. Some might say they prefer to ask their own questions. but when relying on the individual interviewers, you may come to depend on the same interviewers over and over, and could be subject to the Dunning-Kruger effect, whereby those with lower experience overestimate their ability.&nbsp;</p><h1>The interview</h1><p>When constructing the interview, we want to offer evaluators predefined questions to ensure candidates can later be compared, and we want to offer examples of great, good and average responses to those questions. This reduces the level noise from evaluators.&nbsp;</p><p>We also want to consider a &#8220;work sample task&#8221;, something which is representative of work that would be undertaken as part of the job. These are often the best predictor of success in the role. Some roles and also levels are easier than others to create these exercises for.&nbsp;</p><p>For software engineers, an example of a task based interview might be the take-home test. A candidate is given an exercise and asked to complete it in a given amount of time before submitting the source code for evaluation. The evaluator can never be sure how long a candidate took. Did they do it in a rush? Did they work on it full-time for a while, or outsource it to a generative AI tool? What if they solved the problem asked, but did so in a way that was unfamiliar or unliked to the evaluator?&nbsp;</p><p>It might take longer, but my preference is for collaborative, pair-programming, interviews and to combine this with an approach that takes a candidate down a path that leads to the same output, or near enough, for each candidate. This helps to reduce the pattern noise of preferring one way or another.&nbsp;</p><h1>Scorecards</h1><p>In an effort to reduce level noise, we aim to give evaluators a structured scorecard with detailed explanation of what it means to achieve a score. In this example a radio button is used so that the evaluator can select one and only one answer.&nbsp;</p><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="https://substackcdn.com/image/fetch/$s_!lRoV!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ff992c531-6146-42d9-a493-7e1e2d9f91ac_1268x768.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!lRoV!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ff992c531-6146-42d9-a493-7e1e2d9f91ac_1268x768.png 424w, https://substackcdn.com/image/fetch/$s_!lRoV!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ff992c531-6146-42d9-a493-7e1e2d9f91ac_1268x768.png 848w, https://substackcdn.com/image/fetch/$s_!lRoV!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ff992c531-6146-42d9-a493-7e1e2d9f91ac_1268x768.png 1272w, https://substackcdn.com/image/fetch/$s_!lRoV!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ff992c531-6146-42d9-a493-7e1e2d9f91ac_1268x768.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!lRoV!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ff992c531-6146-42d9-a493-7e1e2d9f91ac_1268x768.png" width="1268" height="768" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/f992c531-6146-42d9-a493-7e1e2d9f91ac_1268x768.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:768,&quot;width&quot;:1268,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:null,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:null,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="https://substackcdn.com/image/fetch/$s_!lRoV!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ff992c531-6146-42d9-a493-7e1e2d9f91ac_1268x768.png 424w, https://substackcdn.com/image/fetch/$s_!lRoV!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ff992c531-6146-42d9-a493-7e1e2d9f91ac_1268x768.png 848w, https://substackcdn.com/image/fetch/$s_!lRoV!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ff992c531-6146-42d9-a493-7e1e2d9f91ac_1268x768.png 1272w, https://substackcdn.com/image/fetch/$s_!lRoV!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ff992c531-6146-42d9-a493-7e1e2d9f91ac_1268x768.png 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg role="img" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><title></title><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a></figure></div><p>In this example, the evaluator is offered the ability to &#8220;check all that apply&#8221;. This loses the nuance and fidelity of the radio buttons, but can be useful.&nbsp;</p><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="https://substackcdn.com/image/fetch/$s_!ofks!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fa921ce99-4b05-4424-8ca8-736d01f6a1ae_1308x830.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!ofks!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fa921ce99-4b05-4424-8ca8-736d01f6a1ae_1308x830.png 424w, https://substackcdn.com/image/fetch/$s_!ofks!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fa921ce99-4b05-4424-8ca8-736d01f6a1ae_1308x830.png 848w, https://substackcdn.com/image/fetch/$s_!ofks!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fa921ce99-4b05-4424-8ca8-736d01f6a1ae_1308x830.png 1272w, https://substackcdn.com/image/fetch/$s_!ofks!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fa921ce99-4b05-4424-8ca8-736d01f6a1ae_1308x830.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!ofks!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fa921ce99-4b05-4424-8ca8-736d01f6a1ae_1308x830.png" width="1308" height="830" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/a921ce99-4b05-4424-8ca8-736d01f6a1ae_1308x830.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:830,&quot;width&quot;:1308,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:null,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:null,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="https://substackcdn.com/image/fetch/$s_!ofks!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fa921ce99-4b05-4424-8ca8-736d01f6a1ae_1308x830.png 424w, https://substackcdn.com/image/fetch/$s_!ofks!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fa921ce99-4b05-4424-8ca8-736d01f6a1ae_1308x830.png 848w, https://substackcdn.com/image/fetch/$s_!ofks!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fa921ce99-4b05-4424-8ca8-736d01f6a1ae_1308x830.png 1272w, https://substackcdn.com/image/fetch/$s_!ofks!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fa921ce99-4b05-4424-8ca8-736d01f6a1ae_1308x830.png 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg role="img" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><title></title><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a></figure></div><p>A variation of this might be a grid format, but with an explanation of what each means.&nbsp;</p><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="https://substackcdn.com/image/fetch/$s_!ZNcn!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F4007c92f-80b3-4712-98e1-44b1eb5bc702_1306x1548.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!ZNcn!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F4007c92f-80b3-4712-98e1-44b1eb5bc702_1306x1548.png 424w, https://substackcdn.com/image/fetch/$s_!ZNcn!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F4007c92f-80b3-4712-98e1-44b1eb5bc702_1306x1548.png 848w, https://substackcdn.com/image/fetch/$s_!ZNcn!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F4007c92f-80b3-4712-98e1-44b1eb5bc702_1306x1548.png 1272w, https://substackcdn.com/image/fetch/$s_!ZNcn!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F4007c92f-80b3-4712-98e1-44b1eb5bc702_1306x1548.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!ZNcn!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F4007c92f-80b3-4712-98e1-44b1eb5bc702_1306x1548.png" width="1306" height="1548" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/4007c92f-80b3-4712-98e1-44b1eb5bc702_1306x1548.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:1548,&quot;width&quot;:1306,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:null,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:null,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="https://substackcdn.com/image/fetch/$s_!ZNcn!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F4007c92f-80b3-4712-98e1-44b1eb5bc702_1306x1548.png 424w, https://substackcdn.com/image/fetch/$s_!ZNcn!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F4007c92f-80b3-4712-98e1-44b1eb5bc702_1306x1548.png 848w, https://substackcdn.com/image/fetch/$s_!ZNcn!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F4007c92f-80b3-4712-98e1-44b1eb5bc702_1306x1548.png 1272w, https://substackcdn.com/image/fetch/$s_!ZNcn!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F4007c92f-80b3-4712-98e1-44b1eb5bc702_1306x1548.png 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg role="img" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><title></title><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a></figure></div><p>The benefits of offering such a structured scorecard is a reduction in interview training. The scorecard guides the evaluator through the process. The downside is that should any deviation be needed (although generally not desired), it might be difficult for the evaluator to improvise.&nbsp;</p><p>By using such scorecards we can reduce level noise through well defined measurements for each area of evaluation. We can tackle pattern bias here through removing the actual hiring decision away from the evaluator and moving that up to the hiring manager - or hiring panel.&nbsp;</p><h1>The decision</h1><p>Then through the use of <a href="https://blog.robbieclutton.com/p/on-decision-hygiene">decision hygiene</a> techniques I&#8217;ve discussed before take that into a decision making meeting. I&#8217;ve assumed here there is a panel which may include the evaluators, managers, the recruiting team and the hiring manager.</p><p>For each candidate</p><ol><li><p>Each member of the panel should review the scorecards for a candidate either before the meeting, or during silent reading time.&nbsp;</p></li><li><p>Think about their vote (yes or no to hire)</p></li><li><p>Write their decision down, on paper or digitally (you may also be using &#8220;Roman voting&#8221; thumbs up / thumbs down)</p></li><li><p>Submit their decision which might mean showing thumbs up or down, showing a piece of card or paper with the vote or having a facilitator show from an anonymous digital submission</p></li><li><p>If the decision is unanimous, proceed</p></li><li><p>Else discuss any differences in voting and then repeat the voting process until there is consensus on a decision.&nbsp;</p></li></ol><h1>Wrap-up</h1><p>It wasn&#8217;t that long ago where there were more jobs than candidates, and people would talk about &#8220;the war for talent&#8221;. Given what great downsizing in the tech industry over the last 6 months I think it&#8217;s safe to say the war is over. I&#8217;m not convinced there was a winner. As the industry moves towards efficiency over growth, it&#8217;s a great time to review the hiring process - especially before you actually need to be hiring - to conduct a noise audit, review decision hygiene, and build more objective and repeatable hiring processes.</p><div class="subscription-widget-wrap-editor" data-attrs="{&quot;url&quot;:&quot;https://blog.robbieclutton.com/subscribe?&quot;,&quot;text&quot;:&quot;Subscribe&quot;,&quot;language&quot;:&quot;en&quot;}" data-component-name="SubscribeWidgetToDOM"><div class="subscription-widget show-subscribe"><div class="preamble"><p class="cta-caption">Thanks for reading Robbie Clutton! Subscribe for free to receive new posts and support my work.</p></div><form class="subscription-widget-subscribe"><input type="email" class="email-input" name="email" placeholder="Type your email&#8230;" tabindex="-1"><input type="submit" class="button primary" value="Subscribe"><div class="fake-input-wrapper"><div class="fake-input"></div><div class="fake-button"></div></div></form></div></div><h1>Further reading</h1><p>Noise by Kahneman, Sibony, and Sunstein</p><p>Work Rules by Laszlo Bock</p><p>Karat has a great <a href="https://karat.com/wp-content/uploads/2020/04/Karat_Structured_Scoring_Rubric_2020.pdf">write up</a> of building structured scorecards</p>]]></content:encoded></item><item><title><![CDATA[On decision hygiene]]></title><description><![CDATA[Reduce bias and noise, and bring more people into the decision making process]]></description><link>https://blog.robbieclutton.com/p/on-decision-hygiene</link><guid isPermaLink="false">https://blog.robbieclutton.com/p/on-decision-hygiene</guid><dc:creator><![CDATA[Robbie Clutton]]></dc:creator><pubDate>Sat, 11 Mar 2023 08:41:24 GMT</pubDate><content:encoded><![CDATA[<p>Have you ever been in a meeting where you felt the first person who spoke unknowingly set the tone and had an outsized impact on any decision? What about a room where the most senior person dominates discussion or decisions regardless of what others think and maybe even say? How about a meeting where there were just too many people to hear everyone&#8217;s opinion and get alignment? Here I want to share some tools to counter a subset of biases and noise that impact decision-making.&nbsp;</p><p><strong>Vote, discuss, vote</strong></p><div class="subscription-widget-wrap-editor" data-attrs="{&quot;url&quot;:&quot;https://blog.robbieclutton.com/subscribe?&quot;,&quot;text&quot;:&quot;Subscribe&quot;,&quot;language&quot;:&quot;en&quot;}" data-component-name="SubscribeWidgetToDOM"><div class="subscription-widget show-subscribe"><div class="preamble"><p class="cta-caption">Thanks for reading Robbie Clutton! Subscribe for free to receive new posts and support my work.</p></div><form class="subscription-widget-subscribe"><input type="email" class="email-input" name="email" placeholder="Type your email&#8230;" tabindex="-1"><input type="submit" class="button primary" value="Subscribe"><div class="fake-input-wrapper"><div class="fake-input"></div><div class="fake-button"></div></div></form></div></div><p>Before we dive in let&#8217;s discuss the anchor bias. Picture a meeting to decide if you&#8217;re going to make an offer to a job candidate. You go around the room saying &#8220;yes&#8221; or &#8220;no&#8221; to make an offer. The anchor bias occurs when an individual is influenced by a preceding vote, where they may have been thinking yes, but the previous person has said no. You may also discuss this hypothetical candidate before a vote, but the discussion also influenced the vote and altered some voters' minds. The final decision has been anchored by the first speaker.</p><p>This can be countered by a blind vote before any discussion. This might happen simultaneously using Roman voting (thumbs up or down) or through some digital means. This way no one is influenced by preceding votes or the discussion of the candidate. It is at this point that people discuss the differences between their votes, before having a final vote to make a decision.&nbsp;</p><p>I experienced this years ago without actually knowing about it, as part of an iterative planning meeting for a software development team. The team would estimate a piece of work using their fingers to show a numerical estimation. If the votes were broadly aligned, with small variances discarded, the estimate was logged and the team moved on. Where there were bigger discrepancies, those were discussed. Questions usually were along the lines of &#8220;you gave a large estimate, what are you seeing that the rest of us haven&#8217;t?&#8221;; or conversely, &#8220;you have a low estimate, are we overcomplicating a solution?&#8221;. Once that discussion was completed, the estimate would happen again, hopefully with more alignment the next time around.</p><p><strong>Think, write, share</strong></p><p>Daniel Kahnemann&#8217;s excellent book <em>Thinking Fast and Slow</em> demonstrates that we have two modes of thinking. The first is almost instinctual, and uses heuristics and assumptions to make quick decisions, called &#8220;system 1&#8221;. The second, system 2, is where you stop, think, and process information before giving a response. The thing is, we can be impatient and lazy beings, and if we can give a quick answer, we might just do that. By taking a moment to think, and not writing, not speaking, we can engage our system 2 brain and consider more deeply what we are being asked.&nbsp;</p><p>After a period of thinking, write down what you have thought, and when a group has completed this, only then share what you have. This does a few things. It counters the individuals who jump right in, who can without knowing, take over a discussion. There are two challenges with that: first, that person is likely working with their system 1 brain, and they are likely preventing others from contributing unique concepts and questions into a discussion and decision.&nbsp;</p><p>If in a meeting there is a considerable power differential between the most and least senior person, you can take this a step further. Collect everything that has been written down (either in person or digitally), and have a facilitator read them out. This way all ideas are equal, and the best ones might just come from someone you were not expecting them from.&nbsp;</p><p><strong>1, 2, 4, all</strong></p><p>What about very large groups, or where you might want to introduce some team-building elements to a workshop? This is where one of the <a href="https://www.liberatingstructures.com/1-1-2-4-all/">liberating structures, 1-2-4-all</a>, can come into play. You can use the above, vote-discuss-vote, and think-write-share, as suited. First work by yourself (the 1 in 1-2-4-all), but when you come to the vote, or the share, work with one other person. Discuss, synthesise, and/or rewrite your ideas. Then join another pair, making 4, and do the same. Only after you have again discussed, synthesised, and rewritten ideas do you share with the entire group.&nbsp;</p><p>This way, you can start to get people collaborating and get to hear everyone&#8217;s ideas even in large group settings.&nbsp;</p><p><strong>Next steps</strong></p><p>Want to challenge yourself and your teams to make better decisions? I&#8217;d encourage you to look at the work and training offered by <a href="https://www.redteamthinking.com/">Red Team Thinking</a>, and consider a hygiene audit of how decisions are made with your teams as discussed in Daniel Kahneman&#8217;s latest book, <em>Noise.</em>&nbsp;</p><p><strong>Further reading</strong></p><p><em>Red Teaming: Transform Your Business by Thinking Like the Enemy. </em>Bryce Hoffman</p><p><em>Noise: A Flaw in Human Judgment. </em>Daniel Kahneman, Olivier Sibony and Cass Sunstein</p><p><em>Thinking, Fast and Slow. </em>Daniel Kahneman</p><p><em>The Surprising Power of Liberating Structures. </em>Henri Lipmanowicz and Keith McCandless</p><div class="subscription-widget-wrap-editor" data-attrs="{&quot;url&quot;:&quot;https://blog.robbieclutton.com/subscribe?&quot;,&quot;text&quot;:&quot;Subscribe&quot;,&quot;language&quot;:&quot;en&quot;}" data-component-name="SubscribeWidgetToDOM"><div class="subscription-widget show-subscribe"><div class="preamble"><p class="cta-caption">Thanks for reading Robbie Clutton! Subscribe for free to receive new posts and support my work.</p></div><form class="subscription-widget-subscribe"><input type="email" class="email-input" name="email" placeholder="Type your email&#8230;" tabindex="-1"><input type="submit" class="button primary" value="Subscribe"><div class="fake-input-wrapper"><div class="fake-input"></div><div class="fake-button"></div></div></form></div></div>]]></content:encoded></item><item><title><![CDATA[On focus and productivity]]></title><description><![CDATA[My journey in time management]]></description><link>https://blog.robbieclutton.com/p/on-focus-and-productivity</link><guid isPermaLink="false">https://blog.robbieclutton.com/p/on-focus-and-productivity</guid><dc:creator><![CDATA[Robbie Clutton]]></dc:creator><pubDate>Mon, 27 Feb 2023 15:04:47 GMT</pubDate><enclosure url="https://substackcdn.com/image/fetch/f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F8cec50b4-f5a9-4328-9346-d7cae1ab9ba4_679x610.png" length="0" type="image/jpeg"/><content:encoded><![CDATA[<p>Ever have the feeling of being constantly busy and achieving little? Of questioning yourself at the end of the day - &#8220;what did I do today?&#8221;. By slowing down, being more intentional we might just end up going faster. As the saying goes: &#8220;slow is smooth, and smooth is fast&#8221;. I&#8217;ve been on a bit of a journey with time management, removing distractions, and creating focus over the last few years and I wanted to share what I&#8217;ve learnt so far.&nbsp;</p><p><strong>Remove distractions</strong></p><p>Like many others, I have been guilty of mindlessly scrolling through social media feeds. It didn&#8217;t feel rewarding, it was just mind candy for a few minutes between other things.&nbsp; After reading &#8220;Digital Minimalism&#8221; from <a href="https://calnewport.com/writing/">Cal Newport</a> I resorted to what felt like somewhat drastic action. I removed Instagram, Twitter, and Facebook from my phone and did not feel the desire to reinstall them. I turned most of the notifications off, so no more distracting pings when I was trying to do something.&nbsp; I&#8217;ve removed and reinstalled LinkedIn several times. I do find that useful for work, but also find myself sometimes scrolling mindlessly, which can result in uninstalling the app. I have removed all but &#8220;new message&#8221; notifications from LinkedIn now though.</p><p>I also removed news apps from my phone and stopped going to their web pages as a default. I opt now instead for a physical weekend edition newspaper so that I can stay informed but without the near-constant updates of the 24 hour news cycle.&nbsp;</p><p>Jake Knapp and John Zeratsky in <a href="https://maketime.blog/">&#8220;Make Time&#8221;</a> go one further, and discuss a &#8220;distraction-free&#8221; phone, with all those apps and even the web browser and email client removed. They leave utility apps such as maps. I haven&#8217;t yet been that brave to remove the browser.&nbsp;</p><p><a href="https://stolenfocusbook.com/">Stolen Focus</a> by Johaan Hari is another excellent book about how we&#8217;ve created products and services which steal our attention, and the impact this has on individuals. <a href="https://www.nirandfar.com/hooked/">Hooked</a> by Nir Eyal conversely is an eye opening read which details <em>how</em> to create engaging products. Reading this was like reading the playbooks of digital products, and knowledge of this supports the creation of a self-defence mechanism.</p><p><strong>Create a plan</strong></p><p>When I first heard of people journaling, I must admit - I didn&#8217;t think it was for me. I thought I knew how to get things done. What was wrong with my index cards, post-it notes and random thoughts in various to-do apps?&nbsp;</p><p>I&#8217;d sometimes been described as stoic, and I had an assumption about what that meant. I&#8217;d often shrug off the label. In 2021 I discovered that stoicism was more than a label of someone who is not prone to showing large emotions, it was an ancient philosophy and a practical way of living. I read the excellent &#8220;How to think like a Roman Emperor&#8221; by <a href="https://donaldrobertson.name/books/">Donald Robertson</a>, and one of the things discussed is a daily &#8220;learning cycle&#8221;. In the morning, you prepare for the day ahead; during the day you strive to live according to your values, and in the evening you review your progress. If you&#8217;ve practised forms of agile software delivery, you&#8217;ve likely experienced this as a daily standup (let&#8217;s stick to intentions, not what people might have experienced) and weekly retrospectives.&nbsp;</p><p>Whatever tool I used wasn&#8217;t working for me. My to-do list never seemed to get shorter. &#8220;Make Time&#8221; by &#8203;&#8203;Jake Knapp and John Zeratsky gave me more of a structure. Have one and only one &#8220;highlight&#8221; for a day. Make it sizable enough that it takes at least 90 minutes, but not so big that it takes longer than 3 hours. You will have other things to do during the day. Make it something so that when you look back you can be sure you&#8217;ve had a productive day. Learn how to create &#8220;laser focus&#8221; time, monitor your energy levels through food and exercise, and reflect at the end of the day.&nbsp;</p><p>My former colleague, Joe Masilotti, on the <a href="https://open.spotify.com/episode/0wTQXSOk0roVz8vX45iteY?si=1e2e5c73fba342e1">podcast</a>, &#8220;Code and the Coding Coders who Code it&#8221; describes a <a href="https://masilotti.com/being-more-intentional-in-2023/">system</a> he&#8217;s using. Each day has 3 and only 3 goals on the todo list. When you&#8217;ve completed those 3, stop working. This stops him from never-ending work, and/or any mindless scrolling. Each week also has a single mid-sized goal and each quarter has a further 3 high-level goals. The dailies should roll up into the weeklies, which should roll up to the quarterlies. The podcast host also discusses his own use of the <a href="https://theherosjournal.co/">Hero&#8217;s Journal</a>, a fun way to engage in journaling and go on &#8220;epic journeys&#8221;.</p><p>I purchased a simple <a href="https://www.amazon.co.uk/gp/product/B0B6CSPRP5/ref=ppx_yo_dt_b_asin_title_o06_s00?ie=UTF8&amp;psc=1">week-to-week diary</a> which offers enough space to track the &#8220;Make Time&#8221; approach, but also is a simple structure which I can adapt as I learn and iterate on what works for me.</p><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="https://substackcdn.com/image/fetch/$s_!1e-A!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F8cec50b4-f5a9-4328-9346-d7cae1ab9ba4_679x610.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!1e-A!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F8cec50b4-f5a9-4328-9346-d7cae1ab9ba4_679x610.png 424w, https://substackcdn.com/image/fetch/$s_!1e-A!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F8cec50b4-f5a9-4328-9346-d7cae1ab9ba4_679x610.png 848w, https://substackcdn.com/image/fetch/$s_!1e-A!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F8cec50b4-f5a9-4328-9346-d7cae1ab9ba4_679x610.png 1272w, https://substackcdn.com/image/fetch/$s_!1e-A!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F8cec50b4-f5a9-4328-9346-d7cae1ab9ba4_679x610.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!1e-A!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F8cec50b4-f5a9-4328-9346-d7cae1ab9ba4_679x610.png" width="679" height="610" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/8cec50b4-f5a9-4328-9346-d7cae1ab9ba4_679x610.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:610,&quot;width&quot;:679,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:null,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:null,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="https://substackcdn.com/image/fetch/$s_!1e-A!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F8cec50b4-f5a9-4328-9346-d7cae1ab9ba4_679x610.png 424w, https://substackcdn.com/image/fetch/$s_!1e-A!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F8cec50b4-f5a9-4328-9346-d7cae1ab9ba4_679x610.png 848w, https://substackcdn.com/image/fetch/$s_!1e-A!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F8cec50b4-f5a9-4328-9346-d7cae1ab9ba4_679x610.png 1272w, https://substackcdn.com/image/fetch/$s_!1e-A!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F8cec50b4-f5a9-4328-9346-d7cae1ab9ba4_679x610.png 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg role="img" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><title></title><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a></figure></div><p>At the end, it&#8217;s face-plam simple: plan, monitor, reflect and repeat. I&#8217;ve also found the act of physically writing things down is less distracting than an electronic version, and gives me space to plan and reflect away from the keyboard. Also having it in a structured book as opposed to a general note book with other writings, or on random post-it notes means I can observe what I've been doing over time better and how I should iterate and adapt.&nbsp;</p><p><strong>Execute the plan</strong></p><p>Removing distractions and having a plan still isn&#8217;t quite enough. Distractions are still there, and so I&#8217;ve been looking at ways to follow the &#8220;laser focus&#8221; concept in &#8220;Make Time&#8221; in order to create and protect time to deliver against the daily highlight. One tool I&#8217;ve started using is Freedom.to, which blocks websites and apps for a given time period. I recently found myself writing a proposal for a potential client of mine. As I pondered the next sentence or paragraph, I found myself almost automatically going to check LinkedIn, email or the latest sports news. I knew I shouldn&#8217;t, but it was hard to stop myself, or pull myself back once there. With a blocking tool like Freedom.to, web pages are automatically redirected to a page with a reminder that it&#8217;s blocked, and apps will remain in a disconnected state.&nbsp;</p><p>It feels like a heavy solution, but it does work. You can of course turn the blocker off, but that has to be a conscious decision. Those nudges have been enough to <em>stay on target</em> and achieve the daily highlight.&nbsp;</p><p><strong>Engaging my system 2 brain</strong></p><p>So why go through all of this? For me is it trying to remove the feeling of being constantly busy and achieving little. This also allows me to exercise some of the <a href="https://www.redteamthinking.com/">Red Team Thinking</a> practices I&#8217;ve been learning about over the last few months. I try to pick goals that are meaningful, and try to prevent myself from satisfying myself by picking the first reasonable thing on the todo list. I try to recall <a href="https://kahneman.scholar.princeton.edu/">Daniel Kahneman</a>, and engage in system 2 brain, and leverage some of the six strategic questions:&nbsp;</p><ul><li><p>Is this the right goal for the day?&nbsp;</p></li><li><p>If I choose to do this, what goal am I choosing not to do?</p></li></ul><div class="subscription-widget-wrap-editor" data-attrs="{&quot;url&quot;:&quot;https://blog.robbieclutton.com/subscribe?&quot;,&quot;text&quot;:&quot;Subscribe&quot;,&quot;language&quot;:&quot;en&quot;}" data-component-name="SubscribeWidgetToDOM"><div class="subscription-widget show-subscribe"><div class="preamble"><p class="cta-caption">Thanks for reading Robbie Clutton! Subscribe for free to receive new posts and support my work.</p></div><form class="subscription-widget-subscribe"><input type="email" class="email-input" name="email" placeholder="Type your email&#8230;" tabindex="-1"><input type="submit" class="button primary" value="Subscribe"><div class="fake-input-wrapper"><div class="fake-input"></div><div class="fake-button"></div></div></form></div></div>]]></content:encoded></item></channel></rss>