当前位置: 首页 > news >正文

网站支付开发大连推广网站搭建哪家好

网站支付开发,大连推广网站搭建哪家好,定位网站关键词,网站优化教程管理员所有权代码Code ownership sucks.代码所有权糟透了。 It limits code and stunts your growth as a developer.它限制了代码并阻碍了您作为开发人员的成长。 Let’s look at what code ownership is and why it destroys individuals and organizations.让我们看看什么…管理员所有权代码Code ownership sucks. 代码所有权糟透了。 It limits code and stunts your growth as a developer. 它限制了代码并阻碍了您作为开发人员的成长。 Let’s look at what code ownership is and why it destroys individuals and organizations. 让我们看看什么是代码所有权以及为什么它破坏个人和组织。 什么是代码所有权 (What is code ownership) Code ownership is where one person in an organization owns a codebase. 代码所有权是组织中的一个人拥有代码库的位置。 That means one person is responsible for the whole system. The individual is responsible for making changes to the code, taking the decisions about design, and for managing bugs. 这意味着一个人对整个系统负责。 个人负责更改代码做出有关设计的决定以及管理错误。 Let’s say the system is a web app. With code ownership, one person in the company owns that web app. If there’s a problem with the web app, the code owner is the person who has to fix it. 假设系统是一个Web应用程序。 使用代码所有权公司中的一个人拥有该Web应用程序。 如果网络应用程序有问题则代码所有者是必须修复它的人。 为什么会吮吸 (Why does it suck?) Code ownership is bad for code owners because it stunts their growth. 代码所有权对代码所有者不利因为它阻碍了他们的成长。 As well, code ownership causes problems for the organization and for code owners. 同样代码所有权也会给组织和代码所有者带来麻烦。 If no one knows how a system works, nobody can give effective code reviews. Worse, the code might not be reviewed at all. 如果没人知道系统是如何工作的那么没人会进行有效的代码审查。 更糟糕的是该代码可能根本不会被审查。 The owner of the code is then the only person who ever looks at the codebase. This stops code owners from learning from their colleagues, which is the best way to learn at work. 这样代码的所有者便是唯一查看代码库的人。 这阻止了代码所有者向同事学习这是在工作中学习的最佳方法。 As a code owner, you could be making horrible design decisions and you wouldn’t know it. 作为代码所有者您可能会做出可怕的设计决策而您却一无所知。 代码所有权扼杀了动力 (Code ownership kills motivation) It’s easy to lose motivation when you own a codebase. 当您拥有一个代码库时很容易失去动力。 People don’t care if you shave 10kb off the bundle size when they don’t even know how big the bundle was before. 人们甚至不在乎捆绑之前的大小时不在乎是否将捆绑大小减少10kb。 There’s no one to get excited with you when you switch to a new framework, add webpack to the pipeline, or improve server performance by adding a cache. 当您切换到新框架将Webpack添加到管道中或通过添加缓存来提高服务器性能时没有人会为您感到兴奋。 This is demotivating. 这令人沮丧。 代码所有权使您懒惰 (Code ownership makes you lazy) When you own your code, you can get lazy. 拥有代码后您可能会变得懒惰。 No one is checking in on you. People don’t know that the bug only took you five minutes to fix, and that you spent the rest of the day on reddit. 没有人在检查您。 人们不知道该错误只花了五分钟即可修复而您余下的时间都花在了reddit上 。 You can coast by, doing the bare minimum. This is a waste. 您可以通过做最少的事情来做。 这是浪费。 I’ve seen 30-year-olds who have been in the same job for the last ten years, working on the same legacy codebase. And it shows. They’re behind on the latest technology, they’re not passionate about their work, and they spend hours every day browsing social media. 我见过30岁的人在过去十年中一直从事相同的工作并在相同的旧版代码库中工作。 它显示了。 他们落后于最新技术对工作不满每天花数小时浏览社交媒体。 Don’t be like them. 不要像他们一样。 代码所有权产生关键人员依赖性 (Code ownership produces key man dependency) Not only is code ownership bad for the individual but it’s also bad for the organization. 代码所有权不仅对个人不利对组织也不利。 If one person is responsible for a codebase, what happens when the code owner goes on vacation—or worse—leaves the company? Nobody in the organization will know how the code works. 如果一个人负责一个代码库那么当代码所有者去休假(或更糟糕的是)离开公司时会发生什么 组织中没有人会知道代码是如何工作的。 This problem is known as key man dependency. Extreme code ownership produces key man dependency. 这个问题被称为关键人物依赖 。 极端的代码所有权产生关键人员依赖性。 代码所有权导致压力 (Code ownership causes stress) Although it can make you complacent, code ownership also causes stress. 尽管它会让您沾沾自喜但代码所有权也会带来压力。 If there’s a problem with the application, it’s your fault. You will be responsible, and you will have no one to help you fix the bug. 如果应用程序有问题那是你的错。 您将负责并且没有人可以帮助您修复错误。 有什么解决办法 (What’s the solution?) The solution is a culture of shared code. 解决方案是共享代码的文化。 Shared code is where everyone in the team works on all parts of the codebase. 团队中的每个人都可以在共享代码中使用代码库的所有部分。 When the team owns the code, everyone can help make design decisions. Everyone can participate in the discussion of the system design, help bounce ideas around, and share in the responsibility of those decisions. Writing code becomes a magical experience. 当团队拥有代码时每个人都可以帮助制定设计决策。 每个人都可以参与系统设计的讨论帮助反弹想法并共同承担这些决策的责任。 编写代码成为一种神奇的体验。 With shared code, there isn’t key man dependency. Any team member can go on vacation and the team will continue to work as normal. 使用共享代码没有关键人员依赖性。 任何团队成员都可以休假团队将继续正常工作。 With shared code, you’ll learn from your peers. Someone with knowledge of the system can provide quality feedback. Code will be scrutinized by many eyes, and it will flourish because of it. 使用共享代码您将向同行学习。 有系统知识的人可以提供质量反馈。 代码将受到许多人的关注因此它将蓬勃发展。 When multiple people work on the same codebase, they help to sculpt a code into perfection. 当多个人在同一个代码库上工作时他们可以帮助您完美地雕刻代码。 充分利用您的工作时间 (Making the most of your time at work) You don’t need to work in an organization that stunts your growth. You should make the most of your time at work. 您无需在阻碍发展的组织中工作。 您应该充分利用工作时间。 Developers have the upper hand in the job market. We can choose where we work. If we’re not learning at our current job, we can change jobs. 开发人员在就业市场上占了上风。 我们可以选择工作地点。 如果我们不学习当前的工作我们可以换工作。 If you’re working at a place with code ownership, find a new job. 如果您在拥有代码所有权的地方工作请找到新工作。 Don’t make the mistake of working in a suboptimal environment. It will harm you in the long run. 不要犯在次优环境中工作的错误。 从长远来看它将伤害您。 You might not realize how badly it’s affecting your growth, but a place that has code ownership will stop you from reaching your full potential. 您可能没有意识到它对您的成长有多严重的影响但是拥有代码所有权的地方将使您无法发挥全部潜力。 Learning from other developers is a great benefit of working on a team, so find a new job now. 向其他开发人员学习是团队合作的一大好处所以现在就找一份新工作。 翻译自: https://www.freecodecamp.org/news/why-code-ownership-sucks-and-you-should-never-work-somewhere-that-practices-it-b8fc1c694074/管理员所有权代码
http://www.zqtcl.cn/news/77229/

