Which Technologies Do Startups Use?

本文通过对AngelList数据的分析,揭示了不同质量等级的初创公司在编程语言、前端技术、数据库及存储、移动开发、基础设施等方面的选择偏好。研究发现,高质量的初创公司更倾向于使用现代编程语言和技术。


Coding VC

Startups and startup investing from the perspective of a software engineer turned VC.

Which Technologies Do Startups Use? An Exploration of AngelList Data.

There's a lot of hype surrounding new programming languages, databases, and the like. I've always been curious about which technologies are actually in use, and whether great startups use different technologies than not-so-great startups.

Fortunately, AngelList offers some self-reported data about technology usage. For example, you can see thatRobinhood uses Python, Django, and iOS while Secret uses Java, Go, Python, JavaScript, HTML5, CSS, iOS, and Android.

Additionally, AngelList calculates a Signal score for each startup. While it's not 100% clear what this represents, it seems to be some combination of company quality and popularity. For example, these are all of the startups in the Transportation sector, sorted by their Signal scores.

In the interest of openness, there are lots of caveats for this dataset:

  • It's not clear if AngelList Signal is actually correlated with company quality (although it seems to be).
  • Many companies don't report the technologies that they use.
  • The lists of technologies that are self-reported are not necessarily exhaustive.
  • etc.

Limitations aside, I calculated the number of startups with low, medium, and high Signal scores using each of ~75 different technologies, and this post summarizes the results. Whenever I refer to okay/good/great companies, the intended interpretation is companies with low/medium/high AngelList Signal scores.

(Note: you can click on each chart to see a higher resolution version.)

Interpreting the Charts

In each chart, blue represents 'okay' startups, red represents 'good' startups, and orange represents 'great' startups. Within each color, the bars show relative frequencies of technology mentions. For example, let's say we're looking at technologies A and B. If 'okay' companies use B 3x as often as A, 'good' companies use A and B equally often, and 'great' companies use A twice as often as B, then the chart would look like this:

(Note: the ratios of the lengths of blue/orange/red bars are 1:3, 1:1, and 2:1.)

Programming Languages

Observations:

  • For great companies, the most popular languages are Javascript, Ruby, Python, and Java.
  • For okay companies, the most popular languages are Javascript, Ruby, PHP, and Java.
  • The likelihood that PHP is being used is strongly anti-correlated with company quality.
  • The better the company, the more likely it is to be using modern and/or functional programming languages (i.e. Go, Scala, Haskell, Erlang, Clojure).

Front-end Tech

This chart shows a combination of web frameworks (Rails, Django), Javascript Libraries, and HTML/CSS.

Observations:

  • Ruby on Rails is super popular.
  • HTML5 is dominating HTML.
  • CSS is still dominating CSS3.
  • The better the company, the less likely it is to use Bootstrap. 

Databases/Storage/Caching

Observations:

  • MySQL, Mongo, and Postgres dominate the database side.
  • Redis is much more popular than memcached.
  • The better the company, the less likely it is to build on top of Microsoft's products (SQL Server).

Mobile

Observations:

  • Developing for iOS is slightly more popular than developing for Android
  • The gap widens as company quality increases.
  • Windows Mobile (which is not present in the chart) is 30x-50x less popular than iOS and Android among good/great companies.

Infrastructure/Hosting

Observations:
  • AWS and Heroku dominate.
  • The better the company, the more likely it is to use IaaS (e.g. AWS) instead of PaaS (e.g. Parse)
  • The better the company, the less likely it is to build on top of Microsoft's products (Azure).

DevOps Tools


(Note: the sample size here was small because DevOps tools were rarely mentioned on AngelList profiles)

Search

Observations:

  • Elasticsearch dominates this category.

API Integrations

(Note: the sample size here was small because APIs were rarely mentioned on AngelList profiles -- especially for good/great companies.)

Advanced Tech

Observations:

  • I was surprised that there's no clear correlation between quality of company and usage of sophisticated technologies like machine learning or computer vision.

Big Data Software

(Note: small sample size)


If you liked this post, please consider sharing it or subscribing to future posts.


内容概要:本文介绍了一个基于MATLAB实现的无人机三维路径规划项目,采用蚁群算法(ACO)与多层感知机(MLP)相结合的混合模型(ACO-MLP)。该模型通过三维环境离散化建模,利用ACO进行全局路径搜索,并引入MLP对环境特征进行自适应学习与启发因子优化,实现路径的动态调整与多目标优化。项目解决了高维空间建模、动态障碍规避、局部最优陷阱、算法实时性及多目标权衡等关键技术难题,结合并行计算与参数自适应机制,提升了路径规划的智能性、安全性和工程适用性。文中提供了详细的模型架构、核心算法流程及MATLAB代码示例,涵盖空间建模、信息素更新、MLP训练与融合优化等关键步骤。; 适合人群:具备一定MATLAB编程基础,熟悉智能优化算法与神经网络的高校学生、科研人员及从事无人机路径规划相关工作的工程师;适合从事智能无人系统、自动驾驶、机器人导航等领域的研究人员; 使用场景及目标:①应用于复杂三维环境下的无人机路径规划,如城市物流、灾害救援、军事侦察等场景;②实现飞行安全、能耗优化、路径平滑与实时避障等多目标协同优化;③为智能无人系统的自主决策与环境适应能力提供算法支持; 阅读建议:此资源结合理论模型与MATLAB实践,建议读者在理解ACO与MLP基本原理的基础上,结合代码示例进行仿真调试,重点关注ACO-MLP融合机制、多目标优化函数设计及参数自适应策略的实现,以深入掌握混合智能算法在工程中的应用方法。
### 解决 Python `ModuleNotFoundError` 错误 当遇到错误信息 `No module named 'Startups'` 时,这意味着 Python 解释器无法找到名为 `Startups` 的模块。为了有效解决问题,可以从以下几个方面入手: #### 验证模块安装情况 确认目标模块是否已正确安装。可以使用 pip 工具来检查和管理包的安装状态。 ```bash pip show startups ``` 如果命令未返回任何有关 `startups` 模块的信息,则说明该模块尚未安装。此时可以通过如下方式安装缺失的模块: ```bash pip install startups ``` 需要注意的是,在某些情况下,实际可用的包名可能与预期不同;因此建议先访问官方文档或 PyPI (Python Package Index) 来验证确切名称[^1]。 #### 路径配置核查 另一个潜在原因是工作路径设置不当或是PYTHONPATH环境变量缺少必要的条目。确保当前的工作目录包含了所需的脚本文件,并且项目的结构合理有助于避免此类问题的发生。对于自定义编写的本地模块而言,应当保证其位于 Python 可以搜索到的位置内。 #### 版本兼容性审查 有时特定版本间的不匹配也会引发类似的导入失败现象。务必查阅所依赖库的支持矩阵以及变更日志,从而选取相互适配的最佳组合。 #### 使用虚拟环境隔离依赖关系 创建独立于全局站点包之外的新鲜干净的虚拟环境能够极大地简化调试流程并减少冲突风险。通过下面的方法快速搭建一个新的 venv : ```bash python -m venv myvenv source myvenv/bin/activate # Unix 或 MacOS myvenv\Scripts\activate.bat # Windows ``` 激活之后再重复上述步骤重新安装所需软件包即可测试效果。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值