安卓流行布局开源库_如何使用流行度在开源库之间进行选择

安卓流行布局开源库

by Ashish Singal

通过Ashish Singal

如何使用流行度在开源库之间进行选择 (How to choose between open source libraries using popularity)

Through my career as a product manager, I’ve worked closely with engineers to build many technology products (and even hacked some together myself).

在担任产品经理的整个职业生涯中,我与工程师紧密合作,开发了许多技术产品(甚至自己也一起破解了一些产品)。

When developing technology products, one of the most critical choices we can make is between competing sets of libraries and frameworks. One key ingredient is relative popularity, for several reasons:

在开发技术产品时,我们可以做出的最关键的选择之一是在竞争的库和框架集之间进行选择。 关键因素之一是相对受欢迎 ,原因如下:

  1. Proxy for the Best. Especially in open source, the “market” is fairly efficient. Developers generally gravitate towards the best technologies and vote with their feet.

    最佳代理 。 尤其是在开源中,“市场”相当有效。 开发人员通常倾向于最好的技术,并用脚投票。

  2. Help. While formal documentation is critically important, Stack Overflow questions and Medium tutorials are sometimes even more beneficial to move up the learning curve and to debug. Code snippets and tips from practitioners boost development speed and impact tremendously.

    帮忙 。 尽管正式文档至关重要,但堆栈溢出问题和中级教程有时甚至对提高学习曲线和调试更为有益。 练习者的代码片段和技巧极大地提高了开发速度并产生了巨大的影响。

  3. Talent. The more popular a library is, the more likely you’ll be able to find people who know how to use it to help build your product.

    人才 库越受欢迎,您越有可能找到知道如何使用它来帮助您构建产品的人。

  4. Future Enhancements. A vibrant user base and community ensures continued development on the project in the future, reducing the chance that it will become obsolete.

    未来的改进 。 活跃的用户群和社区确保了该项目在将来的持续开发,从而减少了该项目被淘汰的机会。

人气代理 (Proxies for Popularity)

There are several ways to measure the popularity of OS libraries:

有几种方法可以衡量OS库的流行程度:

  1. Stack Overflow questions

    堆栈溢出问题

  2. Github stars

    Github星星

  3. Google Trends

    Google趋势

StackShare should also get an honorable mention here as a good way to find popular tools.

StackShare在这里也应该得到荣誉奖,这是找到流行工具的好方法。

判断动量 (Judging Momentum)

However, these measures need a time based component. Without taking into account metric momentum, the above measures are purely backward looking — they help inform what was the best technology, not what is or what will be.

但是,这些措施需要基于时间的组件。 在不考虑度量指标动量的情况下,上述措施纯粹是向后看的-它们有助于告知什么最好的技术,而不是什么什么或将是什么。

Therefore, more often, when evaluating competing libraries, I’ll often look at charts of these statistics over time. There are several apps that allow us to do that:

因此,在评估竞争性库时,通常会经常查看这些统计数据随时间变化的图表。 有几个应用程序可以使我们做到这一点:

  1. Stack Overflow Trends. Open source tool by Rob McDiarmid. Also directly from Stack Overflow.

    堆栈溢出趋势 。 Rob McDiarmid的 开源工具。 也可以直接从Stack Overflow中获取 。

  2. Github Star History. Similar tools include StarTrack, Stargraph, and this project. Unfortunately, most use the Github API for this which seems to be quite unreliable and buggy.

    GitHub上的星史 。 类似的工具包括StarTrack , Stargraph和该项目 。 不幸的是,大多数人为此使用Github API,这似乎非常不可靠且有错误。

  3. Google Trends, of course, works out of the box, but seems somewhat more spiky and less informative than the other two measures.

    Google趋势当然是开箱即用的,但与其他两项指标相比,它显得有些刺眼且信息量不足。

Google Cloud has also made both Stack Overflow and Github data available as part of their Public Datasets program. And here’s a post that digs into some insights from Stack Overflow.

Google Cloud还已将Stack Overflow和Github数据作为其公共数据集计划的一部分提供。 这是一篇文章 ,探讨了Stack Overflow的一些见解。

示例:Flask与Django (Example: Flask versus Django)

Flask and Django are two popular Python web application frameworks that I personally have a lot of experience with. Flask is lighter weight and more flexible, while Django has much more built in and is more feature rich.

Flask和Django是两个流行的Python Web应用程序框架,我个人对此有很多经验。 Flask的重量更轻且更灵活,而Django具有更多内置功能和更多功能。

Let’s see how these rank using our methodologies above:

