datamatastudios commited on
Commit
4b32766
·
verified ·
1 Parent(s): 1ce45e2

Update 2026-08-17 (5421 rows)

Browse files
README.md CHANGED
@@ -1,107 +1,107 @@
1
- ---
2
- license: cc-by-4.0
3
- pretty_name: Datamata Skill Scarcity Index
4
- language:
5
- - en
6
- tags:
7
- - jobs
8
- - labor-market
9
- - skills
10
- - hiring-trends
11
- - salaries
12
- - recruiting
13
- size_categories:
14
- - n<10K
15
- source_datasets:
16
- - original
17
- configs:
18
- - config_name: default
19
- data_files: skill-scarcity-index.csv
20
- ---
21
-
22
- ![Datamata Skill Scarcity Index](dataset-cover-image.png)
23
-
24
- # Datamata Skill Scarcity Index
25
-
26
- Which tech skills are genuinely hard to hire for: a daily composite scarcity score per skill built from how long roles stay open (time-to-fill), the salary premium employers pay over the category median and how often the same role is re-posted after failing to fill. Computed from active job listings across public company career pages and job boards.
27
-
28
- - **Latest snapshot:** 2026-08-05
29
- - **Rows in this release:** 4933
30
- - **Updated:** daily
31
- - **Licence:** [CC BY 4.0](https://creativecommons.org/licenses/by/4.0/) — free to use and adapt, including commercially, with attribution.
32
- - **Source & methodology:** <https://www.datamatastudios.com/datasets/skill-scarcity-index>
33
-
34
- ## Quickstart
35
-
36
- ```python
37
- import pandas as pd
38
-
39
- # Stream straight from the Hub — no download step needed
40
- df = pd.read_csv("hf://datasets/datamatastudios/skill-scarcity-index/skill-scarcity-index.csv")
41
-
42
- # Headline: hardest-to-hire data skills right now
43
- latest = df[df.snapshot_date == df.snapshot_date.max()]
44
- print(
45
- latest[latest.category == "data"]
46
- .sort_values("scarcity_score", ascending=False)
47
- [["skill_name", "scarcity_score", "median_days_open", "salary_premium_pct"]]
48
- .head(10)
49
- )
50
- ```
51
-
52
- Or load it with the 🤗 `datasets` library:
53
-
54
- ```python
55
- from datasets import load_dataset
56
-
57
- ds = load_dataset("datamatastudios/skill-scarcity-index")
58
- ```
59
-
60
- ## What you can answer with it
61
-
62
- - Which skills keep roles open longest — and whether that gap is widening.
63
- - Which skills command a salary premium over their category median.
64
- - Which skills employers repeatedly fail to hire for (repost rate).
65
- - How scarcity is shifting as AI skills flood into job requirements.
66
-
67
- ## What's NOT in this file (live on the site)
68
-
69
- The composite score is here in full. Three deeper cuts are computed from the
70
- same pipeline but only published interactively:
71
-
72
- - **Company adoption feed** — the first date each company started hiring for
73
- each skill ("47 companies added Iceberg to job requirements this quarter"):
74
- <https://www.datamatastudios.com/datasets/skill-scarcity-index>
75
- - **Stack combinations** — which skill *triples* (e.g. AWS + dbt + Snowflake)
76
- actually appear together in postings, monthly.
77
- - **Time-to-fill by role and seniority** — the same lifespan metric cut by
78
- role rather than skill.
79
-
80
- ## Columns
81
-
82
- | Column | Type | Description |
83
- |---|---|---|
84
- | `snapshot_date` | string | UTC date the snapshot was taken (YYYY-MM-DD). |
85
- | `category` | string | Job category: data, engineering, product, devops, security or ai. |
86
- | `skill_name` | string | Canonical skill name from the extraction taxonomy. |
87
- | `demand_count` | number | Active listings mentioning the skill on the snapshot date. |
88
- | `demand_pct` | number | demand_count as a percentage of all active listings in the category. |
89
- | `median_days_open` | number | Median days recently-closed listings with this skill stayed open. Blank below the sample floor. |
90
- | `salary_premium_pct` | number | Median disclosed salary of listings with this skill vs the category median, in percent. Blank below the sample floor. |
91
- | `repost_rate_pct` | number | Share of this skill's listings that are re-posts of an earlier identical role (a failed-hire signal). |
92
- | `scarcity_score` | number | 0-100 weighted percentile-rank composite of the three components within the category. Higher = harder to hire. |
93
-
94
- ## How it is built
95
-
96
- Each day we snapshot every active job listing scraped from public company
97
- career pages and job boards, extract skills with a curated taxonomy and
98
- combine three hard-to-hire signals per skill: median lifespan of closed
99
- listings (time-to-fill), median disclosed salary vs the category median and
100
- the share of listings that are re-posts of an earlier identical role. The
101
- score is a weighted percentile-rank composite within each category, so scores
102
- are comparable across categories. Full method and known limitations:
103
- <https://www.datamatastudios.com/methodology>.
104
-
105
- ## Citation
106
-
107
- > Datamata Studios. "Datamata Skill Scarcity Index." 2026-08-05. https://www.datamatastudios.com/datasets/skill-scarcity-index. Licensed under CC BY 4.0.
 
1
+ ---
2
+ license: cc-by-4.0
3
+ pretty_name: Datamata Skill Scarcity Index
4
+ language:
5
+ - en
6
+ tags:
7
+ - jobs
8
+ - labor-market
9
+ - skills
10
+ - hiring-trends
11
+ - salaries
12
+ - recruiting
13
+ size_categories:
14
+ - n<10K
15
+ source_datasets:
16
+ - original
17
+ configs:
18
+ - config_name: default
19
+ data_files: skill-scarcity-index.csv
20
+ ---
21
+
22
+ ![Datamata Skill Scarcity Index](dataset-cover-image.png)
23
+
24
+ # Datamata Skill Scarcity Index
25
+
26
+ Which tech skills are genuinely hard to hire for: a daily composite scarcity score per skill built from how long roles stay open (time-to-fill), the salary premium employers pay over the category median and how often the same role is re-posted after failing to fill. Computed from active job listings across public company career pages and job boards.
27
+
28
+ - **Latest snapshot:** 2026-08-17
29
+ - **Rows in this release:** 5421
30
+ - **Updated:** daily
31
+ - **Licence:** [CC BY 4.0](https://creativecommons.org/licenses/by/4.0/) — free to use and adapt, including commercially, with attribution.
32
+ - **Source & methodology:** <https://www.datamatastudios.com/datasets/skill-scarcity-index>
33
+
34
+ ## Quickstart
35
+
36
+ ```python
37
+ import pandas as pd
38
+
39
+ # Stream straight from the Hub — no download step needed
40
+ df = pd.read_csv("hf://datasets/datamatastudios/skill-scarcity-index/skill-scarcity-index.csv")
41
+
42
+ # Headline: hardest-to-hire data skills right now
43
+ latest = df[df.snapshot_date == df.snapshot_date.max()]
44
+ print(
45
+ latest[latest.category == "data"]
46
+ .sort_values("scarcity_score", ascending=False)
47
+ [["skill_name", "scarcity_score", "median_days_open", "salary_premium_pct"]]
48
+ .head(10)
49
+ )
50
+ ```
51
+
52
+ Or load it with the 🤗 `datasets` library:
53
+
54
+ ```python
55
+ from datasets import load_dataset
56
+
57
+ ds = load_dataset("datamatastudios/skill-scarcity-index")
58
+ ```
59
+
60
+ ## What you can answer with it
61
+
62
+ - Which skills keep roles open longest — and whether that gap is widening.
63
+ - Which skills command a salary premium over their category median.
64
+ - Which skills employers repeatedly fail to hire for (repost rate).
65
+ - How scarcity is shifting as AI skills flood into job requirements.
66
+
67
+ ## What's NOT in this file (live on the site)
68
+
69
+ The composite score is here in full. Three deeper cuts are computed from the
70
+ same pipeline but only published interactively:
71
+
72
+ - **Company adoption feed** — the first date each company started hiring for
73
+ each skill ("47 companies added Iceberg to job requirements this quarter"):
74
+ <https://www.datamatastudios.com/datasets/skill-scarcity-index>
75
+ - **Stack combinations** — which skill *triples* (e.g. AWS + dbt + Snowflake)
76
+ actually appear together in postings, monthly.
77
+ - **Time-to-fill by role and seniority** — the same lifespan metric cut by
78
+ role rather than skill.
79
+
80
+ ## Columns
81
+
82
+ | Column | Type | Description |
83
+ |---|---|---|
84
+ | `snapshot_date` | string | UTC date the snapshot was taken (YYYY-MM-DD). |
85
+ | `category` | string | Job category: data, engineering, product, devops, security or ai. |
86
+ | `skill_name` | string | Canonical skill name from the extraction taxonomy. |
87
+ | `demand_count` | number | Active listings mentioning the skill on the snapshot date. |
88
+ | `demand_pct` | number | demand_count as a percentage of all active listings in the category. |
89
+ | `median_days_open` | number | Median days recently-closed listings with this skill stayed open. Blank below the sample floor. |
90
+ | `salary_premium_pct` | number | Median disclosed salary of listings with this skill vs the category median, in percent. Blank below the sample floor. |
91
+ | `repost_rate_pct` | number | Share of this skill's listings that are re-posts of an earlier identical role (a failed-hire signal). |
92
+ | `scarcity_score` | number | 0-100 weighted percentile-rank composite of the three components within the category. Higher = harder to hire. |
93
+
94
+ ## How it is built
95
+
96
+ Each day we snapshot every active job listing scraped from public company
97
+ career pages and job boards, extract skills with a curated taxonomy and
98
+ combine three hard-to-hire signals per skill: median lifespan of closed
99
+ listings (time-to-fill), median disclosed salary vs the category median and
100
+ the share of listings that are re-posts of an earlier identical role. The
101
+ score is a weighted percentile-rank composite within each category, so scores
102
+ are comparable across categories. Full method and known limitations:
103
+ <https://www.datamatastudios.com/methodology>.
104
+
105
+ ## Citation
106
+
107
+ > Datamata Studios. "Datamata Skill Scarcity Index." 2026-08-17. https://www.datamatastudios.com/datasets/skill-scarcity-index. Licensed under CC BY 4.0.
dataset-cover-image.png CHANGED

Git LFS Details

  • SHA256: efb370a71fc2530c91fe4c21d4782fcb49c934fe7a985b0e427eeccbcaa506e1
  • Pointer size: 130 Bytes
  • Size of remote file: 16 kB

Git LFS Details

  • SHA256: 8314a1ea2e204101b5103b8b56b43e2e6c2aa475f418b2e538086770a52d53b4
  • Pointer size: 130 Bytes
  • Size of remote file: 16.1 kB
skill-scarcity-index.csv CHANGED
@@ -4932,3 +4932,491 @@ snapshot_date,category,skill_name,demand_count,demand_pct,median_days_open,salar
4932
  2026-08-05,security,Terraform,121,5.1,0.0,-29.6,7.6,28.8
4933
  2026-08-05,security,TypeScript,57,2.4,28.0,,0.0,35.4
4934
  2026-08-05,security,Zero Trust,67,2.8,0.0,2.7,12.5,38.7
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4932
  2026-08-05,security,Terraform,121,5.1,0.0,-29.6,7.6,28.8
4933
  2026-08-05,security,TypeScript,57,2.4,28.0,,0.0,35.4
4934
  2026-08-05,security,Zero Trust,67,2.8,0.0,2.7,12.5,38.7
4935
+ 2026-08-17,ai,A/B Testing,169,4.1,0.0,33.6,2.3,43.2
4936
+ 2026-08-17,ai,Agile / Scrum,253,6.1,0.0,47.4,33.8,59.2
4937
+ 2026-08-17,ai,AI Agents,524,12.6,,22.9,6.1,75.3
4938
+ 2026-08-17,ai,AI Coding Tools,38,0.9,,16.9,0.0,47.5
4939
+ 2026-08-17,ai,Airflow,66,1.6,,-36.0,5.7,34.7
4940
+ 2026-08-17,ai,Angular,13,0.3,,,5.9,61.0
4941
+ 2026-08-17,ai,AWS,343,8.2,0.0,-31.1,12.9,33.0
4942
+ 2026-08-17,ai,Azure,322,7.7,0.0,-44.5,15.3,26.9
4943
+ 2026-08-17,ai,Bash,10,0.2,,-36.0,0.0,10.8
4944
+ 2026-08-17,ai,BigQuery,24,0.6,,,17.9,93.9
4945
+ 2026-08-17,ai,C#,35,0.8,0.0,-48.2,0.0,2.7
4946
+ 2026-08-17,ai,C++,68,1.6,1.0,-18.7,0.0,36.9
4947
+ 2026-08-17,ai,CI/CD,124,3.0,0.0,-36.0,7.7,23.9
4948
+ 2026-08-17,ai,Data Modeling,14,0.3,,7.7,14.3,77.9
4949
+ 2026-08-17,ai,Databricks,98,2.3,8.0,-37.1,5.8,51.9
4950
+ 2026-08-17,ai,Datadog,11,0.3,81.0,,0.0,61.5
4951
+ 2026-08-17,ai,Deep Learning,247,5.9,1.0,11.2,10.5,64.8
4952
+ 2026-08-17,ai,Docker,99,2.4,2.0,-48.2,3.6,41.2
4953
+ 2026-08-17,ai,DynamoDB,14,0.3,,,0.0,0.0
4954
+ 2026-08-17,ai,Elasticsearch,36,0.9,,-33.4,0.0,17.0
4955
+ 2026-08-17,ai,ETL,13,0.3,,,0.0,0.0
4956
+ 2026-08-17,ai,Excel,79,1.9,64.0,25.2,0.8,75.7
4957
+ 2026-08-17,ai,FastAPI,37,0.9,0.0,-11.5,9.3,39.7
4958
+ 2026-08-17,ai,Fine-tuning,193,4.6,7.0,13.1,2.4,67.7
4959
+ 2026-08-17,ai,Flink,10,0.2,,,0.0,0.0
4960
+ 2026-08-17,ai,GCP,171,4.1,0.0,-52.3,14.5,23.9
4961
+ 2026-08-17,ai,Git,77,1.8,0.0,-31.1,5.4,24.7
4962
+ 2026-08-17,ai,Go,26,0.6,0.0,24.5,0.0,30.2
4963
+ 2026-08-17,ai,Grafana,22,0.5,,30.5,0.0,53.8
4964
+ 2026-08-17,ai,GraphQL,17,0.4,,-31.1,0.0,18.8
4965
+ 2026-08-17,ai,Hugging Face,107,2.6,2.0,-30.0,0.9,49.0
4966
+ 2026-08-17,ai,Incident Response,30,0.7,,-28.1,0.0,22.5
4967
+ 2026-08-17,ai,Java,144,3.5,1.0,-22.8,1.2,43.4
4968
+ 2026-08-17,ai,JavaScript,65,1.6,0.0,-19.2,1.2,26.4
4969
+ 2026-08-17,ai,Kafka,46,1.1,0.0,,0.0,0.0
4970
+ 2026-08-17,ai,Kotlin,19,0.5,,,21.1,95.1
4971
+ 2026-08-17,ai,Kubernetes,140,3.4,71.0,-36.0,7.1,61.5
4972
+ 2026-08-17,ai,LangChain,100,2.4,1.0,-16.3,4.5,49.9
4973
+ 2026-08-17,ai,Linear,12,0.3,,79.1,28.6,99.0
4974
+ 2026-08-17,ai,Linux,38,0.9,,-36.0,0.0,10.8
4975
+ 2026-08-17,ai,LLM APIs,47,1.1,,-18.9,8.5,59.2
4976
+ 2026-08-17,ai,LLMs / GenAI,1328,31.8,0.0,-10.9,5.5,36.1
4977
+ 2026-08-17,ai,Machine Learning,2511,60.2,0.0,15.2,11.4,49.0
4978
+ 2026-08-17,ai,MCP,14,0.3,,,0.0,0.0
4979
+ 2026-08-17,ai,MLflow,83,2.0,1.0,-36.0,34.8,50.6
4980
+ 2026-08-17,ai,MongoDB,12,0.3,1.0,-15.2,4.8,51.0
4981
+ 2026-08-17,ai,Next.js,21,0.5,5.0,-11.5,0.0,49.2
4982
+ 2026-08-17,ai,NLP,171,4.1,69.0,-25.9,3.2,62.7
4983
+ 2026-08-17,ai,Node.js,75,1.8,0.0,0.8,8.9,42.1
4984
+ 2026-08-17,ai,Pandas,34,0.8,50.0,,10.0,82.7
4985
+ 2026-08-17,ai,PostgreSQL,29,0.7,0.0,0.6,5.4,36.0
4986
+ 2026-08-17,ai,Prompt Engineering,78,1.9,,-18.3,15.4,68.6
4987
+ 2026-08-17,ai,Prototyping,69,1.7,1.0,6.2,5.1,56.1
4988
+ 2026-08-17,ai,Python,866,20.8,0.0,-36.0,10.7,27.2
4989
+ 2026-08-17,ai,PyTorch,313,7.5,7.0,-48.2,6.7,48.4
4990
+ 2026-08-17,ai,RAG,302,7.2,0.0,-13.0,5.3,33.0
4991
+ 2026-08-17,ai,React,80,1.9,0.0,-44.5,1.1,13.8
4992
+ 2026-08-17,ai,Redis,15,0.4,,,0.0,0.0
4993
+ 2026-08-17,ai,REST API,13,0.3,,-21.8,7.7,55.0
4994
+ 2026-08-17,ai,Ruby,14,0.3,64.0,,0.0,54.8
4995
+ 2026-08-17,ai,Rust,40,1.0,,,0.0,0.0
4996
+ 2026-08-17,ai,SageMaker,47,1.1,,39.4,8.0,85.7
4997
+ 2026-08-17,ai,Salesforce,16,0.4,,-20.8,6.2,53.4
4998
+ 2026-08-17,ai,SAP,10,0.2,,2.7,0.0,39.5
4999
+ 2026-08-17,ai,Scala,43,1.0,,11.6,0.0,43.0
5000
+ 2026-08-17,ai,scikit-learn,84,2.0,0.0,-61.9,22.0,24.1
5001
+ 2026-08-17,ai,Segment,13,0.3,,-54.9,6.7,28.7
5002
+ 2026-08-17,ai,Snowflake,39,0.9,,39.4,0.0,55.7
5003
+ 2026-08-17,ai,Spark,108,2.6,71.0,11.6,4.5,76.0
5004
+ 2026-08-17,ai,SQL,144,3.5,1.0,-22.1,9.9,53.7
5005
+ 2026-08-17,ai,Stakeholder Mgmt,296,7.1,8.0,12.4,7.6,75.3
5006
+ 2026-08-17,ai,Statistical Analysis,142,3.4,50.0,29.8,8.6,84.3
5007
+ 2026-08-17,ai,Swift,13,0.3,,,0.0,0.0
5008
+ 2026-08-17,ai,System Design,66,1.6,0.0,24.5,10.1,50.3
5009
+ 2026-08-17,ai,TensorFlow,254,6.1,26.0,-49.7,17.4,58.4
5010
+ 2026-08-17,ai,Terraform,72,1.7,0.0,-44.5,5.8,18.9
5011
+ 2026-08-17,ai,Trino,13,0.3,,,0.0,0.0
5012
+ 2026-08-17,ai,TypeScript,63,1.5,1.0,-11.5,2.6,50.6
5013
+ 2026-08-17,ai,Vector Databases,53,1.3,,-33.4,0.0,17.0
5014
+ 2026-08-17,ai,Vue,10,0.2,,,0.0,0.0
5015
+ 2026-08-17,ai,Workday,17,0.4,,-57.5,11.8,36.5
5016
+ 2026-08-17,ai,Workflow Automation,15,0.4,,,0.0,0.0
5017
+ 2026-08-17,ai,XGBoost,40,1.0,,16.9,0.0,47.5
5018
+ 2026-08-17,data,A/B Testing,258,2.7,9.0,56.9,9.0,79.7
5019
+ 2026-08-17,data,Agile / Scrum,253,2.6,0.0,-29.6,8.7,20.8
5020
+ 2026-08-17,data,AI Agents,162,1.7,,53.5,3.7,68.9
5021
+ 2026-08-17,data,AI Coding Tools,33,0.3,,,0.0,0.0
5022
+ 2026-08-17,data,Airbyte,34,0.4,,-24.5,0.0,15.2
5023
+ 2026-08-17,data,Airflow,235,2.4,2.0,-20.0,7.6,55.6
5024
+ 2026-08-17,data,Apache Iceberg,40,0.4,,127.2,10.0,84.0
5025
+ 2026-08-17,data,AWS,636,6.6,0.0,-1.7,7.1,33.5
5026
+ 2026-08-17,data,AWS Security,39,0.4,0.0,-24.4,5.9,22.1
5027
+ 2026-08-17,data,Azure,825,8.6,0.0,4.0,8.9,37.8
5028
+ 2026-08-17,data,BigQuery,163,1.7,22.0,-7.5,10.6,68.6
5029
+ 2026-08-17,data,C#,30,0.3,0.0,-24.4,23.7,32.5
5030
+ 2026-08-17,data,C++,24,0.2,1.0,127.2,0.0,57.0
5031
+ 2026-08-17,data,CI/CD,391,4.1,0.0,10.4,5.7,36.5
5032
+ 2026-08-17,data,ClickHouse,17,0.2,,,0.0,0.0
5033
+ 2026-08-17,data,Dagster,36,0.4,0.0,-12.0,4.9,27.2
5034
+ 2026-08-17,data,Data Modeling,559,5.8,0.0,-22.9,11.9,29.3
5035
+ 2026-08-17,data,Data Observability,37,0.4,,20.1,21.6,79.0
5036
+ 2026-08-17,data,Data Pipeline,126,1.3,0.0,27.5,0.0,26.6
5037
+ 2026-08-17,data,Data Visualization,154,1.6,0.0,-18.0,10.1,29.8
5038
+ 2026-08-17,data,Databricks,558,5.8,0.0,5.9,8.9,38.2
5039
+ 2026-08-17,data,Datadog,11,0.1,1.0,,0.0,35.6
5040
+ 2026-08-17,data,dbt,327,3.4,2.0,-18.5,5.4,53.3
5041
+ 2026-08-17,data,Deep Learning,18,0.2,,92.8,22.7,92.1
5042
+ 2026-08-17,data,Docker,66,0.7,0.0,-30.1,4.7,15.6
5043
+ 2026-08-17,data,Dynamics 365,16,0.2,,-25.5,0.0,12.7
5044
+ 2026-08-17,data,Elasticsearch,29,0.3,,6.3,0.0,38.7
5045
+ 2026-08-17,data,ETL,635,6.6,0.0,9.8,11.0,42.5
5046
+ 2026-08-17,data,Excel,319,3.3,0.0,-42.3,9.9,18.2
5047
+ 2026-08-17,data,Figma,17,0.2,,,0.0,0.0
5048
+ 2026-08-17,data,Fine-tuning,21,0.2,0.0,36.6,0.0,29.3
5049
+ 2026-08-17,data,Fivetran,43,0.4,,-27.5,0.0,11.4
5050
+ 2026-08-17,data,Flink,49,0.5,55.0,-35.2,1.5,47.5
5051
+ 2026-08-17,data,GCP,239,2.5,0.0,-0.5,15.2,42.0
5052
+ 2026-08-17,data,Git,434,4.5,1.0,9.7,5.5,58.1
5053
+ 2026-08-17,data,Go,15,0.2,0.0,,0.0,0.0
5054
+ 2026-08-17,data,Google Analytics,27,0.3,0.0,-37.9,26.5,25.8
5055
+ 2026-08-17,data,Grafana,22,0.2,,88.8,0.0,53.9
5056
+ 2026-08-17,data,GraphQL,14,0.1,,-52.7,0.0,1.9
5057
+ 2026-08-17,data,Hugging Face,16,0.2,,92.8,0.0,54.5
5058
+ 2026-08-17,data,Incident Response,17,0.2,,14.2,27.8,80.8
5059
+ 2026-08-17,data,Informatica,28,0.3,,-37.9,28.6,43.8
5060
+ 2026-08-17,data,Java,226,2.3,0.0,43.9,17.7,52.2
5061
+ 2026-08-17,data,JavaScript,51,0.5,0.0,-13.1,33.3,40.4
5062
+ 2026-08-17,data,Jira,36,0.4,55.0,-10.0,0.0,53.7
5063
+ 2026-08-17,data,Jupyter,10,0.1,,-9.3,28.6,69.8
5064
+ 2026-08-17,data,Kafka,123,1.3,1.0,-1.7,1.7,52.0
5065
+ 2026-08-17,data,Kotlin,15,0.2,,123.6,0.0,55.8
5066
+ 2026-08-17,data,Kubernetes,71,0.7,0.0,-17.4,0.0,14.1
5067
+ 2026-08-17,data,LangChain,15,0.2,37.0,44.4,0.0,65.2
5068
+ 2026-08-17,data,Linux,42,0.4,1.0,-22.4,12.0,53.1
5069
+ 2026-08-17,data,LLM APIs,18,0.2,,31.9,0.0,46.9
5070
+ 2026-08-17,data,LLMs / GenAI,442,4.6,0.0,36.8,5.5,41.1
5071
+ 2026-08-17,data,Looker,152,1.6,22.0,-29.6,11.0,56.8
5072
+ 2026-08-17,data,Machine Learning,1124,11.6,0.0,20.2,12.0,44.8
5073
+ 2026-08-17,data,Metabase,27,0.3,79.0,-17.2,6.2,66.1
5074
+ 2026-08-17,data,Microsoft Fabric,75,0.8,,0.0,8.0,59.0
5075
+ 2026-08-17,data,Mixpanel,23,0.2,37.0,-17.2,14.3,69.6
5076
+ 2026-08-17,data,MLflow,21,0.2,66.0,,0.0,58.6
5077
+ 2026-08-17,data,MongoDB,26,0.3,,-25.2,13.8,48.2
5078
+ 2026-08-17,data,MySQL,29,0.3,55.0,-24.6,0.0,45.0
5079
+ 2026-08-17,data,NLP,174,1.8,0.0,28.2,16.7,48.5
5080
+ 2026-08-17,data,Node.js,37,0.4,0.0,30.6,6.8,40.9
5081
+ 2026-08-17,data,NumPy,75,0.8,,-32.7,1.3,19.6
5082
+ 2026-08-17,data,Pandas,114,1.2,0.0,-17.9,3.8,23.7
5083
+ 2026-08-17,data,Polars,11,0.1,,,0.0,0.0
5084
+ 2026-08-17,data,PostgreSQL,49,0.5,28.0,37.1,1.5,72.0
5085
+ 2026-08-17,data,Power BI,630,6.5,0.0,-30.1,10.1,21.8
5086
+ 2026-08-17,data,Prefect,10,0.1,,-43.1,18.2,39.2
5087
+ 2026-08-17,data,Prompt Engineering,16,0.2,,-56.0,0.0,0.6
5088
+ 2026-08-17,data,Prototyping,73,0.8,87.0,0.8,1.2,69.4
5089
+ 2026-08-17,data,Python,1596,16.5,0.0,-12.0,10.6,34.2
5090
+ 2026-08-17,data,PyTorch,41,0.4,40.0,-32.7,24.5,62.7
5091
+ 2026-08-17,data,Qlik,12,0.1,,-28.9,0.0,10.8
5092
+ 2026-08-17,data,R,18,0.2,0.0,-53.4,32.1,25.3
5093
+ 2026-08-17,data,RAG,89,0.9,1.0,35.6,10.5,69.4
5094
+ 2026-08-17,data,React,14,0.1,1.0,56.8,0.0,54.7
5095
+ 2026-08-17,data,Redshift,105,1.1,0.0,21.0,5.5,37.2
5096
+ 2026-08-17,data,Rust,12,0.1,,127.2,0.0,56.4
5097
+ 2026-08-17,data,SageMaker,16,0.2,,,23.5,91.1
5098
+ 2026-08-17,data,Salesforce,71,0.7,,-2.9,2.8,47.8
5099
+ 2026-08-17,data,SAP,48,0.5,,-17.8,8.3,47.1
5100
+ 2026-08-17,data,SAS,41,0.4,1.0,-2.4,8.5,57.7
5101
+ 2026-08-17,data,Scala,135,1.4,1.0,-27.5,12.3,49.8
5102
+ 2026-08-17,data,scikit-learn,51,0.5,80.0,-21.7,8.2,64.7
5103
+ 2026-08-17,data,Segment,37,0.4,0.0,35.4,10.9,46.8
5104
+ 2026-08-17,data,ServiceNow,19,0.2,,-21.2,15.8,54.5
5105
+ 2026-08-17,data,SIEM,16,0.2,,30.2,0.0,45.7
5106
+ 2026-08-17,data,Snowflake,511,5.3,1.0,3.3,7.2,58.8
5107
+ 2026-08-17,data,Spark,375,3.9,0.0,-12.6,2.9,25.9
5108
+ 2026-08-17,data,Spring,12,0.1,,24.2,12.5,77.6
5109
+ 2026-08-17,data,SQL,1865,19.3,0.0,-18.2,10.5,29.9
5110
+ 2026-08-17,data,Stakeholder Mgmt,927,9.6,0.0,-7.1,5.8,31.0
5111
+ 2026-08-17,data,Statistical Analysis,560,5.8,0.0,-2.9,9.4,35.1
5112
+ 2026-08-17,data,System Design,24,0.2,5.0,-61.2,0.0,31.2
5113
+ 2026-08-17,data,Tableau,330,3.4,0.0,-17.2,12.4,34.5
5114
+ 2026-08-17,data,TensorFlow,27,0.3,0.0,-32.7,35.1,28.8
5115
+ 2026-08-17,data,Terraform,88,0.9,1.0,-34.9,2.6,35.7
5116
+ 2026-08-17,data,Trino,26,0.3,,,0.0,0.0
5117
+ 2026-08-17,data,TypeScript,37,0.4,,127.2,2.6,71.7
5118
+ 2026-08-17,data,Vector Databases,14,0.1,,-11.4,0.0,28.5
5119
+ 2026-08-17,data,Workday,46,0.5,,-25.3,2.2,28.1
5120
+ 2026-08-17,devops,A/B Testing,69,1.2,0.0,37.1,11.6,46.6
5121
+ 2026-08-17,devops,Agile / Scrum,303,5.4,0.0,-13.6,7.0,27.3
5122
+ 2026-08-17,devops,AI Agents,101,1.8,,114.2,2.0,67.4
5123
+ 2026-08-17,devops,AI Coding Tools,34,0.6,,-19.2,0.0,18.1
5124
+ 2026-08-17,devops,Airflow,17,0.3,,,5.9,45.1
5125
+ 2026-08-17,devops,Angular,17,0.3,,27.3,5.3,63.6
5126
+ 2026-08-17,devops,Ansible,197,3.5,0.0,-28.9,10.3,22.3
5127
+ 2026-08-17,devops,ArgoCD,93,1.7,2.0,-29.9,16.5,61.6
5128
+ 2026-08-17,devops,AWS,1549,27.7,0.0,-6.1,13.4,36.6
5129
+ 2026-08-17,devops,AWS Security,139,2.5,0.0,2.7,10.3,34.6
5130
+ 2026-08-17,devops,Azure,1221,21.8,0.0,-12.3,16.1,36.6
5131
+ 2026-08-17,devops,Bash,164,2.9,0.0,-22.4,9.7,24.9
5132
+ 2026-08-17,devops,BigQuery,20,0.4,,,0.0,0.0
5133
+ 2026-08-17,devops,C#,89,1.6,0.0,-29.7,36.2,29.8
5134
+ 2026-08-17,devops,C++,49,0.9,1.0,24.6,1.7,63.0
5135
+ 2026-08-17,devops,CI/CD,1301,23.3,0.0,3.3,14.0,39.0
5136
+ 2026-08-17,devops,ClickHouse,16,0.3,,,0.0,0.0
5137
+ 2026-08-17,devops,Databricks,19,0.3,0.0,-0.7,7.4,31.3
5138
+ 2026-08-17,devops,Datadog,104,1.9,,6.2,4.6,51.4
5139
+ 2026-08-17,devops,dbt,47,0.8,,-31.0,6.4,27.2
5140
+ 2026-08-17,devops,Docker,515,9.2,0.0,-14.8,16.5,34.8
5141
+ 2026-08-17,devops,DynamoDB,11,0.2,,,9.1,59.8
5142
+ 2026-08-17,devops,Elasticsearch,32,0.6,0.0,40.6,0.0,30.1
5143
+ 2026-08-17,devops,ETL,22,0.4,2.0,11.5,14.3,79.0
5144
+ 2026-08-17,devops,Excel,39,0.7,0.0,44.4,5.5,41.4
5145
+ 2026-08-17,devops,Figma,18,0.3,,,0.0,0.0
5146
+ 2026-08-17,devops,Fivetran,26,0.5,,,3.8,30.5
5147
+ 2026-08-17,devops,Flink,15,0.3,,,6.7,48.8
5148
+ 2026-08-17,devops,GCP,515,9.2,0.0,-9.0,15.5,37.2
5149
+ 2026-08-17,devops,Git,428,7.7,0.0,-19.1,12.6,29.3
5150
+ 2026-08-17,devops,Go,24,0.4,0.0,64.5,3.5,38.7
5151
+ 2026-08-17,devops,Grafana,140,2.5,1.0,-28.9,3.7,43.0
5152
+ 2026-08-17,devops,Helm,90,1.6,0.0,-25.6,20.6,31.5
5153
+ 2026-08-17,devops,Incident Response,141,2.5,2.0,-8.6,4.1,60.2
5154
+ 2026-08-17,devops,Informatica,11,0.2,,-32.9,100.0,45.8
5155
+ 2026-08-17,devops,Java,243,4.3,0.0,5.3,7.0,33.7
5156
+ 2026-08-17,devops,JavaScript,110,2.0,1.0,3.9,9.2,64.3
5157
+ 2026-08-17,devops,Jira,77,1.4,,-31.3,26.6,46.2
5158
+ 2026-08-17,devops,Kafka,44,0.8,0.0,-19.9,15.8,30.6
5159
+ 2026-08-17,devops,Kotlin,21,0.4,0.0,132.7,0.0,34.5
5160
+ 2026-08-17,devops,Kubernetes,870,15.6,0.0,-14.4,12.1,31.2
5161
+ 2026-08-17,devops,Linear,14,0.3,,132.7,0.0,57.5
5162
+ 2026-08-17,devops,Linux,363,6.5,0.0,-14.4,13.2,32.4
5163
+ 2026-08-17,devops,LLMs / GenAI,128,2.3,2.0,23.5,11.1,78.6
5164
+ 2026-08-17,devops,Machine Learning,231,4.1,0.0,27.8,5.8,39.6
5165
+ 2026-08-17,devops,Microservices,13,0.2,0.0,-23.3,16.0,29.9
5166
+ 2026-08-17,devops,MongoDB,44,0.8,,-35.4,0.0,2.5
5167
+ 2026-08-17,devops,MuleSoft,13,0.2,,42.9,7.7,73.8
5168
+ 2026-08-17,devops,MySQL,30,0.5,,8.7,0.0,38.6
5169
+ 2026-08-17,devops,NetSuite,13,0.2,,,0.0,0.0
5170
+ 2026-08-17,devops,Next.js,26,0.5,,13.8,18.5,79.2
5171
+ 2026-08-17,devops,Node.js,37,0.7,,3.9,12.8,63.3
5172
+ 2026-08-17,devops,Oracle,31,0.6,,10.7,16.1,75.0
5173
+ 2026-08-17,devops,Penetration Testing,10,0.2,,-16.7,0.0,20.5
5174
+ 2026-08-17,devops,PostgreSQL,90,1.6,2.0,-29.1,5.1,50.3
5175
+ 2026-08-17,devops,Prometheus,112,2.0,1.0,-35.4,5.6,41.5
5176
+ 2026-08-17,devops,Pulumi,37,0.7,2.0,-39.7,13.6,54.4
5177
+ 2026-08-17,devops,Python,528,9.4,0.0,-11.6,8.5,30.4
5178
+ 2026-08-17,devops,PyTorch,21,0.4,,104.4,4.5,70.1
5179
+ 2026-08-17,devops,RAG,18,0.3,,-26.7,0.0,12.3
5180
+ 2026-08-17,devops,React,97,1.7,,13.8,5.0,56.8
5181
+ 2026-08-17,devops,Redis,22,0.4,,,18.2,90.2
5182
+ 2026-08-17,devops,REST API,15,0.3,,,0.0,0.0
5183
+ 2026-08-17,devops,Ruby,50,0.9,0.0,-19.8,3.6,17.4
5184
+ 2026-08-17,devops,Rust,42,0.8,1.0,-37.9,10.4,46.8
5185
+ 2026-08-17,devops,SageMaker,12,0.2,,-10.5,75.0,68.3
5186
+ 2026-08-17,devops,Salesforce,44,0.8,,29.0,4.5,62.7
5187
+ 2026-08-17,devops,SAP,11,0.2,,-52.6,0.0,0.0
5188
+ 2026-08-17,devops,Segment,26,0.5,1.0,90.7,0.0,62.4
5189
+ 2026-08-17,devops,SIEM,69,1.2,0.0,3.9,3.9,27.6
5190
+ 2026-08-17,devops,Snowflake,31,0.6,,20.8,0.0,44.4
5191
+ 2026-08-17,devops,SOC 2,23,0.4,,81.0,0.0,54.2
5192
+ 2026-08-17,devops,Spark,44,0.8,0.0,-32.9,24.0,25.9
5193
+ 2026-08-17,devops,Spring,45,0.8,,13.8,0.0,41.1
5194
+ 2026-08-17,devops,SQL,219,3.9,0.0,-32.5,7.7,17.2
5195
+ 2026-08-17,devops,Stakeholder Mgmt,239,4.3,0.0,8.2,13.9,41.7
5196
+ 2026-08-17,devops,Swift,12,0.2,,,8.3,57.3
5197
+ 2026-08-17,devops,System Design,66,1.2,0.0,49.1,7.5,45.0
5198
+ 2026-08-17,devops,Terraform,1086,19.4,0.0,-19.1,12.3,29.0
5199
+ 2026-08-17,devops,TypeScript,86,1.5,2.0,13.8,6.0,70.9
5200
+ 2026-08-17,devops,Vector Databases,10,0.2,,-26.7,0.0,12.3
5201
+ 2026-08-17,devops,Workday,16,0.3,,8.3,31.2,77.9
5202
+ 2026-08-17,devops,Zero Trust,16,0.3,0.0,-14.5,0.0,13.3
5203
+ 2026-08-17,engineering,A/B Testing,360,2.3,8.0,30.3,3.0,67.2
5204
+ 2026-08-17,engineering,Agile / Scrum,1680,10.6,0.0,-6.8,8.5,39.1
5205
+ 2026-08-17,engineering,AI Agents,807,5.1,,36.7,7.7,76.0
5206
+ 2026-08-17,engineering,AI Coding Tools,218,1.4,,10.8,3.7,60.1
5207
+ 2026-08-17,engineering,Airflow,126,0.8,8.0,-36.1,4.2,47.5
5208
+ 2026-08-17,engineering,Amplitude,14,0.1,54.0,46.2,0.0,71.0
5209
+ 2026-08-17,engineering,Angular,757,4.8,0.0,-22.5,14.7,38.4
5210
+ 2026-08-17,engineering,Ansible,59,0.4,,-50.3,50.8,44.1
5211
+ 2026-08-17,engineering,Apache Iceberg,25,0.2,,,0.0,0.0
5212
+ 2026-08-17,engineering,ArgoCD,17,0.1,8.0,-42.0,0.0,32.7
5213
+ 2026-08-17,engineering,AWS,2336,14.8,0.0,-19.9,8.5,32.6
5214
+ 2026-08-17,engineering,AWS Security,84,0.5,0.0,-9.8,6.9,35.2
5215
+ 2026-08-17,engineering,Azure,940,5.9,1.0,-29.0,11.4,46.2
5216
+ 2026-08-17,engineering,Bash,47,0.3,1.0,-7.5,13.5,59.7
5217
+ 2026-08-17,engineering,BigQuery,54,0.3,0.0,,8.5,24.3
5218
+ 2026-08-17,engineering,C#,891,5.6,0.0,-43.2,15.6,27.3
5219
+ 2026-08-17,engineering,C++,721,4.6,1.0,-15.2,5.7,45.3
5220
+ 2026-08-17,engineering,Cassandra,46,0.3,,56.5,13.0,93.7
5221
+ 2026-08-17,engineering,CI/CD,1454,9.2,1.0,-31.5,12.9,47.0
5222
+ 2026-08-17,engineering,ClickHouse,29,0.2,,35.1,0.0,50.9
5223
+ 2026-08-17,engineering,Dagster,13,0.1,,-41.8,23.5,48.6
5224
+ 2026-08-17,engineering,Data Modeling,191,1.2,4.0,39.1,0.5,62.6
5225
+ 2026-08-17,engineering,Data Observability,14,0.1,,53.3,0.0,56.6
5226
+ 2026-08-17,engineering,Data Pipeline,38,0.2,1.0,-66.4,7.4,27.9
5227
+ 2026-08-17,engineering,Data Visualization,36,0.2,,62.6,2.6,70.5
5228
+ 2026-08-17,engineering,Databricks,290,1.8,15.0,8.4,0.3,64.0
5229
+ 2026-08-17,engineering,Datadog,189,1.2,22.0,-36.1,2.8,51.8
5230
+ 2026-08-17,engineering,dbt,145,0.9,66.0,-8.5,8.1,77.7
5231
+ 2026-08-17,engineering,Deep Learning,33,0.2,8.0,31.3,0.0,58.8
5232
+ 2026-08-17,engineering,Django,133,0.8,1.0,-43.9,1.9,23.5
5233
+ 2026-08-17,engineering,Docker,846,5.4,1.0,-50.3,13.7,38.6
5234
+ 2026-08-17,engineering,DynamoDB,214,1.4,15.0,-7.7,4.1,66.9
5235
+ 2026-08-17,engineering,Elasticsearch,224,1.4,0.0,-23.6,12.4,35.4
5236
+ 2026-08-17,engineering,ETL,171,1.1,8.0,-10.9,7.4,63.2
5237
+ 2026-08-17,engineering,Excel,255,1.6,1.0,-18.1,1.7,37.5
5238
+ 2026-08-17,engineering,FastAPI,178,1.1,1.0,-36.8,8.5,37.5
5239
+ 2026-08-17,engineering,Figma,134,0.8,1.0,-66.3,2.8,22.1
5240
+ 2026-08-17,engineering,Fine-tuning,59,0.4,1.0,51.5,9.5,65.0
5241
+ 2026-08-17,engineering,Fivetran,80,0.5,44.0,25.2,9.3,84.6
5242
+ 2026-08-17,engineering,Flask,62,0.4,1.0,-41.2,4.7,32.3
5243
+ 2026-08-17,engineering,Flink,51,0.3,,53.3,9.1,85.5
5244
+ 2026-08-17,engineering,GCP,938,5.9,7.0,-14.7,13.1,69.1
5245
+ 2026-08-17,engineering,Git,1087,6.9,2.0,-21.3,10.8,59.8
5246
+ 2026-08-17,engineering,Go,341,2.2,1.0,-8.9,2.9,43.8
5247
+ 2026-08-17,engineering,Grafana,744,4.7,0.0,16.3,0.8,32.7
5248
+ 2026-08-17,engineering,GraphQL,352,2.2,1.0,-15.1,1.9,39.3
5249
+ 2026-08-17,engineering,Helm,34,0.2,0.0,50.3,0.0,32.6
5250
+ 2026-08-17,engineering,Incident Response,200,1.3,57.0,-14.3,0.9,64.2
5251
+ 2026-08-17,engineering,Java,2500,15.8,0.0,-11.1,11.8,41.0
5252
+ 2026-08-17,engineering,JavaScript,1834,11.6,0.0,-36.1,7.9,23.4
5253
+ 2026-08-17,engineering,Jira,102,0.6,9.0,-36.1,4.2,51.3
5254
+ 2026-08-17,engineering,Kafka,338,2.1,1.0,10.8,4.9,52.4
5255
+ 2026-08-17,engineering,Kotlin,542,3.4,11.0,-4.9,5.3,69.1
5256
+ 2026-08-17,engineering,Kubernetes,1082,6.8,8.0,-20.5,10.5,64.3
5257
+ 2026-08-17,engineering,LangChain,38,0.2,0.0,-41.5,2.0,13.2
5258
+ 2026-08-17,engineering,Linear,25,0.2,1.0,19.0,0.0,42.3
5259
+ 2026-08-17,engineering,Linux,299,1.9,0.0,-23.2,8.9,31.6
5260
+ 2026-08-17,engineering,LLM APIs,61,0.4,,44.3,13.1,89.0
5261
+ 2026-08-17,engineering,LLMs / GenAI,1488,9.4,0.0,5.5,5.9,38.3
5262
+ 2026-08-17,engineering,Looker,34,0.2,,,0.0,0.0
5263
+ 2026-08-17,engineering,Machine Learning,808,5.1,0.0,13.3,4.0,37.4
5264
+ 2026-08-17,engineering,MCP,61,0.4,,,4.9,48.7
5265
+ 2026-08-17,engineering,Microservices,112,0.7,1.0,10.6,3.7,49.5
5266
+ 2026-08-17,engineering,MLflow,60,0.4,,,0.0,0.0
5267
+ 2026-08-17,engineering,MongoDB,250,1.6,2.0,-39.0,9.3,49.5
5268
+ 2026-08-17,engineering,MySQL,330,2.1,0.0,-41.1,24.9,31.4
5269
+ 2026-08-17,engineering,Next.js,423,2.7,0.0,-33.2,11.3,30.5
5270
+ 2026-08-17,engineering,NLP,43,0.3,0.0,24.1,10.3,48.0
5271
+ 2026-08-17,engineering,Node.js,985,6.2,0.0,-28.0,10.4,32.4
5272
+ 2026-08-17,engineering,Oracle,38,0.2,,-10.9,2.6,46.4
5273
+ 2026-08-17,engineering,OWASP,23,0.1,,-52.4,4.3,19.7
5274
+ 2026-08-17,engineering,Pandas,11,0.1,,-48.1,75.0,46.2
5275
+ 2026-08-17,engineering,PHP,151,1.0,0.0,-50.3,19.7,25.6
5276
+ 2026-08-17,engineering,PostgreSQL,761,4.8,2.0,-32.1,11.7,56.9
5277
+ 2026-08-17,engineering,Power BI,21,0.1,1.0,-32.9,2.9,33.5
5278
+ 2026-08-17,engineering,Prometheus,105,0.7,30.0,,3.2,70.2
5279
+ 2026-08-17,engineering,Prompt Engineering,76,0.5,,47.8,2.6,65.9
5280
+ 2026-08-17,engineering,Prototyping,358,2.3,1.0,-20.8,3.9,39.6
5281
+ 2026-08-17,engineering,Pulumi,28,0.2,,,0.0,0.0
5282
+ 2026-08-17,engineering,Python,2693,17.0,1.0,-16.9,11.5,52.0
5283
+ 2026-08-17,engineering,PyTorch,75,0.5,8.0,-28.4,1.2,47.0
5284
+ 2026-08-17,engineering,RAG,222,1.4,6.0,20.2,17.8,79.7
5285
+ 2026-08-17,engineering,React,2077,13.1,0.0,-29.0,7.7,27.1
5286
+ 2026-08-17,engineering,Redis,167,1.1,1.0,-41.8,8.4,34.2
5287
+ 2026-08-17,engineering,Redshift,34,0.2,,-36.1,5.9,35.8
5288
+ 2026-08-17,engineering,REST API,424,2.7,0.0,-18.6,10.6,36.6
5289
+ 2026-08-17,engineering,Ruby,419,2.7,23.0,0.5,4.3,72.0
5290
+ 2026-08-17,engineering,Rust,394,2.5,0.0,-37.5,9.0,24.7
5291
+ 2026-08-17,engineering,SageMaker,10,0.1,,,0.0,0.0
5292
+ 2026-08-17,engineering,Salesforce,137,0.9,,50.8,3.6,70.6
5293
+ 2026-08-17,engineering,SAP,18,0.1,,,0.0,0.0
5294
+ 2026-08-17,engineering,Scala,203,1.3,0.0,-43.3,1.6,9.4
5295
+ 2026-08-17,engineering,scikit-learn,23,0.1,,-41.8,0.0,8.0
5296
+ 2026-08-17,engineering,Segment,57,0.4,,-36.1,3.3,29.0
5297
+ 2026-08-17,engineering,ServiceNow,20,0.1,,6.3,0.0,42.3
5298
+ 2026-08-17,engineering,SIEM,25,0.2,0.0,-42.0,13.2,26.4
5299
+ 2026-08-17,engineering,Snowflake,124,0.8,47.0,53.0,8.6,88.9
5300
+ 2026-08-17,engineering,SOC 2,19,0.1,32.0,,0.0,57.2
5301
+ 2026-08-17,engineering,Spark,282,1.8,6.0,15.3,1.3,60.2
5302
+ 2026-08-17,engineering,Spring,559,3.5,0.0,-16.3,22.3,42.3
5303
+ 2026-08-17,engineering,SQL,1609,10.2,0.0,-23.8,13.4,36.7
5304
+ 2026-08-17,engineering,Stakeholder Mgmt,1753,11.1,1.0,-0.1,9.7,56.3
5305
+ 2026-08-17,engineering,Statistical Analysis,40,0.3,0.0,-51.7,4.3,12.1
5306
+ 2026-08-17,engineering,Supabase,10,0.1,,,10.0,74.4
5307
+ 2026-08-17,engineering,Svelte,28,0.2,13.0,-11.3,0.0,53.2
5308
+ 2026-08-17,engineering,Swift,148,0.9,19.0,-8.8,4.4,68.9
5309
+ 2026-08-17,engineering,System Design,348,2.2,15.0,-20.7,5.4,62.8
5310
+ 2026-08-17,engineering,Tableau,13,0.1,0.0,17.1,0.0,28.1
5311
+ 2026-08-17,engineering,TensorFlow,65,0.4,8.0,-41.8,1.4,39.1
5312
+ 2026-08-17,engineering,Terraform,497,3.1,2.0,-26.2,9.8,56.9
5313
+ 2026-08-17,engineering,Trino,23,0.1,,-51.7,0.0,1.7
5314
+ 2026-08-17,engineering,TypeScript,1664,10.5,1.0,-33.3,7.5,38.6
5315
+ 2026-08-17,engineering,User Research,31,0.2,,,0.0,0.0
5316
+ 2026-08-17,engineering,Vector Databases,45,0.3,,,13.3,89.7
5317
+ 2026-08-17,engineering,Vue,267,1.7,46.0,-33.1,1.7,55.3
5318
+ 2026-08-17,engineering,Workday,31,0.2,,,12.9,84.6
5319
+ 2026-08-17,engineering,Workflow Automation,32,0.2,,-4.3,6.2,62.8
5320
+ 2026-08-17,engineering,Zero Trust,20,0.1,,,0.0,0.0
5321
+ 2026-08-17,product,A/B Testing,282,10.6,53.0,72.0,0.0,61.2
5322
+ 2026-08-17,product,Agile / Scrum,147,5.5,0.0,-41.7,2.9,21.7
5323
+ 2026-08-17,product,AI Agents,275,10.3,,55.8,2.9,78.1
5324
+ 2026-08-17,product,AI Coding Tools,54,2.0,,,0.0,0.0
5325
+ 2026-08-17,product,Amplitude,32,1.2,,58.2,0.0,44.3
5326
+ 2026-08-17,product,Angular,36,1.3,1.0,-21.0,80.5,34.0
5327
+ 2026-08-17,product,AWS,130,4.9,0.0,52.3,0.0,23.8
5328
+ 2026-08-17,product,AWS Security,11,0.4,,,0.0,0.0
5329
+ 2026-08-17,product,Azure,80,3.0,,-15.5,0.0,7.0
5330
+ 2026-08-17,product,BigQuery,11,0.4,,,0.0,0.0
5331
+ 2026-08-17,product,C#,34,1.3,,-21.0,97.1,44.0
5332
+ 2026-08-17,product,CI/CD,29,1.1,1.0,,0.0,12.3
5333
+ 2026-08-17,product,Data Modeling,14,0.5,,,0.0,0.0
5334
+ 2026-08-17,product,Data Pipeline,12,0.4,,,0.0,0.0
5335
+ 2026-08-17,product,Data Visualization,18,0.7,49.0,,15.4,81.5
5336
+ 2026-08-17,product,Databricks,80,3.0,75.0,,0.0,54.2
5337
+ 2026-08-17,product,Datadog,76,2.8,,,0.0,0.0
5338
+ 2026-08-17,product,dbt,52,1.9,,-7.3,1.9,42.9
5339
+ 2026-08-17,product,Dynamics 365,10,0.4,,,0.0,0.0
5340
+ 2026-08-17,product,Elasticsearch,44,1.6,27.0,,0.0,29.5
5341
+ 2026-08-17,product,ETL,26,1.0,,,0.0,0.0
5342
+ 2026-08-17,product,Excel,99,3.7,8.0,,0.0,22.2
5343
+ 2026-08-17,product,Figma,243,9.1,1.0,-4.9,2.3,39.6
5344
+ 2026-08-17,product,Fine-tuning,36,1.3,37.0,,2.4,66.5
5345
+ 2026-08-17,product,Fivetran,55,2.1,,-7.3,0.0,11.7
5346
+ 2026-08-17,product,GCP,74,2.8,1.0,,0.0,12.3
5347
+ 2026-08-17,product,Git,17,0.6,,,0.0,0.0
5348
+ 2026-08-17,product,Grafana,14,0.5,,,0.0,0.0
5349
+ 2026-08-17,product,Hugging Face,15,0.6,,,0.0,0.0
5350
+ 2026-08-17,product,Jira,43,1.6,0.0,32.8,0.0,18.2
5351
+ 2026-08-17,product,Kafka,19,0.7,0.0,107.6,0.0,33.6
5352
+ 2026-08-17,product,Kubernetes,35,1.3,,,0.0,0.0
5353
+ 2026-08-17,product,LLMs / GenAI,368,13.8,30.0,-5.9,2.6,51.9
5354
+ 2026-08-17,product,Looker,12,0.4,,115.7,7.7,97.2
5355
+ 2026-08-17,product,Machine Learning,88,3.3,22.0,26.5,0.9,50.9
5356
+ 2026-08-17,product,MCP,26,1.0,,,0.0,0.0
5357
+ 2026-08-17,product,Mixpanel,21,0.8,,58.2,0.0,44.3
5358
+ 2026-08-17,product,MLflow,19,0.7,89.0,,0.0,61.5
5359
+ 2026-08-17,product,MongoDB,39,1.5,,,0.0,0.0
5360
+ 2026-08-17,product,MySQL,14,0.5,,,0.0,0.0
5361
+ 2026-08-17,product,NLP,11,0.4,,,0.0,0.0
5362
+ 2026-08-17,product,Node.js,29,1.1,43.0,46.6,0.0,49.6
5363
+ 2026-08-17,product,PostgreSQL,14,0.5,,,0.0,0.0
5364
+ 2026-08-17,product,Prompt Engineering,14,0.5,,,7.1,91.7
5365
+ 2026-08-17,product,Prototyping,218,8.2,37.0,25.7,2.0,56.0
5366
+ 2026-08-17,product,Python,41,1.5,75.0,,0.0,54.2
5367
+ 2026-08-17,product,RAG,70,2.6,,,1.4,73.3
5368
+ 2026-08-17,product,Ruby,17,0.6,,,0.0,0.0
5369
+ 2026-08-17,product,Salesforce,27,1.0,,45.8,0.0,32.7
5370
+ 2026-08-17,product,SAP,20,0.7,,,0.0,0.0
5371
+ 2026-08-17,product,Segment,42,1.6,0.0,58.2,0.0,26.6
5372
+ 2026-08-17,product,SIEM,18,0.7,,-8.0,0.0,9.3
5373
+ 2026-08-17,product,Snowflake,23,0.9,,,3.8,90.0
5374
+ 2026-08-17,product,Spark,32,1.2,53.0,,0.0,46.8
5375
+ 2026-08-17,product,SQL,177,6.6,41.0,79.8,0.0,57.8
5376
+ 2026-08-17,product,Stakeholder Mgmt,901,33.8,15.0,31.0,2.2,52.8
5377
+ 2026-08-17,product,Statistical Analysis,18,0.7,,,0.0,0.0
5378
+ 2026-08-17,product,System Design,22,0.8,66.0,45.8,0.0,53.2
5379
+ 2026-08-17,product,Tableau,16,0.6,,,10.0,95.0
5380
+ 2026-08-17,product,User Research,184,6.9,82.0,15.9,1.9,69.8
5381
+ 2026-08-17,product,Vector Databases,10,0.4,,,0.0,0.0
5382
+ 2026-08-17,security,Agile / Scrum,43,1.7,1.0,15.7,15.1,55.2
5383
+ 2026-08-17,security,AI Agents,143,5.7,,153.9,7.7,83.3
5384
+ 2026-08-17,security,AI Coding Tools,14,0.6,,,0.0,0.0
5385
+ 2026-08-17,security,AWS,349,13.8,0.0,-1.1,12.0,25.0
5386
+ 2026-08-17,security,AWS Security,123,4.9,0.0,21.2,7.5,27.9
5387
+ 2026-08-17,security,Azure,245,9.7,0.0,18.3,8.1,28.0
5388
+ 2026-08-17,security,C++,17,0.7,79.0,,0.0,56.4
5389
+ 2026-08-17,security,CI/CD,145,5.7,0.0,22.1,13.1,34.7
5390
+ 2026-08-17,security,CISSP,44,1.7,,-7.0,4.3,26.3
5391
+ 2026-08-17,security,Databricks,21,0.8,,,0.0,0.0
5392
+ 2026-08-17,security,Datadog,25,1.0,72.0,,0.0,53.8
5393
+ 2026-08-17,security,Docker,63,2.5,0.0,22.4,1.1,23.9
5394
+ 2026-08-17,security,Elasticsearch,14,0.6,,,5.6,50.0
5395
+ 2026-08-17,security,Excel,31,1.2,0.0,,0.0,0.0
5396
+ 2026-08-17,security,GCP,175,6.9,0.0,26.5,4.2,26.9
5397
+ 2026-08-17,security,Git,68,2.7,,36.2,4.2,52.4
5398
+ 2026-08-17,security,Incident Response,220,8.7,0.0,4.4,10.3,26.0
5399
+ 2026-08-17,security,Java,32,1.3,,74.8,0.0,47.0
5400
+ 2026-08-17,security,JavaScript,42,1.7,,144.7,22.2,93.1
5401
+ 2026-08-17,security,Kubernetes,76,3.0,26.0,103.3,3.3,68.2
5402
+ 2026-08-17,security,Linux,49,1.9,1.0,-38.8,4.8,37.5
5403
+ 2026-08-17,security,LLMs / GenAI,100,4.0,51.0,39.8,17.9,73.8
5404
+ 2026-08-17,security,Machine Learning,57,2.3,,61.9,27.1,82.9
5405
+ 2026-08-17,security,MLflow,14,0.6,,,0.0,0.0
5406
+ 2026-08-17,security,MongoDB,12,0.5,,,0.0,0.0
5407
+ 2026-08-17,security,Next.js,14,0.6,,144.7,60.0,95.2
5408
+ 2026-08-17,security,OWASP,48,1.9,79.0,29.4,18.2,77.7
5409
+ 2026-08-17,security,Penetration Testing,82,3.3,0.0,29.4,11.5,37.9
5410
+ 2026-08-17,security,Python,159,6.3,51.0,62.8,1.5,65.8
5411
+ 2026-08-17,security,React,15,0.6,,-63.8,60.0,40.6
5412
+ 2026-08-17,security,Rust,19,0.8,,96.0,0.0,48.9
5413
+ 2026-08-17,security,SIEM,261,10.3,0.0,-27.1,10.0,20.9
5414
+ 2026-08-17,security,Snowflake,15,0.6,,-45.7,0.0,1.9
5415
+ 2026-08-17,security,SOC 2,33,1.3,12.0,40.2,9.3,67.2
5416
+ 2026-08-17,security,Spark,34,1.3,0.0,,0.0,0.0
5417
+ 2026-08-17,security,SQL,33,1.3,79.0,15.3,7.3,60.6
5418
+ 2026-08-17,security,Stakeholder Mgmt,150,5.9,0.0,27.1,5.9,31.2
5419
+ 2026-08-17,security,System Design,18,0.7,,103.3,0.0,50.8
5420
+ 2026-08-17,security,Terraform,100,4.0,0.0,-1.1,19.1,28.1
5421
+ 2026-08-17,security,TypeScript,23,0.9,55.0,48.7,0.0,58.2
5422
+ 2026-08-17,security,Zero Trust,48,1.9,0.0,6.3,8.3,25.3
skill-scarcity-index.json CHANGED
The diff for this file is too large to render. See raw diff
 
Free AI Image Generator No sign-up. Instant results. Open Now