Add Talents, Not Skills, to Your Team

Add Talents, Not Skills, to Your Team

Richard Sheridan Ann Arbor, Michigan, U.S.

I USED To hIRE ThE WAy EvERyonE In oUR InDUSTRy hIRED: skills, skills, skills. One day an interview candidate threw cold water in my face, figura- tively, and it changed me.

I was looking to add a new hero to my team, someone with years of Microsoft experience. Looking over Bill’s resume, I could tell he was perfect for the posi- tion. He had over six years of experience in all the relevant skills. If I could hit the right price point, this was going to be easy.

Bill came in for the interview. We talked and I described the projects we had on tap, and what a perfect fit Bill was for this position. I was sure this was going well. Suddenly, I realized I wasn’t going to get him. I stopped the interview in mid-stream and asked Bill what had happened. I told him he was perfect for the position, but that I sensed he wasn’t coming.

His response was, “Rich, if I wanted to do what I’ve been doing the last six years, I’d stay where I am. I heard you had some cool, new Java projects coming up and I wanted to work here because I saw it as a chance to learn and grow.”

That’s when it dawned on me. Hiring by running a “resume versus skills” match is the stupidest way a manager could ever build a team.

You see, my partners and I got into the high-tech industry because we wanted to be at the leading edge of technology. None of us hoped to spend a career recycling the same skills we learned in college. We got into this game because it would always be about new frontiers and learning new techniques and technologies.

?

???????????????But somewhere along the way, things went horribly wrong. I realized we had stopped investing in our employees’ growth. We weren’t looking for fresh, new talent. We were looking for very specific, already refined, skills. Now, I tell people that if they see an employer hiring for an exact skill match, what that employer is really saying is, “We don’t plan to invest in you.”

My advice to anyone seeking to build a strong team is to hire for talents, not for skills. What talents do I look for when hiring technologists for my agile development teams? Good kindergarten skills:

? Do the candidates get along well with others?

? Do they play nice?

? Do they put their things away when they have finished playing?

? Are they excited about new things?

? Do they like learning?

I can teach skills. In fact, in our agile team environment, learning technology is fast and easy. However, it is nearly impossible to teach an adult how to play nice.

Hiring for talents, not for skills, is a radically different way to build a team. However, I want to work with those who are poised to move enthusiastically beside me into exciting, new future technology.

时间: 2024-10-23 08:45:56

Add Talents, Not Skills, to Your Team的相关文章

team

#####team######1.team也是链路聚合的一种方式.最多支持8块网卡.Team 接口: Team 和 bond0 功能类似 Team 不需要手动加载相应内核模块 Team 有更强的拓展性– 支持 8 快网卡支持模式:broadcast     广播容错 roundrobin    轮询activebackup   主备loadbalance  负载均衡2.配置 nmcli connection add con-name team0ifname team0 type team con

RE写作Issue问题题库分析与提纲

RE写作Issue问题题库分析与提纲 GRE写作Issue问题题库分析与提纲 第一类 社会 2. "Competition is ultimately more beneficial than detrimental to society." 归根结底,竞争对于社会是利多弊少. Generally speaking, competition contributes to progress in society. 1.        Generally speaking, competi

敏捷软件开发?什么是敏捷?

敏捷软件开发?什么是敏捷? 敏捷开发(Agile development)是如今软件工程项目中一个大热的词汇,很多大大小小的开发团队都喜欢高举敏捷开发的旗号,搞出一套显得大大不同于传统的运行模式来区分自己的团队博取眼球,他们手头所做的事情,只是套用一套流行的敏捷开发模板,如Scrum,Crystal,XP到自己的开发流程中,就认为自己的整个开发体系会有一个质的飞越.然而他们是否能真正驾驭所谓的敏捷开发?他们是否理解了敏捷开发的核心理念?这都是要划一个大大的问号. 笔者我在刚刚接触这个词的时候,下

6.面向对象程序设计(1)

com.langsin.LZChat.client  项目的代码 首先是client包的 1.ClientConServer.java package client; import java.io.DataInputStream; import java.io.DataOutputStream; import java.io.IOException; import java.net.Socket; import java.net.UnknownHostException; import java

eclipse推送远程分支到gitbucket

一.截图 我这里没有导入jdk和第三方依赖,只是给源码分享上去,目的是方便以后转换成maven项目. 二.操作 1.分享项目( Share Project) 选中 GIT 点击Next 2.项目初始化(init) 框选 Use or create repository in ..... 点击Create Repository 按钮 点击完毕后 会出现.git字样,点击 finish 完成 文件夹上显示? 3.添加文件(add) 点击src 右键 Team àAdd to index 注意:如果你

IPv6&网络桥接&Bonding&Teaming

[IPV6] IPv6是Internet Protocol Version 6的缩写,其中Internet Protocol译为"互联网协议". IPv6是IETF(互联网工程任务组,Internet Engineering Task Force)设计的用于替代现行版本IP协议(IPv4)的下一代IP协议,号称可以为全世界的每一粒沙子编上一个网址. 16进制表示,长度为2^128位,前缀48位,后缀80位: 表示方法: 1.冒分十六进制表示法 0000-FFFF:0000-FFFF:0

POJ3155 Hard Life [最大密度子图]

Hard Life Time Limit: 8000MS   Memory Limit: 65536K Total Submissions: 8646   Accepted: 2514 Case Time Limit: 2000MS   Special Judge Description John is a Chief Executive Officer at a privately owned medium size company. The owner of the company has

XML数据 JSON数据 LitJSON 数据 的编写和解析 小结

用XML生成如下数据<?xml version="1.0"encoding="UTF-8"?><Transform name="MyCube" ><Position><X>11</X><Y>89</Y><Z>20</Z></Position></Transform> 操作如下 在C#脚本中 // 创建一个文档XmlD

Hibernate映射set与List

1.对于set类型,如果集合中的元素是简单地类型,如字符串型,set使用另外一种映射方式: team类: 1 import java.util.HashSet; 2 import java.util.Set; 3 4 public class Team 5 { 6 private String id; 7 8 private String teamName; 9 10 private Set students = new HashSet(); 11 12 public String getId(