后端开发除了编码还要做什么_每个开发人员都应掌握的基本技能(除了编码)

后端开发除了编码还要做什么

Whether you are learning to code, looking for a new job, or just want to improve your skills as a developer, you need to master the essential tools of team collaboration. These are as important as knowing how to code.

无论您是学习编码,寻找新工作,还是想提高开发人员的技能,您都需要掌握团队协作的基本工具。 这些和知道如何编码一样重要。

It is teamwork that makes or breaks software projects.

团队合作决定了软件项目的成败。

Your code will work eventually. If you want it to work “on time” and be of good quality, you and your team need to be organized.

您的代码最终将起作用。 如果您希望它“按时”工作并具有良好的质量,则您和您的团队需要组织起来。

  • Everyone needs to know what they have to do and when

    每个人都需要知道他们必须做什么以及何时做
  • People’s work should not overlap or clash

    人们的工作不应重叠或冲突
  • Common rules need to be followed through by everyone

    每个人都必须遵循共同的规则

You can achieve this using the right processes and tools. You want your team to focus on coding 90% of the time (the remaining 10% are for coffee breaks and Windows Updates).

您可以使用正确的流程和工具来实现这一目标。 您希望您的团队将精力集中在90%的时间上(其余的10%用于休息时间和Windows Update)。

Here are three essential things you need to master.

这是您需要掌握的三项基本知识。

Git和Pull请求 (Git and Pull Requests)

Configuration management is the foundation of team collaboration in software. Many tools exist for it, but luckily one has become the absolute and ultimate reference: Git.

配置管理是软件中团队协作的基础。 有许多工具可以使用它,但是幸运的是,有一种工具已成为绝对和最终的参考: Git 。

Documentation on the key aspects is well described in the Git Book.

在Git书中很好地描述了关键方面的文档。

There are plenty of turnkey services to get started: GitHub is probably the most popular, but also BitBucket or GitLab.

有很多交钥匙服务可以开始使用: GitHub可能是最受欢迎的,但是BitBucket或GitLab也是如此。

A great graphical tool to work with is SourceTree. I recommend you master the command line before reaching for UI tools, though.

SourceTree是一个很好的图形工具。 不过,我建议您先掌握命令行,然后再使用UI工具。

Below are the questions you should know how to answer:

以下是您应该知道如何回答的问题:

  • How do I merge or rebase my branch, and what is the difference?

    如何合并或重新设置分支基础,有什么区别?
  • How do I resolve conflicts? For example, mine versus theirs versus manual merge

    我该如何解决冲突? 例如,我的与他们的与手动合并
  • What is a feature branch?

    什么是功能分支 ?

  • What is a pull request?

    什么是拉取请求 ?

  • What are the different collaboration workflows in Git?

    Git中有哪些不同的协作工作流程 ?

That’s it, and this is pretty straightforward. After reading the theory and with some practice, you will become a Git master in a jiffy.

就是这样,这很简单。 阅读理论知识并进行一些实践后,您将很快成为Git大师。

敏捷板 (The Agile board)

The first thing a team needs to do when starting a project or a larger task is to split the job. Over the last 10 years, the “Agile” methodology replaced the traditional waterfall planning. The Agile manifesto is here.

团队在开始项目或完成较大任务时需要做的第一件事就是拆分工作。 在过去的十年中,“敏捷”方法取代了传统的瀑布规划。 敏捷宣言在这里 。

Practically speaking it says “let’s not plan too much ahead, because inputs and assumptions we have today about the project will change”. This is almost always true, and nowadays there is hardly any team under the sun that is not (sometimes self-proclaimed) “Agile”.

实际上,它说“我们不要为未来做太多计划,因为我们今天对项目的投入和假设将会改变”。 这几乎总是正确的,如今在阳光下几乎没有一支团队没有(有时自称为)“敏捷”。

Here are the practical things you need to know:

这是您需要了解的实用知识:

  • The most popular Agile way of working is Scrum. Divide your project into “sprints” of two weeks and put “tasks” in the content of the sprint. All the rest is for the future and is called the “backlog”. This is useful to track progress, adjust planning going forward, and improve team velocity over time.

    最受欢迎的敏捷工作方式是Scrum 。 将您的项目分为两个星期的“冲刺”,并将“任务”放入冲刺的内容中。 其余的一切都是为了将​​来,被称为“ 积压 ”。 这对于跟踪进度,调整未来计划以及随时间推移提高团队速度很有用。

  • Another Agile approach is Kanban. The idea is to limit the number of tasks that are “in progress”. This way, you are sure to close one item fully before moving to the next. There are no sprints or time frames like in Scrum. You just go through tasks one after the other until you’re done.

    另一种敏捷方法是看板 。 这个想法是为了限制“进行中”的任务数量。 这样,您一定要先完全关闭一个项目,然后再移到下一个项目。 没有像Scrum中那样的冲刺或时间表。 您只是一个接一个地完成任务,直到完成。

