Files
www.aklabs.net/2024/03/08/new-manager-pt3/index.html

825 lines
38 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, minimum-scale=1.0">
<meta
http-equiv="X-UA-Compatible"
content="ie=edge">
<meta
name="theme-color"
content="#fff"
id="theme-color">
<meta
name="description"
content="AKLabs">
<link
rel="icon"
href="/">
<title>Advice for New Managers : Part 3</title>
<meta
property="og:title"
content="Advice for New Managers : Part 3">
<meta
property="og:url"
content="https://aklabs.net/2024/03/08/new-manager-pt3/index.html">
<meta
property="og:img"
content="/images/akesterson.webp">
<meta
property="og:type"
content="article">
<meta
property="og:article:published_time"
content="2024-03-08">
<meta
property="og:article:modified_time"
content="2025-07-20">
<meta
property="og:article:author"
content="Andrew Kesterson">
<link rel="preload" href="//at.alicdn.com/t/font_1946621_i1kgafibvw.css" as="style" >
<link rel="preload" href="//at.alicdn.com/t/font_1952792_89b4ac4k4up.css" as="style" >
<link rel="preload" href="/css/main.css" as="style" >
<link rel="modulepreload" href="//instant.page/5.1.0">
<link rel="stylesheet" href="/css/main.css">
<link rel="stylesheet" href="//at.alicdn.com/t/font_1946621_i1kgafibvw.css">
<link rel="stylesheet" href="//at.alicdn.com/t/font_1952792_89b4ac4k4up.css">
<link rel="stylesheet" href="/js/lib/lightbox/baguetteBox.min.css">
<script>
function loadScript(url, cb) {
var script = document.createElement('script');
script.src = url;
if (cb) script.onload = cb;
script.async = true;
document.body.appendChild(script);
}
function loadCSS(href, data, attr) {
var sheet = document.createElement('link');
sheet.ref = 'stylesheet';
sheet.href = href;
sheet.dataset[data] = attr;
document.head.appendChild(sheet);
}
function changeCSS(cssFile, data, attr) {
var oldlink = document.querySelector(data);
var newlink = document.createElement("link");
newlink.setAttribute("rel", "stylesheet");
newlink.setAttribute("href", cssFile);
newlink.dataset.prism = attr;
document.head.replaceChild(newlink, oldlink);
}
</script>
<script>
function prismThemeChange() {
if(document.getElementById('theme-color').dataset.mode === 'dark') {
if(document.querySelector('[data-prism]')) {
changeCSS('/js/lib/prism/prism-tomorrow.min.css', '[data-prism]', 'prism-tomorrow');
} else {
loadCSS('/js/lib/prism/prism-tomorrow.min.css', 'prism', 'prism-tomorrow');
}
} else {
if(document.querySelector('[data-prism]')) {
changeCSS('/js/lib/prism/prism-defauult.min.css', '[data-prism]', 'prism-defauult');
} else {
loadCSS('/js/lib/prism/prism-defauult.min.css', 'prism', 'prism-defauult');
}
}
}
prismThemeChange()
</script>
<link rel="stylesheet" href="/js/lib/prism/prism-line-numbers.min.css">
<script>
// control reverse button
var reverseDarkList = {
dark: 'light',
light: 'dark'
};
var themeColor = {
dark: '#1c1c1e',
light: '#fff'
}
// get the data of css prefers-color-scheme
var getCssMediaQuery = function() {
return window.matchMedia('(prefers-color-scheme: dark)').matches ? 'dark' : 'light';
};
// reverse current darkmode setting function
var reverseDarkModeSetting = function() {
var setting = localStorage.getItem('user-color-scheme');
if(reverseDarkList[setting]) {
setting = reverseDarkList[setting];
} else if(setting === null) {
setting = reverseDarkList[getCssMediaQuery()];
} else {
return;
}
localStorage.setItem('user-color-scheme', setting);
return setting;
};
// apply current darkmode setting
</script>
<script>
var setDarkmode = function(mode) {
var setting = mode || localStorage.getItem('user-color-scheme');
if(setting === getCssMediaQuery()) {
document.documentElement.removeAttribute('data-user-color-scheme');
localStorage.removeItem('user-color-scheme');
document.getElementById('theme-color').content = themeColor[setting];
document.getElementById('theme-color').dataset.mode = setting;
prismThemeChange();
} else if(reverseDarkList[setting]) {
document.documentElement.setAttribute('data-user-color-scheme', setting);
document.getElementById('theme-color').content = themeColor[setting];
document.getElementById('theme-color').dataset.mode = setting;
prismThemeChange();
} else {
document.documentElement.removeAttribute('data-user-color-scheme');
localStorage.removeItem('user-color-scheme');
document.getElementById('theme-color').content = themeColor[getCssMediaQuery()];
document.getElementById('theme-color').dataset.mode = getCssMediaQuery();
prismThemeChange();
}
};
setDarkmode();
</script>
<link rel="preload" href="/js/lib/lightbox/baguetteBox.min.js" as="script">
<link rel="preload" href="/js/lib/lightbox/baguetteBox.min.css" as="style" >
<link rel="preload" href="/js/lib/lozad.min.js" as="script">
<meta name="generator" content="Hexo 6.0.0"><link rel="alternate" href="/atom.xml" title="AKLabs" type="application/atom+xml">
</head>
<body>
<div class="wrapper">
<nav class="navbar">
<div class="navbar-logo">
<a class="navbar-logo-main" href="/">
<span class="navbar-logo-dsc">AKLabs</span>
</a>
</div>
<div class="navbar-menu">
<a
href="/now"
class="navbar-menu-item">
~/.plan
</a>
<a
href="/archives"
class="navbar-menu-item">
Archive
</a>
<a
href="/categories"
class="navbar-menu-item">
Categories
</a>
<a
href="/about"
class="navbar-menu-item">
About
</a>
<a
href="/contact"
class="navbar-menu-item">
Contact
</a>
<button
class="navbar-menu-item darknavbar navbar-menu-btn"
aria-label="Toggle dark mode"
id="dark">
<i class="iconfont icon-weather"></i>
</button>
<button
class="navbar-menu-item searchnavbar navbar-menu-btn"
aria-label="Toggle search"
id="search">
<!-- <i
class="iconfont icon-search"
style="font-size: 1.2rem; font-weight: 400;">
</i> -->
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img"
class="iconify iconify--ion" width="28" height="28" preserveAspectRatio="xMidYMid meet" viewBox="0 0 512 512">
<path fill="none" stroke="currentColor" stroke-miterlimit="10" stroke-width="28"
d="M256 80a176 176 0 1 0 176 176A176 176 0 0 0 256 80Z"></path>
<path fill="none" stroke="currentColor" stroke-miterlimit="10" stroke-width="28"
d="M232 160a72 72 0 1 0 72 72a72 72 0 0 0-72-72Z"></path>
<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-miterlimit="10" stroke-width="28"
d="M283.64 283.64L336 336"></path>
</svg>
</button>
</div>
</nav>
<div
id="local-search"
style="display: none">
<input
class="navbar-menu-item"
id="search-input"
placeholder="请输入搜索内容..." />
<div id="search-content"></div>
</div>
<div class="section-wrap">
<div class="container">
<div class="columns">
<aside class="left-column">
<div class="card card-author">
<img
src="/images/akesterson.webp"
class="author-img"
width="88"
height="88"
alt="author avatar">
<p class="author-name">Andrew Kesterson</p>
<p class="author-description"><center><i>"Love God. Live Righteously. Die Well."</i> <br/> <br/> <a target="_blank" rel="noopener" href="https://source.starfort.tech/andrew">Source Code</a> || <a target="_blank" rel="noopener" href="https://www.linkedin.com/in/andrewkesterson/">LinkedIn</a> <br/> </center></p>
<div class="author-message">
<a
class="author-posts-count"
href="/archives">
<span>29</span>
<span>Posts</span>
</a>
<a
class="author-categories-count"
href="/categories">
<span>9</span>
<span>Categories</span>
</a>
<a
class="author-tags-count"
href="/tags">
<span>0</span>
<span>Tags</span>
</a>
</div>
</div>
<div class="sticky-tablet">
<article class="display-when-two-columns spacer">
<div class="card card-content toc-card">
<div class="toc-header">
<i
class="iconfont icon-menu"
style="padding-right: 2px;">
</i>TOC
</div>
<ol class="toc"><li class="toc-item toc-level-2"><a class="toc-link" href="#You-are-now-judged-on-the-results-and-retention-of-your-team"><span class="toc-text">You are now judged on the results and retention of your team</span></a></li><li class="toc-item toc-level-2"><a class="toc-link" href="#Correctly-define-the-relationship-between-you-your-team-and-the-business"><span class="toc-text">Correctly define the relationship between you, your team, and the business</span></a></li><li class="toc-item toc-level-2"><a class="toc-link" href="#Delegate-all-the-way-to-the-floor"><span class="toc-text">Delegate all the way to the floor</span></a></li><li class="toc-item toc-level-2"><a class="toc-link" href="#What-now"><span class="toc-text">What now?</span></a></li></ol>
</div>
</article>
<article class="card card-content categories-widget">
<div class="categories-card">
<div class="categories-header">
<i
class="iconfont icon-fenlei"
style="padding-right: 2px;">
</i>Categories
</div>
<div class="categories-list">
<a href="/categories/Books/">
<div class="categories-list-item">
Books
<span class="categories-list-item-badge">14</span>
</div>
</a>
<a href="/categories/Faith/">
<div class="categories-list-item">
Faith
<span class="categories-list-item-badge">6</span>
</div>
</a>
<a href="/categories/Outdoors/">
<div class="categories-list-item">
Outdoors
<span class="categories-list-item-badge">1</span>
</div>
</a>
<a href="/categories/Philosophy/">
<div class="categories-list-item">
Philosophy
<span class="categories-list-item-badge">5</span>
</div>
</a>
<a href="/categories/Leadership/">
<div class="categories-list-item">
Leadership
<span class="categories-list-item-badge">8</span>
</div>
</a>
<a href="/categories/History/">
<div class="categories-list-item">
History
<span class="categories-list-item-badge">1</span>
</div>
</a>
<a href="/categories/Liberal-Education/">
<div class="categories-list-item">
Liberal-Education
<span class="categories-list-item-badge">1</span>
</div>
</a>
<a href="/categories/Technology/">
<div class="categories-list-item">
Technology
<span class="categories-list-item-badge">11</span>
</div>
</a>
<a href="/categories/Current-Events/">
<div class="categories-list-item">
Current-Events
<span class="categories-list-item-badge">5</span>
</div>
</a>
</div>
</div>
</article>
<article class="card card-content tags-widget">
<div class="tags-card">
<div class="tags-header">
<i
class="iconfont icon-biaoqian"
style="padding-right: 2px;">
</i>hot tags
</div>
<div class="tags-list">
</div>
</div>
</article>
</div>
</aside>
<main class="main-column">
<article class="card card-content">
<header>
<h1 class="post-title">
Advice for New Managers : Part 3
</h1>
</header>
<div class="post-meta post-show-meta">
<time datetime="2024-03-08T05:10:28.000Z">
<i
class="iconfont icon-calendar"
style="margin-right: 2px;">
</i>
<span>2024-03-08</span>
</time>
<span class="dot"></span>
<a
href="/categories/Leadership/"
class="post-meta-link">
Leadership
</a>
<span class="dot"></span>
<span>2.7k words</span>
</div>
</header>
<div
id="section"
class="post-content">
<p>Welcome back to my series of advice for new managers. In the previous post, <a href="/2024/03/05/new-manager-pt2/">Advice for New Managers : Part 2</a>, we built upon the foundation from <a href="/2024/03/03/new-manager-pt1/">Part 1</a> with three more important things about scope, peers and mentors:</p>
<ul>
<li>Understanding the difference between a contributor, a manager, and an executive</li>
<li>How to identify and network with your new peer group, and why its important</li>
<li>The importance of identifying a mentor (who is not your boss)</li>
</ul>
<p>Now in this episode in the series, we will close out with results, retention, relationships and delegation. Again, this is all information that, when I was promoted into management from a senior contributor, I had to learn the hard way. I really wish I had a guide like this back then. I hope it will help you.</p>
<h2 id="You-are-now-judged-on-the-results-and-retention-of-your-team"><a href="#You-are-now-judged-on-the-results-and-retention-of-your-team" class="headerlink" title="You are now judged on the results and retention of your team"></a>You are now judged on the results and retention of your team</h2><p>We talked about how your job is no longer executing the tasks, but translating from the strategic to the tactical, and managing the complexity of distributing and completing that work. Your boss will be measuring your success by two primary factors:</p>
<ul>
<li>Your ability to achieve results with the resources you have on the goals you have been given</li>
<li>Your ability to acquire and retain quality resources (people and capital assets)</li>
</ul>
<p>There are two primary risks you are there to mitigate:</p>
<ul>
<li>Stuff not getting done (lost opportunity cost)</li>
<li>Time and productivity being lost due to personnel churn</li>
</ul>
<p>You need to talk to your boss about how they will judge your success in your role. They may not give you very good metrics - chances are, if theyre like most bosses, they dont actually know how to measure whether youre being successful. They have gut feelings, they know when major projects go off the rails, and they know when people in their network complain about or praise you, but they dont really have good metrics on the performance of you or your teams. But even if they dont give you really good metrics, you need to understand what their expectations are. But understand that, regardless of what they say, it really boils down to your ability to deliver results, retain good employees, and coach the troublesome ones up or out.</p>
<h2 id="Correctly-define-the-relationship-between-you-your-team-and-the-business"><a href="#Correctly-define-the-relationship-between-you-your-team-and-the-business" class="headerlink" title="Correctly define the relationship between you, your team, and the business"></a>Correctly define the relationship between you, your team, and the business</h2><p>Managers who were promoted from the ranks of contributors face a special challenge that, on the one hand, can seem beneficial - but on the other hand, can create huge problems. And that challenge is that the manager may view themselves as, and the contributors will view them as, “one of us”, and that “now one of us has a seat at the table”.</p>
<center>
<iframe width="560" height="315" src="https://www.youtube.com/embed/KlWlhyX6rb0?si=NhbMJEbrPEfq8JvR" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
</center>
<p>As attractive as this is, and as useful as this sentiment can be, you must be very cautious about this. You need to carefully set expectations with your team, your boss, and yourself, about what your role is and is not. Hopefully, by this point in this series :</p>
<ul>
<li>you have a good idea of what your role is</li>
<li>you have a strong peer network to lean on</li>
<li>you have a good mentor to guide you</li>
<li>you have a clear picture of how your boss will measure your success</li>
<li>you have a clear breakdown of responsibility between you and the other layers of the business.</li>
</ul>
<p>All of this knowledge will allow you to be effective in your role, but you can sabotage all of it if you dont have the proper relationship with your teams. Here are a few boundaries that are critical for you to establish with yourself and your team.</p>
<ul>
<li>This is a business, not a family</li>
<li>This team, and these employees, are not yours</li>
<li>You should be their advocate, but you cannot be their friend</li>
<li>You are there to enable them to deliver results to the business, not to protect them from the business</li>
</ul>
<p>There is a pernicious lie spread in some organizations that “Here, we are a family”. This is said by well-meaning but clueless leaders and managers who are trying to create an inclusive environment that feels safe. But the actual effect is to create an environment where people feel trapped and abused. Families are a network of natural, biological connections we dont get a choice about, and they are primarily held together by unconditional love. A business is a network of skilled individuals primarily held together by a contractual agreement to provide a wage in exchange for time and effort. It is critical to understand this difference, or you will do enormous psychological harm to yourself, your business and your employees. </p>
<p>Nobody can love you like family, and nobody can hurt you like family. Business relationships can be nurturing and fulfilling in many ways, but a business will never, ever love you. It can not. An individual within a business may love a person or every person, and may exhibit exceptional caring and empathy, and they may go to exceptional andinspiring lengths for those people. But the business itself is a faceless, heartless thing that must make logical decisions based on success criteria, which usually boils down to financial impact. </p>
<p>Some of my readers might be very offended by this. Maybe you work for a non-profit that does great work within society. Maybe you work for an organization where every employee truly does feel loved and cared for. Im not denying that there are some amazing companies out there; but they are amazing because of the people who lead them, not because of the company itself. They are not families. Ask yourself - would you rather starve than leave your coworkers? Would you rather freeze on the street with them, than leave them? Would you sacrifice your own happiness, well being, and safety, in order to offer them something better? Thats what family does. And thats why its so dangerous to tell people that your business is a family. Because while people can and often are motivated to go to such extremes for the people around them, the business <em>absolutely will not do these things for them</em>. And the moral injury that results from this realization can be crushing for everyone, and many will never recover from it when it happens.</p>
<p>This brings us to the next point: these teams, these people, are not yours. As leaders, it is critical that you create a shared identity with the teams you have been assigned to lead, and that you personally invest in the success of the individuals you have been asked to manage. You cannot lead if the workers dont feel that you represent them, and someone will not allow you into their life to develop them if they dont believe you actually care about them. These things can lead to you using identifying language like “my teams”, or “my employees”. They have been assigned to you, and youre putting in the work, so theyre yours. Except … theyre not.</p>
<p>Remember, this is a business, not a family. And those employees, those teams, have a contract with the business, not with you. The business may, for reasons completely and entirely unrelated to your performance, decide to take those employees and teams and move them to a different part of the organization with a different manager. Or the business may move you to a different team and different employees. Your relationship with them, as strong as it may be, is temporary and based entirely around the needs of the business. </p>
<p>If you feel that you must protect your team from the business, this creates an adversarial relationship between you, your boss, and their objectives. It paints a big bullseye on your teams back when it comes time for layoffs and reorganizations. And it severely limits your effectiveness, because it shows you really dont understand the priorities that your boss has set for you, and that you cant be trusted to manage the complexity of the work youre being given. </p>
<p>The desire to protect your team from the business usually comes from past trauma that youre carrying around from a prior moral injury you sustained at the hands of some representative of the business. You need to dig that up, work through it, and square it away. Talk to your peer groups and your mentor about it. Understand what drove the business decisions that were at play in what happened to you, and understand how much of what happened was simply due to the human being who delivered that business decision to you. Once youre able to effectively divorce the actions of the business from the actions of the humans that were employed by that business, you can prepare to do something that is actually useful for your team: managing relationships between your team and the various humans representing the business, so that you can predict and interdict troublesome human interactions around business decisions that are likely to result in moral injury. Taking this approach will ensure the business sees that you are fully utilizing your resources in support of the goals set before you and your leadership, while your teams will see you as a leader who is calm under fire, a rock in times of trouble, and a fierce protector against injustice.</p>
<p>At the same time, as we discussed when defining your new peer group, you have to be careful about staying too close to your team. You cannot afford to allow them to be your friends. You are responsible for their productivity, and ensuring that they are doing what the business needs them to do. As much as you do your best to inspire them by leading from the front, by modeling the values you expect them to show… Ultimately you do control their addiction to food clothing and shelter, you tell them what to do, and you will be the one who has to discipline (or fire) them if things arent going well. It is important that you establish trust with your team, that they understand you will go to bat for them and will always stand behind them, but that you establish clear boundaries so they know that you are not their buddy. You are their employer. You are their boss. Just because you dont like using your role power doesnt mean you dont have it, and they need to maintain a healthy level of respect for the position you hold and the business you represent. And you have to understand those things, too - otherwise you wont be able to provide honest feedback, you wont be able to issue difficult commands, and you wont be able to make difficult decisions. You wont provide discipline (which is not the same as punishment) where necessary, and things fall apart. Your teams will suffer if you dont establish boundaries here.</p>
<h2 id="Delegate-all-the-way-to-the-floor"><a href="#Delegate-all-the-way-to-the-floor" class="headerlink" title="Delegate all the way to the floor"></a>Delegate all the way to the floor</h2><p>The last thing Im going to cover in this article is delegation. You understand now that your job is tactical execution of the strategic objectives given to you by your boss, breaking up that work amongst your resources, assigning it out, and following up to make sure it gets done. If you were a successful contributor, youre almost certainly going to fail here. And its because youre used to executing, not delegating.</p>
<p>The process of learning to delegate is why lots of managers who used to be contributors feel like their transition to management has made them useless. They are so used to directly executing tasks that they cant be productive without their hands directly in the work. These managers usually also feel like they need to protect their teams from the business. As a result, when these managers are given a task by their boss, they will hold on to that work and try to get it done themselves.</p>
<p>Unfortunately, you are NOT the correct person to get this work done anymore. Holding on to this work might make you feel good because youre comfortable with this kind of work and you can feel productive, whereas with your other managerial tasks you might not feel as productive, thats just sticking your head in the sand. By holding on to that work, you prevent your employees (who are better positioned to actually do this work) from picking it up and executing it. Further, you are delaying the completion of that work, or you are delaying completion of managerial work that your boss expects you to do, or both. By holding on to this work and trying to get it done yourself, you are making everything about this task worse. This is a terrible habit.</p>
<p>A much better habit to develop is <a target="_blank" rel="noopener" href="https://www.manager-tools.com/2012/02/delegating-floor">delegating to the floor</a>. The idea is simple: Any time you get something from your boss, or when you are dealing with a large pile of tasks broken out from a larger initiative your boss gave you, you delegate everything by default. You take a unit of work, and ask two questions:</p>
<ul>
<li>Am I the CORRECT person to do this work?</li>
<li>Am I the ONLY person who knows how to do this work?</li>
</ul>
<p>If you are the correct person to do the work, then you should do it. But you should also ask yourself if theres anyone in your team who is ready to learn the task - remember, part of being a good manager is training the people beneath you to learn your job so that both of you can be ready to move up to new roles when vacancies appear in the organization. If so, then grab someone else and have them learn the task as you do it. Then, when the next time comes along, if it is appropriate to do so, you can delegate it to them.</p>
<p>If you are the ONLY person who knows how to do a task, and you are not the correct person to do it, this is a big problem. You now have a training responsibility. Pull your team together, walk them through how this task should be done, set clear expectations with them, and then delegate it to someone. This is how you empower your team, and yourself, to do bigger and better things.</p>
<p>Dont worry about over-delegating to your team. What you need to focus on is ensuring that your team knows the priority order in which things need to be done. If you are setting clear expectations around priorities, then when you delegate something new to your employees, they know exactly what to do - they delegate the same way you do. The things that can be handed off to a peer or a more junior contributor are handed off; and when the work item gets delegated down so far that it cant be delegated to any other person, and it is lower priority than some other work item, it gets <a target="_blank" rel="noopener" href="https://www.manager-tools.com/2012/02/delegating-floor">delegated to the floor</a>. It doesnt get done. And thats okay. Not everything gets done. But we have to make sure the right things are getting done at the right time by the right people, and delegating to the floor allows us to make sure that those right people are doing those right things instead of constantly chasing every little thing that comes their way.</p>
<h2 id="What-now"><a href="#What-now" class="headerlink" title="What now?"></a>What now?</h2><p>Weve covered 9 fundamental topics in this series:</p>
<ul>
<li>Understanding the difference between a contributor, a manager, and an executive</li>
<li>Identifying and networking with your new peer group</li>
<li>Identifying a mentor - who is not your boss</li>
<li>Remember, you probably dont know what youre doing, and thats OK</li>
<li>What is the difference between a boss and a leader (and why you should be a leader)</li>
<li>Understanding the power that comes with your new role (and why you should avoid using it)</li>
<li>How your performance is judged (results and retention)</li>
<li>Defining the relationship between you, your team, and the business</li>
<li>Delegating all the way to the floor</li>
<li>There is so much more to being a good manager and a good leader. Literal libraries of content have been written on the topic. But these 9 things are, in my opinion, absolutely critical for new managers to learn and implement effectively. If you do these things, you will rise head and shoulders above 90% of your peers.</li>
</ul>
<p>Good luck out there.</p>
</div>
<div>
</div>
</article>
<div class="nav">
<div class="nav-item-prev">
<a
href="/2025/01/04/Socrates-got-a-raw-deal/"
class="nav-link">
<i class="iconfont icon-left nav-prev-icon"></i>
<div>
<div class="nav-label">Prev</div>
<div class="nav-title">Socrates got a raw deal </div>
</div>
</a>
</div>
<div class="nav-item-next">
<a
href="/2024/03/05/new-manager-pt2/"
class="nav-link">
<div>
<div class="nav-label">Next</div>
<div class="nav-title">Advice for New Managers : Part 2 </div>
</div>
<i class="iconfont icon-right nav-next-icon"></i>
</a>
</div>
</div>
<div
class="card card-content toc-card"
id="mobiletoc">
<div class="toc-header">
<i
class="iconfont icon-menu"
style="padding-right: 2px;">
</i>TOC
</div>
<ol class="toc"><li class="toc-item toc-level-2"><a class="toc-link" href="#You-are-now-judged-on-the-results-and-retention-of-your-team"><span class="toc-text">You are now judged on the results and retention of your team</span></a></li><li class="toc-item toc-level-2"><a class="toc-link" href="#Correctly-define-the-relationship-between-you-your-team-and-the-business"><span class="toc-text">Correctly define the relationship between you, your team, and the business</span></a></li><li class="toc-item toc-level-2"><a class="toc-link" href="#Delegate-all-the-way-to-the-floor"><span class="toc-text">Delegate all the way to the floor</span></a></li><li class="toc-item toc-level-2"><a class="toc-link" href="#What-now"><span class="toc-text">What now?</span></a></li></ol>
</div>
</main>
<aside class="right-column">
<div class="sticky-widescreen">
<article class="card card-content toc-card">
<div class="toc-header">
<i
class="iconfont icon-menu"
style="padding-right: 2px;">
</i>TOC
</div>
<ol class="toc"><li class="toc-item toc-level-2"><a class="toc-link" href="#You-are-now-judged-on-the-results-and-retention-of-your-team"><span class="toc-text">You are now judged on the results and retention of your team</span></a></li><li class="toc-item toc-level-2"><a class="toc-link" href="#Correctly-define-the-relationship-between-you-your-team-and-the-business"><span class="toc-text">Correctly define the relationship between you, your team, and the business</span></a></li><li class="toc-item toc-level-2"><a class="toc-link" href="#Delegate-all-the-way-to-the-floor"><span class="toc-text">Delegate all the way to the floor</span></a></li><li class="toc-item toc-level-2"><a class="toc-link" href="#What-now"><span class="toc-text">What now?</span></a></li></ol>
</article>
<article class="card card-content">
<div class="recent-posts-card">
<div class="recent-posts-header">
<i
class="iconfont icon-wenzhang_huaban"
style="padding-right: 2px;">
</i>Recent Posts
</div>
<div class="recent-posts-list">
<div class="recent-posts-item">
<div class="recent-posts-item-title">2026-05-15</div>
<a href="/2026/05/15/Devlog-20260518/"><div class="recent-posts-item-content">Devlog Entry</div></a>
</div>
<div class="recent-posts-item">
<div class="recent-posts-item-title">2026-02-23</div>
<a href="/2026/02/23/Why-Firefighting/"><div class="recent-posts-item-content">Why Firefighting</div></a>
</div>
<div class="recent-posts-item">
<div class="recent-posts-item-title">2026-02-09</div>
<a href="/2026/02/09/News-2026-Week-5/"><div class="recent-posts-item-content">News 2026 Week 5</div></a>
</div>
<div class="recent-posts-item">
<div class="recent-posts-item-title">2026-01-30</div>
<a href="/2026/01/30/News-2026-Week-4/"><div class="recent-posts-item-content">News - 2026 - Week 4</div></a>
</div>
</div>
</div>
</article>
</div>
</aside>
</div>
</div>
</div>
</div>
<footer class="footer">
<div class="footer-container">
<div>
<div class="footer-dsc">
<span>
Copyright ©
-
2026
</span>
&nbsp;
<a
href="mailto:andrew@aklabs.net"
class="footer-link">
Andrew Kesterson
</a>
<br/>
</div>
</div>
<div class="footer-dsc">
Powered by
<a
href="https://hexo.io/"
class="footer-link"
target="_blank"
rel="nofollow noopener noreferrer">
&nbsp;Hexo
</a>
<span>&nbsp;|&nbsp;</span>
Theme -
<a
href="https://github.com/theme-kaze"
class="footer-link"
target="_blank"
rel="nofollow noopener noreferrer">
&nbsp;Kaze
</a>
</div>
</footer>
<a
role="button"
id="scrollbutton"
class="basebutton"
aria-label="回到顶部">
<i class="iconfont icon-arrowleft button-icon"></i>
</a>
<a
role="button"
id="menubutton"
aria-label="menu button"
class="basebutton">
<i class="iconfont icon-menu button-icon"></i>
</a>
<a
role="button"
id="popbutton"
class="basebutton"
aria-label="控制中心">
<i class="iconfont icon-expand button-icon"></i>
</a>
<a
role="button"
id="darkbutton"
class="basebutton darkwidget"
aria-label="夜色模式">
<i class="iconfont icon-weather button-icon"></i>
</a>
<a
role="button"
id="searchbutton"
class="basebutton searchwidget"
aria-label="搜索">
<i class="iconfont icon-search button-icon"></i>
</a>
<script>
var addImgLayout = function () {
var img = document.querySelectorAll('.post-content img')
var i
for (i = 0; i < img.length; i++) {
var wrapper = document.createElement('a')
wrapper.setAttribute('href', img[i].getAttribute('data-src'))
wrapper.setAttribute('aria-label', 'illustration')
wrapper.style.cssText =
'width: 100%; display: flex; justify-content: center;'
if (img[i].alt) wrapper.dataset.caption = img[i].alt
wrapper.dataset.nolink = true
img[i].before(wrapper)
wrapper.append(img[i])
var divWrap = document.createElement('div')
divWrap.classList.add('gallery')
wrapper.before(divWrap)
divWrap.append(wrapper)
}
baguetteBox.run('.gallery')
}
</script>
<script>
loadScript(
"/js/lib/lightbox/baguetteBox.min.js",
addImgLayout
)
</script>
<script src="/js/main.js"></script>
<script>
var addLazyload = function () {
var observer = lozad('.lozad', {
load: function (el) {
el.srcset = el.getAttribute('data-src')
},
loaded: function (el) {
el.classList.add('loaded')
},
})
observer.observe()
}
</script>
<script>
loadScript('/js/lib/lozad.min.js', addLazyload)
</script>
<script src="//instant.page/5.1.0" type="module"
integrity="sha384-by67kQnR+pyfy8yWP4kPO12fHKRLHZPfEsiSXR8u2IKcTdxD805MGUXBzVPnkLHw"></script>
<script>
var googleAnalytics = function () {
window.dataLayer = window.dataLayer || []
function gtag() {
dataLayer.push(arguments)
}
gtag('js', new Date())
gtag('config', 'G-S3YLF516N6')
}
</script>
<script>
loadScript(
'https://www.googletagmanager.com/gtag/js?id=' +
'G-S3YLF516N6',
googleAnalytics
)
</script>
</body>
</html>