让我们看看如何使用上面的方法对它们进行排名:

  1. Github Stars: Django currently has 40k stars on Github while Flask has 42k stars — they are neck and neck. I tried several of the Github history trackers, but they all timed out on me.

    Github星星 : Django目前在Github上拥有4万颗星星,而Flask有42k颗星星-它们并驾齐驱。 我尝试了一些Github历史记录跟踪器,但它们对我都超时了。

  2. Stack Overflow: Django has 191k questions, while Flask has 26k questions. The trend shows Flask picking up, but still a long ways away.

    堆栈溢出 : Django有191k个问题,而Flask有26k个问题。 趋势表明Flask有所回升,但还有很长的路要走。

  3. Google Trends: Django is currently about twice as popular as Flask, according to Google Trends.

    Google趋势:根据Google趋势,Django当前的流行度是Flask的两倍。

Note that of course, relative popularity is only one factor in choosing between libraries. Between Flask and Django, for example, I tend to choose Flask for quick prototyping as well as when I am developing a non traditional app and need a ton of flexibility. I tend to choose Django when I’d like out of the box functionality for things like user accounts, administration, and built in ORM.

请注意 ,当然,相对流行度只是在库之间进行选择的一个因素。 例如,在Flask和Django之间,我倾向于选择Flask来进行快速原型制作以及在开发非传统应用程序时需要大量灵活性。 当我想要开箱即用的功能(如用户帐户,管理和内置ORM)时,我倾向于选择Django。

Hope this helps! Thanks for reading.

希望这可以帮助! 谢谢阅读。

翻译自: https://www.freecodecamp.org/news/how-to-choose-between-open-source-libraries-using-popularity-c71677785542/

安卓流行布局开源库

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

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

相关文章

TCP/IP分析(一) 协议概述

各协议层分工明确 转载于:https://www.cnblogs.com/HonkerYblogs/p/11247604.html

window 下分linux分区,如何在windows9x下访问linux分区

1. 简 介Linux 内 核 支 持 众 多 的 文 件 系 统 类 型, 目 前 它 可 以 读 写( 至 少 是 读) 大 部 分 的 文 件 系 统.Linux 经 常 与Microsoft Windows 共 存 于 一 个 系 统 或 者 硬 盘 中.Linux 对windows9x/NT 的 文 件 系 统 支 持 的 很 好, 反 之 你 想 在windows 下…

C# new关键字和对象类型转换(双括号、is操作符、as操作符)

一、new关键字 CLR要求所有的对象都通过new来创建,代码如下: Object objnew Object(); 以下是new操作符做的事情 1、计算类型及其所有基类型(一直到System.Object,虽然它没有定义自己的实例字段)中定义的所有实例字段需要的字节数.堆上每个对象都需要一些额外的成员,包括“类型…

JDBC01 利用JDBC连接数据库【不使用数据库连接池】

目录: 1 什么是JDBC 2 JDBC主要接口 3 JDBC编程步骤【学渣版本】 5 JDBC编程步骤【学神版本】 6 JDBC编程步骤【学霸版本】 1 什么是JDBC JDBC是JAVA提供的一套标准连接数据库的接口,规定了连接数据库的步骤和功能;不同的数据库提供商提供了一…

leetcode 778. 水位上升的泳池中游泳(并查集)

在一个 N x N 的坐标方格 grid 中,每一个方格的值 grid[i][j] 表示在位置 (i,j) 的平台高度。 现在开始下雨了。当时间为 t 时,此时雨水导致水池中任意位置的水位为 t 。你可以从一个平台游向四周相邻的任意一个平台,但是前提是此时水位必须…

2020年十大币预测_2020年十大商业智能工具

2020年十大币预测In the rapidly growing world of today, when technology is expanding at a rate like never before, there are plenty of tools and skills to explore, learn, and master. In this digital and data age, Business Information and Intelligence have cl…

如何使用MySQL和JPA使用Spring Boot构建Rest API

Hi Everyone! For the past year, I have been learning JavaScript for full-stack web development. For a change, I started to master Java — the powerful Object Oriented Language.嗨,大家好! 在过去的一年中,我一直在学习用于全栈W…

翻译

令 $m>n>1$ 为正整数. 一个集合含有 $m$ 个给定的实数. 我们从中选取任意 $n$ 个数, 记作 $a_1$, $a_2$, $\dotsc$, $a_n$, 并提问: 是否 $a_1<a_2<\dotsb < a_n$ 正确? 证明: 我们可以最多问 $n!-n^22n-2m(n-1)(1\lfloor \log_{n} m \rfloor)-m$ 个问题&#…