In Agile, a software project will be split into tens or hundreds of tasks. You need a tool to manage them. The reference tool is JIRA.

在敏捷中,一个软件项目将被分成数十个或数百个任务。 您需要一个工具来管理它们。 参考工具是JIRA 。

Other tools exist of course, but you will probably have to work with JIRA at some point. So if you are new to these all the tools, just go for JIRA. There is a free 7 day trial. It is more than enough to get an overview of how things work. Again, this is fairly straightforward, and very well-documented.

其他工具存在 ,当然,但你可能会在某个时候与JIRA工作。 因此,如果您不熟悉这些所有工具,请使用JIRA。 有7天的免费试用期 。 概要了解工作原理是绰绰有余的。 再次,这是相当简单的,并且有据可查。

测试和持续集成 (Testing and Continuous Integration)

Git and agile tools allow teams to go fast. With speed inevitably come errors and bugs. Consider a team of five developers working on rather independent pieces of code. Each of them will make a pull request to the repository. Two problems can arise:

Git和敏捷工具使团队可以快速前进。 随着速度的发展,不可避免地会出现错误和错误。 考虑由五个开发人员组成的团队,他们从事相当独立的代码。 他们每个人都会向存储库发出请求请求。 可能会出现两个问题:

  • Once the code of the “first developer” gets to the Git repository, the code of the others is no longer valid or working because some things have changed. This is not a mistake from “the first developer”, it is just life and it will happen.

    一旦“第一个开发人员”的代码进入Git存储库,其他代码便不再有效或无法正常工作,因为某些事情已经改变。 这不是来自“第一个开发人员”的错误,它只是生命,并且会发生。
  • Once all the developers pushed their code to the Git repository, chances that everything work as expected out of the box are rather low. Again, this is not a reflection of poor teamwork. It will just happen.

    一旦所有开发人员将他们的代码推送到Git存储库,开箱即用的一切工作的可能性就很小。 同样,这并不表示团队合作不佳。 它只会发生。

Therefore, you need to test your software. Even after each developer has pushed their code? It would be great, but a waste of time.

因此,您需要测试您的软件。 即使每个开发人员都推送了代码之后? 很好,但是浪费时间。

When other developers push their code, we’ll need to repeat this task. Should you test once everyone has pushed their code? Also great, but you’ll find bugs late in the process, which can delay the whole project. So how can you solve this?

当其他开发人员推送其代码时,我们将需要重复此任务。 一旦所有人都推送了代码,您是否应该进行测试? 也很棒,但是您会在过程的后期发现错误,这可能会延迟整个项目。 那么如何解决呢?

Automated tests and Continuous Integration are there to the rescue.

自动化测试和持续集成可助您一臂之力。

Automated testing is a topic one could write many books about. Each language and framework has its own set of tools. Listing them all would not make sense here. Just keep in mind that testing is time consuming and not always planned for.

自动化测试是一个主题,人们可能会写很多书。 每种语言和框架都有自己的一套工具。 在这里列出它们都没有意义。 请记住,测试是耗时的,并非总是计划的。

Regardless, you should know how to write unit tests for your code and be proactive about writing them. If you don’t have time to actually do it, you should at least be aware that it’s wrong.

无论如何,您都应该知道如何为您的代码编写单元测试,并积极主动地编写它们。 如果您没有时间实际执行此操作,则至少应意识到这是错误的。

Continuous Integration is a process in which every push to your repository triggers a build and runs your tests automatically. A red flag is raised as soon as a faulty commit goes in. Pull requests should also be tested automatically before merging to avoid bugs that impact the whole team.

持续集成是一个过程,在此过程中,每次推送到存储库都会触发构建并自动运行测试。 一旦有错误的提交进入,就会发出一个红旗。在合并之前还应该自动测试Pull请求,以避免影响整个团队的错误。

Continuous Delivery is the extension of Continuous Integration. If the tests pass properly, the tested version is pushed to the production environment automatically.