相关文章:

  • 安徽义信建设网站网站建设所面临的问题
  • 门户网站建设平台平面设计优秀作品解析
  • 国土资源局加强网站建设产品设计公司哪家好
  • 网页游戏网站2345雅安 网站建设
  • 江都网络建站满版型网站有哪些
  • 常州市城市建设局网站网站上线准备
  • 手机网站开发 教程腾讯云 安装wordpress
  • 洛阳网站建设建站系统wordpress 显示子分类
  • 云南电信网站备案网络销售推广平台
  • 自建站多少钱英语网站建设
  • 广州网站公司建设2021年电商平台排名
  • 在北京做兼职哪个网站好建设部网站城乡规划资质标准
  • 浙江省建设厅官方网站信用平台如皋网站开发公司
  • 淘宝做的网站会不会过期外国人讲汉语做网站的视频
  • 哪些网站是营销型网站asp企业网站模板
  • 中山网站建设如何工会网站群建设
  • 怎么让网站绑定域名访问不了网站更换空间改版收录
  • 有哪些可以做兼职翻译的网站重庆知名企业
  • 网站返回500错误网站建设话语
  • 网站优化策划方案做公司网站时的英文简介
  • 有哪些网站可以做全屏代码公司简介模板范文高大上
  • wordpress模板建站qpython3手机版
  • 企业网站建设好的案例wordpress修改字体插件
  • 网站建设推广话术开场白广州优化排名推广
  • 精品课程网站设计说明范文张家界网站制作公司
  • 网站敏感关键词陕西省建设厅网站查询
  • 做那种的视频网站电商网站建设最好的公司
  • 购买一个网站需要多少钱义乌 网站制作
  • asp网站防攻击我为群众办实事项目清单
  • 重庆本地建站wordpress不能编辑文章