720 智能硬件与 LeanCloud 云端的默契协作

【 玩转 LeanCloud 】开发者经验分享&#xff1a; 作者&#xff1a;谢子超 720技术负责人&#xff0c;从业十余年&#xff0c;一直负责软件开发工作。 我们的产品是与监控和改善室内空气质量相关的智能硬件&#xff0c;我们使用 LeanCloud 平台已经有 2 年多了&#xff0c;借此…

linux cifs windows 慢,windows上使用dockerIO特别慢有没有更优的解决方案?

复制一个大佬的回答Docker for Windows是在Hyper-V虚拟机上跑Linux&#xff0c;文件挂载是通过SMB协议从Windows挂载到Linux&#xff0c;文件读写都经过网络&#xff0c;遇到Laravel这种每次启动就要加载几百个文件的框架&#xff0c;文件性能问题就尤其明显。最好的验证方法就…

编译原理—词法分析器(Java)

1.当运行程序时&#xff0c;程序会读取项目下的program.txt文件 2. 程序将会逐行读取program.txt中的源程序&#xff0c;进行词法分析&#xff0c;并将分析的结果输出。 3. 如果发现错误&#xff0c;程序将会中止读取文件进行分析&#xff0c;并输出错误提示 所用单词的构词规…

【BZOJ4653】[Noi2016]区间 双指针法+线段树

【BZOJ4653】[Noi2016]区间 Description 在数轴上有 n个闭区间 [l1,r1],[l2,r2],...,[ln,rn]。现在要从中选出 m 个区间&#xff0c;使得这 m个区间共同包含至少一个位置。换句话说&#xff0c;就是使得存在一个 x&#xff0c;使得对于每一个被选中的区间 [li,ri]&#xff0c;都…

为什么我们需要使用Pandas新字符串Dtype代替文本数据对象

We have to represent every bit of data in numerical values to be processed and analyzed by machine learning and deep learning models. However, strings do not usually come in a nice and clean format and require a lot preprocessing.我们必须以数值表示数据的每…

递归方程组解的渐进阶的求法——代入法

递归方程组解的渐进阶的求法——代入法 用这个办法既可估计上界也可估计下界。如前面所指出&#xff0c;方法的关键步骤在于预先对解答作出推测&#xff0c;然后用数学归纳法证明推测的正确性。 例如&#xff0c;我们要估计T(n)的上界&#xff0c;T(n)满足递归方程&#xff1a;…

【转载】C# 理解泛型

术语表 generics&#xff1a;泛型type-safe&#xff1a;类型安全collection: 集合compiler&#xff1a;编译器run time&#xff1a;程序运行时object: 对象.NET library&#xff1a;.Net类库value type: 值类型box: 装箱unbox: 拆箱implicity: 隐式explicity: 显式linked list:…

javascript 作用_JavaScript承诺如何从内到外真正发挥作用

javascript 作用One of the most important questions I faced in interviews was how promises are implemented. Since async/await is becoming more popular, you need to understand promises.我在采访中面临的最重要的问题之一是如何实现承诺。 由于异步/等待变得越来越流…

linux 文件理解,对linux中文件系统的理解

首先在linux系统当中一个可被挂在的数据为一个文件系统1.在安装linux过程中我们要进行磁盘分区&#xff0c;可以分根目录/,‘/home‘&#xff0c;‘/boot’,swap等等这些分区&#xff0c;每一个分区(’/(根目录)‘&#xff0c;’/home‘...)就是一个文件系统。2.文件系统分配完…

编译原理—语法分析器(Java)

递归下降语法分析 1. 语法成分说明 <语句块> :: begin<语句串> end <语句串> :: <语句>{&#xff1b;<语句>} <语句> :: <赋值语句> | <循环语句> | <条件语句> <关系运算符> :: < | < | > | > | |…

老笔记整理四:字符串的完美度

今天在宠果网上发现一道题目&#xff0c;求一个字符串的完美度http://hero.pongo.cn/home/index觉得这道题很有趣就挑战了一下&#xff0c;结果没有在规定的1小时里面写完&#xff08;笑&#xff09;&#xff0c;多花了10分钟终于做出来了。题目是这样的&#xff1a;我们要给每…

nlp构建_使用NLP构建自杀性推文分类器

nlp构建Over the years, suicide has been one of the major causes of death worldwide, According to Wikipedia, Suicide resulted in 828,000 global deaths in 2015, an increase from 712,000 deaths in 1990. This makes suicide the 10th leading cause of death world…