持续交付是持续集成的扩展。 如果测试正确通过,则测试版本将自动推送到生产环境。

As an example: at Quora, they track the time between a push to the repository and deployment of that code to production servers. The last benchmark I read about was 15 minutes … for around 100 developers. This is the most powerful setup a team could hope for.

例如,在Quora上 ,他们跟踪从推送到存储库到将代码部署到生产服务器之间的时间。 我读到的最后一个基准测试是15分钟,大约是100个开发人员。 这是团队所希望的最强大的设置。

Popular continuous integration servers are Jenkins, Travis, CircleCI, and a few more. You do not need to know how to set the server up and everything, but you should know such tools exist, and a red alert should trigger in your head if your team do not use any.

流行的持续集成服务器是Jenkins , Travis , CircleCI等。 您不需要知道如何设置服务器以及所有内容,但是您应该知道此类工具的存在,如果您的团队不使用任何工具,就会在您的头脑中触发红色警报。

结论 (Conclusion)

The core of a developer’s job is coding. Once you move from solo/hobbyist to member of a performing team, proper use of the key collaboration tools is as important as writing clean code. Hopefully this article gave you an overview of what these tools are and how to dig further to be the best at what you do!

开发人员工作的核心是编码。 从独奏/爱好者转到表演团队成员后,正确使用关键协作工具与编写清晰的代码一样重要。 希望本文概述了这些工具是什么,以及如何进一步挖掘以使其在您的工作中发挥最大作用!

Thanks for reading! If you find the article useful please hit the clap button below. It would mean a lot to me and it helps other people see the story!

谢谢阅读! 如果您发现该文章有用,请点击下面的拍手按钮。 这对我来说意义重大,而且可以帮助其他人看到这个故事!

翻译自: https://www.freecodecamp.org/news/3-essential-skills-every-developer-should-master-besides-coding-80e40e084241/

后端开发除了编码还要做什么

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/395014.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Python中的defaultdict方法

字典(dictionary)是Python中一种常用的数据类型。不同于其他由数字索引的序列,字典是用"键"(key)来索引的。通常表示为dict(key: val, ...),有以下特征: 键可以是任何不可变&#xff…

git撤销commit 并保存之前的修改

撤销并保留修改 参数 –soft # 先进行commit &#xff0c;之后后悔啦$ git commit -am "对首篇报告研究员字段改为author_name"执行git log $ git logcommit 3d6788f577faba5e1d408e372031c81beee79749Author: yous <yous.com>Date: Thu Dec 14 10:08:36 2017 …

php替换中文,PHP中文替换

//定义编码header( Content-Type:text/html;charsetutf-8 );$wordsarray(我,你,他);$content"测一测我是不是违禁词";$bannedgenerateRegularExpression($words);//检查违禁词$res_bannedcheck_words($banned,$content);write_html($content,$res_banned);/*** descr…

secoclient隧道保活超时或协商超时_推荐:承德市隧道led大屏厂家电话【联丰智慧科技】...

通过为大型隧道施工建设搭建全覆盖式的定位&#xff0c;可以有效施工的效率、项目现场的保障能力。安装隧道门禁能解决哪些问题&#xff1f;近年来&#xff0c;我国交通建设正处于高速发展的阶段&#xff0c;在交通建设中&#xff0c;工程安防工作也越发受到&#xff0c;越来越…

JavaScript Essentials:如何为循环而烦恼

by Zell Liew由Zell Liew JavaScript Essentials&#xff1a;如何为循环而烦恼 (JavaScript Essentials: how to wrap your head around for loops) Let’s say you want to run a function, bounceBall, four times. How would you do it? Like this?假设您要运行一次功能b…

python中的类的成员变量以及property函数

1 python类的各种变量 1.1 全局变量 在类外定义的变量。 1.2 类变量 定义在类里面&#xff0c;所有的函数外面的变量。这个变量只有一份&#xff0c;是所有的对象共有的。在类外用“类.”来引用。 1.3 实例变量 用self.xxx在类的任何函数中定义的变量就是实例变量。在类内用“s…

C++常用的系统函数

数学<math.h>&#xff1a; 1 三角函数 double sin (double); double cos (double); double tan (double); 2 反三角函数 double asin (double); 结果介于[-PI/2, PI/2] double acos (double); 结果介于[0, PI] double atan (double); 反正切(主值), 结果介于[-PI/2, PI/2…

网页特效java代码,美化网页常用特效代码

1&#xff0e;让文字不停地滚动&#xff1c;MARQUEE&#xff1e;滚动文字&#xff1c;/MARQUEE&#xff1e;2&#xff0e;记录并显示网页的最后修改时间&#xff1c;script languageJavaScript&#xff1e;document.write("最后更新时间: " document.lastModified …

作业,两次实验

实验一&#xff1a; 1 编程打印5行的倒三角形&#xff0c;第一行打印9个*&#xff0c;第二行7个*&#xff0c;……第5行打印1个* #include<stdio.h>int main(){printf("*********\n *******\n *****\n ***\n *\n");return 0;} 总结 注意换行以及位置的…

javaweb和ajax使用查询出来的数据做下拉菜单_区块链浏览器实用指南篇:利用链上数据把握减半行情...

进入2020年&#xff0c;加密货币市场最热的话题当属“减半”了。在减半行情的推动下&#xff0c;以BTC为首的减半币种展现出了极强的上行趋势。如何抓住这一波行情&#xff0c;评估正确时机&#xff1f;当然&#xff0c;这个问题的答案可以说是争议纷纷&#xff0c;但有一个参考…

纯函数式编程语言_纯功能编程语言如何改变您的生活。

纯函数式编程语言by Andrea Zanin由Andrea Zanin 纯功能编程语言如何改变您的生活。 (How a purely functional programming language can change your life.) I believe everyone should learn Haskell, even if you won’t use it in your work. It’s beautiful, and it ch…

Win10 教育版

Windows 10 版本 1607 引入了专为 K-12 机构的特有需求而设计的两个版本&#xff1a;Windows 10 专业教育版和 Windows 10 教育版。 这些版本为不断发展的 K-12 教育 IT 环境提供特定于教育的默认设置。Windows 10 专业教育版Windows 10 专业教育版基于 Windows 10 专业版的商业…

java中的排序方法,Java中的排序比较方式:自然排序和比较器排序

这里所说到的Java中的排序并不是指插入排序、希尔排序、归并排序等具体的排序算法。而是指执行这些排序算法时&#xff0c;比较两个对象“大小”的比较操作。我们很容易理解整型的 i>j 这样的比较方式&#xff0c;但当我们对多个对象进行排序时&#xff0c;如何比较两个对象…

ImageView缩放选项

ImageView.ScaleType 将图片边界缩放到所在view边界时的缩放选项。 Options for scaling the bounds of an image to the bounds of this view. 不同选项含义 CENTER 居中&#xff0c;不缩放。 Center the image in the view, but perform no scaling. CENTER_CROP 居中&#x…

css命名_CSS命名约定将节省您的调试时间

css命名I have heard lots of developers say they hate CSS. In my experience, this comes as a result of not taking the time to learn CSS.我听到很多开发人员说他们讨厌CSS。 以我的经验&#xff0c;这是因为没有花时间学习CSS。 Korean ??韩文?? 알림: 한국인 독…

电脑删除快捷键_可能是知乎最有用的 Windows 快捷键学习指南。

在任何地方搜索“快捷键的使用”&#xff0c;你都能找到无数的列表清单。但你应该不会专门去对照一个个的表单&#xff0c;企图把所有快捷键全部掌握吧&#xff1f;经过三年左右的总结和视频制作&#xff0c;Topbook 大概产出了 20 支左右的快捷键、快捷操作及应用等相关的视频…

java自动依照日期建表,脚本根据一个表中的日期字段填充每月汇总表

你想在这里做两件事 . 我假设您正在使用Oracle(因为您正在使用Java) .首先&#xff0c;您希望对每个用户的每日交易进行分组 .创建一个名为 tempTable 的临时表 .使用 to_char(currentdate, yyyy/mm/dd) 对它们进行分组 .INSERT INTO tempTableSELECTuserid,resourceid,doc_nam…

算法专题 普及组【2008】三3 C++版

转载于:https://www.cnblogs.com/qilinart/articles/5914850.html

linux用户修改用户shell

要拒绝系统用户登录,可以将其shell设置为/usr/sbin/nologin或者/bin/false # usermod -s /usr/sbin/nologin username 或者 # usermod -s /bin/false username /bin/false/bin/false什么也不做只是返回一个错误状态,然后立即退出。将用户的shell设置为/bin/false,用户会无法登录…

【覆盖安装】通用测试点

需要xmind文档请留言将会私发。 转载于:https://www.cnblogs.com/syw20170419/p/10457600.html